/* ═══════════════════════════════════════════════════════════════
   NAVISORA TRAVEL — MAIN STYLESHEET
   Design system: flat, Navy + Gold, Fraunces + Sora
   ═══════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────
   1. DESIGN TOKENS
───────────────────────────────────────────── */
:root {
  /* Brand colours */
  --color-navy:        #1B2A6B;
  --color-navy-deep:   #111D52;
  --color-navy-light:  #243280;
  --color-gold:        #D4891C;
  --color-gold-light:  #E8A032;
  --color-gold-dark:   #B87310;

  /* Neumorphism surface palette — darker, richer */
  --color-white:       #FFFFFF;
  --color-surface:     #D8DCE3;
  --color-surface-alt: #CDD1D9;
  --color-surface-dark:#BCC1CB;
  --color-border:      #C4C9D2;
  --color-border-dark: #AAB0BB;
  --color-text:        #13172B;
  --color-text-muted:  #3D4460;
  --color-text-light:  #6B738F;

  /* Neumorphism shadows — stronger depth */
  --neu-shadow-light:  10px 10px 22px rgba(151, 157, 172, .5), -8px -8px 18px rgba(255, 255, 255, .7);
  --neu-shadow-soft:   8px 8px 16px rgba(151, 157, 172, .45), -6px -6px 14px rgba(255, 255, 255, .65);
  --neu-shadow-sm:     5px 5px 12px rgba(151, 157, 172, .4), -4px -4px 10px rgba(255, 255, 255, .55);
  --neu-shadow-inset:  inset 4px 4px 10px rgba(151, 157, 172, .45), inset -3px -3px 8px rgba(255, 255, 255, .65);
  --neu-shadow-btn:    5px 5px 14px rgba(151, 157, 172, .5), -4px -4px 12px rgba(255, 255, 255, .7);
  --neu-shadow-btn-active: inset 4px 4px 10px rgba(151, 157, 172, .5), inset -3px -3px 8px rgba(255, 255, 255, .55);
  --neu-shadow-glow:   0 0 28px rgba(232, 150, 30, .22);

  /* Semantic */
  --color-success:     #1A9B5A;
  --color-error:       #D93025;
  --color-wa-green:    #25D366;
  --color-wa-dark:     #128C7E;

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Sora', system-ui, sans-serif;

  /* Type scale */
  --text-xs:   0.75rem;     /* 12px */
  --text-sm:   0.875rem;    /* 14px */
  --text-base: 1rem;        /* 16px */
  --text-md:   1.125rem;    /* 18px */
  --text-lg:   1.25rem;     /* 20px */
  --text-xl:   1.5rem;      /* 24px */
  --text-2xl:  2rem;        /* 32px */
  --text-3xl:  2.5rem;      /* 40px */
  --text-4xl:  3.25rem;     /* 52px */
  --text-5xl:  4rem;        /* 64px */

  /* 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;
  --space-16:  4rem;
  --space-20:  5rem;
  --space-24:  6rem;
  --space-32:  8rem;

  /* Layout */
  --container-max:  1200px;
  --container-pad:  clamp(1rem, 5vw, 2rem);
  --section-py:     clamp(4rem, 8vw, 7rem);
  --header-h:       72px;
  --radius-sm:      6px;
  --radius:         12px;
  --radius-lg:      18px;
  --radius-xl:      24px;
  --radius-cc:      100px;

  /* Legacy shadows (kept for dark sections) */
  --shadow-sm:  0 1px 3px rgba(27,42,107,.08);
  --shadow:     0 4px 16px rgba(27,42,107,.12);
  --shadow-md:  0 8px 32px rgba(27,42,107,.14);
  --shadow-lg:  0 16px 48px rgba(27,42,107,.18);

  /* Transitions */
  --transition: 0.25s cubic-bezier(.4, 0, .2, 1);
  --transition-slow: 0.45s cubic-bezier(.4, 0, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }

:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -9999px;
  left: 1rem;
  padding: .5rem 1rem;
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: var(--radius);
  z-index: 9999;
  font-size: var(--text-sm);
}
.skip-link:focus { top: 1rem; }

/* Scroll padding for fixed header */
html { scroll-padding-top: calc(var(--header-h) + 1rem); }

/* ─────────────────────────────────────────────
   3. TYPOGRAPHY
───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-navy);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl)); }
h2 { font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl)); }
h3 { font-size: clamp(var(--text-xl), 2.5vw, var(--text-2xl)); }
h4 { font-size: var(--text-lg); }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-3);
}

.section-title { margin-bottom: var(--space-4); }
.section-subtitle {
  font-size: var(--text-md);
  color: var(--color-text-muted);
  max-width: 56ch;
  line-height: 1.7;
}

/* Prose content (page / single) */
.prose h2, .prose h3, .prose h4 { margin: 1.8em 0 .6em; }
.prose p  { margin-bottom: 1.2em; line-height: 1.8; }
.prose ul, .prose ol { padding-left: 1.4em; margin-bottom: 1.2em; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: .4em; }
.prose a { color: var(--color-navy); text-decoration: underline; }
.prose blockquote {
  border-left: 4px solid var(--color-gold);
  padding: .8em 1.4em;
  margin: 1.6em 0;
  color: var(--color-text-muted);
  font-style: italic;
}
.prose img { border-radius: var(--radius); margin: 1.6em 0; }
.prose hr { border: none; border-top: 1px solid var(--color-border); margin: 2em 0; }

/* ─────────────────────────────────────────────
   4. LAYOUT UTILITIES
───────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section {
  padding-block: var(--section-py);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.mt-4 { margin-top: var(--space-8); }

/* ─────────────────────────────────────────────
   5. BUTTONS
───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1;
  padding: .7em 1.5em;
  border-radius: var(--radius);
  transition: box-shadow var(--transition), transform var(--transition), background var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: none;
  text-decoration: none;
  box-shadow: var(--neu-shadow-btn);
  position: relative;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--neu-shadow-light);
}
.btn:active {
  transform: translateY(0);
  box-shadow: var(--neu-shadow-btn-active);
}

/* Primary */
.btn-primary {
  background: linear-gradient(145deg, var(--color-gold-light), var(--color-gold));
  color: var(--color-white);
}
.btn-primary:hover {
  background: linear-gradient(145deg, var(--color-gold), var(--color-gold-dark));
  box-shadow: var(--neu-shadow-light), var(--neu-shadow-glow);
}
.btn-primary:active {
  background: var(--color-gold-dark);
  box-shadow: var(--neu-shadow-btn-active);
}

