:root {
    --uw-blue: #b9820c;
    --uw-navy: #0B2545;
    --uw-muted: #5C677A;
    --uw-border: #E4E8EE;
    --uw-light: #F7F9FC;
    --uw-green: #10B981;
}

* { box-sizing: border-box; }

.btn-primary {
    background: #b9820c;
    color: rgba(0,0,0,0) !important;
    text-shadow: 0 0 0 #fff, 400px 0 0 #fff;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}
.btn-primary:hover {
    background: #171d28;
    color: rgba(0,0,0,0) !important;
    text-shadow: -400px 0 0 #fff, 0 0 0 #fff;
}

.btn-outline {
    background: transparent;
    color: var(--uw-navy);
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid var(--uw-border);
    cursor: pointer;
    transition: all 0.2s;
    display: inline-block;
}
.btn-outline:hover { border-color: var(--uw-blue); background: rgba(249,168,37,0.05); color: var(--uw-navy); }

/* ===== HERO SECTION (Matches About Us) ===== */
.contact-hero {
    min-height: 90vh;
    background: linear-gradient(135deg, #fff 0%, #EAF1FF 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 130px 0 80px;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249,168,37,0.08) 0%, transparent 65%);
    border-radius: 50%;
    animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-inner {
    position: relative;
    z-index: 2;
}

.hero-inner .eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--uw-blue);
    margin-bottom: 18px;
}

.hero-inner h1 {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 700;
    color: var(--uw-navy);
    line-height: 1.2;
    margin-bottom: 22px;
}

.hero-inner p {
    font-size: 17px;
    color: var(--uw-muted);
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-image-box {
    position: relative;
    height: 450px;
    background: linear-gradient(135deg, #F7F7F7 0%, #E7D8A5 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(249,168,37,0.15);
    border: 1px solid rgba(249,168,37,0.1);
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



/* ===== CHANNELS SECTION - REDESIGNED ===== */
.channels-section {
    padding: 70px 0; /* Reduced from 100px */
    background: var(--uw-navy);
    position: relative;
    overflow: hidden;
}

.channels-section::before,
.channels-section::after {
    display: none;
}

.channels-intro {
    text-align: center;
    margin-bottom: 40px; /* Reduced from 64px */
    position: relative;
    z-index: 2;
}

.channels-intro .eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--uw-blue);
    margin-bottom: 12px;
    display: inline-block;
}

.channels-intro h2 {
    font-size: 32px; /* Slightly reduced */
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 12px;
}

.channels-intro p {
    font-size: 15px;
    color: #D0D0D0;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6; /* Tighter line height */
}

/* ===== HORIZONTAL CHANNEL STRIP ===== */
.channels-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.channel-block {
    background: rgba(255,255,255,0.04);
    padding: 32px 28px; /* Reduced from 44px 36px */
    border-right: 1px solid rgba(255,255,255,0.08);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
}

.channel-block:last-child {
    border-right: none;
}

.channel-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--uw-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.channel-block:hover {
    background: rgba(47,111,237,0.06);
}

.channel-block:hover::before {
    transform: scaleX(1);
}

.channel-number {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--uw-blue);
    margin-bottom: 16px; /* Reduced from 28px */
    font-variant-numeric: tabular-nums;
}

.channel-icon {
    width: 48px;
    height: 48px;
    background: rgba(47,111,237,0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: #2F6FED;
    font-size: 22px;
    border: 1px solid rgba(47,111,237,0.3);
    transition: all 0.3s ease;
}

.channel-block:hover .channel-icon {
    background: #2F6FED;
    border-color: #2F6FED;
    color: #fff;
    transform: translateY(-3px);
}

.channel-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #7B715E;
    margin-bottom: 6px;
}

.channel-value {
    display: block;
    font-size: 16px; /* Reduced from 17px */
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    margin-bottom: 8px; /* Reduced from 12px */
    transition: color 0.2s;
    
}

.channel-note {
    font-size: 13px;
    color: #D0D0D0;
    line-height: 1.5; /* Tighter line height */
    margin-top: auto;
}

.channel-arrow {
    margin-top: 20px; /* Reduced from 28px */
    width: 32px; /* Reduced from 36px */
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7B715E;
    font-size: 14px;
    transition: all 0.3s ease;
}

.channel-block:hover .channel-arrow {
    border-color: var(--uw-blue);
    color: var(--uw-blue);
    transform: translate(3px, -3px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .channels-strip {
        grid-template-columns: 1fr;
        border-radius: 16px;
    }
    .channel-block {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .channel-block:last-child { border-bottom: none; }
    .channel-block::before {
        top: 0; left: 0; right: 0; bottom: auto;
        height: 3px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .channels-section { padding: 48px 0; } /* Scaled down for mobile */
    .channel-block { padding: 24px 20px; } /* Scaled down internal spacing */
    .channels-intro h2 { font-size: 26px; }
}

/* ===== WHY SECTION - REFINED LAYOUT & CONSISTENCY ===== */
.why-section {
    padding: 100px 0;
   background: #fff; 
}

.why-head {
    text-align: left;
    margin-bottom: 60px;
}

/* Matches your form-head label / eyebrow styling */
.why-badge {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #b9820c;
    margin-bottom: 16px;
    display: inline-block;
}

.why-head h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--uw-navy);
    line-height: 1.2;
    margin-bottom: 16px;
}

.why-head p {
    font-size: 16px;
    color: var(--uw-muted);
    line-height: 1.7;
    margin: 0;
}

/* ===== ASYMMETRICAL GRID ===== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 24px;
}

/* REGULAR CARDS (Matches .channel-block) */
.why-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 28px;
    border: 1px solid var(--uw-border);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    box-shadow: 0 4px 16px rgba(249,168,37,0.04);
}

.why-card:hover {
    border-color: #b9820c;
    box-shadow: 0 10px 30px rgba(249,168,37,0.12);
    transform: translateY(-6px);
}

/* GRID POSITIONING */
.why-card:nth-child(1) { grid-column: 1 / 2; grid-row: 1 / 2; }
.why-card:nth-child(2) { grid-column: 2 / 3; grid-row: 1 / 2; }
.why-card:nth-child(3) { grid-column: 1 / 3; grid-row: 2 / 3; }

/* ICONS (Matches .channel-icon but keeps circular identity) */
.why-card-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #EAF1FF 0%, #D5E3FF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #2F6FED;
    flex-shrink: 0;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.why-card-icon i {
    color: inherit !important;
}

.why-card:hover .why-card-icon {
    background: linear-gradient(135deg, #2F6FED 0%, #1E4FB8 100%);
    color: #fff;
    transform: scale(1.1);
}

.why-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--uw-navy);
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.why-card p {
    font-size: 14px;
    color: var(--uw-muted);
    margin: 0;
    line-height: 1.6;
}

/* ===== FEATURED SUPPORT CARD (RIGHT SIDE) ===== */
.why-card.featured-card {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
    background: linear-gradient(145deg, #111111 0%, #242424 100%);
    border: 1px solid rgba(249, 168, 37, 0.45);
    box-shadow: 0 18px 36px rgba(17,17,17,0.32);
}

.why-card.featured-card .why-card-icon {
    background: rgba(47, 111, 237, 0.18);
    color: #B8CEFF;
    border: 1px solid rgba(47,111,237,0.45);
}

.why-card.featured-card:hover .why-card-icon {
    background: #2F6FED;
    color: #fff;
}

.why-card.featured-card h4 {
    color: #fff;
    font-size: 22px;
}

.why-card.featured-card p {
    color: #E7E7E7;
    margin-bottom: 32px;
    flex-grow: 1; /* Pushes button to the bottom */
}

.why-card.featured-card .btn-white {
    margin-top: auto; /* Aligns button neatly at the base */
    background: #b9820c;
    color: rgba(0, 0, 0, 0) !important;
    border: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    text-shadow: 0 0 0 #fff, 400px 0 0 #fff;
    transition: all 0.3s ease;
}

.why-card.featured-card .btn-white:hover {
    background: #171d28;
    color: rgba(0, 0, 0, 0) !important;
    text-shadow: -400px 0 0 #fff, 0 0 0 #fff;
}

/* Section-specific CTA override: keep default gold/white, invert to white/navy on hover */
.why-card.featured-card .btn-white.contact-featured-cta-btn {
    margin-top: auto;
    background: #b9820c;
    color: rgba(0, 0, 0, 0) !important;
    border: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    text-shadow: 0 0 0 #fff, 400px 0 0 #fff;
    transition: all 0.3s ease;
}

.why-card.featured-card .btn-white.contact-featured-cta-btn:hover {
    background: #fff;
    color: rgba(0, 0, 0, 0) !important;
    text-shadow: -400px 0 0 #171d28, 0 0 0 #171d28;
}

/* ===== RESPONSIVE FIXES (Ensures Equal Widths) ===== */
@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-template-rows: auto;
        gap: 24px;
    }
    
    /* Top two cards take exactly 50% each */
    .why-card:nth-child(1) { grid-column: 1 / 2; grid-row: 1; }
    .why-card:nth-child(2) { grid-column: 2 / 3; grid-row: 1; }
    
    /* Bottom wide card spans full width */
    .why-card:nth-child(3) { grid-column: 1 / 3; grid-row: 2; }
    
    /* Featured card stacks at the bottom, full width */
    .why-card.featured-card { grid-column: 1 / 3; grid-row: 3; }
}

