/* ===================================
   MODERN CTA SECTION (S4)
   =================================== */

.modern-cta-section {
    background: linear-gradient(135deg, #008060 0%, #00a078 50%, #00b885 100%);
    padding: 100px 0 !important;
    position: relative;
    overflow: hidden;
}

/* Animated Background Pattern */
.modern-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* CTA Wrapper */
.cta-wrapper {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 60px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* CTA Content */
.cta-content {
    color: #ffffff;
}

.cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.cta-content h2 span {
    color: #fff5e6;
    position: relative;
    display: inline-block;
}

.cta-content p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 30px 0;
}

/* CTA Features List */
.cta-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.cta-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
}

.cta-features li svg {
    flex-shrink: 0;
    color: #fff5e6;
}

/* CTA Actions */
.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.cta-primary-btn,
.cta-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    text-align: center;
}

.cta-primary-btn {
    background: #ffffff;
    color: #008060;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cta-primary-btn:hover {
    background: #fff5e6;
    color: #008060;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.cta-primary-btn svg {
    transition: transform 0.3s ease-in-out;
}

.cta-primary-btn:hover svg {
    transform: translateX(5px);
}

.cta-secondary-btn {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    color: #ffffff;
}

.cta-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin: 10px 0 0 0;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 991px) {
    .modern-cta-section {
        padding: 80px 0 !important;
    }

    .cta-wrapper {
        padding: 50px 40px;
    }

    .cta-content h2 {
        font-size: 36px;
    }

    .cta-content p {
        font-size: 16px;
    }

    .cta-actions {
        margin-top: 40px;
    }

    .cta-features {
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {
    .modern-cta-section {
        padding: 60px 0 !important;
    }

    .cta-wrapper {
        padding: 40px 25px;
        border-radius: 16px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 15px;
    }

    .cta-features {
        flex-direction: column;
        gap: 12px;
    }

    .cta-features li {
        font-size: 14px;
    }

    .cta-primary-btn,
    .cta-secondary-btn {
        padding: 16px 30px;
        font-size: 15px;
    }

    .cta-note {
        font-size: 13px;
    }
}