/* ================================
   Base CSS Framework - v1.0
   ================================ */

/* 1. Root Variables - Modern Design System */
:root {
    /* Primary Colors */
    --primary: #2c5530;
    --primary-dark: #1e3a22;
    --primary-light: #4a7c59;
    
    /* Neutral Colors */
    --text: #1f2937;
    --text-light: #6b7280;
    --text-muted: #9ca3af;
    --bg: #f8fafc;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Accent Colors */
    --blue: #3b82f6;
    --blue-light: #dbeafe;
    --green: #10b981;
    --green-light: #d1fae5;
    --yellow: #f59e0b;
    --yellow-light: #fef3c7;
    --purple: #8b5cf6;
    --purple-light: #ede9fe;
    --red: #ef4444;
    --red-light: #fee2e2;
    
    /* Status Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #3b82f6;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --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);
  }
  
  /* 2. Reset + Global */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    width: 100%;
    height: 100%;
    font-family: 'Inter', 'Segoe UI', Tahoma, sans-serif;
    color: var(--text);
    background-color: var(--bg);
    overflow-x: hidden;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  img {
    max-width: 100%;
    display: block;
  }
  
  /* 3. Layout Containers */
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 1.5rem;
  }
  
  /* 4. Header + Navigation */
  header {
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
  }
  
  .logo {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary);
  }
  
  /* Desktop menu */
  .menu {
    display: flex;
    gap: 1.5rem;
  }
  
  .menu a {
    color: var(--text);
    font-weight: 500;
    transition: color 0.2s ease;
  }
  
  .menu a:hover,
  .menu a.active {
    color: var(--primary);
  }
  
  /* Mobile toggle */
  .menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 8px;
    cursor: pointer;
    background: transparent;
  }
  
  .menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--primary);
    margin: 3px 0;
    transition: all 0.3s ease;
  }
  
  /* 5. Buttons */
  .btn {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 44px; /* Touch-friendly minimum */
    min-width: 44px;
    text-align: center;
    font-size: 1rem;
  }
  
  .btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(44, 85, 48, 0.3);
  }
  
  .btn:active {
    transform: translateY(0);
  }
  
  .btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    min-height: 36px;
  }
  
  .btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    min-height: 52px;
  }
  
  .btn-danger {
    background: #dc2626;
  }
  
  .btn-danger:hover {
    background: #b91c1c;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
  }
  
  .btn-secondary {
    background: #6b7280;
  }
  
  .btn-secondary:hover {
    background: #4b5563;
    box-shadow: 0 4px 12px rgba(107, 114, 128, 0.3);
  }
  
  .btn-warning {
    background: #f59e0b;
  }
  
  .btn-warning:hover {
    background: #d97706;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
  }
  
  /* 6. Form Elements */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="password"],
  input[type="date"],
  input[type="time"],
  textarea,
  select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s ease;
    min-height: 44px; /* Touch-friendly */
  }
  
  input:focus,
  textarea:focus,
  select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(44, 85, 48, 0.1);
  }
  
  /* 7. Checkboxes */
  input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    margin: 0 0.5rem 0 0;
    cursor: pointer;
    accent-color: var(--primary);
  }
  
  .checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background-color 0.2s ease;
  }
  
  .checkbox-group:hover {
    background-color: #f8f9fa;
  }
  
  .checkbox-group label {
    cursor: pointer;
    font-weight: 500;
    flex: 1;
  }
  
  /* 8. Form Groups */
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary);
  }
  
  .form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
  }
  
  /* 9. Mobile Styles */
  @media (max-width: 768px) {
    .menu {
      display: none;
      flex-direction: column;
      background: var(--white);
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      max-height: 70vh;
      overflow-y: auto;
      scroll-behavior: smooth;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      border-top: 1px solid #eee;
      z-index: 1000;
    }
  
    .menu.active {
      display: flex;
    }
  
    .menu a {
      padding: 1rem;
      border-bottom: 1px solid #eee;
      display: block;
      text-decoration: none;
      color: var(--text);
      font-weight: 500;
      transition: background-color 0.2s ease;
    }

    .menu a:hover {
      background-color: #f8f9fa;
    }

    .menu a:last-child {
      border-bottom: none;
    }
  
    .menu-toggle {
      display: flex;
    }
  
    .menu-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(4px, 4px);
    }
  
    .menu-toggle.active span:nth-child(2) {
      opacity: 0;
    }
  
    .menu-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(4px, -4px);
    }
    
    /* Mobile-specific button improvements */
    .btn {
      min-height: 48px; /* Larger touch target on mobile */
      padding: 0.875rem 1.5rem;
      font-size: 1rem;
    }
    
    .btn-sm {
      min-height: 44px;
      padding: 0.625rem 1.25rem;
    }
    
    .btn-lg {
      min-height: 56px;
      padding: 1.125rem 2rem;
      font-size: 1.125rem;
    }
    
    /* Mobile form improvements */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="password"],
    input[type="date"],
    input[type="time"],
    textarea,
    select {
      min-height: 48px; /* Larger touch target */
      font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Mobile checkbox improvements */
    input[type="checkbox"] {
      width: 24px;
      height: 24px;
      min-width: 24px;
      min-height: 24px;
    }
    
    .checkbox-group {
      padding: 0.75rem;
      min-height: 48px;
    }
    
    /* Mobile container adjustments */
    .container {
      padding: 1.5rem;
      margin: 0.5rem;
      border-radius: 16px;
    }
    
    .form-row {
      grid-template-columns: 1fr;
    }
    
    /* Mobile Homepage Styles */
    .hero h1 {
      font-size: 2rem;
    }
    
    .hero p {
      font-size: 1rem;
    }
    
    .hero-buttons {
      flex-direction: column;
      align-items: center;
    }
    
    /* How It Works - Mobile */
    .how-it-works {
      padding: 2rem 0;
    }
    
    .how-it-works h2 {
      font-size: 1.5rem;
      margin-bottom: 2rem;
    }
    
    .steps {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    
    .step {
      background: var(--white);
      padding: 1.5rem;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      text-align: center;
    }
    
    .step-number {
      width: 50px;
      height: 50px;
      font-size: 1.2rem;
      margin-bottom: 1rem;
    }
    
    .step h3 {
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
    }
    
    .step p {
      font-size: 0.9rem;
      color: #666;
    }
    
    /* Featured Cities - Mobile */
    .featured-cities {
      padding: 2rem 0;
    }
    
    .featured-cities h2 {
      font-size: 1.5rem;
      margin-bottom: 2rem;
    }
    
    .cities-grid {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    
    .city-card {
      background: var(--white);
      padding: 1.5rem;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      text-align: center;
    }
    
    .city-card h3 {
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
    }
    
    .city-card p {
      font-size: 0.9rem;
      color: #666;
    }
    
    .lead-form {
      padding: 1.5rem;
      margin: 0 1rem;
    }
  }
  
  /* 7. Homepage Styles */
  .hero {
    background: linear-gradient(135deg, var(--primary) 0%, #4a7c59 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
  }
  
  .hero .container {
    background: transparent;
    box-shadow: none;
  }
  
  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
  }
  
  .hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .how-it-works {
    padding: 4rem 0;
    background: var(--white);
  }
  
  .how-it-works h2 {
    text-align: center;
    color: var(--primary);
    margin-bottom: 3rem;
    font-size: 2rem;
  }
  
  .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .step {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
  }
  
  .step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
  }
  
  .step h3 {
    color: var(--primary);
    margin-bottom: 1rem;
  }
  
  .featured-cities {
    padding: 4rem 0;
    background: #f8f9fa;
  }
  
  .featured-cities h2 {
    text-align: center;
    color: var(--primary);
    margin-bottom: 3rem;
    font-size: 2rem;
  }
  
  .cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }
  
  .city-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  
  .city-card:hover {
    transform: translateY(-5px);
  }
  
  .city-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
  }
  
  .get-started {
    padding: 4rem 0;
    background: var(--white);
  }
  
  .get-started h2 {
    text-align: center;
    color: var(--primary);
    margin-bottom: 2rem;
    font-size: 2rem;
  }
  
  .lead-form {
    max-width: 600px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
  }
  
  /* 8. Modal Styles */
  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
  }
  
  .modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 0;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  }
  
  .modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .modal-header h3 {
    margin: 0;
    color: var(--primary);
  }
  
  .modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
  }
  
  .modal-close:hover {
    color: var(--primary);
  }
  
  .form-actions {
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
  }
  
  /* 9. Table Container */
  .table-container {
    overflow-x: auto;
    margin-top: 1rem;
  }
  
  /* 10. Status Badge */
  .status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
  }
  
  .status-new {
    background: #dbeafe;
    color: #1e40af;
  }
  
  .status-contacted {
    background: #fef3c7;
    color: #d97706;
  }
  
  .status-scheduled {
    background: #d1fae5;
    color: #065f46;
  }
  
  .status-completed {
    background: #dcfce7;
    color: #166534;
  }
  
  .status-cancelled {
    background: #fee2e2;
    color: #dc2626;
  }
  
  .status-pending {
    background: #fef3c7;
    color: #d97706;
  }
  
  .status-accepted {
    background: #d1fae5;
    color: #065f46;
  }
  
  .status-declined {
    background: #fee2e2;
    color: #dc2626;
  }
  
  /* 11. Utility classes (optional) */
  .text-center { text-align: center; }
  .mt-2 { margin-top: 0.5rem; }
  .mt-4 { margin-top: 1rem; }
  .p-2 { padding: 0.5rem; }
  .rounded { border-radius: 10px; }
  .shadow { box-shadow: 0 4px 10px rgba(0,0,0,0.1); }