/* Navy */
.btn-navy {
  background: linear-gradient(145deg, var(--color-navy-light), var(--color-navy));
  color: var(--color-white);
}
.btn-navy:hover {
  background: linear-gradient(145deg, var(--color-navy), var(--color-navy-deep));
}
.btn-navy:active {
  background: var(--color-navy-deep);
  box-shadow: var(--neu-shadow-btn-active);
}

/* Ghost */
.btn-ghost {
  background: var(--color-surface);
  color: var(--color-navy);
  box-shadow: var(--neu-shadow-sm);
}
.btn-ghost:hover {
  box-shadow: var(--neu-shadow-soft);
  color: var(--color-navy-light);
}
.btn-ghost:active {
  box-shadow: var(--neu-shadow-inset);
}

/* Outline — replaced with Ghost for neumorphism */
.btn-outline-light {
  background: transparent;
  color: var(--color-white);
  box-shadow: none;
  border: 1.5px solid rgba(255,255,255,.5);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.85);
  box-shadow: none;
  transform: none;
}
.btn-outline-light:active {
  background: rgba(255,255,255,.2);
  box-shadow: none;
}

/* WhatsApp */
.btn-wa {
  background: linear-gradient(145deg, #2dd466, var(--color-wa-green));
  color: var(--color-white);
  box-shadow: 4px 4px 12px rgba(37,211,102,.3), -4px -4px 12px rgba(255,255,255,.5);
}
.btn-wa:hover {
  background: linear-gradient(145deg, var(--color-wa-green), var(--color-wa-dark));
  box-shadow: 4px 4px 16px rgba(37,211,102,.4), -4px -4px 12px rgba(255,255,255,.5);
}
.btn-wa:active {
  box-shadow: var(--neu-shadow-btn-active);
}

/* Sizes */
.btn-sm  { font-size: var(--text-xs); padding: .55em 1.1em; }
.btn-lg  { font-size: var(--text-base); padding: .9em 2em; }
.btn-block { width: 100%; justify-content: center; }

/* Loading state */
.btn .btn-loading { display: none; }
.btn.is-loading .btn-text    { display: none; }
.btn.is-loading .btn-loading { display: inline-flex; }
.spin { animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ─────────────────────────────────────────────
   6. HEADER / NAVBAR
───────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  height: var(--header-h);
  background: var(--color-surface);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--neu-shadow-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--space-6);
}


/* Logo */
.logo img,
.logo .logo-icon {
  max-height: 38px;
  width: auto;
  height: auto;
  display: block;
}

/* Nav list */
.primary-nav { display: flex; }
.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  padding: .45em .75em;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  cursor: pointer;
}
.nav-link:hover,
.nav-item--active .nav-link {
  color: var(--color-navy);
  background: var(--color-surface-alt);
}
.nav-item--active .nav-link { color: var(--color-gold); }

.nav-chevron {
  transition: transform var(--transition);
  flex-shrink: 0;
}
.nav-item--has-dropdown:hover .nav-chevron { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 200px;
  background: var(--color-surface);
  border-radius: var(--radius);
  box-shadow: var(--neu-shadow-light);
  padding: var(--space-2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}
.nav-item--has-dropdown:hover .nav-dropdown,
.nav-item--has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown li a {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  padding: .5em .85em;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.nav-dropdown li a:hover {
  background: var(--color-surface);
  color: var(--color-navy);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

/* Language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--color-text-muted);
  padding: .4em .7em;
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  box-shadow: var(--neu-shadow-sm);
  transition: box-shadow var(--transition), color var(--transition);
}
.lang-toggle:hover {
  box-shadow: var(--neu-shadow-soft);
  color: var(--color-navy);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .4em .5em;
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  box-shadow: var(--neu-shadow-sm);
  transition: box-shadow var(--transition);
}
.hamburger:hover { box-shadow: var(--neu-shadow-soft); }
.ham-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.is-open .ham-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open .ham-bar:nth-child(2) { opacity: 0; }
.hamburger.is-open .ham-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 400;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* ─────────────────────────────────────────────
   7. HERO SECTION
───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--color-navy-deep);
  overflow: hidden;
  padding-top: var(--header-h);
}

/* Background pattern */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-bg-accent {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,150,30,.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  padding-block: var(--space-20);
  position: relative;
  z-index: 1;
}

/* Hero text */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-gold);
  background: rgba(232,150,30,.12);
  border: 1px solid rgba(232,150,30,.25);
  padding: .4em .9em;
  border-radius: 100px;
  margin-bottom: var(--space-6);
}
.hero-title {
  font-size: clamp(var(--text-3xl), 5.5vw, var(--text-5xl));
  color: var(--color-white);
  line-height: 1.08;
  margin-bottom: var(--space-6);
}
.hero-title-accent { color: var(--color-gold); }
.hero-subtitle {
  font-size: var(--text-md);
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  max-width: 44ch;
  margin-bottom: var(--space-8);
}
.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-12);
}

/* Stats bar */
.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255,255,255,.12);
}
.stat-item { text-align: left; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: var(--space-1);
}
.stat-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,.55);
  font-weight: 500;
  letter-spacing: .04em;
}
.stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}

/* Hero visual panel */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  position: relative;
}
.hero-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  backdrop-filter: blur(8px);
  transition: background var(--transition);
}
.hero-card:hover { background: rgba(255,255,255,.11); }
.hero-card--2 { margin-left: var(--space-8); }
.hero-card--3 { margin-left: var(--space-4); }
.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(232,150,30,.15);
  border: 1px solid rgba(232,150,30,.25);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: var(--color-gold);
  flex-shrink: 0;
}
.card-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
}
.card-sub {
  display: block;
  font-size: var(--text-xs);
  color: rgba(255,255,255,.5);
  margin-top: 2px;
}

