/* 
 * Premium CTA Section Styles 
 * Project: SkyDreamix Tech Solution
 */

.cta-section {
    padding: 80px 0;
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

/* Decorative background elements */
.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(46, 163, 214, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

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

.cta-box {
    background: var(--primary-color);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(46, 163, 214, 0.2);
    border: none;
}

.cta-content {
    max-width: 850px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.2rem;
    font-weight: 680;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 35px;
}

.cta-content p strong {
    color: #2ea3d6;
    font-weight: 700;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.cta-btn i {
    transition: transform 0.3s ease;
}

.cta-btn.primary {
    background: #ffffff;
    color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-btn.primary:hover {
    background: #f8fafc;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.cta-btn.primary:hover i {
    transform: translateX(5px);
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.4);
}

.cta-btn.secondary:hover i {
    transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .cta-box {
        padding: 50px 20px;
        border-radius: 30px;
    }

    .cta-content p {
        font-size: 1.1rem;
    }

    .cta-btn {
        width: fit-content;
        justify-content: center;
    }
}