/* ============================================
   ASPIRE LAHORE LAB & DIAGNOSTIC CENTER
   Main Stylesheet v2.0 — Premium Production
   ============================================ */

/* -------------------------------------------
   1. DESIGN TOKENS
   ------------------------------------------- */
:root {
  /* Brand Colors */
  --brand-50: #FEF2F2;
  --brand-100: #FEE2E2;
  --brand-200: #FECACA;
  --brand-300: #FCA5A5;
  --brand-400: #F87171;
  --brand-500: #EF4444;
  --brand-600: #DC2626;
  --brand-700: #B91C1C;
  --brand-800: #991B1B;
  --brand-900: #7F1D1D;

  /* Neutral Palette */
  --neutral-50: #F8FAFC;
  --neutral-100: #F1F5F9;
  --neutral-200: #E2E8F0;
  --neutral-300: #CBD5E1;
  --neutral-400: #94A3B8;
  --neutral-500: #64748B;
  --neutral-600: #475569;
  --neutral-700: #334155;
  --neutral-800: #1E293B;
  --neutral-900: #0F172A;

  /* Semantic Colors */
  --success-50: #F0FDF4;
  --success-500: #22C55E;
  --success-600: #16A34A;
  --warning-50: #FFFBEB;
  --warning-500: #F59E0B;
  --warning-600: #D97706;
  --danger-50: #FEF2F2;
  --danger-500: #EF4444;
  --danger-600: #DC2626;
  --info-50: #EFF6FF;
  --info-500: #3B82F6;
  --info-600: #2563EB;

  /* Light Theme */
  --bg-body: #FFFFFF;
  --bg-section: var(--neutral-50);
  --bg-section-alt: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-elevated: #FFFFFF;
  --bg-overlay: rgba(15, 23, 42, 0.6);
  --bg-glass: rgba(255, 255, 255, 0.85);
  --bg-input: #FFFFFF;

  --text-primary: var(--neutral-900);
  --text-secondary: var(--neutral-700);
  --text-muted: var(--neutral-500);
  --text-inverse: #FFFFFF;

  --border-light: var(--neutral-200);
  --border-medium: var(--neutral-300);

  --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
  --shadow-brand: 0 4px 14px rgba(220, 38, 38, 0.3);
  --shadow-brand-lg: 0 8px 30px rgba(220, 38, 38, 0.35);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --radius-round: 50%;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  --leading-tight: 1.15;
  --leading-normal: 1.5;
  --leading-relaxed: 1.65;

  --tracking-tight: -0.025em;
  --tracking-normal: 0;
  --tracking-wide: 0.025em;

  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

  --topbar-height: 42px;
  --navbar-height: 70px;
  --header-total: calc(var(--topbar-height) + var(--navbar-height));
}

/* -------------------------------------------
   2. DARK MODE
   ------------------------------------------- */
[data-theme="dark"] {
  --bg-body: var(--neutral-900);
  --bg-section: var(--neutral-800);
  --bg-section-alt: var(--neutral-900);
  --bg-card: var(--neutral-800);
  --bg-elevated: var(--neutral-700);
  --bg-overlay: rgba(0, 0, 0, 0.75);
  --bg-glass: rgba(30, 41, 59, 0.85);
  --bg-input: var(--neutral-800);

  --text-primary: var(--neutral-100);
  --text-secondary: var(--neutral-300);
  --text-muted: var(--neutral-400);
  --text-inverse: var(--neutral-900);

  --border-light: var(--neutral-700);
  --border-medium: var(--neutral-600);

  --shadow-xs: 0 1px 2px rgba(0,0,0,0.3);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.4);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.4);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.4);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.5);
  --shadow-2xl: 0 25px 50px rgba(0,0,0,0.5);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg-body: var(--neutral-900);
    --bg-section: var(--neutral-800);
    --bg-section-alt: var(--neutral-900);
    --bg-card: var(--neutral-800);
    --bg-elevated: var(--neutral-700);
    --bg-overlay: rgba(0, 0, 0, 0.75);
    --bg-glass: rgba(30, 41, 59, 0.85);
    --bg-input: var(--neutral-800);
    --text-primary: var(--neutral-100);
    --text-secondary: var(--neutral-300);
    --text-muted: var(--neutral-400);
    --text-inverse: var(--neutral-900);
    --border-light: var(--neutral-700);
    --border-medium: var(--neutral-600);
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.3);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.4);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.4);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.4);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.5);
    --shadow-2xl: 0 25px 50px rgba(0,0,0,0.5);
  }
}

/* -------------------------------------------
   3. RESET & BASE
   ------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-total) + 20px);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--text-primary);
  background: var(--bg-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background var(--transition-base), color var(--transition-base);
}

a { color: var(--brand-600); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--brand-700); }
a:focus-visible { outline: 2px solid var(--brand-500); outline-offset: 2px; border-radius: 2px; }

img, svg, video { max-width: 100%; height: auto; display: block; }
img[loading="lazy"] { background: var(--neutral-200); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: var(--leading-tight);
  color: var(--text-primary);
  transition: color var(--transition-base);
}

p { color: var(--text-secondary); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

ul, ol { list-style: none; }

/* Focus visible for keyboard */
:focus-visible { outline: 2px solid var(--brand-500); outline-offset: 2px; }
button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 2px solid var(--brand-500); outline-offset: 2px; }

/* Selection */
::selection { background: var(--brand-600); color: #fff; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--neutral-100); }
::-webkit-scrollbar-thumb { background: var(--neutral-300); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--neutral-400); }
[data-theme="dark"] ::-webkit-scrollbar-track { background: var(--neutral-800); }
[data-theme="dark"] ::-webkit-scrollbar-thumb { background: var(--neutral-600); }

