/* =====================================================
   MY GLOBAL MENTORS — Stylesheet
   Modern, fully responsive design for study-abroad site
   ===================================================== */

/* ---------- CSS Variables ---------- */
:root {
  --primary: #1e3a8a;
  --primary-light: #3b82f6;
  --primary-dark: #0f172a;
  --secondary: #f59e0b;
  --secondary-dark: #d97706;
  --accent: #10b981;
  --danger: #ef4444;
  --whatsapp: #25d366;

  --text: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;

  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-card: #ffffff;
  --border: #e2e8f0;
  --border-light: #f1f5f9;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 24px;
  --radius-full: 999px;

  --shadow-sm: 0 1px 3px rgba(15, 23, 42, .06), 0 1px 2px rgba(15, 23, 42, .04);
  --shadow: 0 4px 16px rgba(15, 23, 42, .07), 0 2px 6px rgba(15, 23, 42, .04);
  --shadow-lg: 0 20px 40px rgba(15, 23, 42, .12), 0 8px 16px rgba(15, 23, 42, .06);
  --shadow-glow: 0 10px 40px rgba(59, 130, 246, .25);

  --font-head: 'Poppins', 'Segoe UI', Roboto, system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', Roboto, system-ui, sans-serif;

  --container: 1240px;
  --header-h: 80px;

  --grad-primary: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  --grad-secondary: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  --grad-soft: linear-gradient(135deg, #eff6ff 0%, #f0fdf4 100%);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  width: 100%;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
}
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--primary-light); }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; margin: 0; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary-dark);
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 800; letter-spacing: -.02em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); letter-spacing: -.015em; }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.15rem; }
h5 { font-size: 1rem; }
p  { margin: 0 0 1rem; }

.text-gradient {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; position: relative; }
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.section-head .eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(59, 130, 246, .1);
  color: var(--primary-light);
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}
.section-head h2 { margin-bottom: 16px; }
.section-head p { color: var(--text-muted); font-size: 1.05rem; }
.section-foot { text-align: center; margin-top: 40px; }
.section-foot p { color: var(--text-muted); margin-bottom: 16px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  transition: all .25s ease;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1.2;
}
.btn-sm { padding: 10px 20px; font-size: .88rem; }
.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 50px rgba(59, 130, 246, .35);
}
.btn-secondary {
  background: var(--secondary);
  color: #fff;
}
.btn-secondary:hover {
  background: var(--secondary-dark);
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
}
.btn-whatsapp:hover {
  background: #1ebe57;
  color: #fff;
  transform: translateY(-2px);
}