/* ================================
   Modern Design System Components
   ================================ */

/* Modern Cards */
.modern-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all 0.2s ease;
}

.modern-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.modern-card-header {
  padding: var(--space-6);
  border-bottom: 1px solid var(--gray-200);
  background: var(--gray-50);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.modern-card-body {
  padding: var(--space-6);
}

.modern-card-footer {
  padding: var(--space-4) var(--space-6);
  border-top: 1px solid var(--gray-200);
  background: var(--gray-50);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

/* Modern Buttons */
.btn-modern {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-modern-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-modern-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-modern-secondary {
  background: var(--gray-100);
  color: var(--gray-700);
  border: 1px solid var(--gray-300);
}

.btn-modern-secondary:hover {
  background: var(--gray-200);
  border-color: var(--gray-400);
}

.btn-modern-success {
  background: var(--success);
  color: var(--white);
}

.btn-modern-success:hover {
  background: #059669;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-modern-sm {
  padding: var(--space-2) var(--space-4);
  font-size: 0.75rem;
}

.btn-modern-lg {
  padding: var(--space-4) var(--space-6);
  font-size: 1rem;
}

/* Modern Status Badges */
.status-modern {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-lg);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.status-modern-scheduled {
  background: var(--blue-light);
  color: var(--blue);
}

.status-modern-completed {
  background: var(--green-light);
  color: var(--success);
}

.status-modern-cancelled {
  background: var(--red-light);
  color: var(--error);
}

.status-modern-no-show {
  background: var(--yellow-light);
  color: var(--warning);
}

/* Modern Form Elements */
.form-modern {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.form-group-modern {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

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

.form-input-modern {
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  transition: all 0.2s ease;
  background: var(--white);
}

.form-input-modern:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(44, 85, 48, 0.1);
}

.form-select-modern {
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  background: var(--white);
  cursor: pointer;
  transition: all 0.2s ease;
}

.form-select-modern:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(44, 85, 48, 0.1);
}

.form-textarea-modern {
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
  transition: all 0.2s ease;
}

.form-textarea-modern:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(44, 85, 48, 0.1);
}

/* Modern Grid System */
.grid-modern {
  display: grid;
  gap: var(--space-6);
}

.grid-modern-1 { grid-template-columns: 1fr; }
.grid-modern-2 { grid-template-columns: repeat(2, 1fr); }
.grid-modern-3 { grid-template-columns: repeat(3, 1fr); }
.grid-modern-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 768px) {
  .grid-modern-2,
  .grid-modern-3,
  .grid-modern-4 {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .grid-modern-3,
  .grid-modern-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Modern Navigation */
.nav-modern {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: var(--space-4) 0;
  box-shadow: var(--shadow-sm);
}

.nav-modern-brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.nav-modern-link {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-lg);
  color: var(--gray-600);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

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

/* Modern Tabs */
.tabs-modern {
  display: flex;
  gap: var(--space-1);
  margin-bottom: var(--space-6);
  background: var(--gray-100);
  padding: var(--space-1);
  border-radius: var(--radius-lg);
}

.tab-modern {
  flex: 1;
  padding: var(--space-3) var(--space-4);
  text-align: center;
  border-radius: var(--radius-md);
  color: var(--gray-600);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  background: transparent;
}

.tab-modern.active {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.tab-modern:hover:not(.active) {
  background: var(--gray-200);
  color: var(--gray-700);
}

/* Modern Page Header */
.page-header-modern {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: var(--space-6) var(--space-8);
  margin-bottom: var(--space-6);
}

.page-title-modern {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--space-2);
}

.page-subtitle-modern {
  color: var(--gray-600);
  font-size: 1rem;
}

/* Modern Empty State */
.empty-state-modern {
  text-align: center;
  padding: var(--space-12) var(--space-6);
  color: var(--gray-500);
}

.empty-state-modern-icon {
  font-size: 3rem;
  margin-bottom: var(--space-4);
  opacity: 0.5;
}

.empty-state-modern-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: var(--space-2);
}

.empty-state-modern-description {
  color: var(--gray-500);
  margin-bottom: var(--space-6);
}

/* Modern Responsive Utilities */
@media (max-width: 640px) {
  .modern-card-header,
  .modern-card-body,
  .modern-card-footer {
    padding: var(--space-4);
  }
  
  .page-header-modern {
    padding: var(--space-4);
  }
  
  .tabs-modern {
    flex-direction: column;
    gap: var(--space-2);
  }
  
  .tab-modern {
    text-align: left;
  }
}
  