/* ============================================================
   NECTAR DESTINATIONS — nectar-tours.css
   Tour page stylesheet — matched to styles-9.css brand system
   Font: Roboto · Colours: cyan #00d1ff · orange #FF671F · dark #000
   ============================================================ */

/* ── Google Fonts (add to <head> alongside Roboto already loaded) ─────── */
/* <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap" rel="stylesheet"> */

/* ── CSS Variables ────────────────────────────────────────────────────── */
:root {
  /* Brand palette — extracted from styles-9.css */
  --nd-cyan:       #00d1ff;
  --nd-cyan-lt:    #60eafc;
  --nd-cyan-dk:    #397ca3;
  --nd-orange:     #FF671F;
  --nd-orange-alt: #ff6f00;
  --nd-orange-lt:  #ffa040;
  --nd-black:      #000000;
  --nd-dark:       #0c0c0c;
  --nd-dark2:      #1a1a2e;
  --nd-white:      #ffffff;
  --nd-offwhite:   #f5f9fc;
  --nd-muted:      #666;
  --nd-border:     #d8eef5;
  --nd-green:      #046A38;

  /* Gradients — from styles-9.css */
  --nd-grad-hero:   linear-gradient(45deg, rgba(0,191,255,0.6), rgba(32,178,170,0.6), rgba(0,206,209,0.6));
  --nd-grad-nav:    linear-gradient(45deg, #60eafc, #397ca3);
  --nd-grad-footer: linear-gradient(45deg, #60eafc, #397ca3);
  --nd-grad-cta:    linear-gradient(45deg, #60eafc, #397ca3);
  --nd-grad-btn:    linear-gradient(45deg, rgba(255,162,0,0.9), rgba(255,162,0,1.1));

  /* Typography */
  --font: 'Roboto', sans-serif;

  /* Layout */
  --max-w: 1200px;
  --nav-h: 64px;
  --radius: 12px;
  --radius-lg: 20px;
}

/* ── Reset additions (body already handled by styles-9.css) ──────────── */
*, *::before, *::after { box-sizing: border-box; }
img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }

/* ============================================================
   NAVIGATION  (overrides / extends styles-9.css nav)
   ============================================================ */
.nd-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: var(--nd-grad-footer);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  transition: background 0.5s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.nd-nav.scrolled {
  background: var(--nd-grad-nav);
  background-size: 200% 200%;
  animation: gradientAnimation 6s ease infinite;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.nd-nav__logo img {
  height: 40px;
  width: auto;
  vertical-align: middle;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.nd-nav__logo img:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}

.nd-nav__links {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0; padding: 0;
}
.nd-nav__links a {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--nd-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s, transform 0.3s, text-shadow 0.3s;
}
.nd-nav__links a:hover {
  color: var(--nd-cyan);
  transform: translateY(-3px);
  text-shadow: 0 0 10px rgba(0,209,255,0.7);
}

/* CTA nav link */
.nd-nav__cta {
  background: var(--nd-grad-btn) !important;
  color: var(--nd-white) !important;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  transition: all 0.3s ease !important;
  transform: none !important;
}
.nd-nav__cta:hover {
  background: linear-gradient(45deg, rgba(0,0,0,0.5), rgba(51,51,51,0.5)) !important;
  box-shadow: 0 8px 12px rgba(0,0,0,0.3) !important;
  transform: translateY(-2px) !important;
  text-shadow: none !important;
}

/* Hamburger */
.nd-nav__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nd-nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--nd-white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile nav — matches sidenav style from styles-9.css */
.nd-nav__mobile {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: linear-gradient(45deg, rgba(0,0,0,0.92), rgba(51,51,51,0.92));
  z-index: 999;
  flex-direction: column;
  padding: 20px;
  gap: 8px;
  border-radius: 0 0 15px 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.5);
}
.nd-nav__mobile.open { display: flex; }
.nd-nav__mobile a {
  color: var(--nd-white);
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 12px 20px;
  border-radius: 10px;
  background: rgba(255,255,255,0.12);
  transition: all 0.3s ease;
}
.nd-nav__mobile a:hover {
  background: rgba(255,255,255,0.22);
  color: var(--nd-cyan);
  transform: scale(1.03);
}

@keyframes gradientAnimation {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@media (max-width: 992px) {
  .nd-nav__links { display: none; }
  .nd-nav__hamburger { display: flex; }
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.nd-breadcrumb {
  padding: calc(var(--nav-h) + 14px) 24px 12px;
  background: var(--nd-offwhite);
  border-bottom: 1px solid var(--nd-border);
}
.nd-breadcrumb ol {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  font-family: var(--font);
  font-size: 0.82rem;
  color: var(--nd-muted);
  padding: 0;
}
.nd-breadcrumb ol li:not(:last-child)::after {
  content: ' ›';
  margin-left: 4px;
}
.nd-breadcrumb ol li a {
  color: var(--nd-cyan-dk);
  text-decoration: underline;
  transition: color 0.2s;
}
.nd-breadcrumb ol li a:hover { color: var(--nd-cyan); }

/* ============================================================
   HERO
   ============================================================ */
.nd-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: 80px;
}

.nd-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.nd-hero:hover .nd-hero__bg { transform: scale(1.0); }

/* Matches styles-9.css header gradient approach */
.nd-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(45deg, rgba(0,191,255,0.35), rgba(32,178,170,0.3), rgba(0,206,209,0.2)),
    linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.78) 100%);
}