/* ---------- Top Bar ---------- */
.topbar {
  background: var(--primary-dark);
  color: #cbd5e1;
  font-size: .85rem;
  padding: 8px 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-left { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-left a { color: #cbd5e1; display: inline-flex; align-items: center; gap: 6px; }
.topbar-left a:hover { color: #fff; }
.topbar-right { display: flex; gap: 14px; }
.topbar-right a {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #cbd5e1;
  border-radius: 50%;
  transition: all .25s ease;
}
.topbar-right a:hover { background: var(--primary-light); color: #fff; }

/* ---------- Header / Nav ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s ease;
}
.header.scrolled { box-shadow: var(--shadow); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--primary-dark);
  flex-shrink: 0;
}
.brand:hover { color: var(--primary); }
.brand-mark {
  width: 48px; height: 48px;
  display: inline-flex;
}
.brand-mark svg { width: 100%; height: 100%; }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-logo { height: clamp(46px, 7.5vw, 58px); width: auto; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--primary-dark);
}
.brand-text small {
  font-size: .72rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Nav */
.nav { flex: 1; display: flex; justify-content: center; }
.nav > ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav > ul > li > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  color: var(--text);
  font-weight: 500;
  font-size: .92rem;
  border-radius: var(--radius-sm);
  transition: all .2s ease;
  white-space: nowrap;
}
.nav > ul > li > a:hover { color: var(--primary); background: var(--bg-soft); }
.nav > ul > li > a i { font-size: .7rem; transition: transform .2s ease; }
.nav > ul > li:hover > a i { transform: rotate(180deg); }

/* Mega menu */
.has-dropdown { position: relative; }
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  min-width: 720px;
  opacity: 0;
  visibility: hidden;
  transition: all .25s ease;
  border-top: 3px solid var(--primary);
}
.has-dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.mega-col h5 {
  font-size: .82rem;
  text-transform: uppercase;
  color: var(--primary-dark);
  font-weight: 800;
  letter-spacing: .08em;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary-light);
}
.mega-col a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  color: var(--text);
  font-size: .9rem;
  font-weight: 500;
}
.mega-col a:hover { color: var(--primary); transform: translateX(4px); }
.mega-col a img {
  width: 24px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0,0,0,.15);
}
.mega-cta {
  background: var(--grad-soft);
  padding: 16px;
  border-radius: var(--radius);
  text-align: center;
}
.mega-cta p { font-size: .85rem; color: var(--text-muted); margin-bottom: 10px; }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 12px; }
.whatsapp-icon {
  width: 44px; height: 44px;
  background: var(--whatsapp);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: all .25s ease;
  box-shadow: 0 4px 12px rgba(37, 211, 102, .35);
}
.whatsapp-icon:hover { color: #fff; transform: scale(1.08); }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  background: transparent;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0;
  position: relative;
}
.menu-toggle:focus-visible { outline: 2px solid var(--primary-light); outline-offset: 2px; }
.menu-toggle span {
  display: block;
  position: absolute;
  left: 11px;
  width: 20px;
  height: 2px;
  background: var(--primary-dark);
  border-radius: 2px;
  transition: all .3s ease;
}
.menu-toggle span:nth-child(1) { top: 13px; }
.menu-toggle span:nth-child(2) { top: 20px; }
.menu-toggle span:nth-child(3) { top: 27px; }
.menu-toggle.open span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 48px 0 56px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  overflow: hidden;
}
.hero-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .35;
}
.shape-1 { width: 380px; height: 380px; top: -120px; left: -120px; background: #60a5fa; }
.shape-2 { width: 460px; height: 460px; bottom: -180px; right: -160px; background: #fbbf24; opacity: .25; }
.shape-3 { width: 280px; height: 280px; top: 30%; right: 30%; background: #34d399; opacity: .15; }

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: stretch;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(245, 158, 11, .12);
  color: var(--secondary-dark);
  border-radius: var(--radius-full);
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-badge i { color: var(--secondary); }
.hero-content h1 {
  font-size: clamp(1.75rem, 3.2vw, 2.6rem);
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero-content > p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 22px;
  max-width: 580px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.hero-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.trust-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.trust-item span {
  display: block;
  font-size: .85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Hero image */
.hero-image { position: relative; display: flex; }
.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
  width: 100%;
  min-height: 380px;
  height: 100%;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}
.hero-image-wrap > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ---------- Logo strip ---------- */
.logo-strip {
  background: var(--bg-soft);
  padding: 40px 0;
  overflow: hidden;
  border-block: 1px solid var(--border);
}
.logo-strip-title {
  text-align: center;
  color: var(--text-muted);
  font-size: .9rem;
  margin-bottom: 20px;
  font-weight: 500;
}
.logo-marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.logo-track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: scrollLeft 30s linear infinite;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--text-muted);
  font-size: 1.15rem;
}
.logo-track span:not(:nth-child(even)) {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.25rem;
}
@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Destinations ---------- */
.destinations { background: var(--bg-soft); }
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

/* ---------- Destinations Slider ---------- */
.dest-slider {
  position: relative;
  padding: 0 50px;
}
.dest-viewport {
  overflow: hidden;
  border-radius: var(--radius);
}
.dest-track {
  display: flex;
  transition: transform .55s cubic-bezier(.4,.2,.2,1);
  will-change: transform;
}
.dest-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 18px;
  padding: 6px;
}
.dest-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--primary);
  cursor: pointer;
  box-shadow: var(--shadow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s, transform .2s;
  z-index: 2;
}
.dest-nav:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-50%) scale(1.06);
}
.dest-prev { left: 0; }
.dest-next { right: 0; }
.dest-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}
.dest-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}
.dest-dot:hover { background: var(--text-light); }
.dest-dot.active {
  background: var(--primary);
  transform: scale(1.25);
}
@media (max-width: 1024px) {
  .dest-slide { grid-template-columns: repeat(4, 1fr); }
  .dest-slider { padding: 0 40px; }
}
@media (max-width: 768px) {
  .dest-slider { padding: 0 36px; }
  .dest-slide { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(4, auto); gap: 12px; }
  .dest-nav { width: 36px; height: 36px; }
}
@media (max-width: 480px) {
  .dest-slider { padding: 0 30px; }
  .dest-slide { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}
.dest-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  text-align: center;
  border: 2px solid transparent;
  transition: all .3s ease;
  text-decoration: none;
  color: var(--text);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.dest-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity .3s ease;
  z-index: 0;
}
.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}
.dest-card > * { position: relative; z-index: 1; }
.dest-flag {
  width: 72px;
  height: 50px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  transition: transform .3s ease;
}
.dest-card:hover .dest-flag { transform: scale(1.08); }
.dest-flag img { width: 100%; height: 100%; object-fit: cover; }
.dest-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  color: var(--primary-dark);
  margin: 0;
  line-height: 1.3;
}
.dest-info {
  font-size: .78rem;
  color: var(--text-muted);
}
.dest-card .arrow-pill {
  margin-top: 6px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: .8rem;
  transition: all .3s ease;
}
.dest-card:hover .arrow-pill {
  background: var(--primary);
  color: #fff;
  transform: rotate(-45deg);
}

