.chat-cta-section {
    background: rgba(255, 255, 255, 0) !important;
    border-radius: var(--radius);
    padding: 10px 10px;
    position: relative;
    overflow: hidden;
    color: #000000 !important;
    
    /* Center alignment */
    max-width: 1200px !important;
    
    /* TOP MARGIN KO KAM KIYA - Section upar ho jayega */
    margin: -5% auto !important;  /* Pehle 4px tha, ab 20px top ke liye */
    /* Agar aur upar chahiye to 10px ya 0px kar dein */
    padding-bottom: 10%;
    width: 100%;
    box-sizing: border-box;
    
    /* Flexbox for left-right layout */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
/* Decorative Glow */
.chat-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.chat-content {
    flex: 1;
    z-index: 2;
    max-width: 600px;
    color: #000000 !important;
    
    /* Vertical stacking */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.chat-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(169, 0, 236, 0.2);
    backdrop-filter: blur(5px);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #000000 !important;
    align-self: flex-start;
}

.chat-status-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse-green 2s infinite;
    box-shadow: 0 0 0 2px rgba(74, 222, 128, 0.4);
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(74, 222, 128, 0); }
    100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.chat-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #000000 !important;
    margin: 10px 0 0 0;
}

.chat-desc {
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.9) !important;
    line-height: 1.6;
    margin: 0;
}

.chat-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    color: #000000 !important;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    margin-top: 10px;
}

.chat-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    background: #f9fafb;
}

.chat-btn svg {
    width: 20px;
    height: 20px;
}

/* Agent Card (Right Side) */
.chat-visual {
    flex: 0 0 340px;
    z-index: 2;
    display: block;
}

.agent-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    color: #1f2937;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0);
    position: relative;
    animation: float-card 3s ease-in-out infinite;
    border: 1px solid rgba(255,255,255,0.5);
}

@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.agent-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f3f4f6;
}

.agent-avatar {
    width: 48px;
    height: 48px;
    background: #f5f3ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7c3aed;
    font-weight: 700;
    font-size: 1.2rem;
    font-family: 'Poppins', sans-serif;
}

.agent-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.agent-info p {
    font-size: 0.85rem;
    color: #10b981;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 4px 0 0 0;
}

.chat-bubble {
    background: #e2b6ff;
    padding: 12px 16px;
    border-radius: 12px 12px 12px 0;
    font-size: 0.9rem;
    color: #4b5563;
    margin-bottom: 10px;
    position: relative;
    line-height: 1.4;
}

.chat-bubble.highlight {
    background: #9d89ff;
    color: #7c3aed;
    border-radius: 12px 12px 0 12px;
    margin-left: auto;
    width: fit-content;
    font-weight: 600;
}
/* Responsive */
@media (max-width: 900px) {
    .chat-cta-section {
        flex-direction: column;
        padding: 40px 20px;
        margin: 20px 15px !important;
        max-width: calc(100% - 30px) !important;
    }
    
    .chat-content { 
        max-width: 100%;
        align-items: center;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .chat-badge {
        align-self: center;
    }
    
    .chat-btn { 
        width: 100%; 
        justify-content: center; 
    }
    
    .chat-title { 
        font-size: 1.75rem; 
    }
    
    .chat-desc {
        font-size: 1rem;
    }
    
    /* Image ko dikhayen mobile par */
    .chat-visual { 
        display: block;
        flex: 0 0 100%;
        width: 100%;
        margin-top: 20px;
    }
    
    .agent-image-container {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .agent-image-container img {
        width: 100% !important;
        max-width: 400px;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 20px 40px 10px rgba(255, 255, 255, 0.81);
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .chat-title {
        font-size: 1.5rem;
    }
    
    .chat-desc {
        font-size: 0.95rem;
    }
    
    .chat-btn {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    .agent-image-container img {
        max-width: 100%;
    }
}