/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    top: -150px;
    right: -150px;
    z-index: 0;
}

.cta-section::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    bottom: -100px;
    left: -100px;
    z-index: 0;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section .btn {
    transition: all 0.3s ease;
    font-weight: 600;
}

.cta-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .cta-section {
        text-align: center;
        padding: 3rem 0;
    }
    
    .cta-content {
        text-align: center;
    }
    
    .cta-badge {
        text-align: center;
        justify-content: center;
        margin: 0 auto 1rem;
    }
    
    .cta-title {
        font-size: 1.875rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .cta-subtitle {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .cta-metrics {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        text-align: center;
        margin: 2rem 0;
    }
    
    .metric {
        text-align: center;
        max-width: 200px;
    }
    
    .metric-number {
        text-align: center;
        font-size: 2rem;
    }
    
    .metric-label {
        text-align: center;
        font-size: 0.9rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        justify-content: center;
        align-items: center;
    }
    
    .contact-item {
        text-align: center;
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        text-align: center;
        justify-content: center;
        margin: 2rem 0;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        text-align: center;
    }
}

/* Extra Small Mobile */
@media (max-width: 375px) {
    .cta-title {
        font-size: 1.5rem;
    }
    
    .metric-number {
        font-size: 1.75rem;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        max-width: 240px;
        font-size: 0.9rem;
        padding: 12px 20px;
    }
}
