/* ==========================================================================
   Footer Styles — 4-column layout (matching production)
   ========================================================================== */

.vc-footer {
    background: #fff;
    color: #333;
    margin-top: auto;
    border-top: 1px solid #e0e0e0;
}

.vc-footer a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.vc-footer a:hover {
    color: #000;
}

/* Footer Main */
.vc-footer__main {
    padding: 3rem 0 2.5rem;
}

.vc-footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 1.4fr 1fr 0.8fr;
    gap: 2rem;
    align-items: start;
}

/* Footer headings — italic dark navy, matching production */
.vc-footer__heading {
    font-family: 'Roboto', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    font-style: normal;
    color: #1a1a2e;
    margin: 0 0 1rem 0;
}

/* Logo column */
.vc-footer__col--logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vc-footer__logo {
    margin-bottom: 1.5rem;
}

.vc-footer__logo-img {
    width: 200px;
    height: auto;
}

/* Social Icons — plain, no background circles */
.vc-footer__social {
    display: flex;
    gap: 1.5rem;
}

.vc-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 24px;
    transition: color 0.3s ease;
}

.vc-footer__social-link:hover {
    color: #000;
}

/* Opening Hours */
.vc-footer__hours {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.vc-footer__hours-row {
    font-family: 'Roboto', sans-serif;
    font-size: 0.875rem;
    color: #333;
}

/* Policies menu */
.vc-footer__menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vc-footer__menu li {
    margin-bottom: 0.65rem;
}

.vc-footer__menu li a {
    font-family: 'Roboto', sans-serif;
    font-size: 0.875rem;
    color: #333;
}

.vc-footer__menu li a:hover {
    color: #000;
}

/* Contact Info */
.vc-footer__contact-info p {
    font-family: 'Roboto', sans-serif;
    font-size: 0.875rem;
    margin: 0 0 0.35rem 0;
}

/* Footer Bottom — dark bar */
.vc-footer__bottom {
    padding: 1rem 0;
    background: #000;
}

.vc-footer__bottom-inner {
    display: flex;
    justify-content: center;
    text-align: center;
}

.vc-footer__copyright {
    font-family: 'Roboto', sans-serif;
    font-size: 0.85rem;
    margin: 0;
    color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .vc-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 575px) {
    .vc-footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vc-footer__col--logo {
        align-items: center;
    }

    .vc-footer__main {
        padding: 2rem 0;
    }
}
