/* ── Hero ───────────────────────────────────────────────── */
.contact-hero {
    background: linear-gradient(135deg, #050b2e 0%, #0f1f6e 40%, #1e40af 100%);
    padding: 4rem 0 3.5rem;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.contact-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(245,200,66,.07) 0%, transparent 50%),
                      radial-gradient(circle at 80% 30%, rgba(255,255,255,.03) 0%, transparent 40%);
    pointer-events: none;
}
.contact-hero-icon {
    width: 64px; height: 64px; border-radius: 18px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; margin: 0 auto 1.25rem;
    color: #fff;
}
.contact-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; margin-bottom: .6rem;
}
.contact-hero p { color: rgba(255,255,255,.65); font-size: 1rem; margin: 0; }

/* ── Info Cards Row ─────────────────────────────────────── */
.contact-cards-row {
    background: #f5f7ff;
    padding: 2.5rem 0 0;
}
.contact-info-card {
    background: #fff;
    border: 1.5px solid #eef0fa;
    border-radius: 16px;
    padding: 1.5rem 1.25rem;
    text-align: center;
    height: 100%;
    transition: box-shadow .2s, transform .2s;
}
.contact-info-card:hover {
    box-shadow: 0 8px 28px rgba(13,27,110,.1);
    transform: translateY(-3px);
}
.contact-info-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: linear-gradient(135deg, #0f1f6e, #2563eb);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: #fff;
    margin: 0 auto .9rem;
}
.contact-info-card h6 {
    font-family: 'Poppins', sans-serif;
    font-size: .78rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .1em;
    color: #1A237E; margin-bottom: .5rem;
}
.contact-info-card p, .contact-info-card a {
    font-size: .875rem; color: #6b7280;
    text-decoration: none; margin: 0; line-height: 1.7;
    word-break: break-word; overflow-wrap: break-word;
}
.contact-info-card a:hover { color: #1A237E; }
.contact-info-card .info-sub {
    display: inline-block;
    font-size: .72rem; font-weight: 600;
    color: #1565C0;
    background: rgba(21,101,192,.07);
    border: 1px solid rgba(21,101,192,.15);
    border-radius: 20px;
    padding: .2rem .65rem;
    margin-top: .5rem;
    letter-spacing: .01em;
}

/* Social icon row */
.contact-social { display: flex; justify-content: center; gap: .5rem; margin-top: .5rem; }
.contact-social a {
    width: 32px; height: 32px; border-radius: 50%;
    border: 1.5px solid #d0d5ee;
    display: inline-flex; align-items: center; justify-content: center;
    color: #6b7280; font-size: .8rem;
    text-decoration: none; transition: .15s;
}
.contact-social a:hover { background: #1A237E; border-color: #1A237E; color: #fff; }

/* ── Main Section (form + map) ──────────────────────────── */
.contact-main {
    background: #f5f7ff;
    padding: 3rem 0 4rem;
}

/* Form Card */
.contact-form-card {
    background: #fff;
    border: 1.5px solid #eef0fa;
    border-radius: 20px;
    padding: 2rem 2rem 2.25rem;
    box-shadow: 0 4px 24px rgba(13,27,110,.07);
}
.contact-form-card h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem; font-weight: 800;
    color: #0d1b6e; margin-bottom: 1.5rem;
}

.cf-label {
    font-size: .78rem; font-weight: 700;
    color: #374151; letter-spacing: .03em;
    margin-bottom: .4rem; display: block;
}
.cf-label .req { color: #e53e3e; margin-left: 2px; }

.cf-input, .cf-select, .cf-textarea {
    width: 100%; box-sizing: border-box;
    padding: .75rem 1rem;
    border: 1.5px solid #e5e8f5;
    border-radius: 10px;
    font-size: .9rem; color: #1a1a2e;
    font-family: 'Inter', sans-serif;
    background: #fff; outline: none;
    transition: border-color .15s, box-shadow .15s;
}
.cf-input:focus, .cf-select:focus, .cf-textarea:focus {
    border-color: #1A237E;
    box-shadow: 0 0 0 3px rgba(26,35,126,.09);
}
.cf-input.is-invalid, .cf-select.is-invalid, .cf-textarea.is-invalid {
    border-color: #e53e3e;
}
.cf-error { color: #e53e3e; font-size: .72rem; margin-top: .3rem; display: block; }
.cf-textarea { resize: vertical; min-height: 130px; }

.cf-counter { text-align: right; font-size: .72rem; color: #aab0cc; margin-top: .3rem; }

.btn-cf-submit {
    width: 100%; margin-top: .25rem;
    background: linear-gradient(135deg, #0f1f6e, #2563eb);
    color: #fff; border: none; border-radius: 50px;
    padding: .85rem 1.5rem; font-size: .95rem; font-weight: 700;
    cursor: pointer; transition: opacity .15s, transform .15s;
    font-family: 'Inter', sans-serif;
}
.btn-cf-submit:hover { opacity: .9; transform: translateY(-1px); }

/* Success banner */
.cf-success {
    background: #e8f5e9; border: 1px solid #a5d6a7;
    border-radius: 12px; padding: 1rem 1.25rem;
    display: flex; align-items: center; gap: .75rem;
    margin-bottom: 1.5rem;
    font-size: .9rem; color: #1b5e20; font-weight: 600;
}

/* ── Side Info Card ─────────────────────────────────────── */
.contact-side-card {
    background: linear-gradient(160deg, #0a1650 0%, #0f2080 50%, #1565C0 100%);
    border-radius: 20px;
    padding: 2rem;
    color: #fff;
    height: 100%;
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 16px 40px rgba(5,12,50,.3);
}
.contact-side-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem; font-weight: 700; margin-bottom: 1.75rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.side-info-item {
    display: flex; gap: 1rem; align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.side-info-item:last-child { border-bottom: none; padding-bottom: 0; }
.side-info-icon {
    width: 42px; height: 42px; flex-shrink: 0;
    border-radius: 12px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.14);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: rgba(245,200,66,.9);
}
.side-info-label { font-size: .68rem; font-weight: 700; color: rgba(255,255,255,.45); letter-spacing: .1em; text-transform: uppercase; margin-bottom: .25rem; }
.side-info-value { font-size: .875rem; color: rgba(255,255,255,.82); line-height: 1.65; }
.side-info-value a { color: #93c5fd; text-decoration: none; }
.side-info-value a:hover { color: #fff; }

.side-hours-grid {
    background: rgba(255,255,255,.06);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 1.5rem;
}
.side-hours-row {
    display: flex; justify-content: space-between;
    font-size: .82rem; padding: .35rem 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
    color: rgba(255,255,255,.75);
}
.side-hours-row:last-child { border-bottom: none; }
.side-hours-row .day { color: rgba(255,255,255,.5); }

/* ── Map Section ────────────────────────────────────────── */
.contact-map-section {
    padding: 3rem 0;
    background: #fff;
}
.contact-map-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem; font-weight: 800; color: #0d1b6e;
    margin-bottom: .4rem;
}
.contact-map-section p { font-size: .875rem; color: #6b7280; margin-bottom: 1.5rem; }
.map-frame {
    border-radius: 16px; overflow: hidden;
    border: 1.5px solid #eef0fa;
    box-shadow: 0 4px 20px rgba(13,27,110,.07);
    height: 340px;
}
.map-frame iframe { width: 100%; height: 100%; border: none; display: block; }

/* ── FAQ Section ────────────────────────────────────────── */
.contact-faq {
    padding: 3.5rem 0 4rem;
    background: #f5f7ff;
}
.contact-faq h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem; font-weight: 900; color: #0d1b6e;
    margin-bottom: .4rem;
}
.contact-faq .faq-sub { font-size: .875rem; color: #6b7280; margin-bottom: 2rem; }

.faq-item {
    background: #fff;
    border: 1.5px solid #eef0fa;
    border-radius: 14px;
    margin-bottom: .75rem;
    overflow: hidden;
}
.faq-question {
    width: 100%; text-align: left;
    background: none; border: none; outline: none;
    padding: 1.1rem 1.4rem;
    font-size: .95rem; font-weight: 600; color: #0d1b6e;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    gap: 1rem;
    transition: background .15s;
}
.faq-question:hover { background: #f8f9ff; }
.faq-chevron {
    width: 20px; height: 20px; flex-shrink: 0;
    border: 1.5px solid #d0d5ee; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: transform .25s, background .15s;
    font-size: .7rem; color: #6b7280;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); background: #1A237E; border-color: #1A237E; color: #fff; }
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
    padding: 0 1.4rem;
    font-size: .875rem; color: #6b7280; line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 1.4rem 1.2rem; }

@media (max-width: 767px) {
    .contact-hero h1 { font-size: 1.7rem; }
    .contact-form-card { padding: 1.5rem 1.25rem; }
    .contact-side-card { margin-top: 1.5rem; }
    .map-frame { height: 250px; }
}

@media (max-width: 480px) {
    .contact-hero { padding: 2rem 0 1.5rem; }
    .contact-hero h1 { font-size: 1.35rem; }
    .contact-form-card { padding: 1rem .9rem; border-radius: 14px; }
    .contact-info-grid { grid-template-columns: 1fr; }
    .contact-info-card { padding: 1rem 1.1rem; flex-direction: row; align-items: flex-start; }
    .faq-section { padding: 2rem 0; }
    .faq-question { font-size: .9rem; padding: .95rem 1rem; }
    .contact-social { gap: .5rem; }
}
