/* ============================================
   CTA SECTION - MINIMAL REDESIGN
   Simple, centered single-action design with wave animation
   ============================================ */

.cta-section {
    padding: 120px 5% 200px;
    background: transparent;
    text-align: center;
    position: relative;
    overflow: visible;
    z-index: 1;
}

/* Background handled by ending-section.css */

.cta-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Title */
.cta-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
    letter-spacing: -0.02em;
}

body.dark-theme .cta-title {
    color: var(--light-text);
}

/* Subtitle */
.cta-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 3rem;
}

body.dark-theme .cta-subtitle {
    color: var(--dark-text-light);
}

/* Button - Ensure visibility */
.cta-button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: clamp(1rem, 2vw, 1.25rem) clamp(2rem, 4vw, 3rem);
    font-size: clamp(1rem, 2vw, 1.1rem);
    font-weight: 600;
    color: white !important;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(28, 55, 101, 0.2);
    opacity: 1 !important;
    visibility: visible !important;
    position: relative;
    z-index: 10;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(28, 55, 101, 0.3);
}

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

body.dark-theme .cta-button {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    box-shadow: 0 10px 40px rgba(72, 145, 86, 0.3);
}

body.dark-theme .cta-button:hover {
    box-shadow: 0 15px 50px rgba(72, 145, 86, 0.4);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .cta-section {
        padding: 80px 5% 150px;
    }

    .cta-button {
        width: 100%;
        max-width: 350px;
    }
}
