/* Visitor Engagement Widget Styles */
.nawe-visitor-engagement-wrapper {

    margin: 0 auto;
}

.visitor-engagement-header {
    margin-bottom: 50px;
}

.visitor-engagement-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: #0F172A;
    margin-bottom: 20px;
}

.visitor-engagement-title span {
    color: #E11D48;
    /* Pink/Red from image */
}

.visitor-engagement-description {
    font-size: 16px;
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 40px;
}

/* Features Grid */
.visitor-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.engagement-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.engagement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.card-icon-wrap {
    width: 40px;
    height: 40px;
    background: #FFF1F2;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #E11D48;
    font-size: 18px;
}

.card-title {
    font-size: 16px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 10px;
}

.card-desc {
    font-size: 14px;
    line-height: 1.5;
    color: #64748B;
}

/* CTA Banner */
.engagement-cta-banner {
    background: #FFFBFB;
    border: 1px solid #FFEDED;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
}

.cta-banner-title {
    font-size: 28px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 15px;
}

.cta-banner-text {
    font-size: 15px;
    color: #64748B;
    margin-bottom: 30px;
}

.engagement-action-btn {
    display: inline-block;
    background: #E11D48;
    color: #FFFFFF;
    padding: 14px 34px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}

.engagement-action-btn:hover {
    background: #BE123C;
    color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
    .visitor-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .visitor-features-grid {
        grid-template-columns: 1fr;
    }

    .visitor-engagement-title {
        font-size: 32px;
    }
}