/* =====================================================
   CTA SECTION - Call to Action
   ===================================================== */

.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        rgba(255,107,0,0.1) 0%, 
        rgba(12,12,20,0.95) 50%, 
        rgba(255,152,0,0.05) 100%
    );
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before,
.cta-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,0,0.15), transparent);
    animation: ctaFloat 8s ease-in-out infinite;
}

.cta-section::before {
    top: -250px;
    left: -250px;
}

.cta-section::after {
    bottom: -250px;
    right: -250px;
    animation-delay: -4s;
}

@keyframes ctaFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

/* CTA Content */
.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.7;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* =====================================================
   CTA RESPONSIVE
   ===================================================== */
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-section::before,
    .cta-section::after {
        width: 200px;
        height: 200px;
    }
    
    .cta-content {
        padding: 0 16px;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
        margin-bottom: 16px;
        line-height: 1.3;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 24px;
        line-height: 1.6;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-content h2 {
        font-size: 1.3rem;
    }
    
    .cta-content p {
        font-size: 0.9rem;
    }
    
    .cta-buttons .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}
