/* ============================================
   MindWell Connect - Premium Design System
   Theme: Light Blue, White, Soft Purple, Light Cyan
   Effects: Advanced Glassmorphism, Micro-animations
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700&display=swap');

:root {
  --primary: #4A8CD4;
  --primary-dark: #2D6FA8;
  --primary-light: #7BB3E0;
  --primary-glow: rgba(74, 140, 212, 0.25);
  --secondary: #9B59B6;
  --secondary-dark: #7D3C98;
  --secondary-light: #C39BD3;
  --secondary-glow: rgba(155, 89, 182, 0.2);
  --accent: #45E5C3;
  --accent-dark: #2ECC71;
  --accent-light: #7FFFD4;
  --gold: #F4A940;
  --gold-light: #FFD700;
  --rose: #E87A90;
  --bg-primary: #E8F4FD;
  --bg-secondary: #F0E6FF;
  --bg-accent: #E0F7FA;
  --bg-gradient: linear-gradient(135deg, #E8F4FD 0%, #F0E6FF 35%, #E0F7FA 65%, #E8F4FD 100%);
  --bg-gradient-premium: linear-gradient(135deg, #D6EAF8 0%, #E8DAEF 30%, #D1F2EB 60%, #D6EAF8 100%);
  --glass-bg: rgba(255, 255, 255, 0.18);
  --glass-border: rgba(255, 255, 255, 0.35);
  --glass-shadow: 0 8px 32px rgba(31, 38, 135, 0.08);
  --glass-strong: rgba(255, 255, 255, 0.55);
  --card-bg: rgba(255, 255, 255, 0.6);
  --card-bg-hover: rgba(255, 255, 255, 0.82);
  --card-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  --card-shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.1);
  --text-dark: #1a2332;
  --text-body: #2C3E50;
  --text-muted: #7F8C9B;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.08);
  --shadow-xl: 0 20px 80px rgba(0,0,0,0.1);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-gradient);
  color: var(--text-body);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection { background: var(--primary); color: white; }

/* ============================================
   ANIMATED BACKGROUND PARTICLES
   ============================================ */

.bg-particle {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.3;
  animation: particleFloat 20s ease-in-out infinite;
}

@keyframes particleFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(100px, -50px) scale(1.1); }
  50% { transform: translate(50px, -100px) scale(0.95); }
  75% { transform: translate(-50px, -50px) scale(1.05); }
}

/* ============================================
   GLASSMORPHISM PREMIUM
   ============================================ */

.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: var(--glass-shadow);
}

.glass-card {
  background: var(--card-bg);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
  background: var(--card-bg-hover);
  border-color: rgba(255, 255, 255, 0.8);
}

.glass-strong {
  background: var(--glass-strong);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
}

/* ============================================
   NAVBAR
   ============================================ */

.glass-nav {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.navbar {
  padding: 12px 0;
  transition: var(--transition);
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-brand i {
  -webkit-text-fill-color: var(--primary);
  font-size: 1.7rem;
}

.nav-link {
  font-weight: 500;
  color: var(--text-dark) !important;
  padding: 8px 18px !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
  font-size: 0.92rem;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2.5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 4px;
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after { transform: translateX(-50%) scaleX(1); }

.nav-link:hover { background: rgba(74, 140, 212, 0.08); color: var(--primary) !important; }

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

.btn {
  border-radius: var(--radius-sm);
  font-weight: 600;
  padding: 11px 26px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  font-size: 0.92rem;
  letter-spacing: 0.2px;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: var(--transition);
}

.btn:hover::before { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: none;
  box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--primary-glow);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  border: none;
  box-shadow: 0 4px 15px var(--secondary-glow);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--secondary-glow);
}

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

.btn-outline-primary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent), #2ECC71);
  border: none;
  color: var(--text-dark);
  box-shadow: 0 4px 15px rgba(69, 229, 195, 0.25);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(69, 229, 195, 0.35);
  color: var(--text-dark);
}

.btn-glass {
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--text-dark);
}

.btn-glass:hover {
  background: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

.btn-lg { padding: 14px 34px; font-size: 1rem; border-radius: 14px; }
.btn-sm { padding: 7px 16px; font-size: 0.82rem; border-radius: 8px; }

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

.hero-section {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 130px 0 80px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(74, 140, 212, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: heroFloat 12s ease-in-out infinite;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -25%;
  left: -10%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(155, 89, 182, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: heroFloat 15s ease-in-out infinite reverse;
}

.hero-glow-1 {
  position: absolute;
  top: 20%;
  left: 30%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(69, 229, 195, 0.08), transparent 70%);
  border-radius: 50%;
  animation: heroFloat 18s ease-in-out infinite;
  pointer-events: none;
}

@keyframes heroFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -40px) scale(1.08); }
}

