/* ============================================================
   INKA HEALTH SERVICES — Design System v4 (Aligned Build)
   ============================================================ */

/* RESET */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #1e293b;
  background: #fff;
  line-height: 1.7;
}

/* GLOBAL CONTAINER */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ROOT VARIABLES */
:root {
  --primary: #E67E22;
  --primary-d: #B08A2E;
  --primary-l: #FFF8E6;

  --accent: #D4AF37;

  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-800: #1e293b;

  --muted: #64748b;

  --emergency: #d63031;

  --head: 'Merriweather', Georgia, serif;
  --body: 'Inter', system-ui, sans-serif;

  --r: 10px;
  --shadow: 0 4px 16px rgba(0,0,0,.10);
}

/* ============================================================
   EMERGENCY BANNER
   ============================================================ */
.emergency-banner {
  background: var(--emergency);
  color: #fff;
  text-align: center;
  padding: 10px 24px;
  font-weight: 600;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  background: #fff;
  box-shadow: var(--shadow);
  border-bottom: 2px solid var(--primary-l);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 64px;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-name {
  font-family: var(--head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gray-800);
}

.nav-logo-tag {
  font-size: 0.9rem;
  color: var(--muted);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 24px;
}

.nav-links a {
  color: var(--gray-800);
  font-weight: 600;
  text-decoration: none;
  transition: color .25s ease;
}

.nav-links a:hover,
.nav-links .active {
  color: var(--primary);
}

.btn {
  padding: 13px 28px;
  border-radius: var(--r);
  font-weight: 600;
  display: inline-block;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

/* ============================================================
   MOBILE NAV DRAWER
   ============================================================ */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-800);
  margin: 4px 0;
}

.nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 260px;
  height: 100vh;
  background: #fff;
  box-shadow: var(--shadow);
  transform: translateX(-100%);
  transition: transform .3s ease;
  padding: 24px;
  z-index: 1000;
}

.nav-drawer a {
  display: block;
  margin-bottom: 12px;
  color: var(--gray-800);
  text-decoration: none;
  font-weight: 600;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 900;
}

.nav-drawer.open {
  transform: translateX(0);
}

.drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 900px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: block;
  }
}

/* ============================================================
   PAGE HERO (Aligned)
   ============================================================ */
.page-hero {
  background: var(--gray-50);
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-200);
}

.page-hero .container {
  max-width: 900px;
}

.breadcrumb {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.breadcrumb a {
  color: var(--primary);
  text-decoration: none;
}

.breadcrumb-sep {
  margin: 0 6px;
}

.page-hero h1 {
  font-family: var(--head);
  font-size: 2rem;
  margin-bottom: 10px;
}

.page-hero p {
  max-width: 680px;
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 6px;
}

/* ============================================================
   ABOUT PAGE CONTENT
   ============================================================ */
.section {
  padding: 60px 0;
}

.section h2 {
  font-family: var(--head);
  font-size: 1.7rem;
  margin-bottom: 16px;
}

.section p {
  font-size: 1.05rem;
  color: var(--gray-800);
  max-width: 800px;
}

.about-image {
  margin-top: 30px;
  width: 100%;
  height: 360px;
  background: var(--gray-100);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-weight: 600;
  border: 1px dashed var(--gray-200);
}
