/* Layout Improvements for NioSpark */

/* ===== SPACING & SECTIONS ===== */
.section-padding {
    padding: 100px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}

/* ===== SECTION BADGES ===== */
.section-badge {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.section-badge.badge-light {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.section-badge.badge-premium {
    background: var(--gold-gradient);
    box-shadow: 0 4px 15px rgba(246, 211, 101, 0.4);
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    .section-subtitle {
        font-size: 1rem;
    }
}

/* ===== HERO SECTION IMPROVEMENTS ===== */
.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.8;
    font-weight: 300;
}

.badge-hero {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 50px;
    color: white;
}

.text-gradient-shine {
    background: linear-gradient(45deg, #fff, #ffd700, #fff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.hero-stats .stat-item {
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 120px;
}

.btn-hero-primary {
    background: white;
    color: var(--primary-color);
    border: none;
    font-weight: 700;
}

.btn-hero-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    transform: translateY(-5px) scale(1.05);
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-hero-secondary:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

/* ===== BLOG CARDS IMPROVEMENTS ===== */
.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.blog-card-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.blog-category {
    background: white;
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
}

.blog-card-body {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: #999;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card-excerpt {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-read-more:hover {
    gap: 10px;
    color: var(--secondary-color);
}

/* ===== SERVICE CARDS IMPROVEMENTS ===== */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: white;
    top: 10%;
    left: -5%;
    animation: float 15s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: white;
    bottom: 10%;
    right: 5%;
    animation: float 12s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: white;
    top: 50%;
    right: 10%;
    animation: float 18s ease-in-out infinite;
}

.service-card-premium {
    background: white;
    border-radius: 25px;
    padding: 35px 25px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card-premium:hover::before {
    transform: scaleX(1);
}

.service-icon-wrapper {
    text-align: center;
    margin-bottom: 25px;
}

.service-icon {
    width: 90px;
    height: 90px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    animation: pulse 3s ease infinite;
}

.service-icon i {
    color: white !important;
    font-size: 2.5rem;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.service-description {
    color: #666;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 25px;
}

.btn-service-apply {
    display: block;
    width: 100%;
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s ease;
}

.btn-service-apply:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    color: white;
}

.service-free-badge {
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    background: linear-gradient(135deg, rgba(132, 250, 176, 0.2), rgba(143, 211, 244, 0.2));
    border-radius: 15px;
    color: #2ecc71;
    font-weight: 700;
    font-size: 0.9rem;
}

.info-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
}

/* ===== PREMIUM SECTION IMPROVEMENTS ===== */
.bg-premium-gradient {
    background: linear-gradient(135deg, #fff5e6 0%, #ffe8cc 100%);
}

.premium-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(246, 211, 101, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(253, 160, 133, 0.1) 0%, transparent 50%);
}

.premium-image-wrapper {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.premium-badge-float {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--gold-gradient);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 30px rgba(246, 211, 101, 0.5);
    animation: pulse 2s ease infinite;
}

.premium-illustration {
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

.premium-illustration-svg {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

.premium-illustration-svg svg {
    width: 100%;
    height: auto;
}

.text-gradient-gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.premium-features {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gold-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.feature-icon i {
    color: white !important;
    font-size: 1.5rem;
}

.feature-content h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.feature-content p {
    margin: 0;
    font-size: 0.95rem;
}

.btn-premium {
    background: var(--gold-gradient);
    color: white;
    border: none;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(246, 211, 101, 0.4);
}

.btn-premium:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(246, 211, 101, 0.5);
    color: white;
}

/* ===== RESPONSIVE IMPROVEMENTS ===== */
@media (max-width: 992px) {
    .premium-badge-float {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto;
    }
}

/* ===== GRID IMPROVEMENTS ===== */
.row.g-4 {
    row-gap: 2rem !important;
}

.row.g-5 {
    row-gap: 3rem !important;
}

/* ===== CONTAINER MAX-WIDTH ===== */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* ===== SMOOTH SECTION TRANSITIONS ===== */
section {
    position: relative;
}

section + section {
    margin-top: 0;
}

/* ===== IMPROVED SPACING ===== */
.mb-6 {
    margin-bottom: 4rem !important;
}

.mt-6 {
    margin-top: 4rem !important;
}

.py-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

/* ===== COUNSELLING CARDS MODERN ===== */
.counselling-card-modern {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.counselling-card-header {
    background: var(--ocean-gradient);
    padding: 30px;
    text-align: center;
}

.counselling-card-header .counselling-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.counselling-icon i {
    color: var(--primary-color) !important;
    font-size: 2rem;
}

.counselling-card-body {
    padding: 30px 25px;
}

.counselling-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    min-height: 50px;
}

.counselling-card-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 20px;
    min-height: 60px;
}

.counselling-price {
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.1), rgba(0, 242, 254, 0.1));
    border-radius: 15px;
    margin-bottom: 20px;
}

.price-amount {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.price-duration {
    display: block;
    font-size: 0.85rem;
    color: #999;
    margin-top: 5px;
}

.btn-counselling {
    display: block;
    width: 100%;
    background: var(--ocean-gradient);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s ease;
}

.btn-counselling:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.4);
    color: white;
}