.hero-title {
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 22px;
  letter-spacing: -1.5px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, #45E5C3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientShift 6s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 560px;
}

.hero-image-wrapper {
  position: relative;
  text-align: center;
}

.hero-image-wrapper > img {
  max-width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  transform: perspective(1000px) rotateY(-3deg);
  transition: var(--transition-slow);
}

.hero-image-wrapper > img:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  box-shadow: var(--shadow-lg);
  animation: floatCard 6s ease-in-out infinite;
  border: 1px solid rgba(255,255,255,0.6);
}

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

.floating-card-1 {
  top: 8%;
  right: -8%;
  animation-delay: 0s;
}

.floating-card-2 {
  bottom: 12%;
  left: -8%;
  animation-delay: 2s;
}

.hero-stat-item {
  text-align: center;
  padding: 8px 20px;
  position: relative;
}

.hero-stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: rgba(0,0,0,0.06);
}

.hero-stat-value {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.hero-stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================
   SECTION STYLES
   ============================================ */

.section-padding { padding: 110px 0; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(74, 140, 212, 0.08);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 16px;
  border: 1px solid rgba(74, 140, 212, 0.12);
}

.section-title {
  font-size: 2.6rem;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -1px;
  color: var(--text-dark);
}

.section-title-gradient {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 50px;
}

/* ============================================
   COUNSELLOR CARDS PREMIUM
   ============================================ */

.card-counsellor {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  position: relative;
}

.card-counsellor:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
  background: var(--card-bg-hover);
  border-color: rgba(255, 255, 255, 0.7);
}

.card-counsellor-top {
  background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
  height: 100px;
  position: relative;
}

.card-counsellor .counsellor-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
  position: relative;
  margin-top: -44px;
  z-index: 2;
}

.card-counsellor:hover .counsellor-avatar {
  transform: scale(1.05);
  border-color: var(--primary-light);
}

.counsellor-card-body { padding: 16px 22px 22px; }

.counsellor-card-body h5 { font-weight: 700; font-size: 1.05rem; }

.counsellor-spec-badge {
  display: inline-block;
  background: rgba(74, 140, 212, 0.08);
  color: var(--primary);
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

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

.service-card {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  padding: 42px 32px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
  background: var(--card-bg-hover);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  transition: var(--transition);
  position: relative;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(-5deg);
  border-radius: 24px;
}

.service-card h5 { font-weight: 700; margin-bottom: 12px; }

/* ============================================
   DASHBOARD LAYOUT
   ============================================ */

.dashboard-wrapper {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 270px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(24px) saturate(180%);
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  overflow-y: auto;
  z-index: 1000;
  transition: var(--transition);
}

.sidebar-brand {
  padding: 0 20px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  margin-bottom: 16px;
}

.sidebar-brand h4 {
  font-weight: 800;
  font-size: 1.2rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sidebar-nav { list-style: none; padding: 0; margin: 0; }

.sidebar-nav li { padding: 0 12px; margin-bottom: 4px; }

.sidebar-nav a {
  display: flex;
  align-items: center;
  padding: 11px 16px;
  border-radius: var(--radius-sm);
  color: var(--text-body);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  gap: 12px;
  font-size: 0.9rem;
}

.sidebar-nav a:hover {
  background: rgba(74, 140, 212, 0.08);
  color: var(--primary);
}

.sidebar-nav a.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: 0 4px 15px var(--primary-glow);
}

.sidebar-nav a i { width: 20px; text-align: center; font-size: 1rem; }

.main-content {
  margin-left: 270px;
  flex: 1;
  padding: 28px 32px;
  min-height: 100vh;
}

/* ============================================
   STAT CARDS PREMIUM
   ============================================ */

.stat-card {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  opacity: 0.06;
  transform: translate(30%, -30%);
  background: var(--primary);
}

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

.stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
}

