/* =================================================================
   FOOTER STYLES
   ================================================================= */

.hvb-footer {
    background: var(--forest, #1a3a2e);
    color: #e8e8e8;
    font-family: var(--font-body, 'Actor', sans-serif);
    margin-top: 0;
    padding: 16px 24px;
}

.hvb-footer-wrapper {
    max-width: var(--container-2xl, 1400px);
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md, 12px);
    padding: 0;
    overflow: hidden;
}

.hvb-footer-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 32px;
}

/* Top Section */
.hvb-footer-top {
    padding: 16px 0 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hvb-footer-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.hvb-footer-brand img {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.hvb-footer-payments img {
    height: 40px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    opacity: 0.85;
}

/* Links Section */
.hvb-footer-links {
    padding: 16px 0;
}

.hvb-footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.hvb-footer-heading {
    color: var(--gold, #d4af37);
    font-family: var(--font-serif, 'Cinzel', Georgia, serif);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 10px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.hvb-footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hvb-footer-col li {
    margin-bottom: 6px;
}

.hvb-footer-col a {
    color: var(--gray-light, #cccccc);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.6;
    transition: color var(--transition-fast, 0.15s ease), padding-left var(--transition-fast, 0.15s ease);
}

.hvb-footer-col a:hover {
    color: var(--white, #ffffff);
    padding-left: 4px;
}

/* Bottom Bar */
.hvb-footer-bottom {
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hvb-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.hvb-footer-copyright {
    margin: 0;
    color: var(--text-light, #737373);
    font-size: 0.85rem;
}

.hvb-footer-social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hvb-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--gray-light, #cccccc);
    background: rgba(255, 255, 255, 0.06);
    text-decoration: none;
    transition: all var(--transition-fast, 0.15s ease);
}

.hvb-footer-social a:hover {
    color: var(--gold, #d4af37);
    background: rgba(212, 175, 55, 0.15);
    transform: translateY(-2px);
}

/* =================================================================
   FOOTER RESPONSIVE
   ================================================================= */

/* Tablet */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .hvb-footer {
        padding: 20px 16px;
    }

    .hvb-footer-container {
        padding: 0 24px;
    }

    .hvb-footer-top {
        padding: 20px 0 16px;
    }

    .hvb-footer-links {
        padding: 20px 0;
    }

    .hvb-footer-columns {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    .hvb-footer {
        padding: 16px 12px;
    }

    .hvb-footer-wrapper {
        border-radius: var(--radius-sm, 8px);
    }

    .hvb-footer-container {
        padding: 0 16px;
    }

    .hvb-footer-top {
        padding: 16px 0 14px;
    }

    .hvb-footer-top-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .hvb-footer-brand img {
        height: 36px;
        max-width: 140px;
    }

    .hvb-footer-payments img {
        height: 28px;
        max-width: 180px;
    }

    .hvb-footer-links {
        padding: 16px 0;
    }

    .hvb-footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 24px;
    }

    .hvb-footer-col {
        text-align: center;
    }

    .hvb-footer-col:last-child {
        grid-column: span 2;
    }

    .hvb-footer-heading {
        font-size: 0.8rem;
        margin-bottom: 8px;
        padding-bottom: 6px;
        letter-spacing: 1.5px;
        display: inline-block;
        border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    }

    .hvb-footer-col li {
        margin-bottom: 4px;
    }

    .hvb-footer-col a {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .hvb-footer-bottom {
        padding: 12px 0;
    }

    .hvb-footer-bottom-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .hvb-footer-copyright {
        font-size: 0.75rem;
    }

    .hvb-footer-social a {
        width: 32px;
        height: 32px;
    }

    .hvb-footer-social a svg {
        width: 16px;
        height: 16px;
    }
}

/* Small phones */
@media screen and (max-width: 420px) {
    .hvb-footer {
        padding: 12px 8px;
    }

    .hvb-footer-container {
        padding: 0 12px;
    }

    .hvb-footer-top-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }

    .hvb-footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px 16px;
    }

    .hvb-footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}
