/* =========================================================================
   Action Car Rental — premium site footer (scoped under .acr-footer)
   Design-only refresh. No new features, no logic changes.
   ========================================================================= */
.acr-footer {
    --f-bg: #0d1016;
    --f-bg-2: #11151c;
    --f-line: rgba(255, 255, 255, 0.09);
    --f-ink: #f4f5f7;
    --f-muted: #9aa1ad;
    --f-soft: #c4c9d2;
    --f-orange: #f2730c;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(80% 130% at 100% 0%, rgba(242, 115, 12, 0.10) 0%, rgba(242, 115, 12, 0) 55%),
        linear-gradient(180deg, var(--f-bg-2) 0%, var(--f-bg) 100%);
    color: var(--f-soft);
}
.acr-footer *,
.acr-footer *::before,
.acr-footer *::after { box-sizing: border-box; }

.acr-footer__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 64px 28px 28px;
}

/* ---- Top grid ---- */
.acr-footer__top {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--f-line);
}

/* Brand column */
.acr-footer__brand-name {
    font-family: "Sora", "Inter", sans-serif;
    font-size: 21px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--f-ink);
    margin: 0 0 12px;
}
.acr-footer__brand-name b { color: var(--f-orange); font-weight: 600; }
.acr-footer__tagline {
    margin: 0;
    max-width: 34ch;
    font-size: 15px;
    line-height: 1.65;
    color: var(--f-muted);
}

/* Column headings */
.acr-footer__col h4 {
    font-family: "Sora", "Inter", sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: var(--f-ink);
    margin: 2px 0 18px;
}

/* Contact list */
.acr-footer__contact { list-style: none; margin: 0; padding: 0; }
.acr-footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-bottom: 14px;
    font-size: 14.5px;
    line-height: 1.5;
    color: var(--f-soft);
}
.acr-footer__contact li:last-child { margin-bottom: 0; }
.acr-footer__contact a { color: var(--f-soft); text-decoration: none; transition: color .15s ease; }
.acr-footer__contact a:hover { color: #fff; }
.acr-footer__ic {
    flex-shrink: 0;
    width: 17px;
    height: 17px;
    margin-top: 2px;
    stroke: var(--f-orange);
    fill: none;
    stroke-width: 1.7;
}

/* Quick links */
.acr-footer__links { list-style: none; margin: 0; padding: 0; }
.acr-footer__links li { margin-bottom: 12px; }
.acr-footer__links li:last-child { margin-bottom: 0; }
.acr-footer__links a {
    position: relative;
    font-size: 14.5px;
    color: var(--f-muted);
    text-decoration: none;
    transition: color .15s ease, padding-left .15s ease;
}
.acr-footer__links a::before {
    content: "";
    position: absolute;
    left: -12px;
    top: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--f-orange);
    opacity: 0;
    transform: translateY(-50%) scale(0.6);
    transition: opacity .15s ease, transform .15s ease;
}
.acr-footer__links a:hover { color: #fff; padding-left: 4px; }
.acr-footer__links a:hover::before { opacity: 1; transform: translateY(-50%) scale(1); }

/* Social */
.acr-footer__social { display: flex; gap: 12px; }
.acr-footer__social a {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--f-line);
    color: var(--f-soft);
    transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
}
.acr-footer__social a:hover {
    transform: translateY(-2px);
    background: rgba(242, 115, 12, 0.14);
    border-color: rgba(242, 115, 12, 0.4);
    color: #fff;
}
.acr-footer__social svg { width: 18px; height: 18px; fill: currentColor; }

/* ---- Bottom bar ---- */
.acr-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    padding-top: 24px;
}
.acr-footer__legal {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 14px;
    font-size: 13.5px;
    color: var(--f-muted);
}
.acr-footer__legal a { color: var(--f-muted); text-decoration: none; transition: color .15s ease; }
.acr-footer__legal a:hover { color: #fff; }
.acr-footer__legal .sep { color: rgba(255, 255, 255, 0.22); }
.acr-footer__copy { color: var(--f-soft); }

/* Back to top */
.acr-footer__top-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px 9px 18px;
    border-radius: 999px;
    border: 1px solid var(--f-line);
    background: rgba(255, 255, 255, 0.04);
    color: var(--f-soft);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
}
.acr-footer__top-btn svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; transition: transform .15s ease; }
.acr-footer__top-btn:hover {
    color: #fff;
    background: rgba(242, 115, 12, 0.14);
    border-color: rgba(242, 115, 12, 0.4);
}
.acr-footer__top-btn:hover svg { transform: translateY(-2px); }

/* ---- Tablet ---- */
@media (max-width: 991px) {
    .acr-footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 36px 32px;
    }
    .acr-footer__brand { grid-column: 1 / -1; }
}

/* ---- Mobile: compact, less scrolling ---- */
@media (max-width: 600px) {
    .acr-footer__inner { padding: 40px 20px 22px; }
    .acr-footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 26px 20px;
        padding-bottom: 28px;
    }
    .acr-footer__brand { grid-column: 1 / -1; margin-bottom: 2px; }
    .acr-footer__brand-name { font-size: 19px; margin-bottom: 8px; }
    .acr-footer__tagline { font-size: 13.5px; max-width: none; }
    /* Contact spans both columns so the two link columns sit side by side below */
    .acr-footer__col--contact { grid-column: 1 / -1; }
    .acr-footer__col h4 { margin-bottom: 12px; font-size: 11px; }
    .acr-footer__contact li { margin-bottom: 12px; font-size: 13.5px; }
    .acr-footer__contact a { word-break: break-word; }
    .acr-footer__links a { font-size: 13.5px; }
    .acr-footer__links li { margin-bottom: 10px; }
    .acr-footer__social a { width: 38px; height: 38px; }
    .acr-footer__bottom {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 16px;
    }
    .acr-footer__top-btn { align-self: stretch; justify-content: center; }
    .acr-footer__legal { font-size: 12.5px; }
}
