/* ============================================
   FOOTER CTA SECTION
   ============================================ */

.footer-cta {
    background: #FDD966 !important;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-cta::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.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.footer-cta-content h2 {
    font-size: 3.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", "Inter", "Poppins", sans-serif;
}

.footer-cta-content p {
    font-size: 16px;
    color: rgba(26, 26, 26, 0.7);
    margin-bottom: 40px;
    font-family: 'Inter', sans-serif;
}

.footer-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    padding: 14px 32px !important;
    font-size: 16px;
    font-weight: 600;
    background-color: #1a1a1a !important;
    color: white !important;
    border: none !important;
    border-radius: 50px !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(26, 26, 26, 0.3) !important;
}

.btn-cta-primary:hover {
    background-color: #2a2a2a !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(26, 26, 26, 0.4) !important;
}

.btn-cta-secondary {
    padding: 14px 32px !important;
    font-size: 16px;
    font-weight: 600;
    background-color: #1a1a1a !important;
    color: white !important;
    border: 2px solid #1a1a1a !important;
    border-radius: 50px !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(26, 26, 26, 0.3) !important;
}

.btn-cta-secondary:hover {
    background-color: #2a2a2a !important;
    color: white !important;
    border-color: #2a2a2a !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(26, 26, 26, 0.4) !important;
}

/* ============================================
   FOOTER MAIN (New Footer with Inline Styles)
   ============================================ */

.footer {
    background-color: #0f0f0f;
    color: #999;
    font-family: 'Inter', sans-serif;
    position: relative;
}

/* Desktop Footer - Show on 1024px+ */
.footer-top-desktop {
    display: grid !important;
    grid-template-columns: 1fr 2fr !important;
    gap: 3rem !important;
    align-items: start !important;
}

/* Mobile Footer - Hidden on desktop, show on mobile */
.footer-top-mobile {
    display: none !important;
}

/* Note: New footer uses inline styles for layout and styling */

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    /* Hide desktop footer, show mobile footer on tablets and below */
    .footer-top-desktop {
        display: none !important;
    }

    .footer-top-mobile {
        display: flex !important;
    }
}

@media (max-width: 768px) {
    .footer-cta {
        padding: 60px 20px;
    }

    .footer-cta-content h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .footer-cta-content p {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .footer-cta-buttons {
        gap: 15px;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 10px 24px;
        font-size: 14px;
    }

    /* Mobile footer adjustments */
    .footer-top-mobile {
        display: flex !important;
        gap: 2rem !important;
    }

    .footer-logo {
        height: 24px !important;
    }
}

@media (max-width: 480px) {
    .footer-cta-content h2 {
        font-size: 24px;
    }

    .footer-cta {
        padding: 40px 15px;
    }

    .footer-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 10px 20px;
        width: 100%;
        text-align: center;
    }

    /* Mobile footer stacked */
    .footer-top-mobile {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
    }

    .footer-logo {
        height: 20px !important;
    }

    .footer-cta {
        margin: 0 -15px !important;
    }
}