.nd-hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.nd-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,209,255,0.15);
  border: 1px solid rgba(0,209,255,0.5);
  color: var(--nd-cyan-lt);
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.nd-hero__title {
  font-family: var(--font);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--nd-white);
  line-height: 1.15;
  margin-bottom: 16px;
  max-width: 720px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
  animation: fadeInUp 1s ease-out forwards;
}
.nd-hero__title em {
  position: relative;
  display: inline-block;
  font-style: normal;
  font-weight: 800;
  letter-spacing: -0.03em;

  /* Premium luminous gradient */
  background: linear-gradient(
    135deg,
    #7dd3fc 0%,
    #ffffff 18%,
    #c084fc 42%,
    #ffffff 62%,
    #38bdf8 100%
  );

  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* Luxurious glow */
  filter: drop-shadow(0 0 12px rgba(125, 211, 252, 0.25))
          drop-shadow(0 0 30px rgba(192, 132, 252, 0.18));

  animation: ndGradientFlow 8s ease infinite;
}

/* Soft futuristic glow layer */
.nd-hero__title em::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  z-index: -1;

  background: inherit;
  background-size: inherit;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  filter: blur(22px) opacity(0.55);
  animation: ndGradientFlow 8s ease infinite;
}

/* Smooth luxury motion */
@keyframes ndGradientFlow {
  0% {
    background-position: 0% 50%;
    transform: translateY(0px);
  }

  50% {
    background-position: 100% 50%;
    transform: translateY(-1px);
  }

  100% {
    background-position: 0% 50%;
    transform: translateY(0px);
  }
}
.nd-hero__subtitle {
  font-family: var(--font);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.88);
  max-width: 580px;
  margin-bottom: 24px;
  line-height: 1.7;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.3);
  animation: fadeInUp 1.5s ease-out 0.2s forwards;
}

.nd-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 28px;
}
.nd-hero__meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.9);
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 500;
}
.nd-hero__meta-item .icon { color: var(--nd-cyan-lt); }

.nd-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

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

/* ============================================================
   BUTTONS  — match styles-9.css custom-btn + dropbtn patterns
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--nd-grad-btn);
  color: var(--nd-white);
  padding: 12px 28px;
  border-radius: 25px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background: linear-gradient(45deg, rgba(0,0,0,0.5), rgba(51,51,51,0.5));
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 15px rgba(0,0,0,0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--nd-white);
  padding: 10px 24px;
  border-radius: 25px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  border: 2px solid var(--nd-cyan);
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-outline:hover {
  background: var(--nd-cyan);
  color: var(--nd-black);
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.nd-trust {
  background: var(--nd-dark);
  padding: 14px 24px;
  border-bottom: 1px solid rgba(0,209,255,0.15);
}
.nd-trust__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}
.nd-trust__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font);
  font-size: 0.86rem;
  color: rgba(255,255,255,0.82);
}
.nd-trust__item strong { color: var(--nd-cyan); }

/* ============================================================
   SECTION CHROME
   ============================================================ */
.nd-section-label {
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--nd-cyan-dk);
  margin-bottom: 6px;
}

.nd-section-title {
  font-family: var(--font);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--nd-dark);
  line-height: 1.2;
  margin-bottom: 12px;
}

