/* ============================================
   Dr Ge Medical Spa - Modern Design System
   Medical Beauty & Aesthetic Medicine Platform
   ============================================ */

/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

/* CSS Variables - Modern Medical Spa Theme */
:root {
  /* Primary Colors - Soft Teal (Trust, Wellness) */
  --primary-color: #0d9488;
  --primary-light: #14b8a6;
  --primary-dark: #0f766e;
  --primary-glow: rgba(13, 148, 136, 0.25);

  /* Secondary Colors - Warm Rose/Coral (Beauty, Elegance) */
  --secondary-color: #f472b6;
  --secondary-light: #f9a8d4;
  --secondary-dark: #ec4899;
  --secondary-glow: rgba(244, 114, 182, 0.25);

  /* Accent Colors */
  --accent-lavender: #a78bfa;
  --accent-mint: #34d399;
  --accent-sky: #38bdf8;

  /* Status Colors */
  --success-color: #10b981;
  --danger-color: #ef4444;
  --warning-color: #f59e0b;
  --info-color: #3b82f6;

  /* Neutrals - Warm Grays */
  --light-color: #fafaf9;
  --dark-color: #0c0a09;
  --gray-50: #fafaf9;
  --gray-100: #f5f5f4;
  --gray-200: #e7e5e4;
  --gray-300: #d6d3d1;
  --gray-400: #a8a29e;
  --gray-500: #78716c;
  --gray-600: #57534e;
  --gray-700: #44403c;
  --gray-800: #292524;
  --gray-900: #1c1917;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
  --gradient-secondary: linear-gradient(135deg, #f472b6 0%, #ec4899 100%);
  --gradient-hero: linear-gradient(
    135deg,
    #0c0a09 0%,
    #1c1917 50%,
    #0c0a09 100%
  );
  --gradient-luxury: linear-gradient(135deg, #fafaf9 0%, #f5f5f4 100%);
  --gradient-glow: radial-gradient(
    circle at 50% 0%,
    rgba(13, 148, 136, 0.15) 0%,
    transparent 50%
  );
  --gradient-rose-glow: radial-gradient(
    circle at 80% 20%,
    rgba(244, 114, 182, 0.1) 0%,
    transparent 40%
  );

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg:
    0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl:
    0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --shadow-glow: 0 0 40px var(--primary-glow);
  --shadow-rose-glow: 0 0 40px var(--secondary-glow);
  --shadow-soft:
    0 2px 15px -3px rgba(0, 0, 0, 0.08), 0 10px 20px -5px rgba(0, 0, 0, 0.04);

  /* Typography */
  --font-sans:
    "Plus Jakarta Sans", "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Plus Jakarta Sans", sans-serif;

  /* Spacing */
  --section-padding: clamp(4rem, 8vw, 8rem);
  --container-padding: clamp(1rem, 4vw, 2rem);

  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-700);
  background-color: var(--light-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-700);
  background-color: var(--light-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ============================================
   Navigation - Modern Glassmorphism
   ============================================ */
.navbar {
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
  transition: var(--transition-normal);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: var(--shadow-lg);
}

.navbar-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary-color) !important;
  letter-spacing: -0.5px;
}

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

.navbar-nav .nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--gray-600) !important;
  padding: 0.75rem 1.25rem !important;
  border-radius: var(--radius-full);
  transition: var(--transition-normal);
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color) !important;
  background: rgba(13, 148, 136, 0.08);
}

.navbar-nav .nav-link.active {
  color: var(--primary-color) !important;
  background: rgba(13, 148, 136, 0.1);
}

/* Dropdown - Modern Style */
.dropdown-menu {
  border: none;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: 1rem;
  margin-top: 0.5rem;
  min-width: 220px;
  animation: dropdownFade 0.2s ease-out;
}

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

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

.dropdown-item:hover {
  background: var(--primary-color);
  color: white;
  transform: translateX(5px);
}

/* Buttons - Modern Styles */
.btn-primary {
  background: var(--gradient-primary);
  border: none;
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

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

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

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

.btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  background: transparent;
  transition: var(--transition-normal);
}

.btn-outline-primary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

/* ============================================
   Cards - Modern Glass Effect
   ============================================ */
.card {
  border: none;
  border-radius: var(--radius-xl);
  background: white;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-normal);
  overflow: hidden;
}

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

.card-body {
  padding: 1.5rem;
}

/* Service Cards - Premium Style */
.service-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-normal);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-normal);
}

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

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(13, 148, 136, 0.2);
}

.service-card.featured {
  border-color: var(--primary-color);
  background: linear-gradient(180deg, rgba(13, 148, 136, 0.03) 0%, white 100%);
}

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

.service-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 30px rgba(13, 148, 136, 0.3);
}

.service-icon i {
  color: white;
}

/* Testimonial Cards */
.testimonial-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  height: 100%;
  position: relative;
  transition: var(--transition-normal);
}

.testimonial-card::before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 6rem;
  color: var(--primary-color);
  opacity: 0.1;
  position: absolute;
  top: -10px;
  left: 20px;
  line-height: 1;
}

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

/* ============================================
   Forms - Modern Input Styles
   ============================================ */
.form-control,
.form-select {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 0.875rem 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  transition: var(--transition-normal);
  background: white;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.1);
  outline: none;
}

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

/* Service Selection - Modern Radio */
.service-option input[type="radio"] {
  display: none;
}

.service-option-label {
  display: block;
  background: white;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  cursor: pointer;
  transition: var(--transition-normal);
  text-align: center;
  position: relative;
}

.service-option-label i {
  font-size: 2.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
  display: block;
}

.service-option-label .price {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary-color);
  color: white;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
}

