/* ============================================
   FOOTER.CSS — Footer 4 colonnes + copyright
   H&H AUTO & PLUS
   ============================================ */

.site-footer {
    background: var(--footer-bg);
    color: rgba(255,255,255,0.7);
}

/* ---- Footer Main ---- */
.footer-main {
    padding: 72px 0 48px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 48px;
}

/* ---- Footer Column ---- */
.footer-col h4 {
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

/* ---- Column 1 — Brand ---- */
.footer-brand .footer-logo {
    margin-bottom: 16px;
}
.footer-logo .logo-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}
.footer-logo .logo-name span { color: var(--accent); }
.footer-logo .logo-tag {
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 2px;
}
.footer-tagline {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    font-style: italic;
    margin-bottom: 12px;
}
.footer-brand p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
}

/* ---- Column 2 & 3 — Nav Links ---- */
.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color var(--transition), gap var(--transition);
}
.footer-links a::before {
    content: '›';
    color: var(--accent);
    font-size: 1.1rem;
    font-weight: 700;
    transition: transform var(--transition);
}
.footer-links a:hover {
    color: var(--white);
    gap: 12px;
}

/* ---- Column 4 — Contact ---- */
.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: flex-start;
}
.footer-contact-item .icon {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.07);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.footer-contact-item .icon svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: var(--accent);
    stroke-width: 2;
}
.footer-contact-item .info {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}
.footer-contact-item .info strong {
    display: block;
    color: rgba(255,255,255,0.85);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 2px;
}
.footer-contact-item .info a {
    color: var(--accent);
    font-weight: 600;
    font-size: 1rem;
    transition: color var(--transition);
}
.footer-contact-item .info a:hover { color: var(--accent-hover); }
.footer-note {
    margin-top: 8px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    font-style: italic;
}

/* ---- Footer Bottom ---- */
.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 18px 0;
}
.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-copyright {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}
.footer-legal {
    display: flex;
    gap: 20px;
}
.footer-legal a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    transition: color var(--transition);
}
.footer-legal a:hover { color: rgba(255,255,255,0.75); }
