/* Footer Section Styles */
.footer {
    background: linear-gradient(135deg, 
        rgba(13, 13, 13, 0.95) 0%, 
        rgba(30, 30, 30, 0.98) 50%,
        rgba(13, 13, 13, 0.95) 100%);
    border-top: 1px solid rgba(138, 58, 185, 0.2);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
    color: white;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(138, 58, 185, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 110, 199, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(0, 196, 140, 0.06) 0%, transparent 50%);
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

/* Footer Decorative Elements */
.footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(138, 58, 185, 0.5) 25%, 
        rgba(255, 110, 199, 0.5) 50%, 
        rgba(0, 196, 140, 0.5) 75%, 
        transparent 100%);
}

.footer-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.footer-decorations::before {
    content: '✨';
    position: absolute;
    top: 15%;
    right: 10%;
    font-size: 24px;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.footer-decorations::after {
    content: '🚀';
    position: absolute;
    bottom: 20%;
    left: 5%;
    font-size: 28px;
    opacity: 0.08;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Footer Main Content */
.footer-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

/* Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    width: 180px;
    height: auto;
    filter: brightness(1.2) contrast(1.1);
}

.footer-tagline {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 300px;
    font-weight: 400;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 20px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, 
        rgba(138, 58, 185, 0.2) 0%, 
        rgba(255, 110, 199, 0.15) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 100%);
    transition: left 0.5s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    background: linear-gradient(135deg, 
        rgba(138, 58, 185, 0.4) 0%, 
        rgba(255, 110, 199, 0.3) 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(138, 58, 185, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.social-link i {
    font-size: 20px;
    background: linear-gradient(135deg, #FF6EC7, #8A3AB9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation Links */
.footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-nav-section h4 {
    color: #FF6EC7;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-nav-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(135deg, #FF6EC7, #8A3AB9);
    border-radius: 2px;
}

.footer-nav-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-nav-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 20px;
}

.footer-nav-section a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: rgba(255, 110, 199, 0.5);
    transition: all 0.3s ease;
    transform: translateX(-5px);
    opacity: 0;
}

.footer-nav-section a:hover {
    color: #FF6EC7;
    padding-left: 25px;
}

.footer-nav-section a:hover::before {
    transform: translateX(0);
    opacity: 1;
}

/* Contact Section */
.footer-contact h4 {
    color: #FF6EC7;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(135deg, #FF6EC7, #8A3AB9);
    border-radius: 2px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    font-weight: 400;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.contact-item:hover {
    color: white;
    transform: translateX(5px);
}

.contact-item i {
    color: #00C48C;
    font-size: 18px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 196, 140, 0.1);
    border-radius: 50%;
    padding: 8px;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #00C48C;
}

.support-hours {
    background: linear-gradient(135deg, 
        rgba(0, 196, 140, 0.15) 0%, 
        rgba(0, 196, 140, 0.08) 100%);
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
    border: 1px solid rgba(0, 196, 140, 0.2);
    backdrop-filter: blur(10px);
}

.support-hours .contact-item {
    color: #00C48C;
    font-weight: 600;
}

.support-hours .contact-item i {
    background: rgba(0, 196, 140, 0.2);
    color: #00C48C;
}

/* Payment & Security */
.footer-security {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.security-title {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payment-badges {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.payment-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.05) 0%, 
        rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.payment-badge:hover {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 100%);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.payment-badge i {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
}

.ssl-badge {
    background: linear-gradient(135deg, 
        rgba(0, 196, 140, 0.2) 0%, 
        rgba(0, 196, 140, 0.1) 100%);
    border-color: rgba(0, 196, 140, 0.3);
    color: #00C48C;
}

.ssl-badge:hover {
    background: linear-gradient(135deg, 
        rgba(0, 196, 140, 0.3) 0%, 
        rgba(0, 196, 140, 0.15) 100%);
    border-color: rgba(0, 196, 140, 0.4);
}

.ssl-badge i {
    color: #00C48C;
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
}

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

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    font-weight: 500;
}

.disclaimer {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    max-width: 550px;
    line-height: 1.5;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer {
        padding: 70px 0 35px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    
    .footer-nav {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 30px;
    }
    
    .footer-nav {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-content {
        gap: 40px;
    }
    
    .payment-badges {
        gap: 12px;
    }
    
    .payment-badge {
        padding: 10px 14px;
        font-size: 12px;
    }
    
    .disclaimer {
        font-size: 12px;
    }
    
    .footer-tagline {
        font-size: 16px;
    }
    
    .footer-nav-section h4 {
        font-size: 16px;
    }
    
    .footer-contact h4 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 50px 0 25px;
    }
    
    .footer-content {
        gap: 35px;
    }
    
    .footer-social {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .social-link {
        width: 100%;
        justify-content: center;
    }
    
    .payment-badges {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        display: grid;
    }
    
    .payment-badge {
        padding: 8px 12px;
        font-size: 11px;
        justify-content: center;
    }
    
    .footer-tagline {
        font-size: 15px;
    }
    
    .footer-nav-section h4 {
        font-size: 15px;
    }
    
    .footer-contact h4 {
        font-size: 15px;
    }
    
    .contact-item {
        font-size: 14px;
    }
    
    .footer-bottom-content {
        text-align: center;
    }
    
    .disclaimer {
        font-size: 11px;
        text-align: center;
    }
} 