@charset "utf-8";
/* CSS Document */
/* ===== assets/css/layout/footer.css ===== */
/* Footer styles from your footer.php - move them here */
.footer {
    background: #D9E7F3;
    color: #881D6B;
    padding: 30px 0 15px;
    position: relative;
    overflow: hidden;
}

/* ===== FOOTER STYLES - Light Blue Theme ===== */
.footer {
    background: #D9E7F3;  /* Your light blue background */
    color: #881D6B;  /* Your purple text */
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #881D6B, #A3B8C9, #881D6B);
    background-size: 200% 100%;
    animation: gradientMove 3s linear infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(136,29,107,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Footer Logo - Updated */
.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #881D6B;  /* Solid purple */
}

.footer-logo sup {
    color: #881D6B;
    font-size: 1rem;
}

.footer-tagline {
    color: #6e1655;  /* Darker purple */
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 600;
}

.footer-description {
    color: #4a4a4a;  /* Dark gray for better readability */
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Social Links - Updated */
.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(136, 29, 107, 0.1);  /* Light purple background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #881D6B;  /* Purple icons */
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #881D6B;  /* Solid purple on hover */
    transform: translateY(-3px);
    color: white;  /* White icon on hover */
}

.social-link i {
    font-size: 1.1rem;
}

/* Footer Links Headers - Updated */
.footer-links h5,
.footer-contact h5 {
    color: #881D6B;  /* Purple headers */
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links h5::after,
.footer-contact h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #881D6B, #A3B8C9);
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #4a4a4a;  /* Dark gray for links */
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #881D6B;  /* Purple on hover */
    transform: translateX(5px);
}

/* Contact Info - Updated */
.footer-contact ul li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: #4a4a4a;  /* Dark gray text */
    font-size: 0.95rem;
}

.footer-contact ul li i {
    color: #881D6B;  /* Purple icons */
    font-size: 1.1rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.footer-contact ul li a {
    color: #4a4a4a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact ul li a:hover {
    color: #881D6B;
}

/* Certifications - Updated */
.footer-certifications {
    margin: 40px 0 30px;
    padding: 30px 0;
    border-top: 1px solid rgba(136, 29, 107, 0.2);  /* Purple border with opacity */
    border-bottom: 1px solid rgba(136, 29, 107, 0.2);
}

.cert-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

.cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #4a4a4a;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.7);  /* White with opacity */
    border-radius: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(136, 29, 107, 0.2);
}

.cert-badge:hover {
    background: #881D6B;  /* Purple background on hover */
    color: white;
    transform: translateY(-2px);
    border-color: #881D6B;
}

.cert-badge:hover i {
    color: white;
}

.cert-badge i {
    color: #881D6B;  /* Purple icons */
}

/* Payment Methods - Updated */
.payment-methods {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.payment-methods i {
    font-size: 2rem;
    color: #881D6B;  /* Purple icons */
    opacity: 0.7;
    transition: all 0.3s ease;
}

.payment-methods i:hover {
    opacity: 1;
    transform: scale(1.1);
    color: #6e1655;  /* Darker purple on hover */
}

/* Footer Bottom - Updated */
.footer-bottom {
    padding-top: 20px;
}

.copyright {
    color: #4a4a4a;  /* Dark gray */
    font-size: 0.85rem;
    margin: 0;
}

.legal-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.legal-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #881D6B;  /* Purple on hover */
}

/* ===== FLOATING WHATSAPP BUTTON (unchanged) ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    color: white;
    font-size: 30px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
    color: white;
}

.whatsapp-btn.pulse {
    animation: whatsappPulse 1s ease;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #075E54;
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 8px solid #075E54;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 80px;
}

/* ===== RESPONSIVE FOOTER ===== */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer-logo {
        font-size: 1.5rem;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .cert-badges {
        justify-content: center;
    }

    .payment-methods {
        justify-content: center;
        margin-top: 1rem;
    }

    .legal-links {
        justify-content: center;
        margin-top: 1rem;
    }

    .copyright {
        text-align: center;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}

@media (max-width: 480px) {
    .cert-badges {
        gap: 0.75rem;
    }

    .cert-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .legal-links {
        gap: 1rem;
        flex-wrap: wrap;
    }
}