/* ========================================
   MODERN CTA SECTION WITH IMAGE LEFT
   Theme Colors Integration
   ======================================== */

.cta-style-modern {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.cta-style-modern .inner-container {
    position: relative;
    display: grid;
    grid-template-columns: 45% 55%;
    align-items: center;
    background: linear-gradient(135deg, var(--theme-color-light) 0%, #002347 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 56, 102, 0.4);
}

/* Left Side - Image */
.cta-style-modern .image-column {
    position: relative;
    height: 100%;
    min-height: 450px;
}

.cta-style-modern .image-box {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.cta-style-modern .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.cta-style-modern:hover .image-box img {
    transform: scale(1.05);
}

/* Image overlay gradient */
.cta-style-modern .image-box::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100px;
    background: linear-gradient(90deg, transparent 0%, var(--theme-color-light) 100%);
    pointer-events: none;
}

/* Decorative pattern overlay on image */
.cta-style-modern .image-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(241, 103, 62, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 56, 102, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Right Side - Content */
.cta-style-modern .content-column {
    position: relative;
    padding: 60px 70px;
}

/* Decorative elements */
.cta-style-modern .content-column::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(53, 91, 170, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-style-modern .content-box {
    position: relative;
    z-index: 2;
}

/* Badge/Label */
.cta-style-modern .label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(241, 103, 62, 0.15);
    color: var(--theme-color);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    margin-bottom: 20px;
    border: 1px solid rgba(241, 103, 62, 0.3);
}

/* Heading */
.cta-style-modern .content-box h2 {
    position: relative;
    font-size: 42px;
    line-height: 1.3;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.cta-style-modern .content-box h2 span {
    background: linear-gradient(135deg, var(--theme-color) 0%, #ff8a65 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Description */
.cta-style-modern .content-box p {
    font-size: 17px;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 32px;
    max-width: 90%;
}

/* Action Section */
.cta-style-modern .action-box {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Primary Button */
.cta-style-modern .theme-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--theme-color) 0%, var(--theme-color-light) 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(53, 91, 170, 0.3);
}

.cta-style-modern .theme-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-style-modern .theme-btn:hover::before {
    left: 100%;
}

.cta-style-modern .theme-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(53, 91, 170, 0.5);
}

.cta-style-modern .theme-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.cta-style-modern .theme-btn:hover i {
    transform: translateX(5px);
}

/* Secondary Link */
.cta-style-modern .link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-style-modern .link-btn:hover {
    color: var(--theme-color-light);
    gap: 12px;
}

.cta-style-modern .link-btn i {
    font-size: 18px;
}

/* Stats/Features Grid */
.cta-style-modern .features-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-style-modern .feature-item {
    text-align: center;
}

.cta-style-modern .feature-item .number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--theme-color);
    margin-bottom: 8px;
}

.cta-style-modern .feature-item .text {
    display: block;
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.4;
}


/* ========================================
   ALTERNATIVE STYLE: LIGHT VERSION
   ======================================== */

.cta-style-modern.light-version .inner-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
}

.cta-style-modern.light-version .image-box::after {
    background: linear-gradient(90deg, transparent 0%, #ffffff 100%);
}

.cta-style-modern.light-version .content-column::before {
    background: radial-gradient(circle, rgba(241, 103, 62, 0.1) 0%, transparent 70%);
}

.cta-style-modern.light-version .label {
    background: rgba(241, 103, 62, 0.1);
    color: var(--theme-color);
    border: 1px solid rgba(53, 91, 170, 0.2);
}

.cta-style-modern.light-version .content-box h2 {
    color: var(--theme-color-light);
}

.cta-style-modern.light-version .content-box p {
    color: #475569;
}

.cta-style-modern.light-version .link-btn {
    color: #64748b;
}

.cta-style-modern.light-version .link-btn:hover {
    color: var(--theme-color);
}

.cta-style-modern.light-version .features-list {
    border-top: 1px solid #e2e8f0;
}

.cta-style-modern.light-version .feature-item .text {
    color: #64748b;
}


/* ========================================
   ALTERNATIVE LAYOUT: IMAGE RIGHT
   ======================================== */

.cta-style-modern.image-right .inner-container {
    grid-template-columns: 55% 45%;
}

.cta-style-modern.image-right .image-column {
    order: 2;
}

.cta-style-modern.image-right .content-column {
    order: 1;
}

.cta-style-modern.image-right .image-box::after {
    left: 0;
    right: auto;
    background: linear-gradient(270deg, transparent 0%, var(--theme-color-light) 100%);
}

.cta-style-modern.light-version.image-right .image-box::after {
    background: linear-gradient(270deg, transparent 0%, #ffffff 100%);
}


/* ========================================
   COMPACT VERSION
   ======================================== */

.cta-style-modern.compact {
    padding: 60px 0;
}

.cta-style-modern.compact .inner-container {
    grid-template-columns: 40% 60%;
}

.cta-style-modern.compact .image-column {
    min-height: 350px;
}

.cta-style-modern.compact .content-column {
    padding: 40px 50px;
}

.cta-style-modern.compact .content-box h2 {
    font-size: 36px;
    margin-bottom: 12px;
}

.cta-style-modern.compact .content-box p {
    font-size: 16px;
    margin-bottom: 24px;
}

.cta-style-modern.compact .features-list {
    margin-top: 30px;
    padding-top: 30px;
}


/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media only screen and (max-width: 1199px) {
    .cta-style-modern .content-column {
        padding: 50px 50px;
    }

    .cta-style-modern .content-box h2 {
        font-size: 36px;
    }

    .cta-style-modern .features-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media only screen and (max-width: 991px) {
    .cta-style-modern .inner-container,
    .cta-style-modern.image-right .inner-container,
    .cta-style-modern.compact .inner-container {
        grid-template-columns: 1fr;
    }

    .cta-style-modern .image-column,
    .cta-style-modern.image-right .image-column {
        min-height: 300px;
        order: 1;
    }

    .cta-style-modern .content-column,
    .cta-style-modern.image-right .content-column {
        order: 2;
        padding: 40px 30px;
    }

    .cta-style-modern .image-box::after {
        display: none;
    }

    .cta-style-modern .content-box p {
        max-width: 100%;
    }

    .cta-style-modern .features-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media only screen and (max-width: 767px) {
    .cta-style-modern {
        padding: 60px 0;
    }

    .cta-style-modern .inner-container {
        border-radius: 16px;
    }

    .cta-style-modern .content-column {
        padding: 30px 25px;
    }

    .cta-style-modern .content-box h2 {
        font-size: 28px;
    }

    .cta-style-modern .content-box p {
        font-size: 15px;
    }

    .cta-style-modern .action-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .cta-style-modern .theme-btn {
        width: 100%;
        justify-content: center;
    }

    .cta-style-modern .features-list {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: left;
    }

    .cta-style-modern .feature-item {
        text-align: left;
        padding-left: 20px;
        border-left: 3px solid var(--theme-color);
    }
}

