    /* ========== SEO-OPTIMIZED FOOTER STYLES ========== */

    .seo-footer-premium {
        position: relative;
        background: linear-gradient(135deg, #1976D2 0%, #2196F3 50%, #1565C0 100%);
        color: #ffffff;
        padding: 4rem 0 2rem;
        overflow: hidden;
    }

    .seo-footer-premium::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background:
            radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
        pointer-events: none;
    }

    .seo-footer-premium .container {
        position: relative;
        z-index: 2;
    }

    /* Trust Badges Row */
    .footer-trust-badges {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-bottom: 4rem;
        padding: 2rem;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .trust-badge-item {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .badge-icon {
        font-size: 2.5rem;
        line-height: 1;
    }

    .badge-text {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
    }

    .badge-text strong {
        font-size: 1rem;
        font-weight: 700;
        color: #ffffff;
    }

    .badge-text span {
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.9);
    }

    /* Main Footer Content */
    .footer-main-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 3rem;
        margin-bottom: 3rem;
    }

    .footer-column {
        display: flex;
        flex-direction: column;
    }

    .footer-heading {
        font-size: 1.25rem;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 1.5rem;
        padding-bottom: 0.75rem;
        border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    }

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

    .footer-links li {
        line-height: 1.6;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        font-size: 0.95rem;
        transition: all 0.2s ease;
        display: inline-block;
    }

    .footer-links a:hover {
        color: #ffffff;
        transform: translateX(4px);
    }

    /* Contact Column */
    .footer-column-contact {
        background: rgba(255, 255, 255, 0.1);
        padding: 1.5rem;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .footer-contact-box {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .contact-item {
        font-size: 0.95rem;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.9);
        margin: 0;
    }

    .contact-link {
        color: #ffffff;
        text-decoration: none;
        font-weight: 600;
        transition: opacity 0.2s ease;
    }

    .contact-link:hover {
        opacity: 0.8;
    }

    /* CTA Button */
    .footer-cta-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        background: #27AE60;
        color: #ffffff;
        padding: 1rem 1.5rem;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 700;
        font-size: 1rem;
        transition: all 0.3s ease;
        border: 2px solid #27AE60;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .footer-cta-button:hover {
        background: #229954;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
    }

    /* Footer Bottom */
    .footer-bottom {
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .footer-bottom-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .copyright {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.9);
        margin: 0;
    }

    .separator {
        margin: 0 0.5rem;
        opacity: 0.5;
    }

    .footer-social-links {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .footer-tagline {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.9);
        font-weight: 600;
    }

    /* Responsive Design */
    @media (max-width: 968px) {
        .seo-footer-premium {
            padding: 3rem 0 1.5rem;
        }

        .footer-trust-badges {
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            padding: 1.5rem;
            margin-bottom: 3rem;
        }

        .footer-main-content {
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .footer-column-contact {
            grid-column: 1 / -1;
        }

        .footer-bottom-content {
            flex-direction: column;
            text-align: center;
        }

        .separator {
            display: none;
        }
    }

    @media (max-width: 768px) {
        .footer-trust-badges {
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        .footer-main-content {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .footer-heading {
            font-size: 1.1rem;
        }

        .badge-text strong {
            font-size: 0.95rem;
        }

        .badge-text span {
            font-size: 0.8rem;
        }

        .footer-cta-button {
            width: 100%;
            padding: 0.875rem 1.25rem;
            font-size: 0.95rem;
        }
    }

    @media (max-width: 480px) {
        .seo-footer-premium {
            padding: 2rem 0 1rem;
        }

        .footer-trust-badges {
            margin-bottom: 2rem;
        }

        .badge-icon {
            font-size: 2rem;
        }

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

        .contact-item {
            font-size: 0.875rem;
        }
    }

    /* Accessibility */
    @media (prefers-reduced-motion: reduce) {
        .footer-links a,
        .footer-cta-button {
            transition: none;
        }
    }
