/* === FOOTER MODERN APPLE-STYLE + GLASSMORPHISM === */
.footer-modern {
    width: 100%;
    background: rgba(18, 40, 29, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 80px 50px 40px;
    color: #e8eceb;
    font-family: 'Poppins', sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.footer-container {
    max-width: 1400px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
}

.footer-logo {
    flex: 1 1 220px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    animation: fadeSlideLeft 1s ease forwards;
}

.footer-logo img {
    width: 220px;
    max-width: 100%;
}

.footer-content {
    flex: 3 1 700px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    animation: fadeSlideUp 1s ease forwards;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #d7e8d7;
    letter-spacing: 0.8px;
}

.footer-col a {
    text-decoration: none;
    color: #c9d3cc;
    font-size: 0.95rem;
    transition: 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideUp 0.7s forwards;
}

.footer-col a:nth-child(1) { animation-delay: 0.2s; }
.footer-col a:nth-child(2) { animation-delay: 0.3s; }
.footer-col a:nth-child(3) { animation-delay: 0.4s; }
.footer-col a:nth-child(4) { animation-delay: 0.5s; }

.footer-col a:hover {
    color: #7dc47d;
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.footer-social a {
    color: #e8eceb;
    font-size: 28px;
    transition: 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
    color: #7dc47d;
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideUp 1s forwards;
}

.footer-bottom p {
    margin: 0;
}

.theme-toggle {
    background: transparent;
    border: 1px solid #7dc47d;
    border-radius: 25px;
    padding: 8px 18px;
    cursor: pointer;
    color: #e8eceb;
    font-weight: 600;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    background: #7dc47d;
    color: #12281d;
}

/* === ANIMATIONS === */
@keyframes fadeSlideUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideLeft {
    0% { opacity: 0; transform: translateX(-30px); }
    100% { opacity: 1; transform: translateX(0); }
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
        margin-bottom: 20px;
    }

    .footer-links {
        justify-content: center;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .footer-modern {
        padding: 50px 20px 30px;
    }

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

    .footer-social a {
        font-size: 24px;
    }
}
