/* Modern Footer Styles - Dedicated CSS File */
.footer-modern {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
    border-top: 1px solid #e9ecef !important;
}

.footer-main {
    padding: 3rem 0 2rem !important;
}

.footer-section {
    height: 100%;
}

.footer-title {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: #212529 !important;
    margin-bottom: 0.75rem !important;
    position: relative;
}

.footer-divider {
    width: 60px !important;
    height: 3px !important;
    background: linear-gradient(90deg, #06BB76 0%, #05a865 100%) !important;
    border-radius: 10px !important;
    margin-bottom: 1rem !important;
}

.footer-content {
    color: #6c757d;
    line-height: 1.8;
}

.footer-description {
    font-size: 0.9rem !important;
    color: #495057 !important;
    margin-bottom: 1.25rem !important;
    text-align: justify;
}

.footer-benefits {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
}

.benefit-item {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    font-size: 0.85rem !important;
    color: #495057 !important;
}

.benefit-icon {
    color: #06BB76 !important;
    flex-shrink: 0;
}

.footer-links-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0rem !important;
}

.footer-link {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    color: #495057 !important;
    text-decoration: none !important;
    font-size: 0.9rem !important;
    transition: all 0.3s ease !important;
    padding: 0.25rem 0 !important;
    position: relative;
    justify-content: start;
}

.footer-link:hover {
    color: #06BB76 !important;
    transform: translateX(-5px) !important;
}

.footer-link .link-icon {
    color: #06BB76 !important;
    transition: transform 0.3s ease !important;
}

.footer-link:hover .link-icon {
    transform: translateX(-3px) !important;
}

.footer-certificates {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
    align-items: flex-start !important;
}

.certificate-link {
    display: inline-block !important;
    transition: transform 0.3s ease !important;
    border-radius: 8px !important;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

.certificate-link:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.certificate-link img {
    width: 96px;
    height: 96px;
}

.footer-social {
    width: 100%;
}

.social-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.75rem !important;
}

.social-link {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    aspect-ratio: 1 !important;
    background: #ffffff !important;
    border-radius: 12px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s ease !important;
    padding: 0.75rem !important;
}

.social-link:hover {
    background: #06BB76 !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 6px 20px rgba(6, 187, 118, 0.3) !important;
}

.social-link:hover .footer-social-icon {
    color: #ffffff !important;
}

.social-link .footer-social-icon {
    width: 1.5rem !important;
    height: 1.5rem !important;
    color: #495057 !important;
    transition: all 0.3s ease !important;
}

.footer-bottom {
    background: #212E50 !important;
    padding: 1.25rem 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.footer-copyright {
    padding: 0;
}

.copyright-text {
    color: #ffffff !important;
    font-size: 0.85rem !important;
    opacity: 0.9 !important;
}

.copyright-text strong {
    color: #06BB76 !important;
    font-weight: 600 !important;
}

.heart-icon {
    color: #ff6b6b !important;
    animation: heartbeat 1.5s ease-in-out infinite !important;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Footer Responsive Styles */
@media (max-width: 992px) {
    .footer-main {
        padding: 2.5rem 0 1.5rem !important;
    }

    .footer-section {
        margin-bottom: 2rem !important;
    }

    .social-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 2rem 0 1rem !important;
    }

    .footer-title {
        font-size: 1rem !important;
    }

    .social-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .footer-certificates {
        flex-direction: row !important;
        flex-wrap: wrap !important;
    }
}

@media (max-width: 576px) {
    .social-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.5rem !important;
    }

    .social-link {
        padding: 0.5rem !important;
    }

    .copyright-text {
        font-size: 0.75rem !important;
    }
}