.stat-icon.blue { background: rgba(74, 140, 212, 0.12); color: var(--primary); }
.stat-icon.purple { background: rgba(155, 89, 182, 0.12); color: var(--secondary); }
.stat-icon.green { background: rgba(69, 229, 195, 0.12); color: var(--accent-dark); }
.stat-icon.orange { background: rgba(244, 169, 64, 0.12); color: var(--gold); }
.stat-icon.red { background: rgba(232, 122, 144, 0.12); color: var(--rose); }
.stat-icon.teal { background: rgba(0, 206, 209, 0.12); color: #00CED1; }

.stat-number { font-size: 1.9rem; font-weight: 800; margin-bottom: 4px; color: var(--text-dark); }
.stat-label { color: var(--text-muted); font-weight: 500; font-size: 0.88rem; }

/* ============================================
   AUTH PAGES
   ============================================ */

.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-gradient);
  padding: 20px;
  position: relative;
}

.auth-page::before {
  content: '';
  position: fixed;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(74, 140, 212, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.auth-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  width: 100%;
  max-width: 460px;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 1;
}

.auth-card .auth-header { text-align: center; margin-bottom: 32px; }

.auth-card .auth-header h3 {
  font-weight: 800;
  font-size: 1.6rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.auth-card .auth-header p { color: var(--text-muted); font-size: 0.92rem; }

/* ============================================
   FORM ELEMENTS
   ============================================ */

.form-glass {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--card-shadow);
}

.form-glass .form-control,
.form-glass .form-select {
  background: rgba(255, 255, 255, 0.7);
  border: 2px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--radius-sm);
  padding: 11px 16px;
  font-size: 0.92rem;
  transition: var(--transition);
}

.form-glass .form-control:focus,
.form-glass .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-glow);
  background: rgba(255, 255, 255, 0.9);
}

.form-glass .form-label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.form-glass .input-group-text {
  background: rgba(255, 255, 255, 0.7);
  border: 2px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--radius-sm);
  color: var(--primary);
}

/* ============================================
   RATING STARS
   ============================================ */

.rating-stars {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 6px;
}

.rating-stars input { display: none; }

.rating-stars label {
  cursor: pointer;
  font-size: 2.2rem;
  color: #ddd;
  transition: var(--transition);
}

.rating-stars label:hover,
.rating-stars label:hover ~ label,
.rating-stars input:checked ~ label {
  color: var(--gold-light);
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  transform: scale(1.1);
}

.rating-display .star { color: var(--gold-light); font-size: 1rem; }
.rating-display .star.empty { color: #ddd; }

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonial-card {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: var(--transition);
}

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

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 28px;
  font-size: 5rem;
  color: rgba(74, 140, 212, 0.08);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
  box-shadow: var(--shadow-sm);
}

/* ============================================
   JITSI
   ============================================ */

#jitsi-container {
  width: 100%;
  min-height: 500px;
  height: 600px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.3);
  position: relative;
  display: block;
}

#jitsi-container iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: none;
  position: absolute;
  top: 0;
  left: 0;
}

/* ============================================
   STEPS / HOW IT WORKS
   ============================================ */

.step-wrapper {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.step-item { text-align: center; max-width: 230px; }

.step-number {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  box-shadow: 0 8px 25px var(--primary-glow);
  transition: var(--transition);
}

.step-item:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 12px 40px var(--primary-glow);
}

.step-item h5 { font-weight: 700; margin-bottom: 10px; }

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  padding: 60px 0 30px;
}

.footer h5 { font-weight: 700; margin-bottom: 20px; color: var(--text-dark); font-size: 1rem; }

.footer a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.9rem;
}

.footer a:hover { color: var(--primary); padding-left: 4px; }

.footer-brand {
  font-weight: 800;
  font-size: 1.4rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(74, 140, 212, 0.06);
  border-radius: 50%;
  transition: var(--transition);
  color: var(--text-muted);
}

.footer-social a:hover {
  background: var(--primary);
  color: white !important;
  padding-left: 0;
  transform: translateY(-3px);
}

/* ============================================
   NOTIFICATIONS
   ============================================ */

.notif-dropdown {
  width: 360px;
  max-height: 420px;
  overflow-y: auto;
  padding: 0;
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
}

.notif-dropdown .dropdown-header {
  padding: 14px 20px;
  font-weight: 700;
  background: transparent;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.notif-item {
  padding: 12px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.03);
  transition: var(--transition-fast);
  cursor: pointer;
}

.notif-item:hover { background: rgba(74, 140, 212, 0.04); }

.notif-item.unread { background: rgba(74, 140, 212, 0.06); border-left: 3px solid var(--primary); }

