.modern-footer {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1a3e 50%, #0a0e27 100%);
    color: #fff;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 168, 255, 0.5), transparent);
}

.footer-wave {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%230a0e27' d='M0,50 Q360,0 720,50 T1440,50 L1440,100 L0,100 Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr 0.9fr 0.9fr 0.9fr 0.9fr;
    gap: 35px;
    margin-bottom: 50px;
    align-items: start;
}

.footer-brand-section h2 {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(45deg, #00a8ff, #00f2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    margin-top: 0;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    line-height: 1.6;
}

.payment-badge-modern {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 168, 255, 0.3);
    border-radius: 10px;
    padding: 15px;
    display: inline-block;
    margin-top: 20px;
}

.payment-badge-modern img {
    height: 30px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.footer-column h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 0;
    color: #00a8ff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #00a8ff;
    transform: translateX(5px);
}

.footer-links a i.fa-envelope {
    margin-right: 8px;
    color: #00a8ff;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 40px 0 30px;
}

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

.footer-bottom-left {
    flex: 1;
}

.copyright-modern {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.footer-disclaimer {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    max-width: 700px;
    margin: 0;
    line-height: 1.5;
}

.social-links-modern {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-link-modern {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 168, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00a8ff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link-modern:hover {
    background: rgba(0, 168, 255, 0.2);
    border-color: #00a8ff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 168, 255, 0.3);
}

@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom-modern {
        flex-direction: column;
        align-items: flex-start;
    }

    .social-links-modern {
        width: 100%;
        justify-content: center;
    }
}