/**
 * Clixoads PTC Platform
 * Modern UI/UX Stylesheet
 */

/* ========================================
   DESIGN SYSTEM
   ======================================== */

:root {
    /* Primary Colors - Enhanced */
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #8b5cf6;
    --accent: #f59e0b;
    
    /* Semantic Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;
    
    /* Neutral Colors */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-500: #6b7280;
    --gray-700: #374151;
    --gray-900: #111827;
    
    /* Enhanced Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-warm: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --gradient-gold: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    --gradient-platinum: linear-gradient(135deg, #e5e7eb 0%, #9ca3af 100%);
    
    /* Premium Gradients for Packs */
    --gradient-starter: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    --gradient-basic: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    --gradient-pro: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --gradient-business: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-premium: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    
    /* Enhanced Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Glow Effects */
    --glow-primary: 0 0 20px rgba(99, 102, 241, 0.3);
    --glow-success: 0 0 20px rgba(16, 185, 129, 0.3);
    --glow-warning: 0 0 20px rgba(245, 158, 11, 0.3);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%), #f9fafb;
    color: var(--gray-900);
    line-height: 1.6;
    min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    line-height: 1.7;
    color: var(--gray-700);
}

/* ========================================
   NAVBAR & NAVIGATION
   ======================================== */

.navbar {
    background: white !important;
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.75rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-dark {
    background: var(--gradient-primary) !important;
}

.nav-link {
    font-weight: 500;
    color: var(--gray-700);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
    background: var(--gray-50);
}

.nav-link.active {
    color: var(--primary) !important;
    background: var(--gray-100) !important;
}

.navbar-dark .nav-link {
    color: rgba(255, 255, 255, 0.9);
}

.navbar-dark .nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.navbar-dark .nav-link.active {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    border: none;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.btn:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover:before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
}

.btn-success {
    background: var(--gradient-success);
}

.btn-warning {
    background: var(--gradient-warm);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* ========================================
   CARDS
   ======================================== */

.card {
    border: none;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    transition: var(--transition);
    overflow: hidden;
    background: white;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.card-header {
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    padding: 1.5rem;
    font-weight: 600;
}

.card-body {
    padding: 1.5rem;
}

.card.shadow-sm {
    box-shadow: var(--shadow-sm);
}

.card.border-warning {
    border: 3px solid var(--warning) !important;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

/* Stat Cards */
.stat-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
    background: var(--gradient-primary);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,117.3C1248,96,1344,64,1392,48L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    opacity: 0.3;
}

.hero-section * {
    position: relative;
    z-index: 1;
}

/* ========================================
   FORMS
   ======================================== */

.form-control {
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    border: 2px solid var(--gray-200);
    transition: var(--transition);
    font-size: 1rem;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    outline: none;
}

.form-label {
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.form-select {
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    border: 2px solid var(--gray-200);
}

/* ========================================
   TABLES
   ======================================== */

.table {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.table thead {
    background: var(--gray-50);
}

.table thead th {
    border: none;
    color: var(--gray-700);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    padding: 1rem;
}

.table tbody td {
    padding: 1rem;
    vertical-align: middle;
}

.table-hover tbody tr {
    transition: var(--transition);
}

.table-hover tbody tr:hover {
    background-color: var(--gray-50);
    transform: scale(1.01);
}

.table-responsive {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

/* ========================================
   BADGES
   ======================================== */

.badge {
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.025em;
}

.badge.bg-success {
    background: var(--gradient-success) !important;
}

.badge.bg-warning {
    background: var(--gradient-warm) !important;
    color: white !important;
}

.badge.bg-primary {
    background: var(--gradient-primary) !important;
}

/* Timer Badge */
#timer {
    padding: 1.5rem 3rem;
    font-size: 1.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    animation: pulse 2s infinite;
}

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

/* ========================================
   ALERTS
   ======================================== */

.alert {
    border-radius: var(--radius-lg);
    border: none;
    padding: 1.25rem;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid;
}

.alert-success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-left-color: var(--success);
    color: #065f46;
}

.alert-danger {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-left-color: var(--danger);
    color: #991b1b;
}

.alert-warning {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left-color: var(--warning);
    color: #92400e;
}

.alert-info {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-left-color: var(--info);
    color: #1e40af;
}

/* ========================================
   MODALS
   ======================================== */

.modal-content {
    border-radius: var(--radius-xl);
    border: none;
    box-shadow: var(--shadow-xl);
}

.modal-header {
    border-bottom: 1px solid var(--gray-200);
    padding: 1.5rem;
    background: var(--gray-50);
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    border-top: 1px solid var(--gray-200);
    padding: 1.5rem;
    background: var(--gray-50);
}

/* ========================================
   ADMIN SIDEBAR
   ======================================== */

.bg-light {
    background: white !important;
    box-shadow: var(--shadow-sm);
}

.nav.flex-column .nav-link {
    margin-bottom: 0.5rem;
    border-radius: var(--radius);
    font-weight: 500;
}

.nav.flex-column .nav-link:hover {
    background: var(--gray-100);
    padding-left: 1.5rem;
}

.nav.flex-column .nav-link.active {
    background: var(--gradient-primary);
    color: white !important;
}

/* ========================================
   FEATURE CARDS
   ======================================== */

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
}

.feature-icon-sm {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
}

.feature-icon svg,
.feature-icon i {
    filter: brightness(0) invert(1);
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

/* ========================================
   UTILITIES
   ======================================== */

.shadow-sm { box-shadow: var(--shadow-sm) !important; }
.shadow { box-shadow: var(--shadow) !important; }
.shadow-md { box-shadow: var(--shadow-md) !important; }
.shadow-lg { box-shadow: var(--shadow-lg) !important; }
.shadow-xl { box-shadow: var(--shadow-xl) !important; }

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

.bg-gradient-primary {
    background: var(--gradient-primary) !important;
}

.bg-gradient-success {
    background: var(--gradient-success) !important;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    
    .hero-section {
        padding: 3rem 0;
    }
    
    .btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
}

/* ========================================
   SCROLL & MISC
   ======================================== */

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Loading Spinner */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========================================
   INVESTMENT PACK CARDS - PREMIUM DESIGN
   ======================================== */

.pack-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-2xl);
    transition: var(--transition-bounce);
}

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

.pack-card:hover::before {
    opacity: 1;
}

.pack-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-2xl), var(--glow-primary);
}