.notif-item .notif-title { font-weight: 600; font-size: 0.88rem; margin-bottom: 2px; }
.notif-item .notif-time { font-size: 0.75rem; color: var(--text-muted); }

.notif-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  font-size: 0.6rem;
  padding: 3px 6px;
  border-radius: 50%;
  background: var(--rose);
  color: white;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(232, 122, 144, 0.4);
}

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

.table-glass {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.table-glass thead th {
  background: rgba(74, 140, 212, 0.06);
  border-bottom: 2px solid rgba(74, 140, 212, 0.1);
  color: var(--text-dark);
  font-weight: 600;
  padding: 14px 18px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.table-glass tbody td {
  padding: 14px 18px;
  vertical-align: middle;
  border-bottom: 1px solid rgba(0,0,0,0.03);
  font-size: 0.9rem;
}

.table-glass tbody tr:hover { background: rgba(74, 140, 212, 0.02); }

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

.badge-pending {
  display: inline-block;
  background: rgba(244, 169, 64, 0.1);
  color: var(--gold);
  padding: 4px 14px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.78rem;
}

.badge-approved {
  display: inline-block;
  background: rgba(46, 204, 113, 0.1);
  color: #2ECC71;
  padding: 4px 14px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.78rem;
}

.badge-completed {
  display: inline-block;
  background: rgba(74, 140, 212, 0.1);
  color: var(--primary);
  padding: 4px 14px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.78rem;
}

.badge-rejected {
  display: inline-block;
  background: rgba(232, 122, 144, 0.1);
  color: var(--rose);
  padding: 4px 14px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.78rem;
}

.top-rated-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, var(--gold), #FF8C00);
  color: white;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(244, 169, 64, 0.3);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ============================================
   MEETING
   ============================================ */

.meeting-wrapper {
  background: rgba(0,0,0,0.02);
  border-radius: var(--radius-lg);
  padding: 20px;
  min-height: 500px;
}

.meeting-info {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-md);
  padding: 24px;
}

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

.fade-in { animation: fadeIn 0.7s ease-out both; }
.slide-up { animation: slideUp 0.7s ease-out both; }
.scale-in { animation: scaleIn 0.5s ease-out both; }

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

/* ============================================
   MISC COMPONENTS
   ============================================ */

.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.avatar-sm { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; }
.avatar-md { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.avatar-lg {
  width: 120px; height: 120px; border-radius: 50%; object-fit: cover;
  border: 4px solid white; box-shadow: var(--shadow-md);
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
}

.empty-state i {
  font-size: 3.5rem;
  color: var(--text-muted);
  opacity: 0.25;
  margin-bottom: 18px;
}

.empty-state h5 { color: var(--text-muted); font-weight: 600; }

/* ============================================
   GLOW PULSE
   ============================================ */

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

.notif-has-unread i { 
  animation: pulse 2s ease-in-out infinite; 
  color: var(--primary);
}

/* ============================================
   SCROLLBAR
   ============================================ */

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary-light), var(--secondary-light));
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, var(--primary), var(--secondary)); }

/* ============================================
   PAGE HEADER
   ============================================ */

.page-header {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-md);
  padding: 22px 28px;
  margin-bottom: 28px;
}

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

@media (max-width: 1199.98px) {
  .hero-title { font-size: 3rem; }
  .floating-card-1 { right: -3%; }
  .floating-card-2 { left: -3%; }
}

@media (max-width: 991.98px) {
  .sidebar { transform: translateX(-100%); }
  .sidebar.show { transform: translateX(0); }
  .main-content { margin-left: 0; padding: 20px; }
  .hero-title { font-size: 2.5rem; }
  .hero-section { padding: 110px 0 50px; text-align: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .section-padding { padding: 70px 0; }
  .hero-stat-item:not(:last-child)::after { display: none; }
  .section-title { font-size: 2rem; }
}

@media (max-width: 767.98px) {
  .hero-title { font-size: 2rem; }
  .hero-section { padding: 100px 0 40px; }
  .section-title { font-size: 1.7rem; }
  .auth-card { padding: 30px 22px; }
  .form-glass { padding: 24px 18px; }
  .notif-dropdown { width: 310px; }
  .stat-number { font-size: 1.5rem; }
  .main-content { padding: 16px; }
}

@media (max-width: 575.98px) {
  .hero-title { font-size: 1.7rem; }
  .section-padding { padding: 50px 0; }
  #jitsi-container { height: 400px; }
  .section-tag { font-size: 0.75rem; }
}
