/* ============================
   FOOTER STYLES
============================ */

.site-footer {
    background: #0f172a;
    color: #fff;
    padding: 60px 20px 30px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.footer-logo {
    width: 80px;
    margin-bottom: 10px;
}

.footer-brand h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
}

.footer-tagline {
    opacity: .75;
    margin-top: 6px;
}

.footer-links h4,
.footer-service-times h4,
.footer-social h4 {
    margin-bottom: 12px;
    font-size: 18px;
    color: gold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul,
.footer-social ul {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-social li {
    margin-bottom: 8px;
}

.footer-links a,
.footer-social a {
    color: #fff;
    opacity: .85;
    text-decoration: none;
}

.footer-links a:hover,
.footer-social a:hover {
    opacity: 1;
    color: gold;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    opacity: .7;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 12px;
}

/* BACK TO TOP BUTTON */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: gold;
    color: #000;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
    font-size: 22px;
    transition: transform .3s ease;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: scale(1.1);
}
