/* Enhanced Footer Styles */
.footer-enhanced {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #e4e4e4;
    padding: 4rem 0 0 0;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.footer-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f39c12, #e74c3c, #9b59b6, #3498db, #2ecc71);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.footer-enhanced h5 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-enhanced h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #f39c12, #e74c3c);
    border-radius: 2px;
}

.footer-brand {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand-icon {
    background: linear-gradient(135deg, #f39c12, #e74c3c);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.footer-tagline {
    color: #b8b8b8;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-trust-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-trust-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    border-color: rgba(243, 156, 18, 0.5);
}

.footer-trust-badge i {
    color: #f39c12;
    font-size: 1rem;
}

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

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

.footer-links a {
    color: #b8b8b8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.footer-links a::before {
    content: '›';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: #f39c12;
    font-weight: bold;
}

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

.footer-links a:hover {
    color: #ffffff;
    padding-left: 0.5rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #b8b8b8;
    font-size: 0.95rem;
}

.footer-contact-icon {
    background: rgba(243, 156, 18, 0.2);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f39c12;
    flex-shrink: 0;
}

.footer-contact-item a {
    color: #b8b8b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: #ffffff;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-social-link.facebook:hover {
    background: #3b5998;
    border-color: #3b5998;
}

.footer-social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #e6683c;
}

.footer-social-link.twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
}

.footer-social-link.whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 0;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: #b8b8b8;
    font-size: 0.9rem;
    margin: 0;
}

.footer-payment-methods {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.footer-payment-icon {
    background: rgba(255, 255, 255, 0.95);
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1a2e;
    transition: transform 0.3s ease;
}

.footer-payment-icon:hover {
    transform: scale(1.05);
}

.footer-made-in {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #b8b8b8;
    font-size: 0.9rem;
}

.footer-made-in .heart {
    color: #e74c3c;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-enhanced {
        padding: 3rem 0 0 0;
    }

    .footer-enhanced h5 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .footer-brand {
        font-size: 1.5rem;
    }

    .footer-trust-badges {
        gap: 0.5rem;
    }

    .footer-trust-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .footer-contact-item {
        font-size: 0.9rem;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-payment-methods {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-copyright,
    .footer-made-in {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-enhanced {
        padding: 2rem 0 0 0;
    }

    .footer-trust-badges {
        flex-direction: column;
    }

    .footer-trust-badge {
        width: 100%;
        justify-content: center;
    }

    .footer-social-link {
        width: 36px;
        height: 36px;
    }
}