/* -------------------------------------------
   4. UTILITY CLASSES
   ------------------------------------------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-narrow { max-width: 900px; }
.container-wide { max-width: 1400px; }

.section {
  padding: 80px 0;
  transition: background var(--transition-base);
}

.section-sm { padding: 48px 0; }
.section-lg { padding: 100px 0; }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-100);
  color: var(--brand-700);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  transition: background var(--transition-base), color var(--transition-base);
}

.section-title {
  font-size: var(--text-4xl);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: var(--tracking-tight);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--text-muted);
  line-height: var(--leading-normal);
}

.text-center { text-align: center; }
.text-brand { color: var(--brand-600); }

.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 4px; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-5 { gap: 20px; }
.gap-6 { gap: 24px; }

.mt-1 { margin-top: 4px; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; }
.mt-5 { margin-top: 20px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mt-10 { margin-top: 40px; }
.mt-12 { margin-top: 48px; }
.mb-1 { margin-bottom: 4px; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }
.mb-5 { margin-bottom: 20px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-10 { margin-bottom: 40px; }
.mx-auto { margin-left: auto; margin-right: auto; }

.w-100 { width: 100%; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.hidden { display: none !important; }
.visible { display: block !important; }

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* -------------------------------------------
   5. BUTTONS
   ------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1;
  padding: 12px 24px;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%);
  transition: transform var(--transition-base);
}

.btn:hover::after { transform: translateX(0); }

.btn-primary {
  background: var(--brand-600);
  color: #fff;
  border-color: var(--brand-600);
}
.btn-primary:hover {
  background: var(--brand-700);
  border-color: var(--brand-700);
  color: #fff;
  box-shadow: var(--shadow-brand);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-medium);
}
.btn-secondary:hover {
  border-color: var(--brand-600);
  color: var(--brand-600);
  background: var(--brand-50);
  transform: translateY(-1px);
}
[data-theme="dark"] .btn-secondary:hover { background: var(--brand-900); }

.btn-outline-brand {
  background: transparent;
  color: var(--brand-600);
  border-color: var(--brand-600);
}
.btn-outline-brand:hover {
  background: var(--brand-600);
  color: #fff;
  box-shadow: var(--shadow-brand);
  transform: translateY(-1px);
}

.btn-light {
  background: #fff;
  color: var(--neutral-800);
  border-color: #fff;
}
.btn-light:hover {
  background: var(--neutral-100);
  transform: translateY(-1px);
}

.btn-sm { padding: 8px 16px; font-size: var(--text-xs); }
.btn-lg { padding: 16px 32px; font-size: var(--text-base); }
.btn-block { width: 100%; justify-content: center; }
.btn-icon { width: 44px; height: 44px; padding: 0; border-radius: var(--radius-round); }
.btn-icon.btn-sm { width: 36px; height: 36px; }

/* -------------------------------------------
   6. FORM ELEMENTS
   ------------------------------------------- */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.form-label .required { color: var(--danger-500); }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--text-primary);
  background: var(--bg-input);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  outline: none;
}

.form-input:hover, .form-select:hover, .form-textarea:hover {
  border-color: var(--border-medium);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--brand-500);
  box-shadow: 0 0 0 3px var(--brand-100);
}

.form-input.error, .form-select.error, .form-textarea.error {
  border-color: var(--danger-500);
  box-shadow: 0 0 0 3px var(--danger-50);
}

.form-textarea { min-height: 120px; resize: vertical; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23475569' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }

.form-hint { font-size: var(--text-xs); color: var(--text-muted); margin-top: 4px; }
.form-error { font-size: var(--text-xs); color: var(--danger-600); margin-top: 4px; display: none; }
.form-error.visible { display: block; }

.form-check { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.form-check input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--brand-600); flex-shrink: 0; }
.form-check input[type="radio"] { width: 18px; height: 18px; accent-color: var(--brand-600); flex-shrink: 0; }
.form-check-label { font-size: var(--text-sm); color: var(--text-secondary); cursor: pointer; }

/* -------------------------------------------
   7. NAVBAR & HEADER
   ------------------------------------------- */
.top-bar {
  background: var(--neutral-900);
  color: var(--neutral-300);
  font-size: var(--text-xs);
  padding: 8px 0;
  height: var(--topbar-height);
  display: flex;
  align-items: center;
  transition: background var(--transition-base);
}
.top-bar-inner { display: flex; align-items: center; justify-content: space-between; }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 20px; }
.top-bar-item { display: inline-flex; align-items: center; gap: 6px; }
.top-bar-item i { color: var(--brand-400); font-size: 11px; }
.top-bar-item a { color: var(--neutral-300); }
.top-bar-item a:hover { color: #fff; }
.top-bar-social { display: flex; gap: 10px; }
.top-bar-social a { color: var(--neutral-400); font-size: 13px; transition: color var(--transition-fast); }
.top-bar-social a:hover { color: var(--brand-400); }

.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-body);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition-base);
}
.main-header.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: var(--navbar-height); }

.navbar-brand {
  display: flex; align-items: center; gap: 10px;
  font-size: var(--text-xl); font-weight: 800;
  color: var(--text-primary); text-decoration: none;
}
.navbar-brand:hover { color: var(--brand-600); }
.navbar-brand-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--brand-600), var(--brand-800));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 20px;
}
.navbar-brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.navbar-brand-name { font-size: 16px; }
.navbar-brand-tagline { font-size: 10px; font-weight: 500; color: var(--text-muted); letter-spacing: 0.05em; }

.navbar-menu { display: flex; align-items: center; gap: 4px; }
.navbar-link {
  position: relative;
  display: flex; align-items: center;
  padding: 8px 14px;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}
.navbar-link:hover { color: var(--brand-600); background: var(--brand-50); }
[data-theme="dark"] .navbar-link:hover { background: var(--neutral-700); }
.navbar-link.active { color: var(--brand-600); font-weight: 600; }
.navbar-link .dropdown-icon { font-size: 10px; margin-left: 4px; transition: transform var(--transition-fast); }
.navbar-link:hover .dropdown-icon { transform: rotate(180deg); }