.nd-section-lead {
  font-family: var(--font);
  font-size: 1rem;
  color: var(--nd-muted);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* ============================================================
   HIGHLIGHTS GRID
   ============================================================ */
.nd-highlights {
  padding: 72px 24px;
  background: var(--nd-white);
}
.nd-highlights__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.nd-highlights__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.nd-highlight-card {
  background: var(--nd-offwhite);
  border: 1px solid var(--nd-border);
  border-top: 3px solid var(--nd-cyan);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.nd-highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(0,209,255,0.15);
}
.nd-highlight-card .icon {
  font-size: 2rem;
  margin-bottom: 10px;
}
.nd-highlight-card h3 {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--nd-dark);
  margin-bottom: 6px;
}
.nd-highlight-card p {
  font-family: var(--font);
  font-size: 0.88rem;
  color: var(--nd-muted);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   ITINERARY + BOOKING SIDEBAR
   ============================================================ */
.nd-itinerary {
  padding: 72px 24px;
  background: var(--nd-offwhite);
}
.nd-itinerary__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

/* Timeline */
.nd-timeline { position: relative; }
.nd-timeline::before {
  content: '';
  position: absolute;
  left: 18px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--nd-cyan), transparent);
}

.nd-day {
  position: relative;
  padding-left: 56px;
  margin-bottom: 32px;
}
.nd-day__dot {
  position: absolute;
  left: 10px; top: 4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--nd-cyan);
  border: 3px solid var(--nd-offwhite);
  box-shadow: 0 0 0 2px var(--nd-cyan);
  transition: transform 0.2s;
}
.nd-day:hover .nd-day__dot { transform: scale(1.35); }

.nd-day__label {
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nd-cyan-dk);
  margin-bottom: 2px;
}
.nd-day__title {
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--nd-dark);
  margin-bottom: 8px;
}
.nd-day__body {
  font-family: var(--font);
  font-size: 0.94rem;
  color: #444;
  line-height: 1.75;
}
.nd-day__body p { margin: 0 0 8px; }
.nd-day__body ul { margin: 6px 0 0 16px; padding: 0; }
.nd-day__body ul li { margin-bottom: 4px; }
.nd-day__body strong { color: var(--nd-dark); font-weight: 700; }

/* Booking card — sticky sidebar */
.nd-booking-card {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
  background: var(--nd-white);
  border: 1px solid var(--nd-border);
  border-top: 4px solid var(--nd-cyan);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.nd-booking-card__price {
  font-family: var(--font);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--nd-dark);
  margin-bottom: 4px;
}
.nd-booking-card__price sub {
  font-size: 1rem;
  font-weight: 400;
  color: var(--nd-muted);
}
.nd-booking-card__meta {
  font-family: var(--font);
  font-size: 0.8rem;
  color: var(--nd-muted);
  margin-bottom: 20px;
}
.nd-booking-card__features {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nd-booking-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--font);
  font-size: 0.88rem;
  color: #333;
}
.nd-booking-card__features li::before {
  content: '✓';
  color: var(--nd-cyan-dk);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}
.nd-booking-card .btn-primary {
  width: 100%;
  justify-content: center;
  margin-bottom: 10px;
}
.nd-booking-card__whatsapp {
  width: 100%;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: var(--nd-white);
  padding: 12px;
  border-radius: 25px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.9rem;
  transition: background 0.2s, transform 0.2s;
}
.nd-booking-card__whatsapp:hover {
  background: #128C7E;
  transform: translateY(-2px);
}
.nd-booking-card__trust {
  text-align: center;
  font-family: var(--font);
  font-size: 0.75rem;
  color: var(--nd-muted);
  margin-top: 12px;
}

/* ============================================================
   INCLUSIONS / EXCLUSIONS
   ============================================================ */