@media (max-width: 768px) {
    .why-section { padding: 60px 0; }
    
    .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto;
    }
    
    /* All cards stack into a single equal column on mobile */
    .why-card:nth-child(1),
    .why-card:nth-child(2),
    .why-card:nth-child(3),
    .why-card.featured-card {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .why-head h2 { font-size: 28px; }
}

/* ===== FORM SECTION ===== */
.form-section {
    padding: 100px 0;
    background: var(--uw-light);
}

.form-head {
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.form-head .label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--uw-blue);
    margin-bottom: 10px;
    display: inline-block;
}

.form-head h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--uw-navy);
    margin: 14px 0 12px;
    line-height: 1.2;
}

.form-head p {
    font-size: 15px;
    color: var(--uw-muted);
    line-height: 1.7;
    margin: 0;
}

.form-card {
    background: #fff;
    border-radius: 20px;
    padding: 48px;
    border: 1px solid var(--uw-border);
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(249,168,37,0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--uw-navy);
    margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100% !important;
    padding: 10px 15px !important;
    border: 1.5px solid var(--uw-border) !important;
    border-radius: 10px !important;
    font-size: 13.5px !important;
    line-height: 1.5 !important;
    color: var(--uw-navy);
    font-family: inherit;
    background: #f0f6fe !important;
    height: 46px !important;
    min-height: unset !important;
    box-sizing: border-box !important;
    transition: all 0.25s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #AABCCB;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #b9820c;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(249,168,37,0.12);
}

