:root {
    --contact-primary: #0B4DBA;
    --contact-deep: #072B6F;
    --contact-accent: #F6B400;
    --contact-bg: #F7FAFF;
    --contact-text: #1F2937;
    --contact-muted: #64748B;
}

.contactus-page {
    background: var(--contact-bg);
    color: var(--contact-text);
}

.section-space {
    padding: 40px 0;
}

.contact-hero {
    position: relative;
    min-height: 62vh;
    display: flex;
    align-items: center;
    background-image: linear-gradient(130deg, #083584 0%, #0b4dba 46%, #1e88e5 100%);
    overflow: hidden;
}

.hero-layer {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 15% 20%, #f6b40033 0, transparent 38%),
        radial-gradient(circle at 90% 80%, #ffffff1a 0, transparent 36%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: center;
    max-width: 1000px;
}

.hero-eyebrow {
    display: inline-block;
    background: #ffffff1f;
    border: 1px solid #ffffff40;
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.contact-hero h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 14px;
    color: #fff;
}

.hero-subtitle {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.08rem;
    line-height: 1.7;
    color: #e8f0ff;
}

.hero-points {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-points span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 14px;
    border-radius: 999px;
    background: #ffffff1a;
    border: 1px solid #ffffff2b;
    color: #f8fbff;
    font-size: 0.92rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 26px;
    align-items: start;
}

.contact-form-card,
.contact-side-card {
    background: #fff;
    border: 1px solid #e4eaf5;
    border-radius: 20px;
    box-shadow: 0 10px 25px #0b4dba12;
}

.contact-form-card {
    padding: 28px;
}

.contact-form-card h2 {
    font-size: 1.9rem;
    color: var(--contact-primary);
    margin-bottom: 8px;
}

.form-note {
    color: var(--contact-muted);
    margin-bottom: 20px;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.field-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 14px;
}

.field-group label {
    margin-bottom: 7px;
    font-weight: 600;
    color: #24304a;
}

.field-group input,
.field-group select,
.field-group textarea {
    border: 1px solid #ccd7eb;
    border-radius: 12px;
    padding: 13px 14px;
    font-family: 'Crimson Pro', serif;
    color: #1d2a46;
    background: #fff;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
    outline: none;
    border-color: var(--contact-primary);
    box-shadow: 0 0 0 3px #0b4dba1f;
}

.submit-btn {
    border: none;
    margin-top: 8px;
    padding: 13px 26px;
    font-weight: 600;
}

.contact-side-card {
    padding: 26px;
    background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
}

.contact-side-card h3 {
    color: var(--contact-primary);
    margin-bottom: 8px;
    font-size: 1.5rem;
}

.contact-side-card > p {
    color: var(--contact-muted);
    line-height: 1.7;
    margin-bottom: 18px;
}

.info-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid #e6edf8;
}

.info-item:last-of-type {
    border-bottom: none;
}

.info-item i {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--contact-primary);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 0.95rem;
    margin-bottom: 3px;
    color: #1f2e49;
}

.info-item p {
    color: #4b5f84;
    line-height: 1.5;
}

.social-row {
    margin-top: 16px;
    display: flex;
    gap: 10px;
}

.social-row a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--contact-primary);
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.social-row a:hover {
    transform: translateY(-3px);
    background: var(--contact-accent);
    color: #1b2538;
}

.location-section {
    padding: 6px 0 30px;
}

.location-head {
    text-align: center;
    margin-bottom: 18px;
}

.location-head h2 {
    font-size: 2rem;
    color: var(--contact-primary);
    margin-bottom: 5px;
}

.location-head p {
    color: #516483;
}

.map-wrap {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #d8e4f7;
    box-shadow: 0 10px 28px #0b4dba12;
    background: #fff;
}

.map-wrap iframe {
    width: 100%;
    height: 430px;
    border: 0;
    display: block;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .section-space {
        padding: 26px 0;
    }

    .contact-hero {
        min-height: 54vh;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.98rem;
    }

    .field-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-card,
    .contact-side-card {
        padding: 20px;
        border-radius: 14px;
    }

    .location-head h2 {
        font-size: 1.6rem;
    }

    .map-wrap iframe {
        height: 320px;
    }
}

@media (max-width: 480px) {
    .hero-points span {
        width: 100%;
        justify-content: center;
    }

    .contact-hero h1 {
        font-size: 1.7rem;
    }

    .contact-form-card h2 {
        font-size: 1.5rem;
    }

    .map-wrap iframe {
        height: 260px;
    }
}