.nd-inclusions {
  padding: 72px 24px;
  background: var(--nd-white);
}
.nd-inclusions__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.nd-incl-col h3 {
  font-family: var(--font);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.nd-incl-col h3.included { color: var(--nd-green); }
.nd-incl-col h3.excluded { color: #c0392b; }
.nd-incl-col ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nd-incl-col ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--font);
  font-size: 0.9rem;
  color: #444;
  line-height: 1.5;
}
.nd-incl-col ul li span.check { color: var(--nd-green); font-weight: 700; }
.nd-incl-col ul li span.cross { color: #c0392b;        font-weight: 700; }

/* ============================================================
   FAQ
   ============================================================ */
.nd-faq {
  padding: 72px 24px;
  /* matches contact-cta gradient bg from styles-9.css */
  background: linear-gradient(45deg, #60eafc22, #397ca311);
  border-top: 1px solid var(--nd-border);
  border-bottom: 1px solid var(--nd-border);
}
.nd-faq__inner {
  max-width: 800px;
  margin: 0 auto;
}
.nd-faq__item {
  border-bottom: 1px solid var(--nd-border);
}
.nd-faq__question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 18px 0;
  font-family: var(--font);
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--nd-dark);
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}
.nd-faq__question:hover { color: var(--nd-cyan-dk); }
.nd-faq__question .chevron {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border: 2px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  transition: transform 0.3s;
}
.nd-faq__item.open .nd-faq__question .chevron { transform: rotate(180deg); }
.nd-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-family: var(--font);
  font-size: 0.93rem;
  color: #555;
  line-height: 1.75;
}
.nd-faq__item.open .nd-faq__answer {
  max-height: 500px;
  padding-bottom: 18px;
}
.nd-faq__answer a {
  color: var(--nd-cyan-dk);
  text-decoration: underline;
}

/* ============================================================
   RELATED TOURS
   ============================================================ */
.nd-related {
  padding: 72px 24px;
  background: var(--nd-offwhite);
}
.nd-related__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.nd-related__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.nd-related-card {
  background: var(--nd-white);
  border: 1px solid var(--nd-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.nd-related-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0,209,255,0.18);
}
.nd-related-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.nd-related-card__body { padding: 18px; }
.nd-related-card__tag {
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nd-orange-alt);
  margin-bottom: 4px;
}
.nd-related-card__title {
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--nd-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}
.nd-related-card__meta {
  display: flex;
  gap: 14px;
  font-family: var(--font);
  font-size: 0.8rem;
  color: var(--nd-muted);
  margin-bottom: 14px;
}
.nd-related-card .btn-primary {
  font-size: 0.85rem;
  padding: 8px 18px;
}

/* ============================================================
   CTA BAND  — matches #contact-cta from styles-9.css
   ============================================================ */
.nd-cta-band {
  position: relative;
  padding: 72px 24px;
  background: var(--nd-grad-cta);
  text-align: center;
  overflow: hidden;
}
/* India silhouette overlay — same as styles-9.css #contact-cta::before */
.nd-cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('https://nectardestinations.com/img/silhouette-india.webp') center/cover no-repeat;
  opacity: 0.12;
  pointer-events: none;
}
.nd-cta-band__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.nd-cta-band__title {
  font-family: var(--font);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--nd-white);
  margin-bottom: 12px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.25);
}
.nd-cta-band__title em {
  font-style: normal;
  color: var(--nd-orange-lt);
}
.nd-cta-band__sub {
  font-family: var(--font);
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
  line-height: 1.7;
}
.nd-cta-band__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER  — matches .page-footer from styles-9.css
   ============================================================ */
.nd-footer {
  background: var(--nd-grad-footer);
  background-size: 200% 200%;
  animation: gradientAnimation 6s ease infinite;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  color: var(--nd-white);
  padding: 48px 24px 24px;
  font-family: var(--font);
  position: relative;
  overflow: hidden;
  border-radius: 0 0 5px 5px;
}
/* Radial overlay — matches styles-9.css .page-footer::before */
.nd-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.06), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.nd-footer__grid {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.nd-footer__brand img {
  height: 40px;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
}
.nd-footer__brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  margin: 0 0 6px;
}
.nd-footer__col h4 {
  /* Matches footer-logo .brand-name treatment */
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--nd-orange-alt);
  margin-bottom: 14px;
}
.nd-footer__col ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.nd-footer__col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  transition: color 0.3s;
}
.nd-footer__col ul li a:hover { color: var(--nd-orange-alt); }

.nd-footer__bottom {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 20px auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  text-align: center;
}
.nd-footer__bottom .highlight {
  color: var(--nd-orange-alt);
  font-weight: 700;
}

/* ============================================================
   LANGUAGE SWITCHER  — matches styles-9.css language-switcher
   ============================================================ */
.nd-lang-switcher {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  font-family: var(--font);
}
.nd-lang-btn {
  background: rgba(255,255,255,0.1);
  color: var(--nd-white);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 12px 20px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}