/* Select2 overrides — match exactly with .form-group input */
/* Hide Bootstrap's built-in SVG arrow on form-select */
.form-group .form-select {
    background-image: none !important;
}

.select2-container {
    width: 100% !important;
}

/* Match the outer container to inputs — specificity (0,3,1) beats style.css (0,2,1) */
.form-group span.select2-selection.select2-selection--single {
    height: 46px !important;
    padding: 10px 15px !important;
    padding-right: 36px !important;
}

.select2-container--default .select2-selection--single {
    height: 46px !important;
    min-height: unset !important;
    padding: 0 15px !important;
    padding-right: 36px !important;
    border: 1.5px solid var(--uw-border) !important;
    border-radius: 10px !important;
    font-size: 13.5px !important;
    line-height: 46px !important;
    font-family: inherit !important;
    background: #f0f6fe !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
    transition: all 0.25s ease;
    display: flex !important;
    align-items: center !important;
}

/* Reset rendered text — container handles sizing via line-height */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 0 !important;
    margin: 0 !important;
    color: #AABCCB !important;
    line-height: 1.5 !important;
    font-size: 13.5px !important;
    font-family: inherit !important;
    display: block !important;
    text-align: left !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    text-overflow: ellipsis !important;
    flex: 1 !important;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #AABCCB !important;
}

/* Arrow — centered vertically using transform */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    right: 10px !important;
    width: 20px !important;
    height: 20px !important;
    display: block !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    margin-left: -4px !important;
    margin-top: -2px !important;
    border-color: #7a8a9b transparent transparent !important;
    border-width: 5px 4px 0 4px !important;
    border-style: solid !important;
    width: 0 !important;
    height: 0 !important;
}

/* Focus / open state */
.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--open .select2-selection--single {
    border-color: #b9820c !important;
    box-shadow: 0 0 0 4px rgba(249,168,37,0.12) !important;
    outline: none !important;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #7a8a9b !important;
    border-width: 0 4px 5px 4px !important;
}