.navbar-actions { display: flex; align-items: center; gap: 10px; }
.navbar-toggle {
  display: none;
  width: 40px; height: 40px;
  background: none; border: none;
  cursor: pointer; padding: 8px;
  flex-direction: column; justify-content: center;
  gap: 5px;
}
.navbar-toggle span {
  display: block; width: 100%; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}
.navbar-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar-toggle.active span:nth-child(2) { opacity: 0; }
.navbar-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Theme toggle */
.theme-toggle {
  width: 38px; height: 38px;
  border-radius: var(--radius-round);
  border: 1px solid var(--border-light);
  background: var(--bg-card);
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 16px;
  transition: all var(--transition-fast);
}
.theme-toggle:hover { color: var(--brand-600); border-color: var(--brand-300); }

/* Dropdown */
.navbar-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition-base);
  z-index: 100;
}
.navbar-dropdown-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: var(--text-sm);
  transition: all var(--transition-fast);
}
.navbar-dropdown-item:hover { background: var(--brand-50); color: var(--brand-600); }
[data-theme="dark"] .navbar-dropdown-item:hover { background: var(--neutral-700); }
.navbar-dropdown-item i { width: 18px; color: var(--brand-500); }

.nav-item-has-dropdown { position: relative; }
.nav-item-has-dropdown:hover .navbar-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

/* Mobile bottom bar */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--bg-body);
  border-top: 1px solid var(--border-light);
  padding: 6px 0;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
.mobile-bottom-bar-inner { display: flex; justify-content: space-around; }
.mobile-bottom-link {
  display: flex; flex-direction: column; align-items: center;
  gap: 2px; padding: 6px 4px;
  font-size: 10px; color: var(--text-muted);
  text-decoration: none; min-width: 56px;
  transition: color var(--transition-fast);
}
.mobile-bottom-link i { font-size: 18px; }
.mobile-bottom-link:hover, .mobile-bottom-link.active { color: var(--brand-600); }

/* -------------------------------------------
   8. PRELOADER
   ------------------------------------------- */
.preloader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--bg-body);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 20px;
  transition: opacity 0.4s, visibility 0.4s;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-icon { font-size: 48px; color: var(--brand-600); animation: preloaderPulse 1s ease-in-out infinite; }
.preloader-bar { width: 120px; height: 3px; background: var(--neutral-200); border-radius: 3px; overflow: hidden; }
.preloader-bar-inner { height: 100%; width: 0; background: linear-gradient(90deg, var(--brand-600), var(--brand-400)); animation: preloaderLoad 1.5s ease-in-out infinite; }
@keyframes preloaderPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.15); } }
@keyframes preloaderLoad { 0% { width: 0; } 50% { width: 70%; } 100% { width: 100%; } }

/* -------------------------------------------
   9. HERO
   ------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--neutral-900);
}

.hero-slide {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.92) 0%, rgba(220,38,38,0.75) 100%);
  z-index: 1;
}
.hero-overlay-alt {
  background: linear-gradient(135deg, rgba(220,38,38,0.8) 0%, rgba(15,23,42,0.85) 100%);
}

.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.swiper-slide-active .hero-bg { transform: scale(1); }

.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.1);
}
.hero-badge i { color: var(--brand-400); }

.hero-title {
  font-size: clamp(2rem, 5vw, var(--text-6xl));
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: var(--tracking-tight);
}

.hero-text {
  font-size: clamp(1rem, 2vw, var(--text-lg));
  color: rgba(255,255,255,0.8);
  line-height: var(--leading-normal);
  margin-bottom: 32px;
  max-width: 580px;
}

.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--text-sm);
  text-decoration: none;
  transition: all var(--transition-base);
}
.hero-btn-primary { background: var(--brand-600); color: #fff; }
.hero-btn-primary:hover { background: var(--brand-700); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(220,38,38,0.4); }
.hero-btn-secondary {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}
.hero-btn-secondary:hover { background: rgba(255,255,255,0.2); color: #fff; transform: translateY(-2px); }

.hero-stats { display: flex; gap: 24px; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat-value { display: flex; align-items: baseline; justify-content: center; gap: 2px; }
.hero-stat-num { font-size: var(--text-3xl); font-weight: 800; color: #fff; line-height: 1; }
.hero-stat-suffix { font-size: var(--text-lg); font-weight: 700; color: var(--brand-400); }
.hero-stat-label { display: block; font-size: var(--text-xs); color: rgba(255,255,255,0.7); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.05em; }

/* Hero pagination */
.hero-pagination { bottom: 24px !important; }
.hero-pagination .swiper-pagination-bullet {
  width: 10px; height: 10px;
  background: rgba(255,255,255,0.4);
  opacity: 1;
}
.hero-pagination .swiper-pagination-bullet-active {
  background: var(--brand-500);
  width: 28px;
  border-radius: 5px;
}

.hero-nav { color: #fff !important; }
.swiper-button-next.hero-nav::after, .swiper-button-prev.hero-nav::after { font-size: 20px !important; }

/* -------------------------------------------
   10. FLOATING BUTTONS
   ------------------------------------------- */
.float-whatsapp {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 998;
}
.float-whatsapp a {
  display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: var(--radius-round);
  font-size: 26px;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-base);
  animation: whatsappPulse 2s ease-in-out infinite;
}
.float-whatsapp a:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5); color: #fff; }
@keyframes whatsappPulse { 0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); } 50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.6); } }

.float-buttons {
  position: fixed;
  right: 24px;
  bottom: 170px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.float-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  background: var(--bg-body);
  color: var(--text-primary);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-lg);
  font-size: var(--text-xs);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
  border: 1px solid var(--border-light);
}
.float-btn i { font-size: 16px; }
.float-btn:hover { transform: translateX(-4px); color: var(--brand-600); box-shadow: var(--shadow-xl); }
.float-btn span { display: none; }
.float-btn:hover span { display: inline; }