.service-option input[type="radio"]:checked + .service-option-label {
  border-color: var(--primary-color);
  background: rgba(13, 148, 136, 0.05);
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.1);
}

/* ============================================
   Hero Section - Modern Design
   ============================================ */
.hero-section {
  background: var(--gradient-hero);
  color: white;
  overflow: hidden;
  position: relative;
  padding: var(--section-padding) 0;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(13, 148, 136, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(139, 92, 246, 0.1) 0%,
      transparent 50%
    );
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-badge i {
  margin-right: 0.5rem;
  color: var(--success-color);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-title .text-gradient {
  background: linear-gradient(135deg, var(--primary-light), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 540px;
}

.btn-hero {
  padding: 1rem 2.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-normal);
}

.btn-hero-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 10px 30px rgba(13, 148, 136, 0.4);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(13, 148, 136, 0.5);
  color: white;
}

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

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

/* Hero Visual - Glass Card */
.hero-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  animation: float 6s ease-in-out infinite;
}

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

/* Floating Elements */
.floating-element {
  position: absolute;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: floatElement 8s ease-in-out infinite;
}

@keyframes floatElement {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* Trust Indicators */
.trust-indicators {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.9;
}

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

/* ============================================
   Step Icons - Modern Design
   ============================================ */
.step-icon {
  width: 120px;
  height: 120px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  box-shadow: var(--shadow-xl);
}

.step-icon::before {
  content: "";
  position: absolute;
  inset: -4px;
  background: var(--gradient-primary);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.2;
}

.step-icon i {
  font-size: 2.5rem;
  color: white;
}

.step-number {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: var(--shadow-lg);
}

/* ============================================
   Footer - Modern Design
   ============================================ */
.footer {
  background: var(--gray-900);
  color: white;
  padding: 4rem 0 2rem;
  margin-top: auto;
}

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

.footer a {
  color: var(--gray-400);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer a:hover {
  color: var(--primary-light);
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
}

.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

/* ============================================
   Alerts & Notifications
   ============================================ */
.alert {
  border: none;
  border-radius: var(--radius-lg);
  padding: 1rem 1.5rem;
  font-weight: 500;
}

/* ============================================
   Progress Bars
   ============================================ */
.progress {
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--gray-200);
  overflow: hidden;
}

.progress-bar {
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
}

/* ============================================
   Status Badges - Modern Pills
   ============================================ */
.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  gap: 0.35rem;
}

.status-pending {
  background: rgba(245, 158, 11, 0.15);
  color: #b45309;
}

.status-assigned {
  background: rgba(59, 130, 246, 0.15);
  color: #1d4ed8;
}

.status-in-progress {
  background: rgba(16, 185, 129, 0.15);
  color: #047857;
}

.status-completed {
  background: rgba(13, 148, 136, 0.15);
  color: var(--primary-dark);
}

.status-cancelled {
  background: rgba(239, 68, 68, 0.15);
  color: #dc2626;
}

/* ============================================
   Loading Spinner
   ============================================ */
.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid var(--gray-200);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* ============================================
   Scroll Animations
   ============================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Custom Scrollbar
   ============================================ */
::-webkit-scrollbar {
  width: 10px;
}

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

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

::-webkit-scrollbar-thumb:hover {
  background: var(--gray-400);
}

/* ============================================
   Section Spacing
   ============================================ */
.section {
  padding: var(--section-padding) 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto 3rem;
}

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

.glass-effect {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.shadow-glow {
  box-shadow: var(--shadow-glow);
}

/* ============================================
   Mobile Responsiveness
   ============================================ */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: white;
    padding: 1rem;
    border-radius: var(--radius-xl);
    margin-top: 1rem;
    box-shadow: var(--shadow-xl);
  }

  .hero-section {
    text-align: center;
    padding: 6rem 0 4rem;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .trust-indicators {
    justify-content: center;
  }

  .floating-element {
    display: none;
  }
}

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

  .hero-description {
    font-size: 1.1rem;
  }

  .btn-hero {
    width: 100%;
    justify-content: center;
  }

  .service-card {
    padding: 1.5rem;
  }

  .step-icon {
    width: 100px;
    height: 100px;
  }

  .step-icon i {
    font-size: 2rem;
  }
}

/* ============================================
   Login/Register Pages
   ============================================ */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-hero);
  padding: 2rem;
}

.auth-card {
  background: white;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl);
  overflow: hidden;
  max-width: 480px;
  width: 100%;
}

.auth-header {
  background: var(--gradient-primary);
  padding: 2rem;
  text-align: center;
  color: white;
}

.auth-header h2 {
  color: white;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.auth-body {
  padding: 2.5rem;
}

/* ============================================
   Dashboard Styles
   ============================================ */
.dashboard-header {
  background: var(--gradient-hero);
  color: white;
  padding: 3rem 0;
  margin-bottom: 2rem;
  border-radius: 0 0 var(--radius-2xl) var(--radius-2xl);
}

.stat-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-normal);
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-900);
}

.stat-label {
  color: var(--gray-500);
  font-weight: 500;
}

/* Sidebar Navigation */
.sidebar-nav {
  background: white;
  border-radius: var(--radius-xl);
  padding: 1rem;
  box-shadow: var(--shadow-lg);
}

.sidebar-nav .nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg);
  color: var(--gray-600);
  font-weight: 500;
  transition: var(--transition-fast);
}

.sidebar-nav .nav-link:hover,
.sidebar-nav .nav-link.active {
  background: var(--primary-color);
  color: white;
}

.sidebar-nav .nav-link i {
  font-size: 1.25rem;
  width: 24px;
}