/* Dropdown list */
.select2-dropdown {
    border: 1.5px solid rgba(47,111,237,0.18) !important;
    border-radius: 12px !important;
    font-size: 13.5px;
    font-family: inherit;
    margin-top: 4px !important;
    box-shadow: 0 8px 24px rgba(17,17,17,0.10) !important;
    overflow: hidden !important;
}
.select2-dropdown--above {
    border-radius: 12px !important;
    margin-top: 0 !important;
    margin-bottom: 4px !important;
}
/* Search box inside dropdown */
.select2-search--dropdown {
    padding: 8px 10px !important;
    background: #fff !important;
    border-bottom: 1px solid #eef2f7 !important;
}
.select2-search--dropdown .select2-search__field {
    border: 1.5px solid var(--uw-border) !important;
    border-radius: 8px !important;
    padding: 7px 12px !important;
    font-size: 13px !important;
    font-family: inherit !important;
    background: #f8fafd !important;
    color: var(--uw-navy) !important;
    outline: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
}
.select2-search--dropdown .select2-search__field:focus {
    border-color: #2F6FED !important;
    background: #fff !important;
}
/* Results list */
.select2-results__options {
    padding: 4px 0 !important;
    max-height: 220px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
}
.select2-results__option {
    padding: 9px 14px !important;
    font-size: 13.5px !important;
    font-family: inherit !important;
    color: var(--uw-navy) !important;
    cursor: pointer !important;
    transition: background 0.15s ease !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}
.select2-container--default .select2-results__option--highlighted {
    background-color: #f0f6fe !important;
    color: #2F6FED !important;
}
.select2-container--default .select2-results__option--selected {
    background-color: #e8f0fd !important;
    color: #2F6FED !important;
    font-weight: 500 !important;
}

.form-group textarea { resize: vertical; height: auto !important; min-height: 100px !important; }

/* ===== GOLD FOCUS RING — isolated utility classes (presentation only) ===== */
/* Applied directly to each form field element; does not modify any shared selector. */

/* For text inputs and textarea */
.uw-gold-focus:focus {
    border-color: #b9820c !important;
    box-shadow: 0 0 0 4px rgba(249,168,37,0.12) !important;
    outline: none !important;
}

/* For the Select2 country wrapper — class sits on the .form-group div, not inside the widget */
.uw-country-gold-focus .select2-container--default.select2-container--focus .select2-selection--single,
.uw-country-gold-focus .select2-container--default.select2-container--open .select2-selection--single {
    border-color: #b9820c !important;
    box-shadow: 0 0 0 4px rgba(249,168,37,0.12) !important;
    outline: none !important;
}

.form-submit-row {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.form-submit-row .btn-primary { padding: 13px 32px; }

.form-submit-note {
    font-size: 12px;
    color: var(--uw-muted);
    line-height: 1.5;
}

#successMessage {
    font-size: 13px;
    font-weight: 600;
    padding: 12px 14px;
    margin-top: 14px;
    border-radius: 8px;
    display: none;
}

#successMessage.success { background: rgba(16,185,129,0.1); color: #059669; }
#successMessage.error { background: rgba(214,73,46,0.1); color: #D6492E; }

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 100px 0;
    background: #fff;
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 60px;
    align-items: center;
}

.faq-left {
    position: sticky;
    top: 100px;
}

.faq-left .wt-small-separator {
    margin-bottom: 8px;
}

.faq-left .wt-small-separator div {
    color: #b9820c;
}

.faq-left h2 {
    margin-bottom: 14px;
}

.faq-image-placeholder {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    margin: 24px 0 20px;
}

.faq-image-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

.faq-cta-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--uw-blue);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.faq-cta-link:hover { color: #d4870e; }

.faq-list { width: 100%; }

.faq-item {
    border-bottom: 1px solid var(--uw-border);
    background: #fff;
    margin-bottom: 4px;
    border-radius: 10px;
    border-bottom: none;
}

.faq-toggle {
    width: 100%;
    padding: 18px 20px;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--uw-navy);
    text-align: left;
    gap: 16px;
}

.faq-toggle:hover { color: var(--uw-blue); }

.faq-toggle i {
    color: var(--uw-blue);
    transition: transform 0.3s ease;
    font-size: 14px;
    flex-shrink: 0;
}

.faq-item.open .faq-toggle i { transform: rotate(45deg); }

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-content p {
    padding: 0 20px 18px;
    font-size: 13.5px;
    color: var(--uw-muted);
    line-height: 1.8;
    margin: 0;
}