/* -------------------------------------------
   11. FEATURES STRIP
   ------------------------------------------- */
.features-strip {
  padding: 32px 0;
  background: linear-gradient(135deg, var(--brand-700), var(--brand-900));
}
.feature-strip-card {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all var(--transition-base);
  height: 100%;
}
.feature-strip-card:hover { background: rgba(255,255,255,0.14); transform: translateY(-2px); }
.feature-strip-card .strip-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: #fff;
}
.feature-strip-card .strip-content h4 { font-size: var(--text-sm); font-weight: 700; color: #fff; margin-bottom: 2px; }
.feature-strip-card .strip-content p { font-size: var(--text-xs); color: rgba(255,255,255,0.75); margin: 0; }

/* -------------------------------------------
   12. SECTION: ABOUT PREVIEW
   ------------------------------------------- */
.about-preview { background: var(--bg-section); }
.about-preview-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 400px;
  background: linear-gradient(135deg, var(--neutral-200), var(--neutral-300));
}
.about-preview-image .about-exp-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--brand-600);
  color: #fff;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  text-align: center;
}
.about-exp-badge .exp-num { display: block; font-size: var(--text-3xl); font-weight: 800; line-height: 1; }
.about-exp-badge .exp-label { font-size: var(--text-xs); opacity: 0.85; }

.about-preview-content { padding: 20px 0; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 24px; }
.about-feature { display: flex; align-items: center; gap: 10px; font-size: var(--text-sm); color: var(--text-secondary); }
.about-feature i { color: var(--success-500); font-size: 14px; flex-shrink: 0; }

/* -------------------------------------------
   13. SECTION: SERVICES
   ------------------------------------------- */
.services-section { background: var(--bg-section-alt); }

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  height: 100%;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--brand-600), var(--brand-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: transparent; }
.service-card-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--brand-100), #FECACA);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: var(--brand-600);
  margin-bottom: 20px;
  transition: all var(--transition-base);
}
.service-card:hover .service-card-icon {
  background: linear-gradient(135deg, var(--brand-600), var(--brand-800));
  color: #fff;
  transform: scale(1.1) rotate(-5deg);
}
.service-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.service-link { font-size: var(--text-sm); font-weight: 600; color: var(--brand-600); display: inline-flex; align-items: center; gap: 6px; }
.service-link:hover { gap: 10px; }

/* -------------------------------------------
   14. SECTION: WHY CHOOSE
   ------------------------------------------- */
.why-section { background: var(--bg-section); }
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  height: 100%;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: var(--brand-200); }
.why-num { position: absolute; top: -10px; right: 16px; font-size: 72px; font-weight: 900; color: var(--neutral-200); line-height: 1; pointer-events: none; transition: color var(--transition-base); }
.why-card:hover .why-num { color: var(--brand-100); }
.why-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--brand-100), #FECACA);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: var(--brand-600);
  margin-bottom: 20px;
  transition: all var(--transition-base);
}
.why-card:hover .why-icon { background: linear-gradient(135deg, var(--brand-600), var(--brand-800)); color: #fff; transform: scale(1.1) rotate(-5deg); }
.why-card h3 { font-size: 18px; font-weight: 700; color: var(--text-primary); margin-bottom: 12px; }
.why-card p { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.7; margin: 0; }

/* -------------------------------------------
   15. SECTION: DEPARTMENTS
   ------------------------------------------- */
.departments-section { background: var(--bg-section-alt); }
.dept-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; height: 280px; cursor: pointer; }
.dept-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform var(--transition-slow); }
.dept-card:hover .dept-card-bg { transform: scale(1.08); }
.dept-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15,23,42,0.92) 100%);
  z-index: 1;
}
.dept-card-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px;
  z-index: 2;
}
.dept-card-icon { width: 44px; height: 44px; background: var(--brand-600); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 18px; margin-bottom: 12px; }
.dept-card h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.dept-card p { font-size: var(--text-xs); color: rgba(255,255,255,0.75); margin: 0; }
.dept-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 12px; font-size: var(--text-sm); font-weight: 600;
  color: var(--brand-400); text-decoration: none;
  opacity: 0; transform: translateY(10px);
  transition: all var(--transition-base);
}
.dept-card:hover .dept-card-link { opacity: 1; transform: translateY(0); }

/* -------------------------------------------
   16. SECTION: PACKAGES
   ------------------------------------------- */
