/* ===========================
   CONTACT PAGE STYLES
   =========================== */

/* ===== PAGE HERO BANNER ===== */
.page-hero {
    position: relative;
    padding: 160px 0 80px;
    background: var(--primary-blue);
    overflow: hidden;
    text-align: center;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0f2942 50%, #1a3a5c 100%);
    z-index: 0;
}

.page-hero-bg::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(232, 131, 12, 0.06);
    top: -150px;
    right: -100px;
}

.page-hero-bg::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(232, 131, 12, 0.04);
    bottom: -80px;
    left: 5%;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero-content {
    max-width: 650px;
    margin: 0 auto;
}

.page-hero-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
    background: rgba(232, 131, 12, 0.1);
    padding: 6px 18px;
    border-radius: 30px;
}

.page-hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.15;
}

.page-hero-title span {
    color: var(--accent-orange);
}

.page-hero-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 24px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--accent-orange);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb .current {
    color: var(--accent-orange);
    font-weight: 600;
}

/* ===== SHARED ===== */
.section {
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 10px;
    line-height: 1.25;
}

.section-title span {
    color: var(--accent-orange);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--gray-400);
    max-width: 600px;
    margin-bottom: 48px;
    line-height: 1.6;
}

.section-subtitle-sm {
    font-size: 0.92rem;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 28px;
}

.section-header.text-center {
    text-align: center;
    margin-bottom: 12px;
}

.text-center {
    text-align: center;
}

/* ===== CONTACT INFO CARDS ===== */
.contact-info-section {
    background: var(--white);
    padding-top: 0;
    margin-top: -50px;
    position: relative;
    z-index: 5;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.contact-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), #f5a623);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.contact-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-6px);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.1);
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(232, 131, 12, 0.1), rgba(232, 131, 12, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--accent-orange);
    transition: all var(--transition-base);
}

.contact-card:hover .contact-card-icon {
    background: var(--accent-orange);
    color: var(--white);
    transform: scale(1.1);
}

.contact-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 0.88rem;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 10px;
}

.contact-card p a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.contact-card p a:hover {
    color: var(--accent-orange);
}

.contact-card-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent-orange);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.contact-card-link:hover {
    text-decoration: underline;
}

.contact-card-note {
    font-size: 0.75rem;
    color: var(--gray-300);
    font-style: italic;
}

/* ===== FORM + MAP SECTION ===== */
.form-map-section {
    background: var(--off-white);
}

.form-map-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: start;
}

/* --- Form Wrapper (reusable form component) --- */
.contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

/* --- Map & Social --- */
.contact-map-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
}

/* --- Social Links --- */
.contact-social {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 20px;
}

.contact-social h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 14px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    text-decoration: none;
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--accent-orange);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(232, 131, 12, 0.3);
}

/* ===== CONTACT FAQ GRID ===== */
.contact-faq-section {
    background: var(--white);
}

.contact-faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cfaq-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: all var(--transition-base);
}

.cfaq-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}

.cfaq-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.cfaq-card h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.cfaq-card p {
    font-size: 0.85rem;
    color: var(--gray-400);
    line-height: 1.6;
}

/* ===== CONTACT CTA ===== */
.contact-cta-section {
    background: var(--off-white);
}

.contact-cta-card {
    background: linear-gradient(135deg, var(--primary-blue), #0f2942);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-cta-card::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(232, 131, 12, 0.06);
    top: -150px;
    right: -100px;
}

.contact-cta-card h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
    position: relative;
}

.contact-cta-card h2 span {
    color: var(--accent-orange);
}

.contact-cta-card p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.contact-cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    position: relative;
}

.contact-cta-actions .btn-primary {
    background: var(--accent-orange);
    color: var(--white);
}

.contact-cta-actions .btn-primary:hover {
    background: #d4760a;
}

.contact-cta-actions .btn-outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.contact-cta-actions .btn-outline:hover {
    background: var(--white);
    color: var(--primary-blue);
    border-color: var(--white);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-map-grid {
        grid-template-columns: 1fr;
    }

    .contact-faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 120px 0 60px;
    }

    .page-hero-title {
        font-size: 2.2rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        margin-bottom: 32px;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .contact-info-section {
        margin-top: -30px;
    }



    .contact-faq-grid {
        grid-template-columns: 1fr;
    }

    .contact-cta-card {
        padding: 40px 24px;
    }

    .contact-cta-card h2 {
        font-size: 1.6rem;
    }

    .contact-cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 100px 0 48px;
    }

    .page-hero-title {
        font-size: 1.8rem;
    }

    .section {
        padding: 48px 0;
    }

    .section-title {
        font-size: 1.4rem;
    }
}