﻿/* ========================================
               CTA Banner Section - Modern Design
               ======================================== */
.cta-banner-section {
    padding: 0;
    margin: 80px 0;
    position: relative;
}

.cta-banner-wrapper {
    background: linear-gradient(135deg, #FFD500 0%, #FFC400 100%);
    border-radius: 32px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 213, 0, 0.3);
}

/* Background Decorations */
.cta-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.cta-circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
}

.cta-circle-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
}

.cta-circle-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 30%;
    opacity: 0.5;
}

/* Content */
.cta-content {
    position: relative;
    z-index: 2;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.1);
    color: #000;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.cta-badge i {
    font-size: 1rem;
}

.cta-title {
    font-size: 3rem;
    font-weight: 900;
    color: #000;
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 1rem;
}

.cta-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFD500, #FFC400, #FFD500);
    border-radius: 1px;
    animation: shimmer 3s ease-in-out infinite;
}

.cta-description {
    font-size: 1.125rem;
    color: #1A1A1A;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 600px;
}

/* Features */
.cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #000;
    font-weight: 600;
    font-size: 0.9375rem;
}

.cta-feature-item i {
    color: #000;
    font-size: 1.125rem;
}

/* Action Side */
.cta-action {
    position: relative;
    z-index: 2;
    text-align: center;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: #000;
    color: #FFD500;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    width: 100%;
    margin-bottom: 1.5rem;
}

.btn-cta-primary:hover {
    background: #1A1A1A;
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    color: #FFD500;
}

.btn-cta-primary i {
    transition: transform 0.3s ease;
}

.btn-cta-primary:hover i {
    transform: translateX(-4px);
}

/* Mini Stats */
.cta-stats-mini {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 16px;
}

.stat-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-mini strong {
    font-size: 1.75rem;
    font-weight: 900;
    color: #000;
    line-height: 1;
}

.stat-mini span {
    font-size: 0.875rem;
    color: #1A1A1A;
    margin-top: 0.25rem;
    font-weight: 600;
}

/* Note */
.cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #1A1A1A;
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0;
}

.cta-note i {
    color: #000;
}

/* Responsive */
@@media (max-width: 991px) {
    .cta-banner-section {
        margin: 60px 0;
    }

    .cta-banner-wrapper {
        padding: 40px 30px;
    }

    .cta-title {
        font-size: 2.25rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .cta-action {
        margin-top: 2rem;
    }

    .btn-cta-primary {
        padding: 1rem 2rem;
        font-size: 1.125rem;
    }
}

@@media (max-width: 576px) {
    .cta-banner-section {
        margin: 40px 0;
    }

    .cta-banner-wrapper {
        padding: 30px 20px;
        border-radius: 24px;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .cta-description {
        font-size: 0.9375rem;
    }

    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-stats-mini {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-cta-primary {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}



/* RTL: Arrow animation direction */
html[dir="rtl"] .btn-cta-primary:hover i {
    transform: translateX(4px);
}

/* LTR: Arrow animation direction */
html[dir="ltr"] .btn-cta-primary:hover i {
    transform: translateX(-4px);
}