/* 
 * Global CTA Section Styles
 * Unified styling for Call-to-Action sections across all pages
 */

.cta-section {
    background: linear-gradient(135deg, #FBC430 0%, #F5A623 100%);
    padding: 60px 30px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 80px;
}

.cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 36px;
    color: #101010;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-section p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #303030;
    margin-bottom: 34px;
    max-width: 700px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #383455;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    background-color: #2d2843;
    color: #FFFFFF;
}

/* Decorative elements */
.cta-section::before,
.cta-section::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background-color: rgba(239, 132, 7, 0.4);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.6;
}

.cta-section::before {
    right: -80px;
    top: -80px;
}

.cta-section::after {
    left: -80px;
    bottom: -80px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .cta-section {
        padding: 50px 25px;
        margin-bottom: 60px;
    }

    .cta-section h2 {
        font-size: 30px;
    }

    .cta-section p {
        font-size: 16px;
    }

    .cta-btn {
        padding: 12px 28px;
        font-size: 16px;
    }

    .cta-section::before,
    .cta-section::after {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 576px) {
    .cta-section {
        padding: 40px 20px;
        margin-bottom: 50px;
        border-radius: 15px;
    }

    .cta-section h2 {
        font-size: 26px;
        margin-bottom: 16px;
    }

    .cta-section p {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .cta-btn {
        padding: 12px 24px;
        font-size: 15px;
        width: 100%;
        max-width: 280px;
    }

    .cta-section::before,
    .cta-section::after {
        display: none;
    }
}