/* === ENHANCED CTA SECTION - COMPLETE WITH ALL STYLES === */

/* Base Variables for CTA Section */
.cta-section-alt {
    --primary-color: #2D6B78;
    --secondary-color: #4B9CAE;
    --accent-color: #F7BF4F;
    --gold: #d69e2e;
    --text-light: #ffffff;
    --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.25);
    --radius-lg: 20px;
    --radius-xl: 25px;
}

.cta-section-alt {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, #1e5a66 100%);
    z-index: 1;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.cta-bg-alt {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><radialGradient id="ctaGrad" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:%23ffffff;stop-opacity:0.1"/><stop offset="100%" style="stop-color:%23ffffff;stop-opacity:0"/></radialGradient></defs><circle cx="10" cy="10" r="2" fill="url(%23ctaGrad)"/><circle cx="30" cy="5" r="1.5" fill="url(%23ctaGrad)"/><circle cx="70" cy="15" r="1" fill="url(%23ctaGrad)"/><circle cx="90" cy="8" r="1.2" fill="url(%23ctaGrad)"/></svg>') repeat;
    animation: floatingParticlesAlt 20s linear infinite;
    z-index: 0;
    opacity: 0.8;
}

/* Additional background elements for depth */
.cta-bg-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulseBackground 4s ease-in-out infinite alternate;
}

@keyframes floatingParticlesAlt {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-100px) translateY(-50px); }
}

@keyframes pulseBackground {
    0% { opacity: 0.3; }
    100% { opacity: 0.6; }
}

.cta-container-alt {
    position: relative;
    z-index: 2;
    width: 100%;
}

.cta-content-alt {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-light);
    padding: 0 20px;
}

.cta-badge-alt {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 600;
    animation: slideInDownAlt 0.8s ease-out;
    color: var(--text-light);
    font-family: 'Inter', Arial, sans-serif;
}

.cta-badge-alt i {
    color: var(--accent-color);
    font-size: 16px;
}

.cta-title-alt {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text-light);
    animation: slideInUpAlt 0.8s ease-out 0.2s both;
    font-family: 'Inter', Arial, sans-serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cta-description-alt {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 50px;
    opacity: 0.95;
    animation: slideInUpAlt 0.8s ease-out 0.4s both;
    color: rgba(255, 255, 255, 0.95);
    font-family: 'Inter', Arial, sans-serif;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}

.cta-features-alt {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
    animation: slideInUpAlt 0.8s ease-out 0.6s both;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}

.cta-feature-alt {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 18px 20px;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    font-weight: 600;
    color: var(--text-light);
    font-family: 'Inter', Arial, sans-serif;
    cursor: pointer;
}

.cta-feature-alt:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-feature-alt i {
    color: var(--accent-color);
    font-size: 18px;
    flex-shrink: 0;
}

.cta-buttons-alt {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideInUpAlt 0.8s ease-out 0.8s both;
    margin-bottom: 80px;
}

.btn-alt {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 35px;
    border-radius: var(--radius-xl);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 240px;
    justify-content: center;
    border: none;
    font-family: 'Inter', Arial, sans-serif;
    cursor: pointer;
    box-sizing: border-box;
}

.btn-primary-alt {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--gold) 100%);
    color: #1a202c;
    box-shadow: var(--shadow-xl);
}

.btn-primary-alt::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.6s ease;
}

.btn-primary-alt:hover::before {
    left: 100%;
}

.btn-primary-alt:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(247, 191, 79, 0.4);
}

.btn-outline-alt {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-light);
}

.btn-outline-alt:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

.btn-content-alt {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    text-align: left;
}

.btn-title-alt {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
}

.btn-subtitle-alt {
    font-size: 13px;
    opacity: 0.8;
    font-weight: 500;
    line-height: 1.2;
}

.pulse-animation-alt {
    animation: pulseAlt 2s infinite;
}

@keyframes pulseAlt {
    0% { box-shadow: 0 0 0 0 rgba(247, 191, 79, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(247, 191, 79, 0); }
    100% { box-shadow: 0 0 0 0 rgba(247, 191, 79, 0); }
}

/* === STATS SECTION === */
.cta-stats-alt {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideInUpAlt 0.8s ease-out 1s both;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item-alt {
    text-align: center;
    color: var(--text-light);
    font-family: 'Inter', Arial, sans-serif;
}

.stat-number-alt {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 8px;
    animation: countUpAlt 2s ease-out 1.2s both;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-label-alt {
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.2;
}

/* === ANIMATIONS === */
@keyframes slideInDownAlt {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUpAlt {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes countUpAlt {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .cta-section-alt {
        padding: 80px 0;
        min-height: 500px;
    }

    .cta-content-alt {
        padding: 0 15px;
    }

    .cta-title-alt {
        font-size: 2.5rem;
    }

    .cta-description-alt {
        font-size: 1.1rem;
    }

    .cta-features-alt {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 400px;
    }

    .cta-buttons-alt {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .btn-alt {
        width: 100%;
        max-width: 300px;
        padding: 16px 30px;
    }

    .cta-stats-alt {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-top: 60px;
        max-width: 400px;
    }

    .stat-number-alt {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .cta-section-alt {
        padding: 60px 0;
    }

    .cta-content-alt {
        padding: 0 10px;
    }

    .cta-title-alt {
        font-size: 2rem;
    }

    .cta-description-alt {
        font-size: 1rem;
    }

    .cta-badge-alt {
        padding: 10px 20px;
        font-size: 13px;
    }

    .cta-feature-alt {
        padding: 15px 18px;
        font-size: 14px;
    }

    .btn-alt {
        padding: 14px 25px;
        min-width: 200px;
    }

    .btn-title-alt {
        font-size: 15px;
    }

    .btn-subtitle-alt {
        font-size: 12px;
    }

    .cta-stats-alt {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 250px;
    }

    .stat-number-alt {
        font-size: 1.8rem;
    }

    .stat-label-alt {
        font-size: 0.9rem;
    }
}

/* === ACCESSIBILITY === */
@media (prefers-reduced-motion: reduce) {
    .cta-section-alt *,
    .cta-section-alt *::before,
    .cta-section-alt *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* === FOCUS STATES === */
.btn-alt:focus {
    outline: 3px solid rgba(247, 191, 79, 0.5);
    outline-offset: 2px;
}

.cta-feature-alt:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}