/* Route line */
.route-line {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-4);
  padding: var(--space-4) var(--space-6);
  background: rgba(232,150,30,.08);
  border: 1px solid rgba(232,150,30,.2);
  border-radius: var(--radius);
}
.route-dot {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--color-gold);
  background: rgba(232,150,30,.18);
  padding: .3em .7em;
  border-radius: 100px;
  flex-shrink: 0;
}
.route-track {
  flex: 1;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--color-gold) 0, var(--color-gold) 8px, transparent 8px, transparent 14px);
  position: relative;
}
.route-track::after {
  content: '✈';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  color: var(--color-gold);
  background: var(--color-navy-deep);
  padding: 0 4px;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
}
.scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  margin-inline: auto;
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: .4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ─────────────────────────────────────────────
   8. PAGE HERO (inner pages)
───────────────────────────────────────────── */
.page-hero {
  position: relative;
  background: var(--color-navy);
  padding: calc(var(--header-h) + 4rem) 0 4rem;
  overflow: hidden;
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.page-hero-title {
  color: var(--color-white);
  margin-bottom: var(--space-4);
}
.page-hero-subtitle {
  font-size: var(--text-md);
  color: rgba(255,255,255,.7);
  line-height: 1.7;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 32px 32px;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232,150,30,.12) 0%, transparent 70%);
  border-radius: 50%;
}
.post-meta-bar {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(255,255,255,.55);
  margin-top: var(--space-3);
}

/* ─────────────────────────────────────────────
   9. SERVICES SECTION
───────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.service-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  position: relative;
  box-shadow: var(--neu-shadow-soft);
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-card:hover {
  box-shadow: var(--neu-shadow-light);
  transform: translateY(-4px);
}
.service-card--featured {
  background: linear-gradient(145deg, var(--color-navy-light), var(--color-navy-deep));
  box-shadow: 8px 8px 20px rgba(27,42,107,.35), -6px -6px 16px rgba(255,255,255,.4);
}
.service-card--featured:hover {
  box-shadow: 10px 10px 24px rgba(27,42,107,.4), -8px -8px 18px rgba(255,255,255,.35);
}
.service-card--featured .service-number,
.service-card--featured .service-title,
.service-card--featured .service-desc {
  color: var(--color-white);
}
.service-card--featured .service-desc { color: rgba(255,255,255,.7); }
.service-card--featured .service-link { color: var(--color-gold); }

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-6);
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
}
.service-icon--tour    { background: rgba(27,42,107,.08);  color: var(--color-navy); }
.service-icon--medical { background: rgba(232,150,30,.12); color: var(--color-gold); }
.service-icon--visa    { background: rgba(27,42,107,.08);  color: var(--color-navy); }
.service-card--featured .service-icon--medical {
  background: rgba(232,150,30,.2);
  color: var(--color-gold);
}
.service-number {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 300;
  color: var(--color-border-dark);
  line-height: 1;
}
.service-title {
  font-size: var(--text-xl);
  color: var(--color-navy);
  margin-bottom: var(--space-3);
}
.service-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}
.service-link {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-gold);
  transition: gap var(--transition);
}
.service-link:hover { text-decoration: underline; }

.service-badge {
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
  background: var(--color-gold);
  color: var(--color-white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3em .7em;
  border-radius: 100px;
}

/* Promo banner */
.section-promo[data-hidden="true"] { display: none; }
.promo-banner {
  background: linear-gradient(145deg, var(--color-gold-light), var(--color-gold-dark));
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  box-shadow: var(--neu-shadow-light);
}
.promo-badge {
  display: inline-block;
  background: rgba(0,0,0,.15);
  color: var(--color-white);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3em .8em;
  border-radius: 100px;
  margin-bottom: var(--space-3);
}
.promo-title {
  font-size: var(--text-2xl);
  color: var(--color-white);
  margin-bottom: var(--space-3);
}
.promo-banner p { color: rgba(255,255,255,.85); margin: 0; }

/* ─────────────────────────────────────────────
   10. WHY MALAYSIA
───────────────────────────────────────────── */
.section-why { background: var(--color-surface-alt); }
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}
.why-intro .section-title { margin-bottom: var(--space-5); }
.why-intro .section-subtitle { margin-bottom: var(--space-8); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}
.why-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--neu-shadow-sm);
  transition: box-shadow var(--transition);
}
.why-card:hover {
  box-shadow: var(--neu-shadow-soft);
}
.why-card:hover { box-shadow: var(--shadow); }
.why-icon {
  width: 44px;
  height: 44px;
  background: rgba(27,42,107,.07);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: var(--color-navy);
  margin-bottom: var(--space-4);
}
.why-title { font-size: var(--text-base); margin-bottom: var(--space-2); }
.why-desc { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.65; margin: 0; }

/* ─────────────────────────────────────────────
   11. HOSPITALS
───────────────────────────────────────────── */
.hospitals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.hospital-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  box-shadow: var(--neu-shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.hospital-card:hover {
  box-shadow: var(--neu-shadow-soft);
  transform: translateY(-3px);
}
.hospital-logo img, .hospital-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.hospital-icon {
  background: var(--color-surface);
  display: grid;
  place-items: center;
  color: var(--color-navy);
}
.hospital-name {
  font-size: var(--text-sm);
  font-weight: 700;
  margin-bottom: var(--space-1);
}
.hospital-city {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}
.hospital-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--color-navy);
  background: rgba(27,42,107,.08);
  padding: .2em .6em;
  border-radius: 100px;
}

