/* ─── Unified Site Footer ─── */
/* Shared by all pages — avoids .footer class to prevent conflicts with luxury.css */

.site-footer {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(212, 168, 67, 0.2);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
    color: #ccc;
    font-family: 'Lucida Sans', 'Inter', Arial, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 0;
    margin-top: 2rem;
}

.site-footer .footer-grid {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 2rem 2rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 2.5rem;
}

.site-footer .footer-logo {
    margin: 0 0 0.75rem;
}

.site-footer .footer-logo img {
    height: 50px;
    width: auto;
    display: block;
}

.site-footer .footer-desc {
    color: #aaa;
    font-size: 0.88rem;
    line-height: 1.7;
    margin: 0;
}

.site-footer .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.site-footer .footer-heading {
    font-family: 'Bebas Neue', 'Cormorant Garamond', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    color: #d4a843;
    margin: 0 0 0.5rem;
    text-transform: uppercase;
}

.site-footer .footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    font-size: 0.9rem;
}

.site-footer .footer-links a:hover {
    color: #f5e6a3;
    text-shadow: 0 0 10px rgba(212, 168, 67, 0.3);
}

.site-footer .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.site-footer .footer-cta {
    display: inline-block;
    background: linear-gradient(135deg, #d4a843, #b8922e);
    color: #1a1a1a;
    font-weight: 700;
    text-decoration: none;
    padding: 0.6rem 1.4rem;
    border-radius: 6px;
    font-size: 0.9rem;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.site-footer .footer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 168, 67, 0.4);
}

.site-footer .footer-cta-secondary {
    display: inline-block;
    background: transparent;
    color: #ccc;
    font-weight: 700;
    text-decoration: none;
    padding: 0.6rem 1.4rem;
    border: 1px solid rgba(212, 168, 67, 0.4);
    border-radius: 6px;
    font-size: 0.9rem;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.site-footer .footer-cta-secondary:hover {
    transform: translateY(-2px);
    border-color: #d4a843;
    color: #f5e6a3;
    box-shadow: 0 4px 15px rgba(212, 168, 67, 0.2);
}

.site-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    padding: 1.2rem 2rem;
}

.site-footer .footer-bottom p {
    margin: 0;
    font-size: 0.82rem;
    color: #777;
}

.site-footer .footer-bottom a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer .footer-bottom a:hover {
    color: #f5e6a3;
}

/* ─── Light variant for Babel brand pages (index, services, contact) ─── */
.site-footer.light {
    background: #f8f9fa;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-top: 1px solid #e9ecef;
    box-shadow: none;
    color: #666;
}

.site-footer.light .footer-logo img {
    /* Logo image inherits same size in light variant */
}

.site-footer.light .footer-desc {
    color: #888;
}

.site-footer.light .footer-heading {
    color: #F4A5A5;
}

.site-footer.light .footer-links a {
    color: #666;
}

.site-footer.light .footer-links a:hover {
    color: #F4A5A5;
    text-shadow: none;
}

.site-footer.light .footer-cta {
    background: #F4A5A5;
    color: white;
    border-radius: 25px;
}

.site-footer.light .footer-cta:hover {
    box-shadow: 0 4px 15px rgba(244, 165, 165, 0.4);
}

.site-footer.light .footer-cta-secondary {
    color: #666;
    border-color: rgba(244, 165, 165, 0.4);
}

.site-footer.light .footer-cta-secondary:hover {
    border-color: #F4A5A5;
    color: #F4A5A5;
    box-shadow: 0 4px 15px rgba(244, 165, 165, 0.2);
}

.site-footer.light .footer-bottom {
    border-top: 1px solid #e9ecef;
}

.site-footer.light .footer-bottom p {
    color: #aaa;
}

.site-footer.light .footer-bottom a {
    color: #999;
}

.site-footer.light .footer-bottom a:hover {
    color: #F4A5A5;
}

/* ─── Mobile: single-column stack ─── */
@media (max-width: 768px) {
    .site-footer .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem 1.5rem;
        text-align: center;
    }

    .site-footer .footer-logo img {
        margin: 0 auto;
    }

    .site-footer .footer-links {
        align-items: center;
    }

    .site-footer .footer-contact {
        align-items: center;
    }

}
