/* Modern Footer Styles */
.modern-footer {
    background: #f8f9fa;
    border-top: 1px solid #e5e7eb;
    padding: 60px 0 0;
    font-family: 'Roboto', system-ui;
}

.footer-main {
    padding-bottom: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

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

.footer-title {
    font-size: 18px;
    font-weight: 400;
    color: #2B2B2B;
    margin: 0 0 20px 0;
    line-height: 1.4;
}

.footer-title a {
    color: #2B2B2B;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-title a:hover {
    color: #1e4a7a;
}

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

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

.footer-links a {
    color: #4b5563;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #2A609D;
}

.footer-contacts li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contacts i {
    color: #2A609D;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contacts span {
    color: #4b5563;
    font-size: 15px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #2A609D;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #1e4a7a;
    transform: translateY(-2px);
}

.social-link i {
    font-size: 18px;
}

.footer-bottom {
    border-top: 1px solid #e5e7eb;
    padding: 30px 0;
}

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

.footer-copyright {
    color: #6b7280;
    font-size: 14px;
    margin: 0;
}

.footer-payment-logos {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-payment-logos a {
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.footer-payment-logos a:hover {
    opacity: 0.7;
}

.footer-payment-logos img {
    height: 32px;
    width: auto;
}

.footer-recaptcha {
    font-size: 12px;
    color: #9ca3af;
    text-align: center;
    margin: 20px 0 0;
    line-height: 1.6;
}

.footer-recaptcha a {
    color: #2A609D;
    text-decoration: none;
}

.footer-recaptcha a:hover {
    text-decoration: underline;
}

/* Tablet */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
    
    .modern-footer {
        padding: 50px 0 0;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }
    
    .modern-footer {
        padding: 40px 0 0;
    }
    
    .footer-main {
        padding-bottom: 30px;
    }
    
    .footer-title {
        font-size: 16px;
        margin-bottom: 16px;
    }
    
    .footer-links a {
        font-size: 14px;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
    
    .footer-social {
        margin-top: 16px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .footer-copyright {
        order: 2;
        font-size: 13px;
    }
    
    .footer-payment-logos {
        order: 1;
    }
    
    .footer-payment-logos img {
        height: 28px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        gap: 25px 15px;
    }
    
    .footer-title {
        font-size: 15px;
        margin-bottom: 14px;
    }
    
    .footer-links a {
        font-size: 13px;
    }
    
    .footer-payment-logos img {
        height: 26px;
    }
}