/* ─────────────────────────────────────────────
   12. DESTINATIONS
───────────────────────────────────────────── */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}
.destination-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  display: block;
  cursor: pointer;
}
.destination-img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  transition: transform var(--transition-slow);
}
.destination-img--static {
  background: var(--color-navy-light);
}
.destination-img--kuala-lumpur { background: linear-gradient(135deg, #1B2A6B 0%, #243280 100%); }
.destination-img--penang        { background: linear-gradient(135deg, #2D4E8A 0%, #1B2A6B 100%); }
.destination-img--johor-bahru   { background: linear-gradient(135deg, #163571 0%, #1B2A6B 100%); }
.destination-img--pekanbaru     { background: linear-gradient(135deg, #1B4080 0%, #243280 100%); }
.destination-card:hover .destination-img { transform: scale(1.06); }
.destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: var(--space-5);
}
.destination-name {
  color: var(--color-white);
  font-size: var(--text-lg);
  margin-bottom: 2px;
}
.destination-sub {
  display: block;
  font-size: var(--text-xs);
  color: rgba(255,255,255,.65);
}
.destination-arrow {
  font-size: var(--text-xl);
  color: var(--color-gold);
  line-height: 1;
  transition: transform var(--transition);
}
.destination-card:hover .destination-arrow { transform: translateX(4px); }

/* ─────────────────────────────────────────────
   13b. PACKAGE SECTION — NEW RIGHT PANEL
        (slider + hospital cards + service points)
───────────────────────────────────────────── */
 
/* Override layout — right col wider to fit richer content */
.section-package .package-layout {
  grid-template-columns: 1fr 1.15fr;
  align-items: start;
}
 
/* ── Right wrapper ── */
.pkg-right {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
 
/* ══════════════════
   ① IMAGE SLIDER
══════════════════ */
.pkg-slider {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--color-navy-deep);
  box-shadow: var(--shadow-lg);
  user-select: none;
}
 
/* Track — slides sit side by side, track shifts via transform */
.pkg-slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.62s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
 
/* Individual slide */
.pkg-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
 
/* Real image inside slide */
.pkg-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s linear;
}
.pkg-slide.is-active .pkg-slide-img { transform: scale(1.06); }
 
/* CSS gradient fallbacks — one per hospital */
.pkg-slide--gleneagles { background: linear-gradient(135deg, #0d1f5c 0%, #1B2A6B 40%, #1a3a7a 100%); }
.pkg-slide--sunway     { background: linear-gradient(135deg, #0f2d6b 0%, #163b80 40%, #1B2A6B 100%); }
.pkg-slide--prince     { background: linear-gradient(135deg, #111D52 0%, #1B2A6B 40%, #243280 100%); }
.pkg-slide--kpj        { background: linear-gradient(135deg, #0a1f5c 0%, #1B2A6B 45%, #162f72 100%); }
.pkg-slide--route      { background: linear-gradient(135deg, #1B2A6B 0%, #C87D12 60%, #E8961E 100%); }
 
/* Decorative geometric accent per slide */
.pkg-slide::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border: 40px solid rgba(232, 150, 30, 0.12);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.pkg-slide--route::before { border-color: rgba(255, 255, 255, 0.1); }
 
/* Gradient overlay on slide (bottom-up) */
.pkg-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11, 20, 60, 0.88) 0%,
    rgba(11, 20, 60, 0.35) 50%,
    transparent 100%
  );
  z-index: 2;
}
 
/* Slide caption */
.pkg-slide-caption {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 0;
  padding: var(--space-6) var(--space-7);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.pkg-slide-badge {
  display: inline-flex;
  align-self: flex-start;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-navy);
  background: var(--color-gold);
  padding: 0.28em 0.75em;
  border-radius: 100px;
  margin-bottom: var(--space-2);
}
.pkg-slide-title {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(var(--text-lg), 2.2vw, var(--text-2xl));
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
}
.pkg-slide-sub {
  display: block;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}
 
/* Prev / Next buttons */
.pkg-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--color-white);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.pkg-slider-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
}
.pkg-slider-btn--prev { left: var(--space-4); }
.pkg-slider-btn--next { right: var(--space-4); }
.pkg-slider-btn--prev:hover { transform: translateY(-50%) translateX(-2px); }
.pkg-slider-btn--next:hover { transform: translateY(-50%) translateX(2px); }
 
/* Dot indicators */
.pkg-slider-dots {
  position: absolute;
  bottom: var(--space-4);
  right: var(--space-6);
  display: flex;
  gap: var(--space-2);
  z-index: 10;
}
.pkg-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: background var(--transition), width var(--transition), border-radius var(--transition);
  padding: 0;
}
.pkg-dot--active {
  width: 22px;
  border-radius: 4px;
  background: var(--color-gold);
}
 
/* Auto-play progress bar */
.pkg-slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  z-index: 10;
}
.pkg-slider-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--color-gold);
  transition: width linear; /* duration set via JS */
}
 
/* ══════════════════
   ② HOSPITAL CARDS
══════════════════ */
.pkg-hospitals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
 
.pkg-hosp-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: var(--neu-shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  cursor: default;
  overflow: hidden;
}
.pkg-hosp-card:hover {
  box-shadow: var(--neu-shadow-soft);
  transform: translateY(-3px);
}

.pkg-hosp-img {
  width: 100%;
  height: 100px;
  background: var(--color-surface);
  overflow: hidden;
}
.pkg-hosp-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.pkg-hosp-card:hover .pkg-hosp-img img {
  transform: scale(1.05);
}
 
.pkg-hosp-icon {
  width: 36px;
  height: 36px;
  background: rgba(27, 42, 107, 0.07);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: var(--color-navy);
  flex-shrink: 0;
  margin: var(--space-4) var(--space-4) 0;
}
 
.pkg-hosp-info { display: flex; flex-direction: column; gap: 2px; flex: 1; padding: var(--space-3) var(--space-4); }
 
.pkg-hosp-name {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.3;
}
.pkg-hosp-spec {
  display: block;
  font-size: 10px;
  color: var(--color-text-muted);
  line-height: 1.4;
}
 
.pkg-hosp-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: var(--space-2);
  border-top: 1px solid var(--color-border);
}
.pkg-hosp-city {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 9px;
  color: var(--color-text-light);
  font-weight: 500;
}
.pkg-hosp-city svg { flex-shrink: 0; }
.pkg-hosp-badge {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  background: rgba(232, 150, 30, 0.1);
  padding: 0.2em 0.55em;
  border-radius: 100px;
}
 
/* ══════════════════
   ③ SERVICE POINTS
══════════════════ */
.pkg-services-points {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
}
 
.pkg-points-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}
 
.pkg-points-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2) var(--space-4);
}
 
.pkg-point {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) 0;
}
 
.pkg-point-icon {
  width: 24px;
  height: 24px;
  background: rgba(27, 42, 107, 0.07);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  color: var(--color-navy);
  flex-shrink: 0;
}
 
.pkg-point-text {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.3;
}
 
/* ── Responsive ── */
@media (max-width: 1024px) {
  .section-package .package-layout { grid-template-columns: 1fr; }
  .pkg-hospitals { grid-template-columns: repeat(3, 1fr); }
}
 
@media (max-width: 768px) {
  .pkg-hospitals { grid-template-columns: 1fr 1fr 1fr; gap: var(--space-2); }
  .pkg-points-grid { grid-template-columns: 1fr; }
  .pkg-slider-btn { width: 30px; height: 30px; }
}
 
@media (max-width: 480px) {
  .pkg-hospitals { grid-template-columns: 1fr 1fr; }
  .pkg-hosp-card:nth-child(3) { display: none; } /* hide 3rd on very small screens */
}
.section-package { background: var(--color-surface); padding: var(--space-12); }
.package-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.package-intro .section-subtitle { margin-bottom: var(--space-8); }
 
.package-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--neu-shadow-light);
}
.package-card-header {
  background: var(--color-navy);
  padding: var(--space-8);
  position: relative;
}
.package-badge-top {
  display: inline-block;
  background: var(--color-gold);
  color: var(--color-white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35em .85em;
  border-radius: 100px;
  margin-bottom: var(--space-4);
}
.package-price-block { color: var(--color-white); }
.package-price-from {
  display: block;
  font-size: var(--text-xs);
  color: rgba(255,255,255,.6);
  margin-bottom: var(--space-1);
}
.package-price {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}
.package-per {
  font-size: var(--text-xs);
  color: rgba(255,255,255,.55);
}
 
.package-includes { padding: var(--space-8); border-bottom: 1px solid var(--color-border); }
.package-includes h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
}
.package-list { display: flex; flex-direction: column; gap: var(--space-3); }
.package-list-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: 1.4;
}
.package-list-item svg {
  color: var(--color-success);
  flex-shrink: 0;
  margin-top: 2px;
}
.package-card .btn { margin: var(--space-6) var(--space-8) var(--space-8); width: calc(100% - var(--space-16)); }.package-card .btn { margin: var(--space-6) var(--space-8) var(--space-8); width: calc(100% - var(--space-16)); }