.pack-card.popular {
    border: 3px solid #f59e0b;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1), var(--shadow-xl);
}

.pack-card.popular:hover {
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.2), var(--shadow-2xl), var(--glow-warning);
}

/* Pack Header Gradients */
.pack-header-starter {
    background: var(--gradient-starter) !important;
    position: relative;
    overflow: hidden;
}

.pack-header-basic {
    background: var(--gradient-basic) !important;
    position: relative;
    overflow: hidden;
}

.pack-header-pro {
    background: var(--gradient-pro) !important;
    position: relative;
    overflow: hidden;
}

.pack-header-business {
    background: var(--gradient-business) !important;
    position: relative;
    overflow: hidden;
}

.pack-header-premium {
    background: var(--gradient-premium) !important;
    position: relative;
    overflow: hidden;
}

.pack-header-free {
    background: var(--gradient-platinum) !important;
    position: relative;
    overflow: hidden;
}

/* Animated Background Pattern */
.pack-card .card-header::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-25%, -25%); }
}

/* Price Tag Enhancement */
.pack-price {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* ROI Badge */
.roi-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
    border: 2px solid #10b981;
    font-weight: 700;
    color: #059669;
    font-size: 1.1rem;
    margin: 1rem 0;
}

/* Feature List Enhancement */
.pack-features {
    list-style: none;
    padding: 0;
}

.pack-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
    transition: var(--transition);
}

.pack-features li:last-child {
    border-bottom: none;
}

.pack-features li:hover {
    padding-left: 0.5rem;
    color: var(--primary);
}

.pack-features li i {
    width: 24px;
    text-align: center;
}

/* Profit Display */
.profit-display {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.05) 100%);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin: 1rem 0;
    border-left: 4px solid #10b981;
}

.profit-amount {
    font-size: 2rem;
    font-weight: 800;
    color: #10b981;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Call to Action Button Enhancement */
.pack-cta-button {
    position: relative;
    overflow: hidden;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pack-cta-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.pack-cta-button:hover::after {
    width: 400px;
    height: 400px;
}

/* Comparison Badge */
.comparison-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-warm);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: var(--shadow-lg);
    z-index: 10;
    animation: pulse 2s infinite;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1rem 0;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius);
    transition: var(--transition);
}

.stat-item:hover {
    background: var(--gray-100);
    transform: scale(1.05);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Trust Badges */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    font-size: 0.875rem;
    color: var(--gray-700);
    font-weight: 600;
    margin: 0.5rem;
}

.trust-badge i {
    color: var(--success);
    font-size: 1.25rem;
}

