/* ===== FOOTER PREMIUM - DARK ELEGANT ===== */
.site-footer {
    background: linear-gradient(135deg, var(--brand-green-dark) 0%, #1a5a3e 100%) !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.85) !important;
    transition: all 0.3s ease;
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--brand-gold) !important;
    transform: translateX(2px);
}

.site-footer .text-text-medium {
    color: rgba(255, 255, 255, 0.8) !important;
}

.site-footer .text-text-medium:hover {
    color: var(--brand-gold) !important;
}

/* Footer Stats */
.footer-stats__item-value {
    color: var(--brand-gold) !important;
    font-size: 1.75rem;
    font-weight: 700;
}

.footer-stats__item-label {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.875rem;
}

.footer-stats__grid {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Social Icons */
.site-footer .text-text-medium svg,
.site-footer a svg {
    color: rgba(255, 255, 255, 0.8);
    fill: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.site-footer a:hover svg {
    color: var(--brand-gold);
    fill: var(--brand-gold);
    transform: scale(1.15);
}

/* Navigation Links */
.site-footer nav ul li a {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 1rem;
}

.site-footer nav ul li a:hover {
    color: var(--brand-gold) !important;
}

/* Footer Headings - Minimum 1rem */
.site-footer h4 {
    color: #ffffff !important;
    font-size: 1.125rem !important;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .site-footer h4 {
        font-size: 1rem !important;
    }
}

/* Footer Copyright */
.footer-copyright__text {
    color: rgba(255, 255, 255, 0.7) !important;
}

.footer-copyright__brand {
    color: var(--brand-gold) !important;
    font-weight: 600;
}

/* Newsletter Section - Elegant Dark */
.newsletter-section {
    background: rgba(0, 0, 0, 0.2) !important;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    padding-left: calc(50vw - 50%) !important;
    padding-right: calc(50vw - 50%) !important;
    width: 100vw !important;
}
/* Footer Columns - horizontal desktop, vertical mobile */
.footer-columns {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
@media (min-width: 1024px) {
    .footer-columns {
        flex-direction: row;
        justify-content: space-between;
    }
    .footer-columns > * {
        flex: 1;
    }
}
