.home-footer {
    background: #f5f6f7;

}

.home-footer-container {
    max-width: 100%;
    margin: 0 auto;
}

.home-footer-top {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.home-footer-column {
    min-width: 0;
}

.home-footer-heading {
    font-size: 13px;
    font-weight: 700;
    color: #212121;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 16px;
}

.home-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.home-footer-links li {
    margin-bottom: 10px;
}

.home-footer-links li:last-child {
    margin-bottom: 0;
}

.home-footer-links a {
    font-size: 13px;
    color: #666666;
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.2s ease;
}

.home-footer-links a:hover {
    color: #00acc1;
}

.home-footer-divider {
    height: 1px;
    background: #e0e0e0;
    margin-bottom: 30px;
}

.home-footer-cities {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.home-footer-city {
    min-width: 0;
}

.home-footer-city-title {
    font-size: 13px;
    font-weight: 700;
    color: #212121;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 14px;
}

.home-footer-city-row {
    margin-bottom: 10px;
}

.home-footer-city-row:last-child {
    margin-bottom: 0;
}

.home-footer-city-label {
    display: block;
    font-size: 12px;
    color: #999999;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.home-footer-city-phone {
    font-size: 13px;
    color: #00acc1;
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.home-footer-city-phone:hover {
    color: #008ba3;
}

.home-footer-city-address {
    display: block;
    font-size: 13px;
    color: #666666;
    line-height: 1.4;
}

.home-footer-city-schedule {
    display: block;
    font-size: 13px;
    color: #666666;
    line-height: 1.4;
}

.home-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.home-footer-subscribe {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.home-footer-subscribe-text {
    font-size: 12px;
    font-weight: 600;
    color: #212121;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin: 0;
    white-space: nowrap;
}

.home-footer-subscribe-form {
    display: flex;
    gap: 10px;
    flex: 1;
    max-width: 500px;
    margin-block-end: 0em;
}

.home-footer-subscribe-input {
    flex: 1;
    padding: 12px 16px;
    font-size: 13px;
    border: 1px solid #d0d5dc;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    font-family: inherit;
    color: #212121;
    background: #ffffff;
    text-transform: uppercase;
}

.home-footer-subscribe-input::placeholder {
    color: #999999;
    font-size: 12px;
    text-transform: uppercase;
}

.home-footer-subscribe-input:focus {
    border-color: #00acc1;
    box-shadow: 0 0 0 3px rgba(0, 172, 193, 0.1);
}

.home-footer-subscribe-btn {
    background: #00acc1;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 12px 24px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.home-footer-subscribe-btn:hover {
    background: #0097a7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 172, 193, 0.3);
}

.home-footer-socials {
    display: flex;
    gap: 12px;
}

.home-footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.home-footer-social-vk {
    background: #0077FF;
    color: #ffffff;
}

.home-footer-social-vk:hover {
    background: #0066dd;
    transform: translateY(-2px);
}

.home-footer-social-youtube {
    background: #FF0000;
    color: #ffffff;
}

.home-footer-social-youtube:hover {
    background: #dd0000;
    transform: translateY(-2px);
}

.home-footer-container {

    padding: 30px;
}


@media (max-width: 1199px) {
    .home-footer-top {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .home-footer-cities {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {

        .home-footer {
            padding: 30px 0 60px;
        }
 
    
    .home-footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .home-footer-cities {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .home-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .home-footer-subscribe {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .home-footer-subscribe-text {
        max-width: 100%;
        white-space: normal;
    }
    
    .home-footer-subscribe-form {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        margin-block-end: 0em;
    }
    
    .home-footer-subscribe-btn {
        width: 100%;
    }
    
    .home-footer-socials {
        align-self: flex-end;
    }
}

@media (max-width: 575px) {
    .home-footer-top {
        grid-template-columns: 1fr;
    }
    
    .home-footer-cities {
        grid-template-columns: 1fr;
    }
    
    .home-footer-heading {
        font-size: 12px;
    }
    
    .home-footer-links a {
        font-size: 12px;
    }
}
