/* =================== FOOTER =================== */
    .footer-section {
        background: linear-gradient(135deg, #1a202c 0%, #0f172a 100%);
        color: #d1d5db;
        padding: 60px 0 30px;
        margin-top: 80px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-content {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .footer-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 40px;
        margin-bottom: 40px;
    }

    .footer-column {
        display: flex;
        flex-direction: column;
    }

    .footer-title {
        font-size: 1.25rem;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .footer-heading {
        font-size: 1rem;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 16px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .footer-description {
        font-size: 14px;
        line-height: 1.6;
        color: #9ca3af;
        margin: 0;
    }

    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .footer-links li a {
        color: #9ca3af;
        text-decoration: none;
        font-size: 14px;
        transition: color 0.3s ease;
        display: inline-block;
    }

    .footer-links li a:hover {
        color: #dc3545;
    }

    /* Social Icons */
    .footer-social {
        gap: 20px;
    }

    .social-icons {
        display: flex;
        gap: 12px;
        margin-bottom: 20px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(220, 53, 69, 0.1);
        border: 1px solid rgba(220, 53, 69, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #dc3545;
        transition: all 0.3s ease;
        text-decoration: none;
        font-size: 16px;
    }

    .social-icon:hover {
        background: #dc3545;
        border-color: #dc3545;
        color: #ffffff;
        transform: translateY(-3px);
    }

    .footer-contact {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .footer-contact p {
        font-size: 13px;
        margin: 0;
        color: #9ca3af;
    }

    .footer-contact a {
        color: #dc3545;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-contact a:hover {
        color: #b71c1c;
    }

    /* Divider */
    .footer-divider {
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
        margin-bottom: 30px;
    }

    /* Footer Bottom */
    .footer-bottom {
        text-align: center;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .footer-bottom p {
        font-size: 13px;
        color: #6b7280;
        margin: 0;
    }

    /* =================== RESPONSIVE =================== */
    @media (max-width: 768px) {
        .footer-section {
            padding: 40px 0 20px;
            margin-top: 60px;
        }

        .footer-container {
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .footer-title {
            font-size: 1.1rem;
            margin-bottom: 12px;
        }

        .footer-heading {
            font-size: 0.95rem;
            margin-bottom: 12px;
        }

        .footer-description {
            font-size: 13px;
        }

        .footer-links li a {
            font-size: 13px;
        }
    }

    @media (max-width: 480px) {
        .footer-content {
            padding: 0 1rem;
        }

        .footer-container {
            grid-template-columns: 1fr;
            gap: 25px;
        }

        .footer-title {
            font-size: 1rem;
        }

        .footer-heading {
            font-size: 0.9rem;
        }

        .social-icons {
            gap: 10px;
        }

        .social-icon {
            width: 36px;
            height: 36px;
            font-size: 14px;
        }
    }