/* 
    EASYBOOST SERVICE CTA v2.0 - COMPACT STRIP
    Focus: More Text, Less Vertical Space, Professional
*/

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;800&family=Syne:wght@700&display=swap');

.eb-cta-compact-wrapper {
    background-color: #020205;
    padding: 80px 0; /* Vertical padding kam kar di */
    font-family: 'Plus Jakarta Sans', sans-serif;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.eb-cta-box {
    max-width: 1250px;
    margin: 0 auto;
    background: linear-gradient(90deg, #0a0a0e 0%, #050508 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 5px solid #25d366; /* Growth Green Accent */
    border-radius: 20px;
    padding: 50px;
    display: flex; /* Side by Side Layout */
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

/* Subtle Background Pattern */
.eb-cta-box::before {
    content: '';
    position: absolute;
    right: 0; top: 0; width: 300px; height: 100%;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* --- LEFT SIDE: HEAVY CONTENT --- */
.eb-cta-text-side {
    flex: 1; /* Takes maximum space */
}

.eb-cta-head {
    font-family: 'Syne', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.eb-cta-head span {
    color: #25d366;
}

.eb-cta-para {
    font-size: 16px;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Benefit List (To add more content density) */
.eb-cta-benefits {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.eb-benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: rgba(255,255,255,0.05);
    padding: 8px 15px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.1);
}

.eb-benefit-item i {
    color: #25d366;
}

/* --- RIGHT SIDE: ACTION BUTTON --- */
.eb-cta-action-side {
    flex-shrink: 0; /* Button shrink nahi hoga */
}

.eb-compact-btn {
    padding: 18px 40px;
    background: #fff;
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.eb-compact-btn:hover {
    background: #25d366;
    box-shadow: 0 0 40px rgba(37, 211, 102, 0.4);
    transform: translateX(-5px);
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .eb-cta-box { flex-direction: column; text-align: left; align-items: flex-start; gap: 30px; }
    .eb-cta-benefits { flex-direction: column; gap: 10px; }
    .eb-cta-action-side { width: 100%; }
    .eb-compact-btn { width: 100%; justify-content: center; }
}