.packages-section { background: var(--bg-section); }
.package-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  height: 100%;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}
.package-card.featured {
  border-color: var(--brand-600);
  box-shadow: 0 0 0 1px var(--brand-600), var(--shadow-lg);
  transform: scale(1.03);
  z-index: 1;
}
.package-card.featured .package-badge {
  position: absolute; top: 16px; right: -32px;
  background: var(--brand-600); color: #fff;
  padding: 6px 40px;
  font-size: var(--text-xs); font-weight: 700;
  transform: rotate(45deg);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.package-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.package-card.featured:hover { transform: scale(1.03) translateY(-6px); }
.package-name { font-size: var(--text-lg); font-weight: 700; margin-bottom: 8px; }
.package-desc { font-size: var(--text-sm); color: var(--text-muted); margin-bottom: 20px; }
.package-price { margin-bottom: 20px; }
.package-price .price { font-size: var(--text-3xl); font-weight: 800; color: var(--brand-600); }
.package-price .price-original { font-size: var(--text-base); color: var(--text-muted); text-decoration: line-through; margin-left: 8px; }
.package-price .price-label { display: block; font-size: var(--text-xs); color: var(--text-muted); margin-top: 2px; }
.package-features { list-style: none; padding: 0; margin: 0 0 24px; }
.package-features li {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
}
.package-features li:last-child { border-bottom: none; }
.package-features li i { color: var(--success-500); font-size: 13px; flex-shrink: 0; }

/* -------------------------------------------
   17. SECTION: MEGA CAMP
   ------------------------------------------- */
.mega-camp {
  position: relative;
  background: linear-gradient(135deg, var(--neutral-900), var(--brand-900));
  padding: 80px 0;
  overflow: hidden;
}
.mega-camp::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.mega-camp-content { position: relative; z-index: 1; text-align: center; }
.mega-camp h2 { font-size: var(--text-4xl); font-weight: 800; color: #fff; margin-bottom: 12px; }
.mega-camp p { font-size: var(--text-lg); color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto 36px; }
.mega-camp-timer { display: flex; justify-content: center; gap: 20px; margin-bottom: 36px; flex-wrap: wrap; }
.mega-camp-timer .timer-item {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  min-width: 90px;
  text-align: center;
}
.timer-num { display: block; font-size: var(--text-4xl); font-weight: 800; color: #fff; line-height: 1; }
.timer-label { display: block; font-size: var(--text-xs); color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 6px; }

/* -------------------------------------------
   18. SECTION: CEO MESSAGE
   ------------------------------------------- */
.ceo-section { background: var(--bg-section); }
.ceo-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}
.ceo-image {
  height: 100%;
  min-height: 350px;
  background: linear-gradient(135deg, var(--neutral-300), var(--neutral-400));
}
.ceo-content { padding: 48px; }
.ceo-content blockquote { font-size: var(--text-lg); font-style: italic; color: var(--text-secondary); line-height: 1.8; margin-bottom: 20px; padding-left: 20px; border-left: 3px solid var(--brand-600); }
.ceo-content .ceo-name { font-size: var(--text-xl); font-weight: 700; }
.ceo-content .ceo-title { font-size: var(--text-sm); color: var(--text-muted); }

/* -------------------------------------------
   19. SECTION: EXPERTS
   ------------------------------------------- */
.experts-section { background: var(--bg-section-alt); }
.expert-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
}
.expert-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.expert-img {
  height: 280px;
  background: linear-gradient(135deg, var(--neutral-200), var(--neutral-300));
  position: relative;
}
.expert-social {
  position: absolute; bottom: 12px; left: 12px; right: 12px;
  display: flex; gap: 8px; justify-content: center;
  opacity: 0; transform: translateY(10px);
  transition: all var(--transition-base);
}
.expert-card:hover .expert-social { opacity: 1; transform: translateY(0); }
.expert-social a {
  width: 36px; height: 36px;
  background: #fff;
  border-radius: var(--radius-round);
  display: flex; align-items: center; justify-content: center;
  color: var(--neutral-700); font-size: 14px;
  box-shadow: var(--shadow-md);
}
.expert-social a:hover { color: var(--brand-600); }
.expert-info { padding: 20px 24px; }
.expert-info h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.expert-info .expert-role { font-size: var(--text-sm); color: var(--brand-600); font-weight: 500; margin-bottom: 8px; }
.expert-info p { font-size: var(--text-xs); color: var(--text-muted); }

/* -------------------------------------------
   20. SECTION: REVIEWS / TESTIMONIALS
   ------------------------------------------- */
.reviews-section { background: var(--bg-section); }
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  height: auto;
  transition: all var(--transition-base);
}
.review-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.review-stars { margin-bottom: 16px; }
.review-stars i { color: #F59E0B; font-size: 14px; margin-right: 2px; }
.review-text { font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 14px; }
.review-avatar {
  width: 48px; height: 48px;
  border-radius: var(--radius-round);
  background: linear-gradient(135deg, var(--brand-100), var(--brand-200));
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-600); font-weight: 700; font-size: 18px;
  flex-shrink: 0;
}
.review-info h4 { font-size: var(--text-sm); font-weight: 700; margin-bottom: 2px; }
.review-info span { font-size: var(--text-xs); color: var(--text-muted); }

.reviews-pagination { position: relative !important; margin-top: 24px; }
.reviews-pagination .swiper-pagination-bullet { background: var(--neutral-300); opacity: 1; }
.reviews-pagination .swiper-pagination-bullet-active { background: var(--brand-600); width: 24px; border-radius: 4px; }

/* -------------------------------------------
   21. SECTION: CERTIFICATES
   ------------------------------------------- */
.certificates-section { background: var(--bg-section-alt); }
.cert-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  height: 100%;
  transition: all var(--transition-base);
}
.cert-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cert-icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--brand-100), #FECACA);
  border-radius: var(--radius-round);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--brand-600);
  transition: all var(--transition-base);
}
.cert-card:hover .cert-icon { background: linear-gradient(135deg, var(--brand-600), var(--brand-800)); color: #fff; transform: scale(1.1) rotateY(180deg); }
.cert-card h4 { font-size: var(--text-sm); font-weight: 700; margin-bottom: 8px; }
.cert-card p { font-size: var(--text-xs); color: var(--text-muted); }

/* -------------------------------------------
   22. SECTION: BRANCHES
   ------------------------------------------- */
.branches-section { background: var(--bg-section); }
.branch-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  height: 100%;
  transition: all var(--transition-base);
  text-align: center;
}
.branch-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.branch-icon {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  background: var(--brand-100);
  border-radius: var(--radius-round);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--brand-600);
}
.branch-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.branch-card .branch-address { font-size: var(--text-sm); color: var(--text-muted); margin-bottom: 16px; }
.branch-contact { display: flex; justify-content: center; gap: 16px; font-size: var(--text-xs); color: var(--text-muted); margin-bottom: 16px; flex-wrap: wrap; }
.branch-contact i { color: var(--brand-500); margin-right: 4px; }
.branch-direction { display: inline-flex; align-items: center; gap: 6px; font-size: var(--text-sm); font-weight: 600; color: var(--brand-600); }

