:root {
  /* Color Palette - Clean, Medical, Trustworthy */
  --color-primary: #0ea5e9; /* Light Blue */
  --color-primary-dark: #0369a1;
  --color-secondary: #14b8a6; /* Soft Teal */
  --color-secondary-dark: #0f766e;
  --color-accent: #f59e0b; /* For urgency/CTAs */
  --color-bg-light: #f8fafc;
  --color-white: #ffffff;
  --color-text-main: #1e293b;
  --color-text-muted: #64748b;
  --color-border: #e2e8f0;
  --color-success: #22c55e;
  
  /* Shadows & Radius */
  --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);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Typography */
  --font-main: 'Outfit', system-ui, -apple-system, sans-serif;
  --font-display: 'Plus Jakarta Sans', sans-serif;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--color-bg-light);
  color: var(--color-text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

/* Layout Components */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--color-primary-dark);
  margin-bottom: 16px;
}

.section-title p {
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--color-border);
  height: 80px;
  display: flex;
  align-items: center;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-display);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-weight: 500;
  color: var(--color-text-main);
}

.nav-links a:hover {
  color: var(--color-primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  font-family: var(--font-main);
  gap: 8px;
}

.btn-primary {
  background: var(--color-primary);
  color: white;
  box-shadow: 0 4px 14px 0 rgba(14, 165, 233, 0.39);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.23);
}

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

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

.btn-outline {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text-main);
}

.btn-outline:hover {
  background: var(--color-bg-light);
  border-color: var(--color-text-muted);
}

/* Cards */
.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

/* Placeholders */
.placeholder-image {
  background: #eef2ff;
  border-radius: var(--radius-md);
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.placeholder-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: shimmer 2s infinite;
}

.placeholder-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #e0f2fe;
  flex-shrink: 0;
}

.placeholder-icon {
  width: 48px;
  height: 48px;
  background: #f0f9ff;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-bottom: 24px;
}

/* Animations */
@keyframes shimmer {
  100% { left: 100%; }
}

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

.animate-fade-in {
  animation: fadeIn 0.8s ease forwards;
}

/* Form Styles */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 0.9rem;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  transition: border-color 0.3s;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-primary);
}

/* Specific Component Styles */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at top right, #e0f2fe, transparent),
              radial-gradient(circle at bottom left, #f0fdfa, transparent);
  padding-top: 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 24px;
  color: var(--color-primary-dark);
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-btns {
  display: flex;
  gap: 16px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.stat-item h3 {
  font-size: 2rem;
  color: var(--color-primary);
}

  329 │ .services-grid {
  330 │   display: grid;
  331 │   grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  332 │   gap: 24px;
  333 │ }
  334 │ 
  335 │ .faq-grid {
  336 │   display: grid;
  337 │   grid-template-columns: 1fr 1fr;
  338 │   gap: 24px;
  339 │   margin-top: 40px;
  340 │ }
  341 │ 
  342 │ .faq-item {
  343 │   padding: 24px;
  344 │   background: var(--color-white);
  345 │   border-radius: var(--radius-md);
  346 │   border: 1px solid var(--color-border);
  347 │ }
  348 │ 
  349 │ .faq-item h4 {
  350 │   margin-bottom: 12px;
  351 │   color: var(--color-primary-dark);
  352 │   font-size: 1.1rem;
  353 │ }
  354 │ 
  355 │ .insurance-strip {
  356 │   background: var(--color-white);
  357 │   padding: 40px 0;
  358 │   border-top: 1px solid var(--color-border);
  359 │   border-bottom: 1px solid var(--color-border);
  360 │ }
  361 │ 
  362 │ .insurance-logos {
  363 │   display: flex;
  364 │   justify-content: space-around;
  365 │   align-items: center;
  366 │   flex-wrap: wrap;
  367 │   gap: 40px;
  368 │   opacity: 0.6;
  369 │   filter: grayscale(1);
  370 │ }
  371 │ 
  372 │ .insurance-logos div {
  373 │   font-weight: 800;
  374 │   font-size: 1.5rem;
  375 │   color: var(--color-text-muted);
  376 │ }
  377 │ 
  378 │ .pricing-card {
  379 │   position: relative;
  380 │   border: 2px solid transparent;
  381 │ }
  382 │ 
  383 │ .pricing-card.popular {
  384 │   border-color: var(--color-primary);
  385 │ }
  386 │ 
  387 │ .price-tag {
  388 │   font-size: 2.5rem;
  389 │   font-weight: 800;
  390 │   color: var(--color-primary-dark);
  391 │   margin: 20px 0;
  392 │ }
  393 │ 
  394 │ .price-tag span {
  395 │   font-size: 1rem;
  396 │   color: var(--color-text-muted);
  397 │   font-weight: 400;
  398 │ }

.emergency-banner {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-secondary));
  color: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(10deg);
}

.footer {
  background: #0f172a;
  color: white;
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  color: white;
  margin-bottom: 20px;
}

.footer-links h4 {
  margin-bottom: 24px;
  font-size: 1.1rem;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #94a3b8;
}

.footer-links a:hover {
  color: white;
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  background: #e0f2fe;
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}

 414 │ @media (max-width: 1024px) {
 415 │   .hero-grid { grid-template-columns: 1fr; text-align: center; }
 416 │   .hero-content p { margin-left: auto; margin-right: auto; }
 417 │   .hero-btns { justify-content: center; }
 418 │   .footer-grid { grid-template-columns: repeat(2, 1fr); }
 419 │   .faq-grid { grid-template-columns: 1fr; }
 420 │ }
 421 │ 
 422 │ @media (max-width: 768px) {
 423 │   .nav-links { display: none; }
 424 │   .footer-grid { grid-template-columns: 1fr; }
 425 │   .stats-grid { grid-template-columns: 1fr; }
 426 │ }