.nd-lang-btn:hover {
  background: rgba(255,255,255,0.2);
}

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }


/* ============================================================
   RESPONSIVE — COMPLETE MOBILE & TABLET SYSTEM
   Fixes: booking card, itinerary grid, inclusions,
          hero, footer, breadcrumb, related, nav
   ============================================================ */

/* ── Tablet: 900px and below ── */
@media (max-width: 900px) {

  /* Itinerary: drop sidebar below the timeline */
  .nd-itinerary__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Booking card: un-stick, full width */
  .nd-booking-card {
    position: static;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
  }

  /* Inclusions: stack columns */
  .nd-inclusions__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* Footer: 2-col */
  .nd-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  /* Hero: reduce bottom padding */
  .nd-hero { padding-bottom: 56px; }
}

/* ── Mobile: 600px and below ── */
@media (max-width: 600px) {

  /* Section padding */
  .nd-highlights,
  .nd-itinerary,
  .nd-inclusions,
  .nd-faq,
  .nd-related,
  .nd-cta-band {
    padding: 48px 16px;
  }

  /* Hero */
  .nd-hero { min-height: 85vh; padding-bottom: 40px; }
  .nd-hero__title { font-size: 2.1rem; }
  .nd-hero__subtitle { font-size: 0.97rem; }
  .nd-hero__meta { gap: 12px; }
  .nd-hero__meta-item { font-size: 0.82rem; }
  .nd-hero__actions { flex-direction: column; align-items: flex-start; gap: 10px; }
  .nd-hero__actions .btn-primary,
  .nd-hero__actions .btn-outline { width: 100%; justify-content: center; }

  /* Breadcrumb */
  .nd-breadcrumb { padding: calc(var(--nav-h) + 10px) 16px 10px; }

  /* Section headings */
  .nd-section-title { font-size: 1.65rem; }
  .nd-section-label { font-size: 0.72rem; }

  /* Highlight cards: single column */
  .nd-highlights__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* Booking card: full bleed, tighter padding */
  .nd-booking-card {
    position: static;
    width: 100%;
    max-width: 100%;
    padding: 20px 18px;
    border-radius: 16px;
  }
  .nd-booking-card__price { font-size: 1.8rem; }
  .nd-booking-card__features li { font-size: 0.84rem; }

  /* Booking CTAs: stack vertically */
  .nd-booking-card .btn-primary,
  .nd-booking-card__whatsapp {
    width: 100%;
    justify-content: center;
  }

  /* Timeline: tighter */
  .nd-day { padding-left: 44px; margin-bottom: 28px; }
  .nd-timeline::before { left: 14px; }
  .nd-day__dot { left: 6px; width: 16px; height: 16px; }
  .nd-day__title { font-size: 1rem; }
  .nd-day__body { font-size: 0.88rem; }

  /* Inclusions: full width, tighter */
  .nd-inclusions__inner { gap: 20px; }
  .nd-incl-col h3 { font-size: 1.05rem; }
  .nd-incl-col ul li { font-size: 0.84rem; }

  /* FAQ */
  .nd-faq__question { font-size: 0.9rem; padding: 15px 0; }

  /* Related tours: single column */
  .nd-related__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Footer: single column */
  .nd-footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .nd-footer { padding: 40px 16px 24px; }
  .nd-footer__bottom { flex-direction: column; align-items: center; text-align: center; gap: 4px; }

  /* CTA band */
  .nd-cta-band__title { font-size: 1.6rem; }
  .nd-cta-band__actions { flex-direction: column; align-items: center; }
  .nd-cta-band__actions .btn-primary,
  .nd-cta-band__actions .btn-outline { width: 100%; max-width: 320px; justify-content: center; }

  /* Buttons: full-width stacking */
  .btn-primary, .btn-outline { font-size: 0.85rem; padding: 13px 24px; }

  /* Trust bar: 2-column wrap */
  .nd-trust__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    justify-items: center;
  }
  .nd-trust__item { font-size: 0.76rem; }
}

/* ── Small mobile: 400px and below ── */
@media (max-width: 400px) {
  .nd-hero__title { font-size: 1.85rem; }
  .nd-booking-card__price { font-size: 1.6rem; }
  .nd-day { padding-left: 38px; }
  .nd-trust__inner { grid-template-columns: 1fr; }
  .nd-section-title { font-size: 1.45rem; }
}