/* TestSeriesPoint — contact-us.css */
/* ── Hero ── */
    .contact-hero {
        background: linear-gradient(135deg, #0C447C 0%, #185FA5 55%, #0F6E56 100%);
        border-radius: 16px;
        padding: 3.5rem 2rem 2.75rem;
        text-align: center;
        position: relative;
        overflow: hidden;
        margin-bottom: 2.5rem;
    }
    .contact-hero::before {
        content: '';
        position: absolute;
        top: -50px; right: -50px;
        width: 200px; height: 200px;
        border-radius: 50%;
        background: rgba(255,255,255,0.05);
    }
    .contact-hero::after {
        content: '';
        position: absolute;
        bottom: -60px; left: -30px;
        width: 240px; height: 240px;
        border-radius: 50%;
        background: rgba(255,255,255,0.04);
    }
    .contact-hero .hero-badge {
        display: inline-block;
        background: rgba(255,255,255,0.16);
        color: #fff;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.08em;
        padding: 5px 16px;
        border-radius: 20px;
        margin-bottom: 0.85rem;
        text-transform: uppercase;
    }
    .contact-hero h1 {
        font-size: 2.4rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 0.65rem;
        line-height: 1.2;
        position: relative;
        z-index: 1;
    }
    .contact-hero p.hero-sub {
        font-size: 0.95rem;
        color: rgba(255,255,255,0.82);
        max-width: 500px;
        margin: 0 auto;
        line-height: 1.75;
        position: relative;
        z-index: 1;
    }

    /* ── Info Cards ── */
    .info-cards-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
        margin-bottom: 2rem;
    }
    .info-card-box {
        background: #fff;
        border: 1px solid #e9ecef;
        border-radius: 14px;
        padding: 1.5rem 1.25rem;
        text-align: center;
        transition: box-shadow 0.25s, border-color 0.25s;
    }
    .info-card-box:hover {
        box-shadow: 0 6px 24px rgba(24,95,165,0.1);
        border-color: #b5d4f4;
    }
    .ic-wrap {
        width: 52px; height: 52px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1rem;
        font-size: 1.5rem;
    }
    .ic-blue   { background: #E6F1FB; }
    .ic-teal   { background: #E1F5EE; }
    .ic-amber  { background: #FAEEDA; }
    .ic-purple { background: #EEEDFE; }
    .info-card-box h3 {
        font-size: 0.95rem;
        font-weight: 700;
        color: #212529;
        margin-bottom: 0.4rem;
    }
    .info-card-box p,
    .info-card-box a {
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.65;
        margin: 0;
        text-decoration: none;
    }
    .info-card-box a {
        color: #185FA5;
        font-weight: 500;
    }
    .info-card-box a:hover { text-decoration: underline; }

    /* ── Contact Form Card ── */
    .contact-form-card {
        background: #fff;
        border: 1px solid #e9ecef;
        border-radius: 16px;
        padding: 2rem;
        margin-bottom: 1.5rem;
        box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    }
    .form-section-eyebrow {
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: #185FA5;
        margin-bottom: 0.3rem;
    }
    .contact-form-card h2 {
        font-size: 1.35rem;
        font-weight: 700;
        color: #212529;
        margin-bottom: 1.5rem;
    }
    .form-label-custom {
        font-size: 0.82rem;
        font-weight: 600;
        color: #495057;
        margin-bottom: 5px;
        display: block;
    }
    .form-control-custom {
        width: 100%;
        background: #f8f9fa;
        border: 1px solid #dee2e6;
        border-radius: 10px;
        padding: 10px 14px;
        font-size: 0.875rem;
        color: #212529;
        transition: border-color 0.2s, box-shadow 0.2s;
        outline: none;
    }
    .form-control-custom:focus {
        border-color: #185FA5;
        box-shadow: 0 0 0 3px rgba(24,95,165,0.12);
        background: #fff;
    }
    textarea.form-control-custom {
        resize: vertical;
        min-height: 130px;
        font-family: inherit;
    }
    .btn-send {
        background: #185FA5;
        color: #fff;
        border: none;
        border-radius: 10px;
        padding: 13px 32px;
        font-size: 0.9rem;
        font-weight: 600;
        cursor: pointer;
        width: 100%;
        transition: background 0.2s;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    .btn-send:hover { background: #0C447C; }

    /* Success / error flash */
    .form-success {
        display: none;
        background: #E1F5EE;
        border: 1px solid #9FE1CB;
        border-radius: 10px;
        padding: 1rem 1.25rem;
        font-size: 0.875rem;
        color: #085041;
        margin-top: 1rem;
        font-weight: 500;
    }

    /* ── Social Strip ── */
    .social-strip {
        background: #f8f9fa;
        border: 1px solid #e9ecef;
        border-radius: 14px;
        padding: 1.25rem 1.5rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    .social-strip p {
        font-size: 0.875rem;
        color: #495057;
        margin: 0;
        font-weight: 500;
    }
    .social-links-row { display: flex; gap: 8px; flex-wrap: wrap; }
    .social-chip {
        display: inline-block;
        font-size: 11px;
        font-weight: 600;
        padding: 6px 14px;
        border-radius: 20px;
        background: #fff;
        border: 1px solid #dee2e6;
        color: #495057;
        text-decoration: none;
        transition: border-color 0.2s, color 0.2s;
    }
    .social-chip:hover { border-color: #185FA5; color: #185FA5; }

    /* ── FAQ Section ── */
    .faq-card {
        background: #fff;
        border: 1px solid #e9ecef;
        border-radius: 16px;
        padding: 1.75rem 2rem;
        margin-bottom: 1.5rem;
    }
    .faq-card h3 {
        font-size: 1.1rem;
        font-weight: 700;
        color: #212529;
        margin-bottom: 1.25rem;
    }
    .faq-item {
        border-top: 1px solid #f1f3f5;
        padding: 1rem 0;
    }
    .faq-item:first-of-type { border-top: none; padding-top: 0; }
    .faq-item:last-of-type  { padding-bottom: 0; }
    .faq-q {
        font-size: 0.9rem;
        font-weight: 600;
        color: #212529;
        margin-bottom: 0.35rem;
    }
    .faq-a {
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.75;
        margin: 0;
    }

    /* ── Disclaimer ── */
    .note-box {
        background: #FAEEDA;
        border: 1px solid #FAC775;
        border-radius: 10px;
        padding: 1rem 1.25rem;
        margin-bottom: 1.5rem;
    }
    .note-box p {
        font-size: 0.82rem;
        color: #854F0B;
        line-height: 1.75;
        margin: 0;
    }

    @media (max-width: 767px) {
        .contact-hero h1 { font-size: 1.8rem; }
        .info-cards-grid { grid-template-columns: 1fr 1fr; }
        .social-strip { flex-direction: column; align-items: flex-start; }
        .contact-form-card { padding: 1.25rem; }
        .faq-card { padding: 1.25rem; }
    }
