/* ==========================================================================
   Global CTA Section
   ========================================================================== */
.svc-cta-section {
    background-color: #f8fafc;
    padding: 90px 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    z-index: 2;
}

.svc-cta-banner {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: var(--thm-card-radius, 20px);
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
}

.svc-cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: var(--thm-primary);
    opacity: 0.06;
    border-radius: 50%;
}

.svc-cta-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 250px;
    border-top-color: #334155;
}

/* Dark Mode Variations */
.theme-dark .svc-cta-section {
    background-color: var(--thm-black);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.theme-dark .svc-cta-banner {
    background: var(--thm-gray-rgb);
}

/* Light Mode Variations */
.theme-light .svc-cta-section {
    background-color: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.theme-light .svc-cta-banner {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05) !important;
    border: 1px solid #cbd5e1 !important;
}

.theme-light .svc-cta-banner::before {
    opacity: 0.03 !important;
}

.theme-light .svc-cta-banner::after {
    border-top-color: #cbd5e1 !important;
}

.theme-light .svc-cta-title {
    color: #0f172a;
}

.theme-light .svc-cta-desc {
    color: #475569;
}

.theme-light .svc-cta-btn:hover {
    background: #0f172a;
    color: #ffffff;
}

.svc-cta-title {
    color: #ffffff;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

.svc-cta-desc {
    color: #94a3b8;
    font-size: 18px;
    margin-bottom: 0;
}

.svc-cta-btn {
    display: inline-block;
    background: var(--thm-primary);
    color: #ffffff;
    padding: 16px 36px;
    border-radius: var(--thm-btn-radius, 50px);
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.svc-cta-btn:hover {
    background: #ffffff;
    color: #0f172a;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.svc-cta-btn i {
    margin-left: 8px;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 991px) {
    .svc-cta-banner {
        padding: 50px 35px;
        text-align: center;
    }

    .svc-cta-title {
        font-size: 30px;
    }

    .svc-cta-desc {
        margin-bottom: 30px;
    }
}