/* ---------- Study Journey (Timeline) ---------- */
.journey { background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%); }
.phase-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 60px;
}
.phase-chip {
  background: #fff;
  border: 2px solid var(--border);
  color: var(--text);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: .9rem;
  transition: all .25s ease;
}
.phase-chip:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.phase-chip.active {
  background: var(--grad-primary);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--shadow-glow);
}

/* ===== TIMELINE (Desktop / Tablet > 1024px: alternating left/right with central spine) ===== */
.timeline {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 0;
}
.timeline-spine {
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 50%;
  width: 4px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 50%, var(--accent) 100%);
  transform: translateX(-50%);
  border-radius: 4px;
  opacity: .25;
}

.t-step {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: center;
  margin-bottom: 36px;
  transition: opacity .35s ease, transform .35s ease;
}
.t-step.is-hidden {
  opacity: 0;
  height: 0;
  margin: 0;
  overflow: hidden;
  pointer-events: none;
}
/* Dot always in the centre column */
.t-step .t-dot { grid-column: 2; grid-row: 1; align-self: center; justify-self: center; }

/* Alternating sides. NOTE: .timeline-spine is nth-child(1) of .timeline,
   so step 01 is nth-child(2) (even), step 02 is nth-child(3) (odd), and so on.
   User-requested layout: step 1 on RIGHT, step 2 on LEFT, alternating. */
.t-step:nth-child(even) .t-card {           /* step 01, 03, 05, ... → RIGHT */
  grid-column: 3;
  grid-row: 1;
  align-self: center;
  margin-left: 30px;
  text-align: left;
}
.t-step:nth-child(odd) .t-card {            /* step 02, 04, 06, ... → LEFT */
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  margin-right: 30px;
  text-align: right;
}

.t-dot {
  width: 64px; height: 64px;
  background: #fff;
  border: 4px solid var(--primary);
  color: var(--primary);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 14px rgba(30, 58, 138, .18);
  transition: all .3s ease;
  flex-shrink: 0;
}
.t-step:hover .t-dot {
  transform: scale(1.1);
  background: var(--primary);
  color: #fff;
}
.t-dot-final {
  background: var(--grad-secondary);
  border-color: var(--secondary);
  color: #fff;
  font-size: 1.5rem;
  animation: trophyPulse 2s ease-in-out infinite;
}
@keyframes trophyPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(245, 158, 11, .5); }
  50% { transform: scale(1.05); box-shadow: 0 0 0 16px rgba(245, 158, 11, 0); }
}

