/* Enhanced CTA Section with RNI/PGI - Optimized Version */
.news-cta-wrapper {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #1A237E 0%, #283593 100%);
    color: white;
    padding: 0rem .5rem;
    margin: 1rem auto;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-shadow: 0 15px 35px rgba(26, 35, 126, 0.25);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.cta-main-heading {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: #FFD700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-sub-heading {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.cta-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* RNI/PGI Box */
.rni-box {
    background: rgba(255, 106, 73, 0.15);
    border-radius: 12px;
    padding: 1.2rem;
    margin: 0rem auto;
    max-width: 700px;
    border: 2px solid rgba(255, 106, 73, 0.3);
    backdrop-filter: blur(5px);
}

.rni-box-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.rni-box-icon {
    color: #FF9A3D;
    font-size: 1.5rem;
}

.rni-box-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #FFD700;
    margin: 0;
}

.rni-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.rni-feature-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rni-feature-item i {
    color: #4CAF50;
    font-size: 0.9rem;
}

.consultant-tag {
    display: inline-block;
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 215, 0, 0.4);
}

/* Feature Tags */
.feature-tags-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.feature-tag i {
    margin-right: 5px;
}

.feature-tag:nth-child(1) i {
    color: #4CAF50;
}

.feature-tag:nth-child(2) i {
    color: #2196F3;
}

.feature-tag:nth-child(3) i {
    color: #FFC107;
}

/* CTA Buttons */
.cta-action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.cta-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    min-width: 180px;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.cta-whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.cta-whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.cta-demo-btn {
    background: linear-gradient(135deg, #D32F2F, #B71C1C);
    color: white;
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.3);
}

.cta-demo-btn:hover {
    background: linear-gradient(135deg, #B71C1C, #D32F2F);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(211, 47, 47, 0.4);
}

.cta-contact-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-contact-btn:hover {
    background: white;
    color: #1A237E;
    transform: translateY(-3px);
}

/* Stats */
.stats-container {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.stats-container i {
    color: #4CAF50;
    margin-right: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .news-cta-wrapper {
        padding: 0rem .6rem;
    }
    
    .cta-main-heading {
        font-size: 1.8rem;
    }
    
    .cta-sub-heading {
        font-size: 1.2rem;
    }
    
    .cta-action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-action-btn {
        width: 100%;
        max-width: 280px;
    }
    
    .rni-features {
        flex-direction: column;
        align-items: center;
    }
    
    .rni-feature-item {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .feature-tags-container {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-tag {
        width: 100%;
        max-width: 200px;
        justify-content: center;
        display: flex;
    }
}

@media (max-width: 480px) {
    .cta-main-heading {
        font-size: 1.5rem;
    }
    
    .cta-sub-heading {
        font-size: 1rem;
    }
    
    .cta-description {
        font-size: 0.9rem;
    }
}