/* ========================================
   CTA SECTION STYLES
   Simple Glass CTA - 1700x522
   ======================================== */

/* ===== SECTION WRAPPER ===== */
.cta-section {
    padding: 100px 0;
}

/* ===== CTA CONTAINER ===== */
.cta-container {
    max-width: 1700px;
    height: 522px;
    margin: 0 auto;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 80px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
}

.cta-container:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(233, 30, 99, 0.2);
}

/* ===== CTA TITLE ===== */
.cta-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    color: #FFF;
    margin-bottom: 24px;
}

.cta-title .highlight {
    background: linear-gradient(135deg, #E91E63 0%, #C2185B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===== CTA DESCRIPTION ===== */
.cta-description {
    font-size: 20px;
    line-height: 1.6;
    color: #9ca3af;
    max-width: 900px;
    margin-bottom: 40px;
}

/* ===== CTA BUTTON ===== */
.cta-button {
    padding: 18px 48px;
    border-radius: 100px;
    background: linear-gradient(135deg, #E91E63 0%, #C2185B 100%);
    color: #ffffff !important;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(233, 30, 99, 0.3);
}

.cta-button:hover {
    background: linear-gradient(135deg, #C2185B 0%, #9C27B0 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(233, 30, 99, 0.4);
    color: #ffffff !important;
}

.cta-button i {
    font-size: 20px;
    color: #ffffff;
}

/* ===== LIGHT MODE ===== */
body.light-mode .cta-container {
    background: rgba(255, 255, 255, 0.8);
    border-color: #e5e7eb;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

body.light-mode .cta-container:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(233, 30, 99, 0.2);
}

body.light-mode .cta-title {
    color: #1d1d1f;
}

body.light-mode .cta-description {
    color: #4b5563;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1750px) {
    .cta-container {
        max-width: 90%;
    }
}

@media (max-width: 991px) {
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-container {
        height: auto;
        padding: 60px 40px;
    }
    
    .cta-title {
        font-size: 42px;
    }
    
    .cta-description {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-container {
        margin: 0 20px;
        padding: 48px 32px;
        border-radius: 24px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .cta-description {
        font-size: 16px;
        margin-bottom: 32px;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 16px 40px;
    }
}