.t-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px 26px;
  box-shadow: var(--shadow);
  position: relative;
  transition: all .3s ease;
  border: 1px solid var(--border-light);
}
.t-card::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 16px; height: 16px;
  background: #fff;
  transform: translateY(-50%) rotate(45deg);
}
/* Arrow tail points to the spine */
.t-step:nth-child(even) .t-card::before {   /* card on RIGHT → arrow on its LEFT */
  left: -8px;
  border-left: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.t-step:nth-child(odd) .t-card::before {    /* card on LEFT → arrow on its RIGHT */
  right: -8px;
  border-right: 1px solid var(--border-light);
  border-top: 1px solid var(--border-light);
}

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

.t-icon {
  width: 48px; height: 48px;
  background: var(--grad-soft);
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 12px;
}
/* For LEFT-side cards, icon hugs the right edge (toward the spine) */
.t-step:nth-child(odd) .t-card .t-icon { margin-left: auto; }
.t-card h4 { color: var(--primary-dark); margin-bottom: 8px; line-height: 1.35; }
.t-card p { color: var(--text-muted); margin: 0; font-size: .92rem; line-height: 1.55; }

.t-card-final {
  background: var(--grad-primary);
  color: #fff;
  border: none;
}
.t-card-final h4, .t-card-final p { color: #fff; }
.t-card-final p { color: rgba(255, 255, 255, .9); }
.t-card-final .t-icon { background: rgba(255,255,255,.18); color: #fff; }
.t-card-final::before { background: var(--primary); border: none !important; }

/* ---------- Essential Services ---------- */
.essentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.essential-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border-light);
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}
.essential-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.essential-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.essential-card:hover::before { transform: scaleX(1); }
.essential-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 18px;
  box-shadow: var(--shadow);
}
.essential-card h4 { margin-bottom: 10px; }
.essential-card p { color: var(--text-muted); font-size: .94rem; margin-bottom: 16px; }
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: .92rem;
  color: var(--primary);
  transition: gap .25s ease;
}
.link-arrow:hover { gap: 12px; color: var(--primary-light); }
.essential-cta {
  background: var(--grad-soft);
  border-color: transparent;
}

/* ---------- Why Us ---------- */
.why-us { background: var(--bg-soft); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}
.why-image { position: relative; display: flex; }
.why-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.why-stat {
  position: absolute;
  bottom: 24px; left: -30px;
  background: #fff;
  padding: 16px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--secondary);
}
.why-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-dark);
}
.why-stat span { font-size: .85rem; color: var(--text-muted); }

.why-content h2 { margin-bottom: 16px; }
.why-content > p { color: var(--text-muted); margin-bottom: 28px; font-size: 1.02rem; }
.why-list { margin-bottom: 32px; }
.why-list li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  font-size: .96rem;
  color: var(--text);
}
.why-list li i { color: var(--accent); font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.why-list li strong { font-family: var(--font-head); font-weight: 700; color: var(--primary-dark); }

/* ---------- Testimonials ---------- */
.testi-carousel { position: relative; }
.testi-viewport { overflow: hidden; }
.testi-track {
  display: flex;
  align-items: stretch;
  transition: transform .55s cubic-bezier(.4, 0, .2, 1);
}
.testi-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(var(--per-view, 3), minmax(0, 1fr));
  gap: 28px;
  padding: 16px 2px;
  align-items: stretch;
}
.testi-track .testi-card {
  display: flex;
  flex-direction: column;
}
.testi-track .testi-author { margin-top: auto; }
.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 28px;
}
.testi-arrow {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: #fff;
  color: var(--primary);
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow);
  transition: all .25s ease;
}
.testi-arrow:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-2px); }
.testi-dots { display: flex; align-items: center; gap: 8px; }
.testi-dot {
  width: 9px; height: 9px;
  padding: 0; border: none; cursor: pointer;
  border-radius: 50%;
  background: var(--border-light);
  transition: all .25s ease;
}
.testi-dot.active { background: var(--primary); width: 26px; border-radius: 5px; }
.testi-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
  transition: all .3s ease;
  position: relative;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 28px;
  font-size: 5rem;
  font-family: 'Georgia', serif;
  color: var(--primary-light);
  opacity: .15;
  line-height: 1;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.testi-stars { color: var(--secondary); font-size: 1.05rem; margin-bottom: 14px; letter-spacing: 2px; }
