.contact-hero {
    background: linear-gradient(135deg, rgba(85, 11, 20, 0.92) 0%, rgba(126, 105, 97, 0.9) 100%),
        url('../assets/hero-bg.png') center/cover;
    padding: 140px 0 70px;
    color: var(--white);
    text-align: center;
}

.contact-hero-content {
    max-width: 760px;
    margin: 0 auto;
}

.contact-hero h1 {
    color: var(--white);
    margin-bottom: 12px;
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.contact-hero p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.8;
}

.contact-page-section {
    padding: 60px 0 80px;
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 28px;
    align-items: stretch;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.contact-card {
    background: var(--white);
    padding: 24px;
    border-radius: 14px;
    border: 1px solid rgba(85, 11, 20, 0.08);
    box-shadow: var(--shadow-sm);
}

.contact-card h3 {
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.contact-card p {
    margin: 0;
    line-height: 1.8;
    color: var(--taupe-dark);
}

.contact-card a {
    color: var(--premium-burgundy);
    font-weight: 600;
}

.contact-map {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(85, 11, 20, 0.08);
    box-shadow: var(--shadow-sm);
    min-height: 520px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 520px;
    border: 0;
}

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

.contact-actions .btn {
    min-width: 190px;
    text-align: center;
}

.contact-actions .btn-primary {
    background: var(--premium-burgundy);
    color: var(--white);
    border: 2px solid var(--premium-burgundy);
}

.contact-actions .btn-primary:hover {
    background: var(--premium-burgundy-light);
    border-color: var(--premium-burgundy-light);
    color: var(--white);
}

.contact-actions .btn-secondary {
    background: var(--white);
    color: var(--premium-burgundy);
    border: 2px solid var(--premium-burgundy);
    box-shadow: 0 4px 12px rgba(85, 11, 20, 0.12);
}

.contact-actions .btn-secondary:hover {
    background: var(--premium-burgundy);
    color: var(--white);
    border-color: var(--premium-burgundy);
}

.nav-link-current {
    background: rgba(85, 11, 20, 0.08);
    color: var(--premium-burgundy);
}

/* Standalone page needs explicit floating-back styles */
.floating-back {
    position: fixed;
    top: 100px;
    left: 24px;
    width: 48px;
    height: 48px;
    background: var(--white);
    border: 2px solid var(--premium-burgundy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 1001;
    cursor: pointer;
    text-decoration: none;
    color: var(--premium-burgundy);
}

.floating-back:hover {
    transform: translateX(-4px) scale(1.05);
    background: var(--premium-burgundy);
    color: var(--white);
}

.floating-back svg {
    width: 24px;
    height: 24px;
}

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

    .contact-map {
        min-height: 420px;
    }

    .contact-map iframe {
        min-height: 420px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 120px 0 55px;
    }

    .contact-page-section {
        padding: 40px 0 60px;
    }

    .contact-card {
        padding: 18px;
    }

    .contact-actions {
        flex-direction: column;
    }

    .contact-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .floating-back {
        top: 80px;
        left: 16px;
        width: 44px;
        height: 44px;
    }
}