/* -------------------------------------------
   23. SECTION: FAQ
   ------------------------------------------- */
.faq-section { background: var(--bg-section-alt); }

.faq-accordion { max-width: 800px; margin: 0 auto; }
.faq-accordion .accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md) !important;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--transition-base);
}
.faq-accordion .accordion-item:hover { border-color: var(--brand-300); }
.faq-accordion .accordion-header { margin: 0; }
.faq-accordion .accordion-button {
  width: 100%;
  display: flex; align-items: center; gap: 12px;
  padding: 18px 20px;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  text-align: left;
  transition: all var(--transition-fast);
}
.faq-accordion .accordion-button:hover { color: var(--brand-600); }
.faq-accordion .accordion-button i { color: var(--brand-500); font-size: 14px; flex-shrink: 0; }
.faq-accordion .accordion-button::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-left: auto;
  transition: transform var(--transition-base);
}
.faq-accordion .accordion-button[aria-expanded="true"]::after { transform: rotate(180deg); }
.faq-accordion .accordion-body { padding: 0 20px 18px; font-size: var(--text-sm); color: var(--text-muted); line-height: 1.7; }

/* -------------------------------------------
   24. SECTION: NEWSLETTER
   ------------------------------------------- */
.newsletter-section {
  background: linear-gradient(135deg, var(--brand-700), var(--brand-900));
  padding: 60px 0;
}
.newsletter-wrapper {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 48px;
}
.newsletter-content h3 { font-size: var(--text-2xl); font-weight: 700; color: #fff; margin-bottom: 8px; }
.newsletter-content p { color: rgba(255,255,255,0.8); font-size: var(--text-sm); }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-input {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: var(--text-sm);
  outline: none;
  transition: all var(--transition-fast);
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-input:focus { border-color: var(--brand-400); background: rgba(255,255,255,0.15); }

/* -------------------------------------------
   25. FOOTER
   ------------------------------------------- */
.site-footer {
  background: var(--neutral-900);
  color: var(--neutral-300);
  transition: background var(--transition-base);
}

.footer-main { padding: 60px 0 40px; }
.footer-brand-wrapper { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand-icon { width: 48px; height: 48px; background: var(--brand-600); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 22px; }
.footer-brand-name { display: block; font-size: 18px; font-weight: 800; color: #fff; }
.footer-brand-tagline { display: block; font-size: 10px; color: var(--neutral-400); letter-spacing: 0.08em; text-transform: uppercase; }
.footer-desc { font-size: var(--text-sm); color: var(--neutral-400); line-height: 1.7; margin-bottom: 20px; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid var(--neutral-700);
  border-radius: var(--radius-round);
  display: flex; align-items: center; justify-content: center;
  color: var(--neutral-400); font-size: 14px;
  transition: all var(--transition-fast);
}
.footer-social a:hover { background: var(--brand-600); border-color: var(--brand-600); color: #fff; }

.footer-heading { font-size: var(--text-sm); font-weight: 700; color: #fff; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.05em; }

.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--neutral-400); font-size: var(--text-sm); transition: all var(--transition-fast); display: inline-flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--brand-400); padding-left: 4px; }
.footer-links a::before { content: '\f105'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 10px; color: var(--brand-500); }

.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-size: var(--text-sm); color: var(--neutral-400); }
.footer-contact-item i { color: var(--brand-400); margin-top: 3px; width: 16px; text-align: center; flex-shrink: 0; }
.footer-contact-item a { color: var(--neutral-400); }
.footer-contact-item a:hover { color: var(--brand-400); }

.footer-bottom {
  border-top: 1px solid var(--neutral-800);
  padding: 20px 0;
}
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copyright { font-size: var(--text-xs); color: var(--neutral-500); margin: 0; }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { font-size: var(--text-xs); color: var(--neutral-500); }
.footer-bottom-links a:hover { color: var(--brand-400); }

/* -------------------------------------------
   26. SCROLL TO TOP
   ------------------------------------------- */
.scroll-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 997;
  width: 44px; height: 44px;
  background: var(--brand-600);
  color: #fff;
  border: none;
  border-radius: var(--radius-round);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-brand);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--brand-700); transform: translateY(-3px); box-shadow: var(--shadow-brand-lg); }

/* -------------------------------------------
   27. POPUP NOTIFICATION
   ------------------------------------------- */
.popup-overlay {
  position: fixed; inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.6);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; visibility: hidden;
  transition: all var(--transition-base);
}
.popup-overlay.active { opacity: 1; visibility: visible; }

.popup-modal {
  background: var(--bg-elevated);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-2xl);
  transform: scale(0.9);
  transition: transform var(--transition-bounce);
}
.popup-overlay.active .popup-modal { transform: scale(1); }

.popup-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: var(--neutral-100);
  border: none; border-radius: var(--radius-round);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 16px;
  transition: all var(--transition-fast);
}
.popup-close:hover { background: var(--brand-100); color: var(--brand-600); }

.popup-icon { font-size: 48px; color: var(--brand-600); margin-bottom: 16px; }
.popup-modal h3 { font-size: var(--text-2xl); font-weight: 700; margin-bottom: 12px; }
.popup-modal p { font-size: var(--text-sm); color: var(--text-muted); margin-bottom: 20px; }

.popup-countdown { display: flex; gap: 12px; justify-content: center; margin-bottom: 24px; }
.popup-countdown .cd-item { background: var(--brand-50); border-radius: var(--radius-md); padding: 12px 16px; min-width: 64px; text-align: center; }
.popup-countdown .cd-num { display: block; font-size: var(--text-2xl); font-weight: 800; color: var(--brand-600); line-height: 1; }
.popup-countdown .cd-label { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 4px; display: block; }

.popup-dont-show { display: flex; align-items: center; gap: 8px; justify-content: center; margin-top: 16px; cursor: pointer; font-size: var(--text-xs); color: var(--text-muted); }
.popup-dont-show input[type="checkbox"] { accent-color: var(--brand-600); }

