.site-footer {
    background: #000;
    color: #fff;
    position: relative;
    bottom: 0;
    width: 100%;
}

.footer-container {
    max-width: 1440px;
    margin: auto;
    padding: 80px 20px 60px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 70px;
}

.footer-logo {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
}
.footer-logo img {
    width: 100%;
    max-width: 140px;
}

.footer-desc {
    color: #9a9a9a;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 24px;
    max-width: 430px;
    margin-bottom: 28px;
}

/* ── Contact ──────────────────────────────────────── */
.footer-contact { display: flex; flex-direction: column; gap: 12px; }

.footer-contact-help {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 18px;
    margin-bottom: 6px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-help-icon { flex-shrink: 0; color: #fff; opacity: .9; line-height: 0; }
.footer-help-text { display: flex; flex-direction: column; gap: 3px; }
.footer-help-label { font-size: 11px; font-weight: 500; text-transform: uppercase; color: #9a9a9a; }
.footer-help-number {
    font-size: 22px; font-weight: 800; color: #fff;
    text-decoration: none; line-height: 1.2; transition: opacity .2s;
}
.footer-help-number:hover { opacity: .75; }

.footer-contact-item {
    display: flex; align-items: flex-start; gap: 8px;
    font-size: 13px; line-height: 14px; color: #9a9a9a;
}
.footer-contact-item strong {
    flex-shrink: 0; color: #fff; font-weight: 600;
    font-size: 14px; text-transform: uppercase;
}
.footer-contact-item a { color: #9a9a9a; text-decoration: none; font-size: 14px; transition: color .2s; }
.footer-contact-item a:hover { color: #fff; }

/* ── Titles ───────────────────────────────────────── */
.footer-title {
    font-size: 18px; font-weight: 600;
    margin: 0; color: #fff; text-transform: uppercase;
}

/* ── Links ────────────────────────────────────────── */
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 16px; }
.footer-links a {
    color: #9f9f9f; text-decoration: none;
    font-size: 15px; text-transform: uppercase;
    transition: color .3s, padding-left .3s;
}
.footer-links a:hover { color: #fff; padding-left: 6px; }

/* ── Social ───────────────────────────────────────── */
.footer-social-list { display: flex; flex-direction: column; gap: 16px; }
.footer-social-item {
    display: flex; align-items: center; gap: 14px;
    color: #9f9f9f; text-decoration: none;
    font-size: 14px; text-transform: uppercase;
    transition: color .3s, transform .3s;
}
.footer-social-item:hover { color: #fff; transform: translateX(6px); }
.footer-social-icon {
    width: 42px; height: 42px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.03);
    flex-shrink: 0;
    transition: background .3s, border-color .3s;
}
.footer-social-item:hover .footer-social-icon {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.25);
}
.footer-social-icon svg { width: 18px; height: 18px; color: #fff; }

/* ── Bottom bar ───────────────────────────────────── */
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); }
.footer-bottom-inner {
    max-width: 1440px; margin: auto;
    padding: 24px 20px;
    display: flex; align-items: center;
    justify-content: space-between; gap: 20px;
}
.footer-bottom p { color: #8f8f8f; font-size: 14px; }
.footer-bottom-links { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.footer-bottom-links a { color: #9f9f9f; text-decoration: none; font-size: 14px; transition: color .3s; }
.footer-bottom-links a:hover { color: #fff; }

/* ── ACCORDION TRIGGER ────────────────────────────── */
/* Hidden on desktop — just shows the h4 normally */
.footer-acc-trigger {
    display: none;
}
/* Body always visible on desktop */
.footer-acc-body {
    display: block;
    padding-top: 28px; /* matches original margin-bottom on .footer-title */
}

/* ── TABLET ───────────────────────────────────────── */
@media (max-width: 991px) {
    .footer-container { grid-template-columns: 1fr 1fr; gap: 50px; }
}

/* Show the h4 title on desktop even though button is hidden */
@media (min-width: 768px) {
    .footer-acc-trigger {
        display: block;
        pointer-events: none; /* not clickable on desktop */
        padding: 0;
        margin-bottom: 16px;
        background: none;
        border: none;
        /*width: 100%;*/
    }
    .footer-acc-icon {
        display: none; /* hide chevron on desktop */
    }
    .footer-acc-body {
        padding-top: 0;
    }
}

/* ── MOBILE ───────────────────────────────────────── */
@media (max-width: 767px) {
    .footer-container {
        grid-template-columns: 1fr;
        padding: 60px 20px 0;
        gap: 0;
    }

    .footer-about {
        padding-bottom: 40px;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .footer-logo { font-size: 34px; }
    .footer-help-number { font-size: 18px; }

    /* Show trigger button, hide static title */
    .footer-acc-trigger {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        background: none;
        border: none;
        border-top: 1px solid rgba(255,255,255,.08);
        padding: 18px 0;
        cursor: pointer;
        text-align: left;
        color: #fff;
    }

    .footer-acc-icon {
        flex-shrink: 0;
        color: #9a9a9a;
        line-height: 0;
        transition: transform .35s ease;
    }
    
    .footer-title {
        font-size:16px;
    }

    /* Rotate chevron when open */
    .footer-acc-trigger[aria-expanded="true"] .footer-acc-icon {
        transform: rotate(180deg);
    }

    /* Collapsed by default on mobile */
    .footer-acc-body {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        padding-top: 0;
        transition: max-height .4s ease, opacity .35s ease;
    }

    /* When open — JS sets max-height inline, this handles spacing */
    .footer-acc-trigger[aria-expanded="true"] + .footer-acc-body {
        overflow: visible;
        padding-top:16px;
        padding-bottom: 20px;
    }
    
    .footer-social-icon {
    width: 30px;
    height: 30px;}
    
    .footer-social-list {
        gap:8px;
    }

    /* Last accordion has a bottom border */
    .footer-accordion:last-child .footer-acc-trigger {
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        padding-top: 28px;
        padding-bottom: 28px;
        gap:10px;
    }
    .footer-bottom-links { justify-content: center; }
}