/* ========================================
    Connect With Us Page - Theme Aligned
    Primary: Gold
    Background: White / Smoky White / Glassy White
    ======================================== */

:root {
     --gold: #c9a227;
     --gold-deep: #a97c1b;
     --gold-soft: rgba(201, 162, 39, 0.15);
     --white: #ffffff;
     --white-smoky: #f7f7f5;
     --white-ice: #f3f4f6;
     --white-glass: rgba(255, 255, 255, 0.75);
     --ink: #1f2937;
     --ink-muted: #6b7280;
}

.connect-wrapper {
    background: linear-gradient(135deg, var(--white-smoky) 0%, var(--white-ice) 100%);
    min-height: 100vh;
}

/* ── Header Section ── */
.connect-header {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
    padding: 80px 0 60px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.connect-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    filter: blur(40px);
}

.connect-header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    filter: blur(40px);
}

.header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.header-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 16px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.header-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    margin: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Main Grid Layout ── */
.connect-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 4rem 0;
    align-items: start;
}

.connect-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* ── Contact Cards Grid ── */
.contact-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-card-enhanced {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(169, 124, 27, 0.12);
    border: 2px solid var(--gold-soft);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-deep) 100%);
}

.contact-card-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(169, 124, 27, 0.2);
    border-color: var(--gold);
}

.card-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
    border-radius: 12px;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--white);
}

.contact-card-enhanced h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 1rem;
}

.contact-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: var(--gold-deep);
}

.contact-address {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.8;
    margin: 1rem 0;
}

.contact-hours {
    font-size: 0.85rem;
    color: var(--ink-muted);
    margin: 0.75rem 0 0;
    font-weight: 500;
}

/* ── WhatsApp Section ── */
.whatsapp-section {
    padding: 2rem;
    background: linear-gradient(135deg, var(--white-glass) 0%, var(--white) 100%);
    border-radius: 16px;
    border: 2px solid var(--gold-soft);
}

.whatsapp-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.whatsapp-box i {
    font-size: 3rem;
    color: var(--gold);
}

.whatsapp-box h4 {
    margin: 0 0 0.5rem;
    color: var(--ink);
    font-size: 1.1rem;
}

.whatsapp-box p {
    margin: 0 0 1rem;
    color: var(--ink-muted);
    font-size: 0.95rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, var(--gold-deep) 0%, #8b6516 100%);
    transform: translateX(4px);
}

/* ── Map Section ── */
.connect-map-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(169, 124, 27, 0.18);
    border: 2px solid var(--gold-soft);
    min-height: 500px;
}

.map-container iframe {
    border-radius: 14px;
}

.get-directions {
    text-align: center;
}

.directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 8px 24px rgba(169, 124, 27, 0.3);
    transition: all 0.3s ease;
}

.directions-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(169, 124, 27, 0.4);
}

/* ── CTA Section ── */
.connect-cta-section {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
    padding: 4rem 0;
    margin-top: 4rem;
    color: var(--white);
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 3rem;
    background: var(--white);
    color: var(--gold);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}

/* ── Responsive Design ── */
@media (max-width: 1024px) {
    .connect-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .header-title {
        font-size: 2.5rem;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .connect-header {
        padding: 60px 0 40px;
    }

    .header-title {
        font-size: 2rem;
    }

    .header-subtitle {
        font-size: 1rem;
    }

    .connect-grid {
        padding: 2rem 0;
    }

    .contact-card-enhanced {
        padding: 1.5rem;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
    }

    .card-icon-box {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .whatsapp-box {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .whatsapp-box i {
        font-size: 2.5rem;
    }

    .map-container {
        min-height: 350px;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-btn {
        font-size: 1rem;
        padding: 0.85rem 2.5rem;
    }
}

@media (max-width: 480px) {
    .header-title {
        font-size: 1.5rem;
    }

    .contact-card-enhanced {
        padding: 1.25rem;
    }

    .contact-value {
        font-size: 1rem;
    }

    .contact-address {
        font-size: 0.9rem;
    }

    .directions-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .map-container {
        min-height: 300px;
    }

    .connect-cta-section {
        padding: 2rem 0;
    }

    .cta-content h2 {
        font-size: 1.4rem;
    }

    .cta-btn {
        display: flex;
        justify-content: center;
    }
}
