/* Allo Footer Widget Styles */
.allo-footer-widget {
    width: 100%;
    background-color: #3A3A3A;
    color: #B0B0B0;
}

.footer-main {
    padding: 100px 0;
}

.footer-columns {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1px 0.8fr 1px 0.8fr 1px 1fr;
    gap: 50px;
    align-items: start;
    padding: 0 20px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

/* Vertical Dividers */
.footer-divider {
    width: 1px;
    height: 100%;
    min-height: 200px;
    background-color: rgba(255, 255, 255, 0.15);
}

/* Column 1: Brand */
.footer-brand {
    gap: 20px;
}

.footer-logo {
    height: 45px;
    width: auto;
    max-width: 200px !important;
    margin-bottom: 10px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    color: #B0B0B0;
    margin: 0;
}

.footer-button {
    display: inline-flex;
    align-items: center;
    background-color: #00A1AD;
    color: #FFFFFF !important;
    padding: 4px 5px 4px 10px;
    border-radius: 30px;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    width: fit-content;
    margin-top: 10px;
    gap: 12px;
}

.footer-button::after {
    content: '';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #FFFFFF;
    border-radius: 50%;
    background-image: url('data:image/svg+xml;utf8,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M3 13L13 3M13 3H5M13 3V11" stroke="%2300A1AD" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px 16px;
    flex-shrink: 0;
}

.footer-button:hover,
.footer-button:active {
    background-color: #008999;
    color: #FFFFFF !important;
}

/* Columns 2 & 3: Menus */
.footer-menu {
    gap: 20px;
}

.footer-menu-title {
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0 0 15px 0;
}

.footer-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-menu-list li {
    margin: 0;
}

.footer-menu-link {
    color: #B0B0B0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    display: block;
}

.footer-menu-link:hover {
    color: #00A1AD;
}

/* Column 4: Contact & Hours */
.footer-contact {
    gap: 20px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.contact-link,
.contact-text {
    color: #B0B0B0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #00A1AD;
}

.footer-hours-title {
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    margin: 10px 0 15px 0;
}

.working-hours {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hours-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 14px;
    gap: 8px;
}

.hours-day {
    color: #B0B0B0;
    white-space: nowrap;
}

.hours-time {
    color: #B0B0B0;
}

/* Footer Bottom */
.footer-bottom {
    background-color: #2A2A2A;
    padding: 20px 0;
    text-align: center;
}

.copyright-text {
    margin: 0;
    color: #888888;
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .footer-columns {
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
    }

    .footer-divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-logo {
        height: 38px;
        max-width: 150px !important;
    }

    .footer-menu-title,
    .footer-hours-title {
        font-size: 16px;
    }

    .footer-description,
    .footer-menu-link,
    .contact-link,
    .contact-text,
    .hours-row {
        font-size: 14px;
    }

    .footer-button {
        font-size: 14px;
        padding: 4px 5px 4px 10px;
    }
}