/* ─────────────────────────────────────────────
   14. CONTACT SECTION
───────────────────────────────────────────── */
.section-contact { background: var(--color-navy-deep); }
.section-contact .eyebrow { color: var(--color-gold); }
.section-contact .section-title { color: var(--color-white); }
.section-contact .section-subtitle { color: rgba(255,255,255,.65); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-16);
  align-items: start;
}

.contact-details { margin-top: var(--space-8); margin-bottom: var(--space-8); }
.contact-detail-item {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
.detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(232,150,30,.12);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: var(--color-gold);
  flex-shrink: 0;
}
.detail-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 3px;
}
.detail-value {
  display: block;
  font-size: var(--text-sm);
  color: rgba(255,255,255,.85);
  line-height: 1.5;
}
.detail-link { transition: color var(--transition); }
.detail-link:hover { color: var(--color-gold); }

/* Contact Form */
.contact-form-wrap {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  box-shadow: var(--neu-shadow-inset);
}
.form-row { display: flex; gap: var(--space-5); }
.form-row--2 > * { flex: 1; }
.form-group { margin-bottom: var(--space-5); }
.form-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}
.form-label span { color: var(--color-error); }
.form-input {
  width: 100%;
  padding: .75em 1em;
  border: none;
  border-radius: var(--radius);
  font-size: var(--text-sm);
  color: var(--color-text);
  background: var(--color-surface-alt);
  box-shadow: var(--neu-shadow-inset);
  transition: box-shadow var(--transition), background var(--transition);
  appearance: none;
}
.form-input:focus {
  outline: none;
  background: var(--color-surface);
  box-shadow: var(--neu-shadow-inset), 0 0 0 3px rgba(27,42,107,.12);
}
.form-input::placeholder { color: var(--color-text-light); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235A6480' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .85em center;
  padding-right: 2.5em;
  cursor: pointer;
}

.form-feedback {
  margin-bottom: var(--space-4);
  font-size: var(--text-sm);
  padding: 0;
  border-radius: var(--radius);
}
.form-feedback.is-success {
  color: var(--color-success);
  background: rgba(26,155,90,.1);
  border: 1px solid rgba(26,155,90,.2);
  padding: .75em 1em;
}
.form-feedback.is-error {
  color: var(--color-error);
  background: rgba(217,48,37,.1);
  border: 1px solid rgba(217,48,37,.2);
  padding: .75em 1em;
}

/* ─────────────────────────────────────────────
   15. FOOTER
───────────────────────────────────────────── */
.site-footer { background: var(--color-navy-deep); color: rgba(255,255,255,.8); }
.footer-main { padding: var(--space-20) 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: var(--space-12);
}

/* Footer Logo */
.footer-logo img {
  max-height: 58px;
  background: var(--color-white);
  border-radius: var(--radius-cc);
  padding: 10px;
  margin-bottom: 10px;
  width: auto;
  height: auto;
  display: block;
}

.footer-tagline {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.45);
  font-style: italic;
  margin-bottom: var(--space-4);
}
.footer-about {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: rgba(255,255,255,.6);
  margin-bottom: var(--space-6);
}

.footer-social { display: flex; gap: var(--space-3); }
.social-link {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.07);
}
.social-link:hover { background: rgba(255,255,255,.15); color: var(--color-white); }
.social-wa:hover   { background: var(--color-wa-green); color: var(--color-white); }

.footer-col-title {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: var(--space-5);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer-nav a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--color-gold); }

