/* Section CTA avec Glassmorphism */
.cta-section {
    position: relative;
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(10, 40, 56, 0.8) 0%, rgba(9, 32, 49, 0.9) 100%);
    overflow: hidden;
    border-top-left-radius: 40% 15%;
    border-top-right-radius: 40% 15%;
}

/* Background animé pour la section */
.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.cta-gradient {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(114, 243, 250, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    animation: float-cta 20s infinite ease-in-out;
}

.cta-gradient:nth-child(1) {
    top: -20%;
    left: 10%;
    animation-delay: 0s;
}

.cta-gradient:nth-child(2) {
    bottom: -20%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes float-cta {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(50px, -50px) scale(1.2);
        opacity: 0.7;
    }
}

/* Container principal */
.cta-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

/* Card glassmorphism */
.cta-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(114, 243, 250, 0.25);
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.cta-card:hover {
    border-color: rgba(114, 243, 250, 0.4);
    box-shadow: 0 12px 48px rgba(114, 243, 250, 0.2);
    transform: translateY(-5px);
}

/* Contenu de la card */
.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
}

.cta-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.cta-text .highlight {
    background: linear-gradient(135deg, #72F3FA 0%, #5ad4db 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-text p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Bouton CTA */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #72F3FA 0%, #5ad4db 100%);
    color: #092031;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid transparent;
    box-shadow: 0 8px 24px rgba(114, 243, 250, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 32px rgba(114, 243, 250, 0.6);
}

.cta-button:active {
    transform: translateY(-1px) scale(1.02);
}

.cta-button i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

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

/* Badge décoratif */
.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(114, 243, 250, 0.15);
    border: 1px solid rgba(114, 243, 250, 0.3);
    border-radius: 50px;
    color: #72F3FA;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(114, 243, 250, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(114, 243, 250, 0);
    }
}

.cta-badge i {
    font-size: 1rem;
}

/* Responsive */
@media (min-width: 768px) {
    .cta-content {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
        align-items: center;
    }

    .cta-text {
        flex: 1;
    }

    .cta-actions {
        flex-shrink: 0;
    }
}

@media (max-width: 767px) {
    .cta-section {
        padding: 60px 15px;
    }

    .cta-card {
        padding: 32px 24px;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 14px 32px;
    }
}