/* Footer */
.footer {
    background: var(--primary-gradient);
    border-radius: 24px;
    padding: 0 0 10px;
    overflow: hidden;
}

.footer-title {
    padding: 40px 80px 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-title-text h3 {
    font-family: 'Open Sans Hebrew Condensed', sans-serif;
    font-size: 36px;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 1px;
}

.footer-title-text p {
    font-size: 14px;
    font-weight: 300;
    color: var(--white);
    letter-spacing: -0.56px;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0 0 0;
}

.lang-btn {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s;
}

.lang-btn:hover,
.lang-btn.active {
    color: var(--white);
}

.lang-divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    padding: 0 80px 20px;
    gap: 20px;
}

.footer-left {
    flex: 1;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.contact-item img {
    width: 24px;
    height: 24px;
}

.contact-item span {
    font-family: 'Open Sans Hebrew Condensed', sans-serif;
    font-size: 18px;
    color: var(--white);
    letter-spacing: 1px;
}

.schedule-box {
    background: var(--primary-color);
    border: 1px solid var(--white);
    border-radius: 16px;
    padding: 12px 10px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.schedule-row {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 30px;
}

.schedule-label {
    width: 90px;
    text-align: center;
    font-size: 14px;
    font-weight: 300;
    color: var(--white);
    letter-spacing: -0.56px;
}

.schedule-time {
    width: 90px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.schedule-time span {
    font-size: 14px;
    font-weight: 300;
    color: var(--white);
    letter-spacing: -0.56px;
}

.schedule-time small {
    font-family: 'Open Sans', sans-serif;
    font-size: 8px;
    color: var(--white);
    letter-spacing: 1px;
}

.schedule-days {
    display: flex;
    gap: 8px;
    flex: 1;
    justify-content: space-between;
    max-width: 250px;
}

.schedule-days .day {
    width: 25px;
    height: 25px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 400;
}

.schedule-status {
    display: flex;
    gap: 8px;
    flex: 1;
    justify-content: space-between;
    max-width: 250px;
}

.schedule-status .material-icons {
    font-size: 18px;
    color: var(--white);
    width: 25px;
    text-align: center;
}

.footer-right {
    flex: 0 0 500px;
    padding: 20px 0;
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
}

.footer-copyright {
    text-align: center;
    padding: 15px;
}

.footer-copyright p {
    font-family: 'Open Sans', sans-serif;
    font-size: 8px;
    color: var(--white);
    letter-spacing: 1px;
}

/* Responsive - Footer */
@media screen and (max-width: 1240px) {
    .footer-right {
        flex: 0 0 400px;
    }
}

@media screen and (max-width: 1024px) {
    .footer-content {
        flex-direction: column;
        padding: 0 40px 20px;
    }

    .footer-left {
        max-width: 100%;
    }

    .footer-right {
        flex: none;
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .footer-title {
        padding: 30px 20px 15px;
    }

    .footer-title-text h3 {
        font-size: 28px;
    }

    .lang-btn {
        font-size: 12px;
    }

    .lang-divider {
        font-size: 12px;
    }

    .footer-content {
        padding: 0 20px 20px;
    }

    .contact-item span {
        font-size: 16px;
    }

    .schedule-box {
        padding: 8px 6px;
    }

    .schedule-row {
        gap: 4px;
        height: 24px;
    }

    .schedule-label {
        width: 70px;
        font-size: 10px;
    }

    .schedule-time {
        width: 70px;
    }

    .schedule-time span {
        font-size: 10px;
    }

    .schedule-time small {
        font-size: 6px;
    }

    .schedule-days {
        gap: 4px;
        max-width: 100%;
    }

    .schedule-days .day {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }

    .schedule-status {
        gap: 4px;
        max-width: 100%;
    }

    .schedule-status .material-icons {
        font-size: 14px;
        width: 20px;
    }

    .map-placeholder {
        height: 250px;
    }
}

@media screen and (max-width: 480px) {
    .footer-title {
        padding: 20px 20px 15px 15px;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .footer-title-text h3 {
        font-size: 20px;
    }

    .footer-title-text p {
        font-size: 12px;
    }

    .lang-btn {
        font-size: 11px;
    }

    .lang-divider {
        font-size: 11px;
    }

    .contact-info {
        margin-bottom: 30px;
    }

    .contact-item span {
        font-size: 14px;
    }
}