.footer-contact-list { display: flex; flex-direction: column; gap: var(--space-4); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(255,255,255,.65);
  line-height: 1.5;
}
.footer-contact-item svg { flex-shrink: 0; color: var(--color-gold); margin-top: 2px; }
.footer-contact-item a { transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--color-gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: var(--space-5) 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
}
.footer-copy {
  font-size: var(--text-xs);
  color: rgba(255,255,255,.35);
  margin: 0;
}
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-xs);
  color: rgba(255,255,255,.4);
}
.footer-bottom-links a { transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--color-gold); }
.footer-lang-switch { display: flex; gap: var(--space-2); }
.lang-btn {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .08em;
  color: rgba(255,255,255,.45);
  padding: .3em .7em;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.lang-btn:not(.lang-active):hover {
  color: var(--color-white);
  border-color: rgba(255,255,255,.35);
}
.lang-btn.lang-active {
  color: var(--color-white);
  background: var(--color-gold);
  border-color: var(--color-gold);
}

/* ─────────────────────────────────────────────
   16. WHATSAPP FAB
───────────────────────────────────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: var(--space-8);
  right: var(--space-8);
  z-index: 300;
  width: 56px;
  height: 56px;
  background: var(--color-wa-green);
  color: var(--color-white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 4px 4px 14px rgba(37,211,102,.4), -4px -4px 14px rgba(255,255,255,.3);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.whatsapp-fab:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 4px 4px 20px rgba(37,211,102,.55), -4px -4px 14px rgba(255,255,255,.3);
}
.fab-label { display: none; }

/* ─────────────────────────────────────────────
   17. TOUR PAGE
───────────────────────────────────────────── */
.tour-tabs-bar {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: var(--header-h);
  z-index: 100;
  box-shadow: var(--neu-shadow-sm);
}
.tour-tabs {
  display: flex;
  gap: var(--space-1);
  padding: var(--space-3) 0;
}
.tour-tab {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-muted);
  padding: .55em 1.2em;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
}
.tour-tab:hover { color: var(--color-navy); background: var(--color-surface); }
.tour-tab--active {
  color: var(--color-navy);
  background: var(--color-surface);
  border-color: var(--color-border-dark);
}

/* Tab panels */
.tab-panel { display: none; }
.tab-panel--active { display: block; }

/* Packages grid */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.package-item {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--neu-shadow-soft);
  transition: box-shadow var(--transition), transform var(--transition);
}
.package-item:hover { box-shadow: var(--neu-shadow-light); transform: translateY(-4px); }
.package-img { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.package-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.package-item:hover .package-img img { transform: scale(1.04); }
.package-img--placeholder { background: linear-gradient(145deg, var(--color-navy-light), var(--color-navy-deep)); box-shadow: inset 0 2px 8px rgba(0,0,0,.2); }
.package-badge-img {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  background: var(--color-gold);
  color: var(--color-white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3em .7em;
  border-radius: 100px;
}
.package-body { padding: var(--space-6); }
.package-item-title { font-size: var(--text-lg); margin-bottom: var(--space-2); }
.package-item-excerpt { font-size: var(--text-sm); color: var(--color-text-muted); margin-bottom: var(--space-4); line-height: 1.6; }
.package-meta { display: flex; gap: var(--space-4); margin-bottom: var(--space-4); }
.package-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-weight: 500;
}
.package-price-row { margin-bottom: var(--space-5); border-top: 1px solid var(--color-border); padding-top: var(--space-4); }
.package-price-label { font-size: var(--text-xs); color: var(--color-text-muted); display: block; }
.package-price-value { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700; color: var(--color-navy); }
.package-actions { display: flex; gap: var(--space-3); }

/* ─────────────────────────────────────────────
   18. MEDICAL PAGE
───────────────────────────────────────────── */
.why-medical-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
.why-stat-card {
  text-align: center;
  padding: var(--space-8) var(--space-5);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--neu-shadow-sm);
}
.why-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1;
  margin-bottom: var(--space-2);
}
.why-stat-label { font-size: var(--text-sm); color: var(--color-text-muted); }

/* Filter bar */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-10);
}
.filter-btn {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-muted);
  padding: .5em 1.1em;
  border: none;
  border-radius: 100px;
  background: var(--color-surface);
  box-shadow: var(--neu-shadow-sm);
  transition: box-shadow var(--transition), color var(--transition), background var(--transition);
  cursor: pointer;
}
.filter-btn:hover { box-shadow: var(--neu-shadow-soft); color: var(--color-navy); }
.filter-btn--active {
  background: var(--color-navy);
  color: var(--color-white);
  box-shadow: var(--neu-shadow-inset);
}

/* Specialities grid */
.specialities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.speciality-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
  box-shadow: var(--neu-shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition), opacity .3s;
}
.speciality-card.is-hidden { display: none; }
.speciality-card:hover { box-shadow: var(--neu-shadow-soft); transform: translateY(-3px); }
.speciality-icon {
  width: 48px; height: 48px;
  background: rgba(27,42,107,.07);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: var(--color-navy);
  margin-bottom: var(--space-5);
}
.speciality-title { font-size: var(--text-lg); margin-bottom: var(--space-3); }
.speciality-desc { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.65; margin-bottom: var(--space-5); }
.speciality-link { font-size: var(--text-sm); font-weight: 700; color: var(--color-gold); }
.speciality-link:hover { text-decoration: underline; }

/* How steps (dark bg) */
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
}
.how-step { text-align: center; }
.how-step-num {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--color-gold);
  opacity: .4;
  line-height: 1;
  margin-bottom: var(--space-4);
}
.how-step-title {
  font-size: var(--text-lg);
  color: var(--color-white);
  margin-bottom: var(--space-3);
}
.how-step-desc { font-size: var(--text-sm); color: rgba(255,255,255,.6); line-height: 1.7; margin: 0; }

/* ─────────────────────────────────────────────
   19. VISA PAGE
───────────────────────────────────────────── */
.visa-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.visa-type-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: relative;
  box-shadow: var(--neu-shadow-soft);
  transition: box-shadow var(--transition), transform var(--transition);
}
.visa-type-card--featured {
  box-shadow: var(--neu-shadow-light);
  background: linear-gradient(145deg, var(--color-surface), var(--color-surface-alt));
}
.visa-type-card:hover { box-shadow: var(--neu-shadow-light); transform: translateY(-4px); }
.visa-type-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
}
.visa-flag { font-size: 2rem; line-height: 1; }
.visa-country { font-size: var(--text-xl); margin: 0; }
.visa-featured-badge {
  display: inline-block;
  background: var(--color-navy);
  color: var(--color-white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3em .7em;
  border-radius: 100px;
  margin-left: auto;
}
.visa-type-list { margin-bottom: var(--space-5); }
.visa-type-list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text);
  padding: .5em 0;
  border-bottom: 1px solid var(--color-border);
}
.visa-type-list li:last-child { border-bottom: none; }
.visa-type-list svg { color: var(--color-success); flex-shrink: 0; }
.visa-note {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  background: var(--color-surface);
  padding: .6em .9em;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-5);
}

