/* ===== FOOTER PREMIUM ===== */
#footer {
    background: linear-gradient(135deg, var(--primary-dark), #1a1a2e);
    color: var(--white);
    padding: 8rem 0 0;
    position: relative;
    z-index: 1;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%23000" opacity=".1"/></svg>');
    background-size: cover;
    background-repeat: no-repeat;
}

.footer__container {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    margin-bottom: 5rem;
}

.footer-column {
    padding: 1.5rem;
    position: relative;
}

.footer__heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2rem;
    padding-bottom: 0.8rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer__heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 3px;
}

.footer__heading i {
    color: var(--primary);
    font-size: 1.2rem;
}

.footer__links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer__link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.link-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
}

.footer__link:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer__link:hover .link-icon {
    transform: scale(1.2);
    color: var(--primary-light);
}

/* Brand Column Styles */
.footer__brand {
    display: flex;
    flex-direction: column;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer__logo img {
    width: 50px;
    height: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
}

.logo-slogan {
    font-size: 0.8rem;
    color: #6c63ff;
    font-weight: 500;
}

.footer__tagline {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}


/* Newsletter Form */
.newsletter {
    margin-bottom: 2rem;
}

.newsletter h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 600;
}

.newsletter-form {
    display: flex;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.9);
}

.newsletter-form button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

/* Social Links */
.social-container {
    margin-top: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #6c63ff;
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    text-align: center;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.footer__legal {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer__copyright strong {
    color: #ffffff;
    font-weight: 600;
}

.footer__links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.footer__links a:hover {
    color: #6c63ff;
}

.footer__links span {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.6rem;
}

/* Footer Bottom */
.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.payment-methods {
    display: flex;
    gap: 1.2rem;
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.payment-methods i {
    transition: all 0.3s ease;
}

.payment-methods i:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.footer__copyright {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin: 0;
}

.footer__copyright strong {
    color: var(--white);
    font-weight: 600;
}

.footer__legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    align-items: center;
}

.footer__legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.footer__legal-links a:hover {
    color: var(--primary);
}

.footer__legal-links span {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.6rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer__brand {
        grid-column: span 2;
    }
    
    .footer__links {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .footer__links span {
        display: none;
    }
}

@media (max-width: 480px) {
    .footer__grid {
        grid-template-columns: 1fr;
    }
    
    .footer__brand {
        grid-column: span 1;
    }
    
    .payment-methods {
        gap: 1rem;
        font-size: 1.5rem;
    }
    
    .footer__container {
        padding: 0 15px;
    }
}