/* ===== CTA BANNER ===== */
.about-cta {
    padding: 100px 0;
    background: var(--uw-navy);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(185,130,12,0.10) 0%, transparent 70%);
}

.about-cta .inner {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.about-cta h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.about-cta p {
    color: #D0D0D0;
    font-size: 16px;
    margin-bottom: 32px;
}

.about-cta .btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.about-cta .btn-outline {
    border-color: rgba(255,255,255,0.7);
    color: #fff;
}
.about-cta .btn-outline:hover,
.about-cta .btn-outline:focus,
.about-cta .btn-outline:active {
    background: rgba(249,168,37,0.10);
    border-color: #b9820c !important;
    color: #fff !important;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 100px 0;
    background: var(--uw-navy);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(185,130,12,0.10) 0%, transparent 70%);
}

.cta-inner {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    display: block;
}

.cta-inner h2 {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.3;
}

.cta-inner p {
    font-size: 15px;
    color: #D0D0D0;
    margin: 0;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: #fff;
    color: var(--uw-navy);
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
}

.btn-white:hover { background: #F5EFD8; transform: translateY(-1px); color: var(--uw-navy); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .channels-strip { grid-template-columns: 1fr; }
    .cta-inner { grid-template-columns: 1fr; gap: 28px; }
    .cta-actions { flex-wrap: wrap; }
    .why-grid { grid-template-columns: 1fr; gap: 28px; }
    .faq-layout { grid-template-columns: 1fr; gap: 30px; }
    
    .faq-left {
        position: static;
        order: 1;
    }
    .faq-list {
        order: 2;
    }
}

@media (max-width: 768px) {
    .contact-hero { padding: 100px 0 60px; min-height: auto; }
    .form-row { grid-template-columns: 1fr; gap: 16px; }
    .hero-image-box { height: 320px; }
    .channels-section, .form-section, .why-section, .faq-section, .cta-section { padding: 60px 0; }
    .hero-inner h1 { font-size: 32px; }
}

@media (max-width: 640px) {
    .hero-actions { flex-direction: column; }
    .hero-actions a { width: 100%; text-align: center; }
    .cta-actions { flex-direction: column; }
    .cta-actions a { text-align: center; }
    .form-card { padding: 28px; }
    .why-card { padding: 28px; }
    .about-cta h2 { font-size: 28px; }
    .cta-inner h2 { font-size: 28px; }
}

/* ===== Channels & CTA rebrand overrides ===== */
.channels-section,
.cta-section {
    background: linear-gradient(142deg, #121212 0%, #232323 100%);
}

.channels-intro p,
.cta-inner p {
    color: #d5d5d5;
}

.channels-section .channels-strip {
    border: 1px solid rgba(201, 162, 39, 0.34) !important;
    background: linear-gradient(140deg, rgba(18,18,18,0.8) 0%, rgba(36,36,36,0.86) 62%, rgba(63,52,30,0.8) 100%);
    box-shadow: 0 18px 36px rgba(0,0,0,0.26);
}

.channels-section .channel-block {
    background: linear-gradient(150deg, rgba(255,255,255,0.96) 0%, rgba(250,246,233,0.98) 100%) !important;
    border-right-color: rgba(201, 162, 39, 0.24) !important;
}

.channels-section .channel-label {
    color: #7B715E !important;
}

.channels-section .channel-value {
    color: #111111 !important;
}

.channels-section .channel-note {
    color: #433D31 !important;
}

.channels-section .channel-icon {
    color: #2F6FED !important;
    background: rgba(47,111,237,0.12) !important;
    border-color: rgba(47,111,237,0.35) !important;
}

.channels-section .channel-block:hover {
    background: linear-gradient(150deg, #FFFFFF 0%, #EAF1FF 100%) !important;
}

.cta-section .btn-outline {
    color: #fff;
    border: 2px solid rgba(255,255,255,0.7);
}

.cta-section .btn-outline:hover,
.cta-section .btn-outline:focus,
.cta-section .btn-outline:active {
    background: rgba(249,168,37,0.10);
    color: #fff !important;
    border-color: #b9820c !important;
}

.cta-section {
    background: var(--uw-navy) !important;
}

.cta-section::before {
    background: radial-gradient(circle, rgba(185,130,12,0.10) 0%, transparent 70%) !important;
}
