/* FOOTER WRAPPER */
.site-footer {
    background: #1A1A1A;
    color: #ffffff;
    padding: 40px 20px 20px;
    margin-top: 60px;
    font-size: 0.9rem;
}

/* GRID LAYOUT (replaces old flex for better control) */
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

/* BRAND SECTION */
.footer-brand {
    max-width: 250px;
}

.footer-logo {
    width: 160px;
    margin-bottom: 10px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: #F7C948;
}

/* SECTION HEADINGS */
.footer-links h4,
.footer-legal h4,
.footer-locations h4 {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #E91E63;
    border-bottom: 1px solid #333;
    padding-bottom: 6px;
}

/* LISTS */
.footer-links ul,
.footer-legal ul,
.footer-locations ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links a,
.footer-legal a,
.footer-locations a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 6px;
}

.footer-links a:hover,
.footer-legal a:hover,
.footer-locations a:hover {
    color: #E91E63;
}

/* REGION TITLES */
.footer-locations .region-title {
    margin-top: 18px;
    margin-bottom: 12px;
    font-weight: bold;
    color: #E91E63;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

/* SCROLLABLE LOCATION COLUMN */
.footer-locations {
    max-height: 320px;
    overflow-y: auto;
    padding-right: 10px;
}

/* Custom scrollbar (optional) */
.footer-locations::-webkit-scrollbar {
    width: 6px;
}

.footer-locations::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 3px;
}

.footer-locations::-webkit-scrollbar-track {
    background: #222;
}

/* FOOTER BOTTOM */
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 0.85rem;
    color: #ccc;
    border-top: 1px solid #333;
    padding-top: 20px;
}

/* RESPONSIVE TWEAKS */
@media (max-width: 600px) {
    .footer-locations {
        max-height: 200px;
    }
/* BRAND SECTION — applies to ALL screen sizes */
.footer-brand {
    text-align: center;
    justify-self: center;
}

.footer-logo {
    width: 160px;
    height: auto;
    display: block;
    margin: 0 auto 10px;
}

.footer-brand-text {
    display: block;
    width: 100%;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    color: #ffffff;
    letter-spacing: 1px;
    margin-top: 5px;
}



/* Mobile adjustments */
@media (max-width: 600px) {
    .footer-locations {
        max-height: 200px;
    }

    .footer-logo {
        width: 100px;
    }

    .footer-brand-text {
        font-size: 16px;
    }
}



}
