/* CTA Section Styles */
.cta {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    z-index: 1;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
}

.cta-shape.shape-1 {
    width: 300px;
    height: 300px;
    background: rgba(255, 102, 0, 0.1);
    top: -100px;
    right: -100px;
}

.cta-shape.shape-2 {
    width: 200px;
    height: 200px;
    background: rgba(255, 102, 0, 0.15);
    bottom: -50px;
    left: -50px;
}

.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 102, 0, 0.2) 2px, transparent 2px);
    background-size: 30px 30px;
    animation: particleAnimation 20s infinite linear;
}

@keyframes particleAnimation {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 30px 30px;
    }
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

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

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

.btn-glass-light {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 200px;
}

.btn-glass-light:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-lg {
    font-size: 1.1rem;
    padding: 14px 28px;
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon svg {
    width: 20px;
    height: 20px;
}

/* Dark mode styles */
.dark .cta-bg {
    background: linear-gradient(135deg, #121212, #1e1e1e, #2d2d2d);
}

.dark .cta-shape.shape-1,
.dark .cta-shape.shape-2 {
    background: rgba(255, 102, 0, 0.15);
}

.dark .cta-particles {
    background-image: radial-gradient(rgba(255, 102, 0, 0.15) 2px, transparent 2px);
}

/* Responsive styles */
@media (max-width: 768px) {
    .cta {
        padding: 70px 0;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-glass-light {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .cta {
        padding: 50px 0;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
}