/* Footer */
.footer {
    background: linear-gradient(to bottom, var(--dark), #000);
    color: var(--light);
    padding: 3rem 5% 6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section {
    padding: 1rem;
}

.footer-section h3 {
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

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

.social-links a {
    color: var(--light);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

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

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-logo {
    font-size: 2rem;
    color: var(--accent-2);
    margin-bottom: 1rem;
    display: block;
}

/* Payment Methods Section */
.payment-methods {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.payment-methods h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    justify-items: center;
}

.payment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: transform 0.3s ease;
    width: 100%;
    text-align: center;
}

.payment-item:hover {
    transform: translateY(-5px);
}

.payment-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.payment-item span {
    color: var(--light);
    font-size: 0.9rem;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(20, 20, 20, 0.95);
    padding: 0.5rem;
    z-index: 1000;
    border-top: 1px solid var(--primary-dark);
}

.mobile-nav-links {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--light);
    padding: 0.5rem;
}

.mobile-nav-item i {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
    color: var(--light);
}

.mobile-nav-item span {
    font-size: 0.8rem;
}

.mobile-nav-item:hover {
    color: var(--primary-light);
}

/* Animation keyframes */
@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    .nav-links {
        display: none !important;
    }

    .mobile-nav {
        display: block;
    }

    body {
        padding-bottom: 70px;
    }

    .menu-toggle {
        display: none !important;
    }

    .footer {
        padding-bottom: 100px;
    }

    .welcome-banner-content {
        flex-direction: column;
    }

    .welcome-stats {
        width: 100%;
        justify-content: center;
    }

    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .payment-item img {
        width: 50px;
        height: 50px;
    }
}

@media (min-width: 769px) {
    .mobile-nav {
        display: none;
    }
}