/* -------------------------------------------
   28. PAGE HEADER (Subpages)
   ------------------------------------------- */
.page-header {
  position: relative;
  padding: 80px 0 60px;
  background: linear-gradient(135deg, var(--neutral-900), var(--brand-900));
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}
.page-header-content { position: relative; z-index: 1; text-align: center; }
.page-breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 16px; font-size: var(--text-sm); }
.page-breadcrumb a { color: rgba(255,255,255,0.6); }
.page-breadcrumb a:hover { color: #fff; }
.page-breadcrumb .separator { color: rgba(255,255,255,0.3); font-size: 12px; }
.page-breadcrumb .current { color: rgba(255,255,255,0.9); }
.page-title { font-size: clamp(1.75rem, 4vw, var(--text-5xl)); font-weight: 800; color: #fff; margin-bottom: 12px; }
.page-subtitle { font-size: var(--text-lg); color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto; }

/* -------------------------------------------
   29. SUBPAGE SECTIONS
   ------------------------------------------- */
.subpage-section { padding: 60px 0; }
.subpage-section-alt { background: var(--bg-section); }

.page-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  height: 100%;
  transition: all var(--transition-base);
}
.page-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.page-card-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--brand-100), #FECACA);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--brand-600);
  margin-bottom: 16px;
}
.page-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.page-card p { font-size: var(--text-sm); color: var(--text-muted); margin-bottom: 16px; }

/* -------------------------------------------
   30. TEST DIRECTORY / RATE LIST
   ------------------------------------------- */
.test-search-bar {
  display: flex; gap: 12px; margin-bottom: 24px;
  flex-wrap: wrap;
}
.test-search-input {
  flex: 1; min-width: 200px;
  padding: 12px 16px 12px 42px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  background: var(--bg-input) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%2394A3B8' d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'/%3E%3C/svg%3E") 14px center no-repeat;
  outline: none;
  transition: all var(--transition-fast);
}
.test-search-input:focus { border-color: var(--brand-500); box-shadow: 0 0 0 3px var(--brand-100); }

.test-category-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.test-cat-btn {
  padding: 8px 16px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-pill);
  background: transparent;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.test-cat-btn:hover { border-color: var(--brand-300); color: var(--brand-600); }
.test-cat-btn.active { background: var(--brand-600); border-color: var(--brand-600); color: #fff; }

.test-table { width: 100%; border-collapse: separate; border-spacing: 0 8px; }
.test-table th { padding: 12px 16px; font-size: var(--text-xs); font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; text-align: left; border-bottom: 2px solid var(--border-light); }
.test-table td { padding: 14px 16px; font-size: var(--text-sm); background: var(--bg-card); border-bottom: 1px solid var(--border-light); }
.test-table tr td:first-child { border-radius: var(--radius-md) 0 0 var(--radius-md); }
.test-table tr td:last-child { border-radius: 0 var(--radius-md) var(--radius-md) 0; }
.test-table tr:hover td { background: var(--brand-50); }
[data-theme="dark"] .test-table tr:hover td { background: var(--neutral-700); }

.test-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 20px;
  height: 100%;
  transition: all var(--transition-base);
}
.test-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* -------------------------------------------
   31. BRANCHES PAGE
   ------------------------------------------- */
.branch-search-result { margin-bottom: 12px; font-size: var(--text-sm); color: var(--text-muted); }

/* -------------------------------------------
   32. BOOKING / APPOINTMENT
   ------------------------------------------- */
.booking-form { max-width: 600px; margin: 0 auto; }

.calendar-widget {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}
.calendar-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.calendar-header button {
  width: 36px; height: 36px;
  border: 1px solid var(--border-light);
  background: var(--bg-card);
  border-radius: var(--radius-round);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}
.calendar-header button:hover { border-color: var(--brand-300); color: var(--brand-600); }
.calendar-header .month-year { font-size: var(--text-base); font-weight: 700; }

.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.calendar-day-name { text-align: center; font-size: var(--text-xs); font-weight: 600; color: var(--text-muted); padding: 8px 0; }
.calendar-day {
  text-align: center; padding: 10px; border-radius: var(--radius-md);
  font-size: var(--text-sm); font-weight: 500;
  cursor: pointer; transition: all var(--transition-fast);
  color: var(--text-secondary);
}
.calendar-day:hover { background: var(--brand-50); color: var(--brand-600); }
.calendar-day.selected { background: var(--brand-600); color: #fff; font-weight: 700; }
.calendar-day.disabled { color: var(--neutral-300); cursor: not-allowed; }
.calendar-day.today { border: 1px solid var(--brand-300); }
[data-theme="dark"] .calendar-day:hover { background: var(--neutral-700); }

.time-slots { display: flex; gap: 8px; flex-wrap: wrap; }
.time-slot {
  padding: 10px 18px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: var(--text-xs); font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-card);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.time-slot:hover { border-color: var(--brand-300); color: var(--brand-600); }
.time-slot.selected { background: var(--brand-600); color: #fff; border-color: var(--brand-600); }
.time-slot.booked { opacity: 0.4; cursor: not-allowed; text-decoration: line-through; }

/* -------------------------------------------
   33. CART
   ------------------------------------------- */
.cart-sidebar {
  position: fixed; top: 0; right: 0;
  width: 380px; max-width: 100%;
  height: 100vh;
  background: var(--bg-elevated);
  box-shadow: var(--shadow-2xl);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform var(--transition-base);
  display: flex; flex-direction: column;
}
.cart-sidebar.active { transform: translateX(0); }

.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9998;
  opacity: 0; visibility: hidden;
  transition: all var(--transition-base);
}
.cart-overlay.active { opacity: 1; visibility: visible; }

.cart-header { display: flex; align-items: center; justify-content: space-between; padding: 20px; border-bottom: 1px solid var(--border-light); }
.cart-header h3 { font-size: 18px; font-weight: 700; }
.cart-close { width: 36px; height: 36px; background: none; border: none; font-size: 20px; cursor: pointer; color: var(--text-muted); }

.cart-items { flex: 1; overflow-y: auto; padding: 20px; }
.cart-item { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--border-light); }
.cart-item-name { font-size: var(--text-sm); font-weight: 500; }
.cart-item-price { font-size: var(--text-sm); font-weight: 600; color: var(--brand-600); }
.cart-item-remove { background: none; border: none; color: var(--text-muted); cursor: pointer; padding: 4px; font-size: 14px; }
.cart-item-remove:hover { color: var(--danger-500); }

