/* Footer Styles */
footer {
    color: #fff;
    padding: 3rem 0 1.5rem;
    margin-top: 2rem;
    width: 100%;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    opacity: 0.6;
}

footer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    justify-content: space-between;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 1920px;
}

.footer-section {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.footer-section:nth-child(1) { animation-delay: 0.1s; }
.footer-section:nth-child(2) { animation-delay: 0.2s; }
.footer-section:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-section h3 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #6eea00, #4caf50);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.footer-section:hover h3::after {
    width: 80px;
}

.footer-section p {
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Footer Features List */
.footer-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.footer-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #e0e0e0;
    font-size: 0.95rem;
    padding: 8px 0;
    transition: all 0.3s ease;
    border-radius: 6px;
    position: relative;
}

.footer-features li:hover {
    color: #fff;
    transform: translateX(8px);
    background: rgba(110, 234, 0, 0.05);
    padding-left: 12px;
}

.footer-features li i {
    color: #6eea00;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 4px rgba(110, 234, 0, 0.3));
}

.footer-features li:hover i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(110, 234, 0, 0.5));
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    padding: 8px 12px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.footer-links li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(110, 234, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.footer-links li a:hover::before {
    left: 100%;
}

.footer-links li a:hover {
    color: #6eea00;
    transform: translateX(8px);
    background: rgba(110, 234, 0, 0.08);
    box-shadow: 0 4px 12px rgba(110, 234, 0, 0.15);
}

.footer-links li a i {
    font-size: 1rem;
    color: #6eea00;
    transition: all 0.3s ease;
}

.footer-links li a:hover i {
    transform: translateX(4px) scale(1.1);
}

/* Contact Info */
.contact-info {
    margin-bottom: 1.5rem;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    padding: 8px 0;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.contact-info p:hover {
    color: #fff;
    transform: translateX(6px);
    background: rgba(110, 234, 0, 0.05);
    padding-left: 12px;
}

.contact-info i {
    color: #6eea00;
    font-size: 1.2rem;
    width: 24px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 4px rgba(110, 234, 0, 0.3));
}

.contact-info p:hover i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(110, 234, 0, 0.5));
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin: 1.5rem 0;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.3rem;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(45deg, transparent, rgba(110, 234, 0, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-links a:hover::before {
    opacity: 1;
}

.social-links a:hover {
    background: rgba(110,234,0,0.15);
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 25px rgba(110, 234, 0, 0.3);
    border-color: rgba(110, 234, 0, 0.4);
}

.social-links .fa-facebook { color: #1877f3 !important; }
.social-links .fa-telegram { color: #229ed9 !important; }
.social-links .fa-users { color: #6eea00 !important; }

/* Payment Methods */
.payment-methods {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.15);
    position: relative;
}

.payment-methods::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #6eea00, transparent);
}

.payment-methods::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #6eea00, transparent);
}

.payment-methods-img {
    max-width: 280px;
    width: 100%;
    height: auto;
    filter: brightness(0.85) contrast(1.1);
    transition: all 0.4s ease;
    border-radius: 8px;
}

.payment-methods-img:hover {
    filter: brightness(1) contrast(1.2);
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(110, 234, 0, 0.15);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #6eea00, transparent);
}

.footer-bottom p {
    color: #e0e0e0;
    font-size: 0.9rem;
    margin: 8px 0;
    transition: color 0.3s ease;
}

.footer-bottom p:hover {
    color: #fff;
}

.footer-disclaimer {
    color: #aaa;
    font-size: 0.8rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-disclaimer:hover {
    opacity: 1;
}

.footer-links-bottom {
    margin-top: 10px;
}

.footer-links-bottom a {
    color: #6eea00;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 10px;
    border-radius: 4px;
}

.footer-links-bottom a:hover {
    color: #fff;
    background: rgba(110, 234, 0, 0.1);
    text-decoration: none;
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .container {
        padding: 0 15px;
    }
    
    footer {
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 100%;
    }
    
    .footer-section:last-child {
        grid-column: 1 / -1;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
    }
    
    .payment-methods-img {
        max-width: 240px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    footer {
        padding: 2rem 0 1rem;
        margin-top: 1.5rem;
    }
    
    footer::after {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-section {
        transform: none;
        animation: none;
        opacity: 1;
        padding: 0 0.5rem;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        padding-bottom: 0.4rem;
    }
    
    .footer-section h3::after {
        width: 50px;
        height: 2px;
    }
    
    .footer-section p {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }
    
    .footer-features li,
    .contact-info p {
        font-size: 0.85rem;
        padding: 6px 0;
        margin-bottom: 8px;
        gap: 8px;
    }
    
    .footer-features li:hover,
    .contact-info p:hover {
        transform: translateX(4px);
        padding-left: 8px;
    }
    
    .footer-features li i,
    .contact-info i {
        font-size: 1rem;
    }
    
    .footer-links li a {
        font-size: 0.85rem;
        padding: 6px 8px;
    }
    
    .footer-links li a::before {
        display: none;
    }
    
    .footer-links li a:hover {
        transform: translateX(4px);
        background: rgba(110, 234, 0, 0.05);
        box-shadow: none;
    }
    
    .social-links {
        gap: 10px;
        margin: 1rem 0;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .social-links a::before {
        display: none;
    }
    
    .social-links a:hover {
        transform: translateY(-3px);
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    }
    
    .payment-methods {
        padding: 0.8rem 0;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .payment-methods-img {
        height: auto;
        max-width: 220px;
        width: 80%;
        margin: 0 auto;
        display: block;
    }
    
    .payment-methods-img:hover {
        transform: translateY(-2px);
    }
    
    .footer-bottom {
        padding: 0.8rem 0;
    }
    
    .footer-bottom p {
        font-size: 0.75rem;
        padding: 0.3rem 0;
    }
    
    .footer-bottom p:hover {
        transform: none;
    }
    
    .footer-disclaimer {
        font-size: 0.7rem;
        margin-top: 0.5rem;
    }
    
    .footer-disclaimer:hover {
        transform: none;
    }
    
    .footer-links-bottom {
        margin-top: 0.5rem;
    }
    
    .footer-links-bottom a {
        font-size: 0.75rem;
        padding: 0.3rem 0.5rem;
        margin: 0 0.2rem;
    }
    
    .footer-links-bottom a:hover {
        transform: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    footer {
        padding: 1.5rem 0 0.8rem;
        margin-top: 1rem;
    }
    
    .footer-content {
        gap: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .footer-section {
        padding: 0 0.3rem;
    }
    
    .footer-section h3 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
        padding-bottom: 0.3rem;
    }
    
    .footer-section p {
        font-size: 0.8rem;
        margin-bottom: 0.7rem;
    }
    
    .footer-features li,
    .contact-info p {
        font-size: 0.8rem;
        padding: 5px 0;
        margin-bottom: 6px;
        gap: 6px;
    }
    
    .footer-features li i,
    .contact-info i {
        font-size: 0.9rem;
        width: 20px;
    }
    
    .footer-links li a {
        font-size: 0.8rem;
        padding: 5px 6px;
        gap: 8px;
    }
    
    .social-links {
        gap: 8px;
        margin: 0.8rem 0;
    }
    
    .social-links a {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .payment-methods {
        padding: 0.6rem 0;
        text-align: center;
    }
    
    .payment-methods-img {
        height: auto;
        max-width: 180px;
        width: 90%;
        margin: 0 auto;
        display: block;
    }
    
    .footer-bottom {
        padding: 0.6rem 0;
    }
    
    .footer-bottom p {
        font-size: 0.7rem;
    }
    
    .footer-disclaimer {
        font-size: 0.65rem;
    }
    
    .footer-links-bottom a {
        font-size: 0.7rem;
        padding: 0.2rem 0.4rem;
        margin: 0 0.15rem;
    }
}