/* ==========================================================================
   VERITOLYTICS — CONTACT PAGE  |  Professional Corporate Stylesheet
   ========================================================================= */


/* ══ HERO ══════════════════════════════════════════════════════════════════ */
.ct-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    padding-top: var(--header-height);
}

.ct-hero-left {
    background: #0a1628;
    display: flex;
    align-items: center;
    padding: 80px 64px 80px 0;
    position: relative;
    overflow: hidden;
}

.ct-hero-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 100% 50%, rgba(37, 99, 235, 0.12) 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 0% 100%, rgba(14, 165, 233, 0.07) 0%, transparent 60%);
    pointer-events: none;
}

.ct-hero-left-inner {
    position: relative;
    z-index: 1;
    max-width: 520px;
    margin-left: auto;
    padding-left: 16px;
}

.ct-hero-right {
    background: #fff;
    border-left: 1px solid rgba(15, 23, 42, 0.07);
    display: flex;
    align-items: flex-start;
    padding: 60px 64px;
    overflow-y: auto;
}

/* breadcrumb */
.ct-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(148, 163, 184, 0.9);
    margin-bottom: 32px;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.ct-breadcrumb a { color: rgba(148, 163, 184, 0.8); }
.ct-breadcrumb a:hover { color: #fff; }
.ct-breadcrumb i { font-size: 0.65rem; opacity: 0.5; }

.ct-hero-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 3.8vw, 3.6rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 24px;
}

.ct-hero-desc {
    font-size: 1.02rem;
    line-height: 1.8;
    color: rgba(186, 200, 230, 0.85);
    margin-bottom: 44px;
    max-width: 460px;
}

/* Contact methods */
.ct-contact-methods {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    margin-bottom: 36px;
}

.ct-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.2s ease;
    cursor: pointer;
}
.ct-method:last-child { border-bottom: none; }
a.ct-method:hover { background: rgba(255, 255, 255, 0.05); }
.ct-method-location { cursor: default; }

.ct-method-icon {
    width: 38px;
    height: 38px;
    background: rgba(37, 99, 235, 0.18);
    border: 1px solid rgba(37, 99, 235, 0.25);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #60a5fa;
    flex-shrink: 0;
}

.ct-method-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ct-method-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(148, 163, 184, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-family: var(--font-heading);
}

.ct-method-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    font-family: var(--font-heading);
}

.ct-method-arrow {
    font-size: 0.75rem;
    color: rgba(148, 163, 184, 0.4);
    transition: color 0.2s ease, transform 0.2s ease;
}
a.ct-method:hover .ct-method-arrow {
    color: #60a5fa;
    transform: translateX(3px);
}

/* SLA Strip */
.ct-sla-strip {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 22px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: var(--border-radius-sm);
}

.ct-sla-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: rgba(186, 200, 230, 0.85);
    font-family: var(--font-heading);
    font-weight: 500;
}
.ct-sla-item strong { color: #fff; }
.ct-sla-item i { color: #60a5fa; font-size: 0.82rem; }

.ct-sla-sep {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}


/* ══ FORM ══════════════════════════════════════════════════════════════════ */
.ct-form-wrapper {
    width: 100%;
    padding-top: 24px;
}

.ct-form-header {
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--color-border);
}

.ct-form-header h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.ct-form-header p {
    font-size: 0.92rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.ct-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ct-form-row { display: flex; gap: 18px; }
.ct-form-row-2 .ct-field-group { flex: 1; }

.ct-field-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
    flex: 1;
}

.ct-field-group label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-text-primary);
    letter-spacing: 0.02em;
}

.ct-req { color: var(--color-primary); }

.ct-field-group input,
.ct-field-group select,
.ct-field-group textarea {
    width: 100%;
    padding: 11px 16px;
    font-size: 0.92rem;
    font-family: var(--font-body);
    color: var(--color-text-primary);
    background: #fafbff;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.ct-field-group input::placeholder,
.ct-field-group textarea::placeholder {
    color: var(--color-text-muted);
    opacity: 0.7;
}

.ct-field-group input:focus,
.ct-field-group select:focus,
.ct-field-group textarea:focus {
    border-color: var(--color-primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.ct-field-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
    cursor: pointer;
}

.ct-field-group textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.6;
}

/* Checkbox */
.ct-checkbox-group { flex-direction: row; align-items: flex-start; }

.ct-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.82rem;
    color: var(--color-text-secondary);
    line-height: 1.55;
    font-family: var(--font-body);
    font-weight: 400;
}
.ct-checkbox-label input { display: none; }
.ct-checkbox-label a { color: var(--color-primary); font-weight: 600; }