.cart-footer { padding: 20px; border-top: 1px solid var(--border-light); }
.cart-total { display: flex; justify-content: space-between; font-size: 16px; font-weight: 700; margin-bottom: 16px; }

/* -------------------------------------------
   34. DOWNLOAD REPORTS
   ------------------------------------------- */
.report-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 12px;
  transition: all var(--transition-base);
  cursor: pointer;
}
.report-card:hover { transform: translateX(4px); box-shadow: var(--shadow-md); border-color: var(--brand-300); }
.report-card-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--brand-100);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-600); font-size: 20px;
}
.report-card-info { flex: 1; }
.report-card-info h4 { font-size: var(--text-sm); font-weight: 600; margin-bottom: 2px; }
.report-card-info p { font-size: var(--text-xs); color: var(--text-muted); margin: 0; }

/* -------------------------------------------
   35. BLOG
   ------------------------------------------- */
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  transition: all var(--transition-base);
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.blog-img { height: 200px; background: linear-gradient(135deg, var(--brand-100), var(--neutral-300)); position: relative; }
.blog-date {
  position: absolute; top: 16px; left: 16px;
  background: var(--brand-600); color: #fff;
  border-radius: var(--radius-sm); padding: 8px 14px;
  text-align: center; font-size: 10px; font-weight: 700; line-height: 1.2;
}
.blog-date span { display: block; font-size: 18px; font-weight: 800; }
.blog-content { padding: 24px; }
.blog-cat {
  display: inline-block;
  background: var(--brand-100); color: var(--brand-700);
  font-size: 11px; font-weight: 600;
  padding: 4px 12px; border-radius: var(--radius-pill);
  margin-bottom: 12px;
}
.blog-content h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.blog-content h3 a { color: var(--text-primary); }
.blog-content h3 a:hover { color: var(--brand-600); }
.blog-excerpt { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.blog-meta { display: flex; gap: 16px; font-size: var(--text-xs); color: var(--text-muted); }
.blog-meta i { margin-right: 4px; }

/* -------------------------------------------
   36. TEAM
   ------------------------------------------- */
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.team-img { height: 260px; background: linear-gradient(135deg, var(--neutral-200), var(--neutral-300)); }
.team-info { padding: 20px 24px; text-align: center; }
.team-info h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.team-info .team-role { font-size: var(--text-sm); color: var(--brand-600); font-weight: 500; margin-bottom: 4px; }
.team-info .team-dept { font-size: var(--text-xs); color: var(--text-muted); margin-bottom: 8px; }
.team-info p { font-size: var(--text-xs); color: var(--text-muted); }

.team-filter { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 32px; }
.team-filter-btn {
  padding: 8px 20px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-pill);
  background: transparent;
  font-size: var(--text-sm); font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.team-filter-btn:hover { border-color: var(--brand-300); color: var(--brand-600); }
.team-filter-btn.active { background: var(--brand-600); color: #fff; border-color: var(--brand-600); }

/* -------------------------------------------
   37. CAREERS
   ------------------------------------------- */
.job-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition-base);
}
.job-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.job-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.job-meta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 12px; }
.job-meta span { font-size: var(--text-xs); color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.job-meta i { color: var(--brand-500); }
.job-desc { font-size: var(--text-sm); color: var(--text-muted); margin-bottom: 16px; }

/* -------------------------------------------
   38. CONTACT
   ------------------------------------------- */
.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  height: 100%;
  transition: all var(--transition-base);
}
.contact-info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.contact-info-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--brand-100), #FECACA);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--brand-600);
  margin-bottom: 16px;
}
.contact-info-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.contact-info-card p { font-size: var(--text-sm); color: var(--text-muted); margin: 0; }
.contact-info-card a { color: var(--text-muted); }
.contact-info-card a:hover { color: var(--brand-600); }

.map-container { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-light); }
.map-container iframe { width: 100%; height: 400px; display: block; }

/* -------------------------------------------
   39. PRIVACY & TERMS (Legal pages)
   ------------------------------------------- */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-size: var(--text-2xl); font-weight: 700; margin-top: 36px; margin-bottom: 16px; }
.legal-content h3 { font-size: var(--text-xl); font-weight: 600; margin-top: 28px; margin-bottom: 12px; }
.legal-content p { font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.8; margin-bottom: 16px; }
.legal-content ul, .legal-content ol { padding-left: 24px; margin-bottom: 16px; }
.legal-content li { font-size: var(--text-sm); color: var(--text-secondary); margin-bottom: 8px; line-height: 1.7; }

/* -------------------------------------------
   40. PRINT STYLES
   ------------------------------------------- */
@media print {
  .preloader, .top-bar, .main-header, .mobile-bottom-bar,
  .float-whatsapp, .float-buttons, .scroll-top,
  .popup-overlay, .cart-sidebar, .cart-overlay { display: none !important; }

  body { background: #fff; color: #000; }
  .page-header { background: #f5f5f5 !important; padding: 30px 0; }
  .page-header::before { display: none; }
  .page-title { color: #000; }
  .section { padding: 20px 0; }
  @page { margin: 1.5cm; }
}