/* Section Divider */
.section-divider {
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    width: 80px;
    margin: 1rem auto;
}

/* Enhanced Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Glassmorphism Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ========================================
   ENHANCED NAVIGATION & FOOTER
   ======================================== */

/* Premium Navbar */
.navbar {
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition);
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-brand i {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    position: relative;
    font-weight: 500;
    color: var(--gray-700) !important;
    transition: var(--transition);
    padding: 0.5rem 1rem !important;
    border-radius: var(--radius);
}

.nav-link:hover {
    color: var(--primary) !important;
    background: rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
}

.nav-link.active {
    color: var(--primary) !important;
    background: rgba(99, 102, 241, 0.15);
    font-weight: 600;
}

.nav-link i {
    margin-right: 0.5rem;
    opacity: 0.7;
}

.nav-link:hover i {
    opacity: 1;
}

/* Dropdown Menu Enhancement */
.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius-lg);
    padding: 0.5rem;
    margin-top: 0.5rem;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.98);
}

.dropdown-item {
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    transition: var(--transition);
    font-weight: 500;
}

.dropdown-item:hover {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    transform: translateX(5px);
}

.dropdown-item i {
    width: 20px;
    text-align: center;
}

.dropdown-divider {
    margin: 0.5rem 0;
    opacity: 0.1;
}

.dropdown-item-text {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
}

/* Balance Badge in Navbar */
.balance-badge {
    background: var(--gradient-success);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
}

/* Enhanced Footer */
footer {
    position: relative;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(99, 102, 241, 0.5) 50%, transparent 100%);
}

footer h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

footer a:hover {
    color: white;
    transform: translateX(5px);
}

footer .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: var(--transition-bounce);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

footer .social-link:hover {
    background: var(--gradient-primary);
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--glow-primary);
    border-color: transparent;
}

.footer-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-info i {
    color: var(--primary-light);
}

/* User Navbar Enhancement - Modern Icon-Above-Text Style */
.user-navbar {
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-bottom: 1px solid var(--gray-200);
}

.user-navbar .navbar-nav {
    gap: 0;
}

.user-navbar .nav-item {
    position: relative;
}

.user-navbar .nav-link {
    font-weight: 500;
    color: var(--gray-600);
    transition: var(--transition);
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
    border-right: 1px solid var(--gray-200);
    text-align: center;
    min-width: 90px;
    font-size: 0.813rem;
}

.user-navbar .nav-link i {
    font-size: 1.25rem;
    margin: 0;
    transition: var(--transition);
}

.user-navbar .nav-link:hover {
    color: var(--primary);
    background: rgba(99, 102, 241, 0.05);
}

.user-navbar .nav-link:hover i {
    transform: translateY(-2px);
    color: var(--primary);
}

.user-navbar .nav-link.active {
    color: var(--primary);
    background: rgba(99, 102, 241, 0.08);
    position: relative;
}

.user-navbar .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.user-navbar .nav-link.active i {
    color: var(--primary);
}

/* Remove border from last nav-link before dropdown */
.user-navbar .navbar-nav > .nav-item:last-child .nav-link {
    border-right: none;
}

/* Dropdown in navbar */
.user-navbar .nav-item.dropdown .nav-link {
    flex-direction: row;
    min-width: auto;
    padding: 0.5rem 1rem;
    border-right: none;
}

/* Notification Badge */
.notification-badge {
    position: absolute;
    top: 8px;
    right: 15px;
    background: var(--danger);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 2px 4px rgba(239, 68, 68, 0.3);
    z-index: 1;
}

/* User Avatar in Navbar */
.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}

/* Mobile Menu Enhancement */
@media (max-width: 991px) {
    .navbar-collapse {
        background: white;
        padding: 1rem;
        border-radius: var(--radius-lg);
        margin-top: 1rem;
        box-shadow: var(--shadow-lg);
    }
    
    .user-navbar .nav-link {
        flex-direction: row;
        justify-content: flex-start;
        border-right: none;
        border-bottom: 1px solid var(--gray-200);
        min-width: auto;
        padding: 0.75rem 1rem;
        gap: 0.75rem;
    }
    
    .user-navbar .nav-link i {
        font-size: 1.125rem;
    }
    
    .user-navbar .nav-link.active::after {
        display: none;
    }
    
    .user-navbar .nav-item.dropdown .nav-link {
        flex-direction: row;
    }
}

/* Print Styles */
@media print {
    .navbar, .btn, footer, .nav { display: none; }
}