.ct-checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid var(--color-border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    background: #fff;
    transition: border-color 0.2s ease, background 0.2s ease;
    position: relative;
}

.ct-checkbox-label input:checked ~ .ct-checkmark {
    background: var(--color-primary);
    border-color: var(--color-primary);
}
.ct-checkbox-label input:checked ~ .ct-checkmark::after {
    content: '';
    position: absolute;
    width: 5px; height: 9px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg) translate(-1px, -1px);
}

/* Submit button */
.ct-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--color-primary);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    border: none;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
    letter-spacing: 0.02em;
    align-self: flex-start;
}
.ct-submit-btn:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}
.ct-submit-btn:active { transform: translateY(0); }

/* Success state */
.ct-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 32px;
    gap: 16px;
}

.ct-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid rgba(34, 197, 94, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #22c55e;
}

.ct-success h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text-primary);
}

.ct-success p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--color-text-secondary);
    max-width: 420px;
}


/* ══ INFO BAND ══════════════════════════════════════════════════════════════ */
.ct-info-band {
    background: #0f172a;
    padding: 60px 0;
}

.ct-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.ct-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 36px 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
}
.ct-info-item:last-child { border-right: none; }

.ct-info-item > i {
    width: 42px;
    height: 42px;
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: #60a5fa;
    flex-shrink: 0;
}

.ct-info-item h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.ct-info-item p {
    font-size: 0.85rem;
    line-height: 1.68;
    color: rgba(148, 163, 184, 0.85);
}


/* ══ FAQ ════════════════════════════════════════════════════════════════════ */
.ct-faq {
    padding: 112px 0;
    background: var(--color-bg-main);
    border-top: 1px solid var(--color-border);
}

.ct-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 80px;
    align-items: start;
}

.ct-section-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 2.5vw, 2.3rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: var(--color-text-primary);
    margin-bottom: 16px;
}

.ct-heading-rule {
    width: 40px;
    height: 3px;
    background: var(--color-accent-gradient);
    border-radius: 2px;
    margin-bottom: 20px;
}

.ct-faq-intro {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
}

.ct-faq-services-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--color-primary);
    transition: gap 0.2s ease;
}
.ct-faq-services-link:hover { gap: 12px; }

/* FAQ Accordion */
.ct-faq-items {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.05);
}

.ct-faq-item {
    border-bottom: 1px solid var(--color-border);
}
.ct-faq-item:last-child { border-bottom: none; }

.ct-faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 28px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-primary);
    transition: background 0.2s ease;
}
.ct-faq-q:hover { background: #f8faff; }

.ct-faq-icon {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    flex-shrink: 0;
    transition: transform 0.3s ease, color 0.2s ease;
}

.ct-faq-item.open .ct-faq-icon {
    transform: rotate(45deg);
    color: var(--color-primary);
}

.ct-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ct-faq-a p {
    padding: 0 28px 24px;
    font-size: 0.92rem;
    line-height: 1.78;
    color: var(--color-text-secondary);
}


/* ══ RESPONSIVE ════════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
    .ct-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .ct-hero-left { padding: 80px 32px; }
    .ct-hero-left-inner { margin: 0 auto; max-width: 600px; padding-left: 0; }
    .ct-hero-right { padding: 60px 32px; border-left: none; border-top: 1px solid var(--color-border); }

    .ct-info-grid { grid-template-columns: 1fr; }
    .ct-info-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
    .ct-info-item:last-child { border-bottom: none; }

    .ct-faq-grid { grid-template-columns: 1fr; gap: 48px; }
    .ct-sla-strip { flex-wrap: wrap; }
}

@media (max-width: 640px) {
    .ct-hero-left { padding: 60px 24px; }
    .ct-hero-right { padding: 48px 24px; }
    .ct-form-row { flex-direction: column; gap: 16px; }
    .ct-form-row-2 .ct-field-group { flex: auto; }
    .ct-sla-strip { flex-direction: column; gap: 12px; }
    .ct-sla-sep { display: none; }
    .ct-info-item { padding: 28px 24px; }
    .ct-faq { padding: 80px 0; }
}