/* ===== EVENT CARDS MODERN ===== */
.event-card-modern {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.event-card-modern .event-image {
    height: 250px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.event-card-modern:hover .event-image {
    transform: scale(1.1);
}

.event-card-modern .card-body {
    padding: 25px;
}

.event-card-modern .event-badge {
    margin-bottom: 15px;
}

.event-card-modern .event-badge .badge {
    background: var(--primary-gradient);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
}

.event-card-modern .card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

/* ===== CTA BOX ===== */
.cta-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.cta-box h4 {
    font-weight: 700;
    color: var(--primary-color);
}

/* ===== TESTIMONIALS SECTION IMPROVEMENTS ===== */
.testimonial-card {
    background: white;
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 180px;
    font-family: 'Playfair Display', serif;
    color: rgba(102, 126, 234, 0.05);
    line-height: 1;
}

.testimonial-author img {
    border: 4px solid white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* ===== AUTHENTICATION PAGES ===== */
.auth-card {
    border: none;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    background: white;
    position: relative;
    overflow: hidden;
}

.auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary-gradient);
}

.auth-card .card-body {
    padding: 3rem 2.5rem;
}

/* Premium Auth Buttons */
.btn-auth-primary {
    background: var(--primary-gradient) !important;
    border: none;
    color: white !important;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 15px 30px !important;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-auth-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-auth-primary:hover::before {
    left: 100%;
}

.btn-auth-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.5);
}

.btn-auth-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-auth-primary i {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Auth Form Styling */
.auth-card .form-control {
    border-radius: 12px;
    padding: 14px 18px;
    border: 2px solid #e8ecf4;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.auth-card .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.auth-card .form-select {
    border-radius: 12px;
    padding: 14px 18px;
    border: 2px solid #e8ecf4;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.auth-card .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.auth-card .form-label {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.auth-card h2 {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.auth-card a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.auth-card a:hover {
    color: var(--secondary-color);
}

/* ===== NAVIGATION AUTH BUTTONS ===== */
.btn-nav {
    padding: 10px 24px !important;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-nav.btn-primary {
    background: var(--primary-gradient) !important;
    border: none;
    color: white !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-nav.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-nav.btn-outline-primary {
    background: transparent !important;
    border: 2px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
}

.btn-nav.btn-outline-primary:hover {
    background: var(--primary-gradient) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.btn-nav i {
    font-size: 0.9rem;
}

/* ===================================
   NAVBAR USER DROPDOWN
   =================================== */

.navbar-user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #667eea;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.navbar-user-avatar-placeholder {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #667eea;
    margin-right: 8px;
}

.navbar-user-avatar-placeholder i {
    color: white;
    font-size: 14px;
}

.user-dropdown-toggle:hover .navbar-user-avatar {
    transform: scale(1.05);
    border-color: #764ba2;
    box-shadow: 0 4px 10px rgba(102, 126, 234, 0.4);
}

.user-dropdown-toggle:hover .navbar-user-avatar-placeholder {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(102, 126, 234, 0.4);
}

.navbar-user-name {
    font-weight: 600;
    color: #1a202c;
}

.user-dropdown-toggle {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.user-dropdown-toggle:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

/* Dropdown Menu Styling */
.user-dropdown-menu {
    min-width: 280px;
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 0;
    margin-top: 10px;
    animation: dropdownFadeIn 0.3s ease;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.user-dropdown-header {
    padding: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px 15px 0 0;
}

.user-dropdown-header .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
}

.dropdown-user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.dropdown-user-avatar-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.dropdown-user-avatar-placeholder i {
    color: white;
    font-size: 24px;
}

.user-dropdown-menu .dropdown-item {
    padding: 12px 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    color: #4a5568;
    font-weight: 500;
}

.user-dropdown-menu .dropdown-item i {
    width: 20px;
    color: #667eea;
}

.user-dropdown-menu .dropdown-item:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    color: #667eea;
    padding-left: 25px;
}

.user-dropdown-menu .dropdown-item:hover i {
    transform: scale(1.1);
}

.premium-upgrade-item {
    background: linear-gradient(135deg, rgba(246, 211, 101, 0.1) 0%, rgba(253, 160, 133, 0.1) 100%);
    color: #f59e0b !important;
}

.premium-upgrade-item i {
    color: #f59e0b !important;
}

.premium-upgrade-item:hover {
    background: linear-gradient(135deg, rgba(246, 211, 101, 0.2) 0%, rgba(253, 160, 133, 0.2) 100%);
}

.logout-item:hover {
    background: rgba(239, 68, 68, 0.1) !important;
    color: #dc2626 !important;
}

/* Live Talk Item */
.live-talk-item {
    padding: 12px 20px !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    border-radius: 10px;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.live-talk-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
    color: white !important;
}

.live-talk-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 1.2rem;
}

.live-talk-item strong {
    color: white;
    font-size: 0.95rem;
}

.live-talk-item small {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.8rem;
}

/* Chat Notification Badge */
.chat-notification-badge {
    display: inline-block;
    background: #ef4444;
    color: white;
    border-radius: 12px;
    padding: 2px 8px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 8px;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.dropdown-item.has-notification {
    background: rgba(102, 126, 234, 0.05) !important;
    animation: glow-notification 2s infinite;
}

@keyframes glow-notification {
    0%, 100% {
        box-shadow: inset 0 0 0 rgba(102, 126, 234, 0);
    }
    50% {
        box-shadow: inset 0 0 10px rgba(102, 126, 234, 0.3);
    }
}

/* Button pulse animation for new messages */
.btn-pulse {
    animation: btn-pulse-animation 1.5s infinite;
}

@keyframes btn-pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.logout-item:hover i {
    color: #dc2626 !important;
}

.user-dropdown-menu .dropdown-divider {
    margin: 5px 0;
    opacity: 0.1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar-user-name {
        display: none;
    }
    
    .navbar-user-avatar {
        margin-right: 0;
    }
    
    .user-dropdown-menu {
        min-width: 250px;
    }
}

