/* ==========================================
   НОВИЙ ФУТЕР
   ========================================== */

/* Основний контейнер футера */
.modern-footer {
    background: linear-gradient(135deg, #2c3e50 0%, #3c4f62 50%, #2c3e50 100%);
    color: #ffffff;
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
}

/* Декоративний елемент фону */
.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #578dac 0%, #45A148 100%);
}

/* Головна частина футера */
.modern-footer__main {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Логотип */
.modern-footer__logo {
    display: inline-block;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.modern-footer__logo:hover {
    transform: translateY(-3px);
}

.modern-footer__logo img {
    max-width: 180px;
    height: auto;
}

/* Опис компанії */
.modern-footer__description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 280px;
}

/* Соціальні мережі */
.modern-footer__social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.modern-footer__social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.modern-footer__social-link:hover {
    background: linear-gradient(135deg, #578dac 0%, #45A148 100%);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(87, 141, 172, 0.3);
}

/* Заголовки колонок */
.modern-footer__title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.modern-footer__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #578dac 0%, #45A148 100%);
    border-radius: 2px;
}

/* Меню футера */
.modern-footer__menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modern-footer__menu li {
    margin-bottom: 12px;
}

.modern-footer__menu li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.modern-footer__menu li a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #578dac 0%, #45A148 100%);
    transition: width 0.3s ease;
}

.modern-footer__menu li a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.modern-footer__menu li a:hover::before {
    width: 100%;
}

/* Контакти */
.modern-footer__contacts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modern-footer__contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.modern-footer__contact-item i {
    color: #578dac;
    font-size: 16px;
    margin-right: 12px;
    margin-top: 3px;
    min-width: 20px;
}

.modern-footer__contact-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.modern-footer__contact-item a:hover {
    color: #ffffff;
}

.modern-footer__phones {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Нижня частина футера */
.modern-footer__bottom {
    padding: 25px 0;
}

.modern-footer__copyright {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.modern-footer__policy {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    position: relative;
}

.modern-footer__policy::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.modern-footer__policy:hover {
    color: #ffffff;
}

.modern-footer__policy:hover::after {
    width: 100%;
}

/* ==========================================
   АДАПТИВНІСТЬ
   ========================================== */

/* Планшети */
@media (max-width: 991px) {
    .modern-footer {
        padding: 40px 0 0;
    }
    
    .modern-footer__main {
        padding-bottom: 30px;
    }
    
    .modern-footer__title {
        font-size: 17px;
        margin-bottom: 20px;
    }
    
    .modern-footer__logo img {
        max-width: 150px;
    }
}

/* Мобільні пристрої */
@media (max-width: 767px) {
    .modern-footer {
        padding: 30px 0 0;
    }
    
    .modern-footer__main {
        padding-bottom: 25px;
    }
    
    .modern-footer__logo {
        margin-bottom: 15px;
    }
    
    .modern-footer__logo img {
        max-width: 140px;
    }
    
    .modern-footer__description {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .modern-footer__social {
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .modern-footer__social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .modern-footer__title {
        font-size: 16px;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }
    
    .modern-footer__menu li {
        margin-bottom: 10px;
    }
    
    .modern-footer__menu li a {
        font-size: 14px;
    }
    
    .modern-footer__contact-item {
        margin-bottom: 15px;
        font-size: 14px;
    }
    
    .modern-footer__contact-item i {
        font-size: 14px;
        margin-right: 10px;
    }
    
    .modern-footer__bottom {
        padding: 20px 0;
    }
    
    .modern-footer__copyright,
    .modern-footer__policy {
        font-size: 13px;
    }
}

/* Дуже маленькі екрани */
@media (max-width: 575px) {
    .modern-footer__title::after {
        width: 30px;
        height: 2px;
    }
    
    .modern-footer__menu li a {
        font-size: 13px;
    }
    
    .modern-footer__contact-item {
        font-size: 13px;
    }
}

/* ==========================================
   АНІМАЦІЇ
   ========================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Анімація появи при завантаженні */
.modern-footer__main > .row > div {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.modern-footer__main > .row > div:nth-child(1) {
    animation-delay: 0.1s;
}

.modern-footer__main > .row > div:nth-child(2) {
    animation-delay: 0.2s;
}

.modern-footer__main > .row > div:nth-child(3) {
    animation-delay: 0.3s;
}

.modern-footer__main > .row > div:nth-child(4) {
    animation-delay: 0.4s;
}

/* ==========================================
   ДОДАТКОВІ ЕФЕКТИ
   ========================================== */

/* Ефект свічення при наведенні на соціальні мережі */
.modern-footer__social-link:hover {
    box-shadow: 
        0 5px 15px rgba(87, 141, 172, 0.3),
        0 0 20px rgba(87, 141, 172, 0.2);
}

/* Плавна поява телефонів */
.modern-footer__phones a {
    display: block;
    transition: all 0.3s ease;
}

.modern-footer__phones a:hover {
    transform: translateX(5px);
    color: #ffffff;
}