/* Stepper */
.stepper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  position: relative;
  margin-top: var(--space-12);
}
.stepper-item {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stepper-icon {
  width: 64px;
  height: 64px;
  background: var(--color-navy);
  color: var(--color-gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: var(--space-5);
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-md);
}
.stepper-connector {
  position: absolute;
  top: 32px;
  left: calc(50% + 40px);
  right: calc(-50% + 40px);
  height: 2px;
  background: var(--color-border-dark);
}
.stepper-num {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--color-gold);
  display: block;
  margin-bottom: var(--space-2);
}
.stepper-title { font-size: var(--text-lg); margin-bottom: var(--space-3); }
.stepper-desc { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.65; margin: 0; }

/* Checklist */
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}
.checklist-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--neu-shadow-sm);
}
.checklist-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--color-border);
}
.checklist-header h3 { font-size: var(--text-xl); margin: 0; }
.checklist-list { display: flex; flex-direction: column; gap: var(--space-3); }
.checklist-list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text);
}
.checklist-list svg { color: var(--color-navy); flex-shrink: 0; }

/* FAQ Accordion */
.faq-list { max-width: 800px; margin-inline: auto; }
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  padding: var(--space-6) 0;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  transition: color var(--transition);
  cursor: pointer;
}
.faq-question:hover { color: var(--color-navy); }
.faq-icon { flex-shrink: 0; transition: transform var(--transition); }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }
.faq-answer {
  padding-bottom: var(--space-6);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.75;
}
.faq-answer p { margin: 0; }
.faq-answer[hidden] { display: none; }

/* ─────────────────────────────────────────────
   20. CTA BANNER
───────────────────────────────────────────── */
.section-cta { background: var(--color-surface-alt); }
.cta-banner {
  background: linear-gradient(145deg, var(--color-navy-light), var(--color-navy-deep));
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  box-shadow: 10px 10px 24px rgba(27,42,107,.3), -6px -6px 16px rgba(255,255,255,.25);
}
.cta-content h3 { color: var(--color-white); font-size: var(--text-2xl); margin-bottom: var(--space-2); }
.cta-content p  { color: rgba(255,255,255,.65); font-size: var(--text-base); margin: 0; }

/* ─────────────────────────────────────────────
    21. MAP SECTION (contact page)
───────────────────────────────────────────── */
.section-map {
  background: var(--color-surface);
  padding-block: var(--section-py);
}
.map-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  box-shadow: var(--neu-shadow-light);
  text-align: center;
}
.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.6;
}
.map-placeholder svg {
  width: 64px;
  height: 64px;
  color: var(--color-gold);
  opacity: .5;
}

/* ─────────────────────────────────────────────
    22. PAGE TRANSITIONS
───────────────────────────────────────────── */
.site-main {
  animation: page-fade-in .5s ease;
}
@keyframes page-fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─────────────────────────────────────────────
    23. BLOG / ARCHIVE
───────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.blog-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--neu-shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.blog-card:hover { box-shadow: var(--neu-shadow-soft); transform: translateY(-3px); }
.blog-card-img { display: block; aspect-ratio: 16/9; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: var(--space-6); }
.blog-meta { font-size: var(--text-xs); color: var(--color-text-light); display: block; margin-bottom: var(--space-2); }
.blog-card-title { font-size: var(--text-lg); margin-bottom: var(--space-3); }
.blog-card-title a { color: var(--color-navy); }
.blog-card-title a:hover { color: var(--color-gold); }
.blog-card-excerpt { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.65; margin-bottom: var(--space-4); }
.no-posts { color: var(--color-text-muted); text-align: center; padding: var(--space-12) 0; }

/* Single post layout */
.single-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--space-12);
  align-items: start;
}
.single-featured-img { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: var(--space-8); }
.sidebar-widget {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  margin-bottom: var(--space-5);
  box-shadow: var(--neu-shadow-sm);
}
.sidebar-title { font-size: var(--text-sm); margin-bottom: var(--space-4); }
.sidebar-nav { display: flex; flex-direction: column; gap: var(--space-3); }
.sidebar-nav a {
  font-size: var(--text-sm);
  color: var(--color-navy);
  font-weight: 600;
  padding: .5em 0;
  border-bottom: 1px solid var(--color-border);
  transition: color var(--transition);
}
.sidebar-nav a:hover { color: var(--color-gold); }
.sidebar-widget p { font-size: var(--text-sm); color: var(--color-text-muted); margin-bottom: var(--space-4); }
.post-navigation { margin-top: var(--space-12); padding-top: var(--space-8); border-top: 1px solid var(--color-border); }
.post-navigation .nav-links { display: flex; justify-content: space-between; gap: var(--space-8); }
.post-navigation a {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-navy);
  max-width: 45%;
  line-height: 1.4;
}
.post-navigation a:hover { color: var(--color-gold); }

/* ─────────────────────────────────────────────
    24. ANIMATIONS
───────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}
.fade-up[data-delay="0"] { transition-delay: 0s; }
.fade-up[data-delay="1"] { transition-delay: .12s; }
.fade-up[data-delay="2"] { transition-delay: .24s; }
.fade-up[data-delay="3"] { transition-delay: .36s; }
.fade-up[data-delay="4"] { transition-delay: .48s; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  .spin    { animation: none; }
  .scroll-line { animation: none; }
  .site-main { animation: none; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* ─────────────────────────────────────────────
    25. INTERACTIVE ENHANCEMENTS
───────────────────────────────────────────── */

