/* 
    EASYBOOST WHATSAPP SYNC v1.0
    Theme: Neural Green / Dark Glass
    Prefix: eb-ws-
*/

.eb-ws-wrapper {
    background-color: #010103 !important;
    padding: 50px 0 !important;
    position: relative;
    overflow: hidden;
    font-family: 'Outfit', sans-serif !important;
    border-top: 1px solid rgba(255,255,255,0.03);
}

/* Background Green Glow */
.eb-ws-bg-glow {
    position: absolute;
    bottom: -100px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 300px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.08) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.eb-ws-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 25px;
    position: relative;
    z-index: 10;
}

/* --- THE ACTION CARD --- */
.eb-ws-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 30px;
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    backdrop-filter: blur(15px);
    transition: 0.4s;
}

.eb-ws-card:hover {
    border-color: rgba(37, 211, 102, 0.3);
    background: rgba(37, 211, 102, 0.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

/* Text Side */
.eb-ws-text h3 {
    font-family: 'Syne', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.eb-ws-text h3 span {
    color: #25d366; /* WhatsApp Green */
    text-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
}

.eb-ws-text p {
    color: #94a3b8;
    font-size: 18px;
    font-weight: 300;
    max-width: 500px;
}

/* --- THE NEON BUTTON --- */
.eb-ws-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 45px;
    background: #25d366;
    color: #000;
    border-radius: 50px;
    font-weight: 900;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    position: relative;
}

.eb-ws-btn i {
    font-size: 24px;
}

/* Hover Effect */
.eb-ws-btn:hover {
    transform: scale(1.08) rotate(-2deg);
    background: #fff;
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.2);
}

/* Pulsing Badge on Top of Button */
.eb-ws-badge {
    position: absolute;
    top: -15px; right: 20px;
    background: #000;
    border: 1px solid #25d366;
    color: #25d366;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .eb-ws-card { flex-direction: column; text-align: center; padding: 40px 25px; }
    .eb-ws-text h3 { font-size: 28px; }
    .eb-ws-btn { width: 100%; justify-content: center; }
}