.testi-card > p {
  color: var(--text);
  font-style: italic;
  margin-bottom: 22px;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 56px; height: 56px;
  flex-shrink: 0;
  background: var(--grad-primary);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  overflow: hidden;
}
.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.testi-author strong { display: block; font-weight: 700; color: var(--primary-dark); }
.testi-author small { color: var(--text-muted); font-size: .82rem; }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: var(--grad-primary);
  position: relative;
  overflow: hidden;
  padding: 64px 0;
  color: #fff;
}
.cta-banner::before, .cta-banner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
}
.cta-banner::before { width: 380px; height: 380px; top: -150px; right: -80px; }
.cta-banner::after { width: 260px; height: 260px; bottom: -100px; left: 5%; background: rgba(245, 158, 11, .18); }
.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cta-inner h2 { color: #fff; margin-bottom: 8px; }
.cta-inner p { color: rgba(255, 255, 255, .9); margin: 0; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer {
  background: var(--primary-dark);
  color: #cbd5e1;
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer h5 { color: #fff; }
.footer-brand p { color: #94a3b8; font-size: .92rem; margin: 18px 0; }
.footer-logo-link { display: inline-block; }
.footer-logo { height: clamp(56px, 9vw, 72px); width: auto; display: block; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .08);
  color: #cbd5e1;
  border-radius: 50%;
  transition: all .25s ease;
}
.footer-social a:hover { background: var(--primary-light); color: #fff; transform: translateY(-3px); }
.footer h5 {
  font-size: 1.05rem;
  margin-bottom: 20px;
  font-weight: 700;
}
.footer-links li, .footer-contact li { padding: 6px 0; font-size: .92rem; }
.footer-links a, .footer-contact a { color: #cbd5e1; }
.footer-links a:hover, .footer-contact a:hover { color: #fff; padding-left: 4px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact i { color: var(--primary-light); margin-top: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: .85rem;
}
.footer-bottom a { color: #cbd5e1; margin: 0 4px; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Floating WhatsApp ---------- */
.float-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px; height: 58px;
  background: var(--whatsapp);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  z-index: 99;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .45);
  transition: transform .25s ease;
}
.float-whatsapp:hover { transform: scale(1.1); color: #fff; }
.fw-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--whatsapp);
  animation: pulse 1.8s ease-out infinite;
  z-index: -1;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 46px; height: 46px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 99;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .3s ease;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--primary-light); transform: translateY(-4px); }

/* ===================================================
   RESPONSIVE
   =================================================== */

/* Narrow desktops: tighten header so all nav items stay on one line */
@media (max-width: 1200px) {
  .brand-text small { display: none; }
  .header-inner { gap: 14px; }
  .nav > ul { gap: 2px; }
  .nav > ul > li > a { padding: 10px 10px; font-size: .9rem; }
}

/* Tablet and below */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-trust { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .hero-image-wrap { max-width: 560px; margin: 0 auto; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-stat { left: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  /* IMPORTANT: backdrop-filter would make .header a containing block for the
     position:fixed .nav, trapping the slide-out menu inside the header's box.
     Disable it on mobile so the nav can fill the viewport. */
  .header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: #fff;
  }

  /* Drawer is always in flow but slid off-screen — using display:none would kill
     the slide-in transition. visibility lets us animate cleanly.
     justify-content:flex-start is required to override the desktop .nav rule's
     `justify-content:center`, which would otherwise vertically center the menu
     items in the drawer (leaving a huge gap below the close button). */
  .nav {
    display: flex;
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(360px, 84%);
    background: #fff;
    flex-direction: column;
    justify-content: flex-start;
    padding: 72px 20px 24px;
    box-shadow: -10px 0 40px rgba(0,0,0,.15);
    z-index: 1000;
    overflow-y: auto;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .28s ease, visibility .28s;
  }
  .nav.open { transform: translateX(0); visibility: visible; }
  .nav > ul { flex-direction: column; align-items: stretch; gap: 4px; width: 100%; }
  .nav > ul > li > a { padding: 14px 16px; justify-content: space-between; }
  .mega-menu {
    position: static;
    transform: none;
    box-shadow: none;
    padding: 6px 0 10px 14px;
    /* Single column so long country names ("United Kingdom", "South Korea",
       "Dubai / UAE") don't get truncated. Compact row padding + internal
       scroll cap keeps the rest of the menu reachable. */
    grid-template-columns: 1fr;
    row-gap: 0;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    border-top: none;
    border-left: 2px solid var(--border);
    display: none;
    max-height: 48vh;
    overflow-y: auto;
  }
  .has-dropdown.open .mega-menu { display: grid; }
  .mega-col h5 {
    margin-top: 8px;
    margin-bottom: 4px;
    padding-bottom: 4px;
    font-size: .72rem;
  }
  .mega-col h5:first-child { margin-top: 0; }
  .mega-col a {
    padding: 6px 0;
    font-size: .88rem;
    gap: 10px;
    white-space: nowrap;
  }
  .mega-col a img { width: 22px; height: 15px; flex-shrink: 0; }
  .mega-cta { display: none; }
  .menu-toggle { display: block; position: relative; z-index: 1001; }
  /* Backdrop must sit BELOW the header's stacking layer (z-index:100) so it
     doesn't paint over the nav (which lives inside the header's stacking context
     and would otherwise be buried under the backdrop). */
  .nav-backdrop {
    display: none;
    position: fixed; inset: 0;
    background: rgba(15, 23, 42, .5);
    z-index: 90;
  }
  .nav-backdrop.show { display: block; }

  /* Journey: collapse alternating layout into a single column for tablet/mobile */
  .timeline {
    padding: 20px 0 20px 20px;
    max-width: 100%;
  }
  .timeline-spine {
    left: 48px;
    transform: none;
  }
  .t-step {
    grid-template-columns: 56px 1fr;
    column-gap: 16px;
    margin-bottom: 18px;
  }
  .t-step .t-dot,
  .t-step:nth-child(odd) .t-dot,
  .t-step:nth-child(even) .t-dot {
    grid-column: 1 !important;
    grid-row: 1;
    justify-self: center;
    align-self: center;
  }
  .t-step .t-card,
  .t-step:nth-child(odd) .t-card,
  .t-step:nth-child(even) .t-card {
    grid-column: 2 !important;
    grid-row: 1;
    margin: 0 !important;
    text-align: left !important;
  }
  .t-step:nth-child(odd) .t-card::before,
  .t-step:nth-child(even) .t-card::before {
    left: -8px !important;
    right: auto !important;
    top: 24px;
    border: 1px solid var(--border-light) !important;
    border-right: none !important;
    border-top: none !important;
  }
  .t-step:nth-child(odd) .t-card .t-icon { margin-left: 0; }
  .t-dot { width: 56px; height: 56px; font-size: 1rem; border-width: 3px; }
  .t-card { padding: 18px 20px; }
}

/* Small tablets / large phones */
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 36px; }
  .hero { padding: 36px 0 56px; }
  .hero-inner { gap: 28px; }
  .topbar { font-size: .78rem; }
  .topbar-left a:nth-child(2) { display: none; }
  .topbar-right a { width: 26px; height: 26px; font-size: .8rem; }
  .hero-content > p { font-size: 1rem; }
  .hero-trust { grid-template-columns: repeat(2, 1fr); gap: 16px; padding-top: 24px; }
  .hero-cta { width: 100%; gap: 10px; }
  .hero-cta .btn { flex: 1; justify-content: center; padding: 12px 16px; font-size: .88rem; }
  .hero-image-wrap {
    max-width: 480px;
    margin: 0 auto;
    aspect-ratio: auto;
    background: transparent;
    min-height: 0;
    height: auto;
  }
  .hero-image-wrap > img {
    position: static;
    height: auto;
    aspect-ratio: 4 / 3;
  }
  .destinations-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .dest-card { padding: 14px 12px; }
  .dest-flag { width: 60px; height: 42px; }
  .essentials-grid { grid-template-columns: 1fr; gap: 18px; }
  .why-stat { bottom: 12px; left: 12px; padding: 12px 16px; }
  .why-stat strong { font-size: 1.2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-banner { padding: 48px 0; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .hide-on-mobile { display: none !important; }
  .brand-text small { display: none; }
  .float-whatsapp { width: 52px; height: 52px; font-size: 1.5rem; bottom: 20px; right: 20px; }
  .back-to-top { bottom: 84px; right: 20px; width: 42px; height: 42px; }
  .testi-card { padding: 24px; }
  .testi-card::before { font-size: 4rem; right: 16px; top: 8px; }
  .testi-slide { gap: 18px; }
  .phase-nav { gap: 8px; margin-bottom: 36px; }
  .phase-chip { font-size: .82rem; padding: 8px 14px; }
}

/* Phones */
@media (max-width: 480px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.45rem; }
  .container { padding: 0 14px; }
  .section { padding: 44px 0; }
  .section-head { margin-bottom: 32px; }
  .topbar { font-size: .76rem; padding: 6px 0; }
  .topbar-inner { justify-content: center; gap: 10px; }
  .topbar-right { display: none; }
  .header-inner { gap: 8px; height: 64px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-text strong { font-size: .95rem; }
  .whatsapp-icon { width: 38px; height: 38px; font-size: 1.05rem; }
  .menu-toggle { width: 38px; height: 38px; }
  .menu-toggle span { width: 18px; left: 10px; }
  .hero { padding: 28px 0 48px; }
  .hero-content h1 { margin-bottom: 16px; }
  .hero-badge { padding: 6px 12px; font-size: .78rem; }
  .hero-content > p { font-size: .95rem; margin-bottom: 24px; }
  .hero-cta { margin-bottom: 32px; }
  .hero-image-wrap { margin: 0 auto; max-width: 100%; }
  .trust-item strong { font-size: 1.4rem; }
  .trust-item span { font-size: .78rem; }
  .destinations-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .dest-card { padding: 12px 8px; gap: 6px; }
  .dest-flag { width: 52px; height: 36px; }
  .dest-name { font-size: .85rem; }
  .dest-info { font-size: .72rem; }
  .phase-nav { margin-bottom: 28px; }
  .phase-chip { font-size: .78rem; padding: 7px 12px; }
  .timeline { padding-left: 8px; }
  .t-step { grid-template-columns: 44px 1fr; column-gap: 12px; margin-bottom: 14px; }
  .timeline-spine { left: 29px; }
  .t-dot { width: 44px; height: 44px; font-size: .8rem; border-width: 3px; }
  .t-dot-final { font-size: 1.05rem; }
  .t-card { padding: 14px 16px; }
  .t-card::before { left: -7px; width: 12px; height: 12px; }
  .t-card h4 { font-size: 1rem; margin-bottom: 6px; }
  .t-card p { font-size: .85rem; }
  .t-icon { width: 36px; height: 36px; font-size: .95rem; margin-bottom: 6px; }
  .essential-card { padding: 24px 20px; }
  .essential-icon { width: 52px; height: 52px; font-size: 1.3rem; }
  .testi-card { padding: 22px; }
  .why-stat { left: 10px; right: 10px; max-width: max-content; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
  .cta-inner h2 { font-size: 1.4rem; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0s !important; transition-duration: 0s !important; }
  html { scroll-behavior: auto; }
}