.service-link,
.speciality-link,
.package-actions a,
.destination-card,
.social-link,
.faq-question,
.footer-nav a,
.footer-contact-item a,
.footer-bottom-links a { cursor: pointer; }

.service-card:active,
.package-item:active,
.why-card:active,
.speciality-card:active,
.visa-type-card:active,
.checklist-card:active,
.blog-card:active,
.hospital-card:active,
.pkg-hosp-card:active { transform: scale(0.985); }

.whatsapp-fab .fab-label {
  display: block;
  position: absolute;
  right: calc(100% + 8px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-navy);
  color: var(--color-white);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: .35em .75em;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.whatsapp-fab:hover .fab-label { opacity: 1; }

/* Logo text fallback */
.logo-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-navy);
}

/* ─────────────────────────────────────────────
    26. RESPONSIVE — TABLET (≤ 1024px)
───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-container     { grid-template-columns: 1fr; gap: var(--space-12); text-align: center; }
  .hero-subtitle      { max-width: 100%; }
  .hero-actions       { justify-content: center; }
  .hero-stats         { justify-content: center; }
  .hero-visual        { order: -1; display: grid; grid-template-columns: repeat(2, 1fr); }
  .hero-card--2       { margin-left: 0; }
  .hero-card--3       { margin-left: 0; }
  .route-line         { grid-column: 1/-1; }

  .services-grid      { grid-template-columns: 1fr 1fr; }
  .service-card--featured { grid-column: span 2; }

  .why-layout         { grid-template-columns: 1fr; }
  .why-intro          { text-align: center; }
  .why-intro .section-subtitle { max-width: 100%; }

  .hospitals-grid     { grid-template-columns: repeat(2, 1fr); }
  .destinations-grid  { grid-template-columns: repeat(2, 1fr); }
  .package-layout     { grid-template-columns: 1fr; }
  .contact-layout     { grid-template-columns: 1fr; }

  .footer-grid        { grid-template-columns: 1fr 1fr; }
  .footer-brand       { grid-column: span 2; }

  .why-medical-grid   { grid-template-columns: repeat(2, 1fr); }
  .specialities-grid  { grid-template-columns: repeat(2, 1fr); }
  .how-steps          { grid-template-columns: repeat(2, 1fr); }
  .visa-types-grid    { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .stepper            { grid-template-columns: repeat(2, 1fr); }
  .stepper-connector  { display: none; }
  .checklist-grid     { grid-template-columns: 1fr; }
  .packages-grid      { grid-template-columns: repeat(2, 1fr); }
  .blog-grid          { grid-template-columns: repeat(2, 1fr); }
  .single-layout      { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────
    27. RESPONSIVE — MOBILE (≤ 768px)
───────────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --header-h: 64px; }

  /* Nav → mobile drawer */
  .primary-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100dvh;
    background: var(--color-surface);
    z-index: 450;
    flex-direction: column;
    padding: calc(var(--header-h) + var(--space-6)) var(--space-6) var(--space-8);
  box-shadow: 8px 8px 22px rgba(151, 157, 172, .45), -6px -6px 16px rgba(255, 255, 255, .5);
    transition: right var(--transition);
    overflow-y: auto;
  }
  .primary-nav.is-open { right: 0; }
  .mobile-overlay { display: block; }
  .hamburger { display: flex; }

  .nav-list { flex-direction: column; align-items: flex-start; gap: var(--space-1); width: 100%; }
  .nav-link  { width: 100%; font-size: var(--text-base); padding: .65em .75em; }

  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--color-border);
    border-radius: 0;
    padding-left: var(--space-5);
    margin-left: .75rem;
    display: none;
  }
  .nav-item--has-dropdown.is-open .nav-dropdown { display: block; }

  .header-actions .btn-wa { display: none; }

  /* Hero */
  .hero-visual { display: none; }
  .hero-stats  { flex-wrap: wrap; gap: var(--space-5); }

  /* Sections */
  .services-grid      { grid-template-columns: 1fr; }
  .service-card--featured { grid-column: span 1; }
  .why-grid           { grid-template-columns: 1fr 1fr; }
  .hospitals-grid     { grid-template-columns: 1fr; }
  .destinations-grid  { grid-template-columns: 1fr 1fr; }
  .packages-grid      { grid-template-columns: 1fr; }
  .why-medical-grid   { grid-template-columns: 1fr 1fr; }
  .specialities-grid  { grid-template-columns: 1fr; }
  .how-steps          { grid-template-columns: 1fr; }
  .stepper            { grid-template-columns: 1fr; }
  .checklist-grid     { grid-template-columns: 1fr; }
  .blog-grid          { grid-template-columns: 1fr; }

  .promo-banner       { flex-direction: column; text-align: center; padding: var(--space-8); }
  .cta-banner         { flex-direction: column; text-align: center; padding: var(--space-8); }

  .contact-form-wrap  { padding: var(--space-6); }
  .form-row--2        { flex-direction: column; }

  .footer-grid        { grid-template-columns: 1fr; gap: var(--space-8); }
  .footer-brand       { grid-column: auto; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: var(--space-4); }

  .whatsapp-fab { bottom: var(--space-5); right: var(--space-5); }

  .tour-tabs { overflow-x: auto; padding-bottom: var(--space-2); }
  .tour-tab  { white-space: nowrap; }
}

@media (max-width: 480px) {
  :root { --header-h: 58px; --section-py: clamp(2.5rem, 6vw, 4rem); }
  .why-grid { grid-template-columns: 1fr; }
  .destinations-grid { grid-template-columns: 1fr; }
  .why-medical-grid  { grid-template-columns: 1fr; }
  .package-card .btn { margin-inline: var(--space-5); width: calc(100% - var(--space-10)); }
  .hero-title { font-size: clamp(var(--text-2xl), 8vw, var(--text-3xl)); }
  .hero-stats { gap: var(--space-3); }
  .stat-num { font-size: var(--text-xl); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .page-hero { padding: calc(var(--header-h) + 2rem) 0 2.5rem; }
  .contact-form-wrap { padding: var(--space-5); }
  .package-body { padding: var(--space-4); }
  .package-actions { flex-direction: column; }
  .package-actions .btn { width: 100%; justify-content: center; }
}
