.footer {
        position: relative;
        background: #000000;
        border-top: 1px solid rgba(30, 115, 190, 0.2);
        padding-top: 5rem;
        overflow: hidden;
    }

    .footer-gradient {
        position: absolute;
        top: -200px;
        left: 50%;
        transform: translateX(-50%);
        width: 1000px;
        height: 400px;
        background: radial-gradient(circle, rgba(30, 115, 190, 0.08), transparent);
        filter: blur(100px);
        pointer-events: none;
    }

    .footer-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
        position: relative;
        z-index: 1;
    }

    .footer-main {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 4rem;
        padding-bottom: 4rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-brand {
        max-width: 350px;
    }

    .footer-logo {
        margin-bottom: 1.0rem;
    }

    .footer-logo img {
        height: auto;
        width: 180px;
    }

    .footer-tagline {
        color: #B0B0B0;
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 2rem;
    }

    .footer-social {
        display: flex;
        gap: 1rem;
    }

    .social-link {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background: rgba(30, 115, 190, 0.1);
        border: 1px solid rgba(30, 115, 190, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #1E73BE;
        text-decoration: none;
        font-size: 1.2rem;
        transition: all 0.3s ease;
    }

    .social-link:hover {
        background: linear-gradient(135deg, #1E73BE, #00C2A0);
        border-color: transparent;
        color: #FFFFFF;
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(30, 115, 190, 0.4);
    }

    .footer-column h4 {
        color: #FFFFFF;
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
        position: relative;
        padding-bottom: 0.5rem;
    }

    .footer-column h4::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 2px;
        background: linear-gradient(90deg, #1E73BE, #00C2A0);
        border-radius: 2px;
    }

    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-links li {
        margin-bottom: 0.8rem;
    }

    .footer-links a {
        color: #B0B0B0;
        text-decoration: none;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    .footer-links a::before {
        content: '→';
        opacity: 0;
        transform: translateX(-10px);
        transition: all 0.3s ease;
    }

    .footer-links a:hover {
        color: #1E73BE;
        padding-left: 0.5rem;
    }

    .footer-links a:hover::before {
        opacity: 1;
        transform: translateX(0);
    }

    .footer-contact-info {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-contact-info li {
        color: #B0B0B0;
        font-size: 0.95rem;
        margin-bottom: 1rem;
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .footer-contact-info li::before {
        content: '●';
        color: #1E73BE;
        font-size: 0.6rem;
        margin-top: 0.5rem;
    }

    .footer-contact-info a {
        color: #B0B0B0;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-contact-info a:hover {
        color: #00C2A0;
    }

    .footer-newsletter {
        margin-top: 1.5rem;
    }

    .newsletter-form {
        display: flex;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .newsletter-input {
        flex: 1;
        background: rgba(26, 26, 26, 0.8);
        border: 1px solid rgba(30, 115, 190, 0.3);
        border-radius: 50px;
        padding: 0.8rem 1.5rem;
        color: #FFFFFF;
        font-family: 'Poppins', sans-serif;
        font-size: 0.95rem;
        transition: all 0.3s ease;
    }

    .newsletter-input:focus {
        outline: none;
        border-color: #1E73BE;
        box-shadow: 0 0 0 3px rgba(30, 115, 190, 0.1);
    }

    .newsletter-input::placeholder {
        color: #B0B0B0;
    }

    .newsletter-btn {
        background: linear-gradient(135deg, #1E73BE, #1590D1);
        color: #FFFFFF;
        border: none;
        border-radius: 50px;
        padding: 0.8rem 2rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        font-family: 'Poppins', sans-serif;
    }

    .newsletter-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(30, 115, 190, 0.4);
    }

    .footer-bottom {
        padding: 2rem 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .footer-copyright {
        color: #B0B0B0;
        font-size: 0.9rem;
    }

    .footer-copyright a {
        color: #1E73BE;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s ease;
    }

    .footer-copyright a:hover {
        color: #00C2A0;
    }

    .footer-legal {
        display: flex;
        gap: 2rem;
        flex-wrap: wrap;
    }

    .footer-legal a {
        color: #B0B0B0;
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s ease;
    }

    .footer-legal a:hover {
        color: #1E73BE;
    }

    .footer-badges {
        display: flex;
        gap: 1rem;
        margin-top: 1.5rem;
        flex-wrap: wrap;
    }

    .badge {
        background: rgba(30, 115, 190, 0.1);
        border: 1px solid rgba(30, 115, 190, 0.3);
        border-radius: 8px;
        padding: 0.5rem 1rem;
        color: #00C2A0;
        font-size: 0.85rem;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    /* Responsive Design */
    @media (max-width: 968px) {
        .footer-main {
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .footer-brand {
            grid-column: 1 / -1;
            max-width: 100%;
            text-align: center;
        }

        .footer-social {
            justify-content: center;
        }

        .footer-badges {
            justify-content: center;
        }
    }

    @media (max-width: 640px) {
        .footer {
            padding-top: 3rem;
        }

        .footer-container {
            padding: 0 1.5rem;
        }

        .footer-main {
            grid-template-columns: 1fr;
            gap: 2.5rem;
            padding-bottom: 3rem;
        }

        .footer-brand {
            text-align: center;
        }

        .footer-logo {
            display: flex;
            justify-content: center;
        }

        .footer-tagline {
            text-align: center;
        }

        .footer-social {
            justify-content: center;
        }

        .footer-badges {
            justify-content: center;
        }

        .footer-column {
            text-align: center;
        }

        .footer-column h4 {
            display: inline-block;
        }

        .footer-column h4::after {
            left: 50%;
            transform: translateX(-50%);
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .footer-links a::before {
            display: none;
        }

        .footer-links a:hover {
            padding-left: 0;
        }

        .footer-contact-info {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .footer-contact-info li {
            text-align: center;
        }

        .footer-contact-info li::before {
            display: none;
        }

        .footer-newsletter {
            max-width: 400px;
            margin: 1.5rem auto 0;
        }

        .newsletter-form {
            flex-direction: column;
        }

        .newsletter-btn {
            width: 100%;
        }

        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 1rem;
        }

        .footer-legal {
            justify-content: center;
        }
    }