/* ============================================================
   SHRI VYANKATESH TOURS AND TRAVELS — DESIGN TOKENS
   Single source of truth for every color, font, spacing,
   radius, shadow and motion value used across the site.
   ============================================================ */

/* ---------- SELF-HOSTED FONTS (no external requests) ---------- */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans Devanagari";
  src: url("../fonts/noto-devanagari-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans Devanagari";
  src: url("../fonts/noto-devanagari-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans Telugu";
  src: url("../fonts/noto-telugu-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans Tamil";
  src: url("../fonts/noto-tamil-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  /* ---------- COLOR: BRAND (updated palette) ---------- */
  --color-navy-900: #091728;
  --color-navy-800: #0D2036;
  --color-navy-700: #10243E;    /* primary brand */
  --color-navy-600: #163155;
  --color-navy-500: #1E3F6B;

  --color-maroon-900: #4A0F17;
  --color-maroon-800: #591620;
  --color-maroon-700: #6E1C27;  /* CTA / badges / accents only */
  --color-maroon-600: #7D2029;
  --color-maroon-500: #8F2836;
  --color-maroon-400: #A8434F;

  --color-gold-700: #A6810F;
  --color-gold-600: #C79A2B;    /* primary accent */
  --color-gold-500: #D4AC44;
  --color-gold-400: #E3C46D;    /* gold-light */
  --color-gold-300: #EDD8A0;
  --color-gold-100: #FBF3DC;

  --color-blue-700: #123449;
  --color-blue-600: #1B4F72;
  --color-blue-400: #3D7CA3;

  --color-whatsapp: #25D366;
  --color-whatsapp-dark: #1EBE57;
  --color-alert: #D9660B;

  /* ---------- COLOR: NEUTRAL ---------- */
  --color-ivory: #FAF7F1;
  --color-ivory-deep: #F2ECDF;
  --color-white: #FFFFFF;
  --color-charcoal: #20242A;
  --color-charcoal-soft: #475467;
  --color-line: #E6E1D6;
  --color-line-strong: #D6CFBC;

  /* ---------- SEMANTIC ALIASES ---------- */
  --color-bg: var(--color-ivory);
  --color-bg-alt: var(--color-white);
  --color-bg-dark: var(--color-navy-800);
  --color-text: var(--color-charcoal);
  --color-text-muted: var(--color-charcoal-soft);
  --color-text-on-dark: #F1F4F8;
  --color-border: var(--color-line);

  /* Kept for backward compatibility with maroon-named vars used as heading color historically —
     now points to navy so headings render navy sitewide without touching every selector. */
  --color-maroon-800-heading: var(--color-navy-700);

  /* ---------- TYPOGRAPHY ---------- */
  --font-display: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: "Inter", "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-devanagari: "Noto Sans Devanagari", var(--font-body);
  --font-telugu: "Noto Sans Telugu", var(--font-body);
  --font-tamil: "Noto Sans Tamil", var(--font-body);

  --fs-2xs: 0.75rem;    /* 12px */
  --fs-xs:  0.8125rem;  /* 13px */
  --fs-sm:  0.9375rem;  /* 15px */
  --fs-base: 1.0625rem; /* 17px  – base body, larger than default per "premium" brief */
  --fs-md:  1.25rem;    /* 20px */
  --fs-lg:  1.5rem;     /* 24px */
  --fs-xl:  1.875rem;   /* 30px */
  --fs-2xl: 2.375rem;   /* 38px */
  --fs-3xl: 3rem;       /* 48px */
  --fs-4xl: 3.75rem;    /* 60px */
  --fs-5xl: 4.5rem;     /* 72px */

  --lh-tight: 1.15;
  --lh-snug: 1.35;
  --lh-normal: 1.6;
  --lh-relaxed: 1.8;

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  /* ---------- SPACING SCALE (premium = generous) ---------- */
  --space-3xs: 0.25rem;
  --space-2xs: 0.5rem;
  --space-xs:  0.75rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.25rem;
  --space-xl:  3.5rem;
  --space-2xl: 5rem;
  --space-3xl: 7rem;
  --space-4xl: 9rem;

  --section-pad-y: clamp(3.5rem, 6vw, 7rem);
  --container-pad-x: clamp(1.25rem, 5vw, 3rem);
  --container-max: 1280px;
  --container-max-narrow: 860px;

  /* ---------- RADIUS ---------- */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  /* ---------- SHADOW ---------- */
  --shadow-sm: 0 2px 8px rgba(9, 23, 40, 0.06);
  --shadow-md: 0 8px 24px rgba(9, 23, 40, 0.10);
  --shadow-lg: 0 16px 48px rgba(9, 23, 40, 0.14);
  --shadow-gold-glow: 0 6px 24px rgba(201, 162, 39, 0.35);
  --shadow-inset-line: inset 0 0 0 1px var(--color-line);

  /* ---------- MOTION ---------- */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 160ms;
  --dur-base: 280ms;
  --dur-slow: 480ms;
  --dur-reveal: 700ms;

  /* ---------- Z-INDEX ---------- */
  --z-header: 100;
  --z-mobile-menu: 200;
  --z-sticky-bar: 150;
  --z-whatsapp: 120;
  --z-lightbox: 300;

  /* ---------- LAYOUT ---------- */
  --header-h: 100px;
  --header-h-scrolled: 78px;
  --sticky-bar-h: 64px;
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --dur-fast: 0ms;
    --dur-base: 0ms;
    --dur-slow: 0ms;
    --dur-reveal: 0ms;
  }
}
/* ============================================================
   BASE RESET & TYPOGRAPHY
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

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

/* ---------- Headings ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  color: var(--color-navy-700);
  letter-spacing: -0.015em;
  text-wrap: balance;
}
h3 { font-weight: var(--fw-semibold); }

h1 { font-size: var(--fs-4xl); }
h2 { font-size: var(--fs-3xl); }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-md); font-family: var(--font-body); font-weight: var(--fw-semibold); }

@media (max-width: 1024px) {
  h1 { font-size: var(--fs-3xl); }
  h2 { font-size: var(--fs-2xl); }
  h3 { font-size: var(--fs-lg); }
}
/* Mobile heading scale, per spec: H2 ~28-32px, H3 ~20-24px, body 16px min */
@media (max-width: 640px) {
  h1 { font-size: 1.75rem; }        /* ~28px */
  h2 { font-size: 1.875rem; }       /* ~30px */
  h3 { font-size: 1.375rem; }       /* ~22px */
  body { font-size: 1rem; }         /* 16px minimum body text */
}

p { color: var(--color-text-muted); line-height: 1.75; }
p + p { margin-top: 1rem; }

/* Constrains long-form content blocks (About, South Indian Tourists, etc.)
   to a comfortable reading measure and guarantees left alignment,
   never justified. */
.prose { text-align: left; }
.prose p { max-width: 66ch; text-align: left; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs);
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold-700);
  margin-bottom: var(--space-sm);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--color-gold-600);
  display: inline-block;
}

.section-head {
  max-width: 720px;
  margin-bottom: var(--space-2xl);
}
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { font-size: var(--fs-md); margin-top: var(--space-sm); }

/* ---------- Layout Primitives ---------- */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad-x);
}
.container--narrow { max-width: var(--container-max-narrow); }

.section {
  padding-block: var(--section-pad-y);
  position: relative;
}
.section--alt { background: var(--color-white); }
.section--dark {
  background: linear-gradient(160deg, var(--color-navy-800), var(--color-navy-900));
  color: var(--color-text-on-dark);
}
.section--dark h2, .section--dark h3 { color: var(--color-gold-300); }
.section--dark p { color: rgba(246, 239, 226, 0.78); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-maroon-600);
  color: #fff;
  padding: 0.75rem 1.25rem;
  z-index: 999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Focus states (accessibility) ---------- */
:focus-visible {
  outline: 2px solid var(--color-gold-600);
  outline-offset: 3px;
  border-radius: 2px;
}
/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xs);
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  letter-spacing: 0.01em;
  padding: 0.95rem 1.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              background var(--dur-base) var(--ease-out),
              color var(--dur-base) var(--ease-out);
  will-change: transform;
}
.btn svg { width: 1.1em; height: 1.1em; flex-shrink: 0; }
.btn:active { transform: translateY(1px) scale(0.98); }

.btn--primary {
  background: linear-gradient(135deg, var(--color-maroon-600), var(--color-maroon-700));
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  box-shadow: var(--shadow-gold-glow);
  transform: translateY(-2px);
}

.btn--gold {
  background: linear-gradient(135deg, var(--color-gold-600), var(--color-gold-700));
  color: var(--color-maroon-900);
}
.btn--gold:hover { box-shadow: var(--shadow-gold-glow); transform: translateY(-2px); }

.btn--outline {
  background: transparent;
  border-color: var(--color-gold-600);
  color: var(--color-navy-700);
}
.btn--outline:hover {
  background: var(--color-gold-600);
  color: var(--color-maroon-900);
  transform: translateY(-2px);
}

.btn--outline-light {
  background: transparent;
  border-color: rgba(246, 239, 226, 0.45);
  color: var(--color-text-on-dark);
}
.btn--outline-light:hover {
  background: rgba(246, 239, 226, 0.12);
  border-color: var(--color-gold-400);
}

.btn--whatsapp {
  background: linear-gradient(135deg, var(--color-whatsapp), var(--color-whatsapp-dark));
  color: #fff;
}
.btn--whatsapp:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35); }

.btn--call {
  background: var(--color-maroon-600);
  color: #fff;
}
.btn--call:hover { background: var(--color-maroon-700); transform: translateY(-2px); }

.btn--ghost {
  background: rgba(255,255,255,0.08);
  color: inherit;
  backdrop-filter: blur(6px);
  border-color: rgba(255,255,255,0.2);
}

.btn--sm { padding: 0.6rem 1.2rem; font-size: var(--fs-xs); }
.btn--lg { padding: 1.15rem 2.25rem; font-size: var(--fs-base); }
.btn--block { width: 100%; }
.btn--icon-only { padding: 0.75rem; border-radius: 50%; }

.btn-group {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .btn-group--stack-mobile { flex-direction: column; }
  .btn-group--stack-mobile .btn { width: 100%; }
}

/* Text link with animated underline */
.link-underline {
  position: relative;
  font-weight: var(--fw-semibold);
  color: var(--color-navy-700);
  padding-bottom: 2px;
  background-image: linear-gradient(var(--color-gold-600), var(--color-gold-600));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  transition: background-size var(--dur-base) var(--ease-out);
}
.link-underline:hover { background-size: 100% 2px; }
/* ============================================================
   CARDS — base, fleet, destination, amenity, testimonial, blog
   ============================================================ */

.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-line);
  overflow: hidden;
  transition: box-shadow var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--color-gold-400);
}

/* ---------- Fleet Card ---------- */
.fleet-card { display: flex; flex-direction: column; height: 100%; }
.fleet-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--color-ivory-deep);
}
.fleet-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
.fleet-card__media img.obj-pos-left { object-position: 30% center; }
.card:hover .fleet-card__media img { transform: scale(1.06); }

.fleet-card__badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  background: linear-gradient(135deg, var(--color-gold-500), var(--color-gold-700));
  color: var(--color-maroon-900);
  font-weight: var(--fw-bold);
  font-size: var(--fs-xs);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}
.fleet-card__ac-tag {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  background: rgba(9,23,40,0.75);
  color: #fff;
  font-size: var(--fs-2xs);
  font-weight: var(--fw-semibold);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
}

.fleet-card__body { padding: var(--space-md) var(--space-md) var(--space-lg); flex: 1; display: flex; flex-direction: column; }
.fleet-card__title { font-family: var(--font-display); font-size: var(--fs-lg); color: var(--color-navy-700); margin-bottom: 0.35rem; }
.fleet-card__desc { font-size: var(--fs-sm); color: var(--color-text-muted); margin-bottom: var(--space-md); flex: 1; }

.fleet-card__specs { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: var(--space-md); }
.spec-chip {
  font-size: var(--fs-2xs);
  font-weight: var(--fw-medium);
  color: var(--color-navy-700);
  background: var(--color-ivory-deep);
  border: 1px solid var(--color-line-strong);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
}

.fleet-card__actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.fleet-card__actions .btn {
  flex: 1 1 130px;
  min-width: 130px;
  min-height: 44px;
  padding-inline: 0.9rem;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .fleet-card__actions { flex-direction: column; }
  .fleet-card__actions .btn { width: 100%; flex: none; }
}

/* ---------- Destination Card ---------- */
.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); }
.dest-card:hover img { transform: scale(1.08); }
.dest-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(9,23,40,0.92) 0%, rgba(9,23,40,0.35) 45%, rgba(9,23,40,0) 70%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: var(--space-md);
}
.dest-card__title { font-family: var(--font-display); color: #fff; font-size: var(--fs-md); margin-bottom: 0.2rem; }
.dest-card__meta { color: var(--color-gold-300); font-size: var(--fs-xs); font-weight: var(--fw-medium); }

/* ---------- Amenity Card ---------- */
.amenity-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: var(--space-2xs);
  padding: var(--space-lg) var(--space-sm);
  border-radius: var(--radius-md);
  background: var(--color-white);
  border: 1px solid var(--color-line);
  transition: transform var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.amenity-card:hover { transform: translateY(-4px); border-color: var(--color-gold-500); }
.amenity-card__icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--color-ivory-deep);
  color: var(--color-navy-600);
  margin-bottom: var(--space-2xs);
}
.amenity-card__icon svg { width: 26px; height: 26px; }
.amenity-card__label { font-size: var(--fs-sm); font-weight: var(--fw-medium); color: var(--color-text); }

/* ---------- Why-Choose-Us / Icon feature card ---------- */
.feature-card { display: flex; flex-direction: column; gap: var(--space-sm); }
.feature-card__icon {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-navy-600), var(--color-navy-800));
  color: var(--color-gold-300);
}
.feature-card__icon svg { width: 30px; height: 30px; }
.feature-card__title { font-family: var(--font-body); font-weight: var(--fw-semibold); font-size: var(--fs-md); color: var(--color-navy-700); }
.feature-card__desc { font-size: var(--fs-sm); color: var(--color-text-muted); }

/* ---------- Who-We-Serve segment card ---------- */
.segment-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 220px;
  display: flex; align-items: flex-end;
  padding: var(--space-md);
  color: #fff;
  isolation: isolate;
}
.segment-card::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(160deg, var(--color-navy-600), var(--color-navy-900));
}
.segment-card__icon { position: absolute; top: var(--space-md); left: var(--space-md); opacity: 0.9; }
.segment-card__icon svg { width: 30px; height: 30px; color: var(--color-gold-400); }
.segment-card__title { font-family: var(--font-display); font-size: var(--fs-lg); margin-bottom: 0.2rem; }
.segment-card__desc { font-size: var(--fs-xs); color: rgba(255,255,255,0.8); }

/* ---------- Testimonial Card ---------- */
.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-line);
  padding: var(--space-lg);
  display: flex; flex-direction: column; gap: var(--space-md);
  height: 100%;
}
.testimonial-card__photo { width: 100%; aspect-ratio: 4/3; border-radius: var(--radius-md); overflow: hidden; }
.testimonial-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-card__quote { font-size: var(--fs-sm); color: var(--color-text); font-style: italic; line-height: var(--lh-relaxed); }
.testimonial-card__meta { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.testimonial-card__tag {
  font-size: var(--fs-2xs); font-weight: var(--fw-semibold); text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--color-maroon-700); background: var(--color-gold-100); padding: 0.3rem 0.7rem; border-radius: var(--radius-pill);
}

/* ---------- Blog Card ---------- */
.blog-card { display: flex; flex-direction: column; height: 100%; }
.blog-card__media { aspect-ratio: 16/10; overflow: hidden; }
.blog-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); }
.card:hover .blog-card__media img { transform: scale(1.06); }
.blog-card__body { padding: var(--space-md) var(--space-md) var(--space-lg); }
.blog-card__cat { font-size: var(--fs-2xs); font-weight: var(--fw-semibold); color: var(--color-gold-700); text-transform: uppercase; letter-spacing: 0.06em; }
.blog-card__title { font-family: var(--font-display); font-size: var(--fs-md); color: var(--color-navy-700); margin: 0.4rem 0 0.5rem; }
.blog-card__excerpt { font-size: var(--fs-sm); color: var(--color-text-muted); }

/* ---------- Placeholder / Reserved-for-later card (Reviews, Awards, Social) ---------- */
.reserved-card {
  border: 1.5px dashed var(--color-line-strong);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  background: var(--color-ivory-deep);
  color: var(--color-text-muted);
}
.reserved-card svg { width: 34px; height: 34px; color: var(--color-gold-600); margin-bottom: var(--space-sm); }
.reserved-card__title { font-family: var(--font-display); color: var(--color-navy-700); font-size: var(--fs-md); margin-bottom: 0.3rem; }

/* ---------- Glass card (used sparingly, per premium brief) ---------- */
.card--glass {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
}
/* ============================================================
   FORMS — Quick Booking Form, Contact Form, inputs
   ============================================================ */

.form-field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: var(--space-md); }
.form-field label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--color-navy-700);
  letter-spacing: 0.02em;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 1.5px solid var(--color-line-strong);
  border-radius: var(--radius-md);
  background: var(--color-white);
  font-size: var(--fs-sm);
  color: var(--color-text);
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.form-field input::placeholder, .form-field textarea::placeholder { color: #A69A87; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-gold-600);
  box-shadow: 0 0 0 4px rgba(201,162,39,0.18);
}
.form-field textarea { resize: vertical; min-height: 110px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.form-field--invalid input, .form-field--invalid select { border-color: #C0392B; }
.form-field__error { font-size: var(--fs-2xs); color: #C0392B; display: none; }
.form-field--invalid .form-field__error { display: block; }

/* ---------- Quick Booking Form Card (hero-adjacent) ---------- */
.booking-form {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: var(--space-lg);
  border-top: 4px solid var(--color-gold-600);
}
.booking-form__title {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  color: var(--color-navy-700);
  margin-bottom: var(--space-md);
}
.booking-form__title span { display: block; font-family: var(--font-body); font-size: var(--fs-xs); font-weight: var(--fw-medium); color: var(--color-text-muted); margin-top: 2px; }

/* ---------- Success/status message ---------- */
.form-status {
  display: none;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  margin-top: var(--space-sm);
}
.form-status--success { display: block; background: #E6F6EA; color: #1E7A34; border: 1px solid #B7E4C3; }
.form-status--error { display: block; background: #FCEAEA; color: #B23B2E; border: 1px solid #F2C1BB; }

/* ---------- Checkbox / radio (seater select chips) ---------- */
.chip-select { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.chip-select input { position: absolute; opacity: 0; pointer-events: none; }
.chip-select label {
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--color-line-strong);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-out);
}
.chip-select input:checked + label {
  background: var(--color-maroon-600);
  border-color: var(--color-maroon-600);
  color: #fff;
}

/* ---------- Newsletter / footer mini form ---------- */
.mini-form { display: flex; gap: 0.5rem; }
.mini-form input {
  flex: 1;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.mini-form input::placeholder { color: rgba(255,255,255,0.55); }
/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: var(--color-white);
  height: var(--header-h);
  box-shadow: 0 2px 14px rgba(9, 23, 40, 0.07);
  transition: height var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.site-header.is-scrolled { height: var(--header-h-scrolled); box-shadow: 0 4px 22px rgba(9, 23, 40, 0.13); }

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.site-logo { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; padding: 0.5rem 0; }
.site-logo img {
  height: 72px; width: auto; max-width: 220px;
  object-fit: contain;
  transition: height var(--dur-base) var(--ease-out);
}
.site-header.is-scrolled .site-logo img { height: 58px; }
.site-logo__text { display: none; }

.main-nav { display: flex; align-items: center; gap: var(--space-lg); }
.main-nav ul { display: flex; align-items: center; gap: var(--space-md); }
.main-nav a {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-navy-700);
  padding: 0.4rem 0.1rem;
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--color-gold-500);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out);
}
.main-nav a:hover, .main-nav a.is-active { color: var(--color-navy-900); }
.main-nav a:hover::after, .main-nav a.is-active::after { transform: scaleX(1); }

.nav-dropdown { position: relative; }
.nav-dropdown__menu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(-6px);
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.6rem;
  min-width: 240px;
  max-height: 70vh;
  overflow-y: auto;
  opacity: 0; pointer-events: none;
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.nav-dropdown__menu a { color: var(--color-navy-700); display: block; padding: 0.6rem 0.8rem; border-radius: var(--radius-sm); font-size: var(--fs-sm); white-space: nowrap; }
.nav-dropdown__menu a:hover { background: var(--color-ivory-deep); }
.nav-dropdown__menu a::after { display: none; }

/* Tour Packages has 10 items — use two columns so the menu doesn't run off-screen vertically */
.nav-dropdown__menu--wide {
  min-width: 560px;
  columns: 2;
  column-gap: 0.4rem;
  max-height: none;
  overflow: visible;
}
.nav-dropdown__menu--wide a { white-space: normal; break-inside: avoid; }
@media (max-width: 1200px) {
  .nav-dropdown__menu--wide { min-width: 460px; }
}

.header-actions { display: flex; align-items: center; gap: 0.6rem; }
.header-actions .btn { padding: 0.75rem 1.4rem; box-shadow: none; }
.header-actions .btn--call { background: var(--color-maroon-600); color: #fff; }
.header-actions .btn--call:hover { background: var(--color-maroon-700); }

/* ---------- Language Switcher ---------- */
.lang-switch { position: relative; }
.lang-switch__toggle {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-line-strong);
  color: var(--color-navy-700);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  background: var(--color-white);
  transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.lang-switch__toggle:hover, .lang-switch.is-open .lang-switch__toggle { border-color: var(--color-gold-600); background: var(--color-gold-100); }
.lang-switch__toggle svg:first-child { width: 16px; height: 16px; }
.lang-switch__toggle svg:last-child { width: 12px; height: 12px; transition: transform var(--dur-fast) var(--ease-out); }
.lang-switch.is-open .lang-switch__toggle svg:last-child { transform: rotate(180deg); }

.lang-switch__menu {
  position: absolute; top: calc(100% + 10px); right: 0;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.4rem;
  min-width: 170px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out), visibility var(--dur-base);
  z-index: 10;
}
.lang-switch.is-open .lang-switch__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-switch__menu button {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; text-align: left;
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  color: var(--color-navy-700);
}
.lang-switch__menu button:hover { background: var(--color-ivory-deep); color: var(--color-gold-700); }
.lang-switch__menu button.is-selected { color: var(--color-gold-700); font-weight: var(--fw-semibold); }
.lang-switch__native { font-family: var(--font-devanagari); }
.lang-switch__native--te { font-family: var(--font-telugu); }
.lang-switch__native--ta { font-family: var(--font-tamil); }
.lang-switch__note {
  font-size: var(--fs-2xs); color: var(--color-text-muted);
  padding: 0.5rem 0.8rem 0.3rem; border-top: 1px solid var(--color-line); margin-top: 0.3rem;
  display: none;
}
.lang-switch__note.is-visible { display: block; }

@media (max-width: 1024px) {
  .lang-switch__toggle span:not(.lang-switch__flag) { display: none; } /* keep icon+chevron, hide "English" text */
  .lang-switch__toggle { padding: 0; width: 44px; height: 44px; justify-content: center; border-radius: 50%; }
  .lang-switch__menu { right: -8px; }
}

/* ---------- Mobile menu language list ---------- */
.mobile-menu__langs { padding: var(--space-md) var(--container-pad-x) 0; }
.mobile-menu__langs-title { color: var(--color-gold-400); font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: var(--space-sm); }
.mobile-menu__langs-row { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.mobile-menu__langs-row button {
  padding: 0.6rem 1rem; border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--color-text-on-dark);
  font-size: var(--fs-sm);
}
.mobile-menu__langs-row button.is-selected { background: var(--color-gold-600); color: var(--color-navy-900); border-color: var(--color-gold-600); font-weight: var(--fw-semibold); }
.mobile-menu__langs-row .lang-switch__native { font-family: var(--font-devanagari); }
.mobile-menu__langs-row .lang-switch__native--te { font-family: var(--font-telugu); }
.mobile-menu__langs-row .lang-switch__native--ta { font-family: var(--font-tamil); }

.hamburger { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; }
.hamburger::before, .hamburger::after { display: none; }
.hamburger-icon { width: 26px; height: 20px; position: relative; }
.hamburger-icon span {
  position: absolute; left: 0; width: 100%; height: 2px; background: var(--color-navy-700); border-radius: 2px;
  transition: all var(--dur-base) var(--ease-out);
}
.hamburger-icon span:nth-child(1) { top: 0; }
.hamburger-icon span:nth-child(2) { top: 9px; }
.hamburger-icon span:nth-child(3) { top: 18px; }
.hamburger.is-open .hamburger-icon span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.hamburger.is-open .hamburger-icon span:nth-child(2) { opacity: 0; }
.hamburger.is-open .hamburger-icon span:nth-child(3) { top: 9px; transform: rotate(-45deg); }

@media (max-width: 1024px) {
  .main-nav { display: none; }
  .hamburger { display: inline-flex; }
  .header-actions .btn span.btn-label { display: none; }
  .header-actions .btn {
    padding: 0; width: 44px; height: 44px; min-width: 44px;
    border-radius: 50%; justify-content: center; flex-shrink: 0;
  }
  .site-header__inner { gap: 0.4rem; }
  .header-actions { gap: 0.5rem; }
}
@media (max-width: 480px) {
  .site-logo img { height: 42px; max-width: 128px; }
  .site-header.is-scrolled .site-logo img { height: 38px; }
  .site-header__inner { gap: 0.3rem; }
  .header-actions { gap: 0.35rem; }
}
@media (max-width: 360px) {
  .site-logo img { height: 36px; max-width: 104px; }
  .site-header__inner { gap: 0.25rem; }
  .header-actions { gap: 0.3rem; }
}

/* ---------- Mobile Menu Drawer ---------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: var(--z-mobile-menu);
  background: linear-gradient(160deg, var(--color-navy-800), var(--color-navy-900));
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease-in-out);
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu__top { display: flex; justify-content: space-between; align-items: center; padding: var(--space-md) var(--container-pad-x); }
.mobile-menu__close { width: 44px; height: 44px; color: #fff; font-size: 1.6rem; }
.mobile-menu nav { padding: var(--space-md) var(--container-pad-x); flex: 1; }
.mobile-menu nav ul { display: flex; flex-direction: column; }
.mobile-menu nav a {
  display: block; padding: var(--space-sm) 0;
  font-family: var(--font-display); font-size: var(--fs-xl);
  color: var(--color-text-on-dark);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu__sub { padding-left: var(--space-md); }
.mobile-menu__sub a { font-family: var(--font-body); font-size: var(--fs-base); padding: var(--space-xs) 0; border-bottom: none; opacity: 0.85; }
.mobile-menu__actions { padding: var(--space-md) var(--container-pad-x) var(--space-xl); display: flex; flex-direction: column; gap: var(--space-sm); }

/* ============================================================
   STICKY MOBILE ACTION BAR
   ============================================================ */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: var(--z-sticky-bar);
  height: calc(var(--sticky-bar-h) + env(safe-area-inset-bottom, 0px));
  padding-bottom: env(safe-area-inset-bottom, 0px);
  display: none;
  background: var(--color-white);
  box-shadow: 0 -6px 24px rgba(9,23,40,0.14);
  border-top: 1px solid var(--color-line);
}
.sticky-bar__inner { height: var(--sticky-bar-h); display: grid; grid-template-columns: 1fr 1fr 1fr; }
.sticky-bar a, .sticky-bar button {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.15rem; font-size: var(--fs-2xs); font-weight: var(--fw-semibold);
  color: var(--color-navy-700);
  border-right: 1px solid var(--color-line);
  min-height: 44px;
}
.sticky-bar a:last-child, .sticky-bar button:last-child { border-right: none; }
.sticky-bar svg { width: 20px; height: 20px; }
.sticky-bar a.sticky-bar__whatsapp { color: var(--color-whatsapp-dark); }
.sticky-bar a.sticky-bar__call { color: var(--color-maroon-700); background: var(--color-ivory-deep); }

@media (max-width: 768px) {
  .sticky-bar { display: block; }
  body { padding-bottom: calc(var(--sticky-bar-h) + env(safe-area-inset-bottom, 0px)); }
}

/* ============================================================
   FLOATING CALL + WHATSAPP (stacked pair, desktop)
   Hidden on mobile — the sticky action bar already offers both
   CTAs there, so we avoid showing duplicate controls.
   ============================================================ */
.float-actions {
  position: fixed;
  right: var(--space-md);
  bottom: calc(var(--space-md) + 6px);
  z-index: var(--z-whatsapp);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: center;
}
.call-float,
.whatsapp-float {
  position: relative;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--dur-fast) var(--ease-out);
}
.call-float:hover, .whatsapp-float:hover { transform: scale(1.06); }
.call-float {
  background: var(--color-maroon-600);
  box-shadow: 0 8px 24px rgba(110,28,39,0.4);
}
.call-float svg { width: 24px; height: 24px; color: #fff; }
.whatsapp-float {
  background: var(--color-whatsapp);
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
}
.whatsapp-float svg { width: 26px; height: 26px; color: #fff; }
.whatsapp-float::before {
  content: "";
  position: absolute; inset: 0; border-radius: 50%;
  background: var(--color-whatsapp);
  animation: whatsapp-pulse 2.6s ease-out infinite;
  z-index: -1;
}
@media (max-width: 768px) { .float-actions { display: none; } }
@keyframes whatsapp-pulse {
  0% { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(1.9); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .whatsapp-float::before { animation: none; } }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: linear-gradient(180deg, var(--color-navy-800), var(--color-navy-900));
  color: var(--color-text-on-dark);
  padding-top: var(--space-3xl);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-col__title { font-family: var(--font-display); font-size: var(--fs-md); color: var(--color-gold-300); margin-bottom: var(--space-sm); }
.footer-col p, .footer-col li { font-size: var(--fs-sm); color: rgba(246,239,226,0.75); margin-bottom: 0.6rem; }
.footer-col a:hover { color: var(--color-gold-300); }
.footer-logo {
  display: inline-block;
  background: var(--color-white);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
}
.footer-logo img { display: block; height: 50px; margin-bottom: 0; }
.footer-social { display: flex; gap: 0.6rem; margin-top: var(--space-sm); }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08); transition: background var(--dur-fast) var(--ease-out);
}
.footer-social a:hover { background: var(--color-gold-600); color: var(--color-navy-900); }
.footer-social svg { width: 18px; height: 18px; }

.footer-bottom {
  padding: var(--space-md) 0 var(--space-lg);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--space-sm);
  font-size: var(--fs-2xs); color: rgba(246,239,226,0.6);
}
.footer-bottom__links { display: flex; gap: var(--space-md); }

/* ---------- Accordion Footer (mobile) ---------- */
@media (max-width: 560px) {
  .footer-col:not(.footer-col--brand) .footer-col__title {
    display: flex; justify-content: space-between; align-items: center; cursor: pointer;
  }
  .footer-col:not(.footer-col--brand) .footer-col__title::after { content: "+"; font-size: 1.3rem; }
  .footer-col.is-open .footer-col__title::after { content: "–"; }
  .footer-col:not(.footer-col--brand) ul { display: none; padding-top: var(--space-xs); }
  .footer-col.is-open ul { display: block; }
}
/* ============================================================
   ANIMATION SYSTEM (scroll reveal, driven by IntersectionObserver in JS)
   ============================================================ */

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-reveal) var(--ease-out), transform var(--dur-reveal) var(--ease-out);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

[data-reveal-stagger] > * {
  opacity: 0; transform: translateY(24px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}
[data-reveal-stagger].is-visible > * { opacity: 1; transform: translateY(0); }
[data-reveal-stagger].is-visible > *:nth-child(1) { transition-delay: 0ms; }
[data-reveal-stagger].is-visible > *:nth-child(2) { transition-delay: 80ms; }
[data-reveal-stagger].is-visible > *:nth-child(3) { transition-delay: 160ms; }
[data-reveal-stagger].is-visible > *:nth-child(4) { transition-delay: 240ms; }
[data-reveal-stagger].is-visible > *:nth-child(5) { transition-delay: 320ms; }
[data-reveal-stagger].is-visible > *:nth-child(6) { transition-delay: 400ms; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal-stagger] > * { opacity: 1; transform: none; transition: none; }
}

/* Counter animation targets (JS increments textContent) */
.stat__value { font-family: var(--font-display); font-size: var(--fs-3xl); color: var(--color-gold-400); }
.stat__label { font-size: var(--fs-xs); color: rgba(246,239,226,0.75); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 0.3rem; }

/* ============================================================
   SECTION DIVIDERS (signature element — wave motif echoes fleet livery)
   ============================================================ */
.section-divider { display: block; width: 100%; height: 64px; }
.section-divider--ivory-to-white path { fill: var(--color-white); }
.section-divider--white-to-ivory path { fill: var(--color-ivory); }
.section-divider--maroon path { fill: var(--color-maroon-900); }

.divider-ornament {
  display: flex; align-items: center; justify-content: center; gap: var(--space-sm);
  margin-block: var(--space-lg);
}
.divider-ornament::before, .divider-ornament::after {
  content: ""; flex: 1; max-width: 120px; height: 1px; background: var(--color-line-strong);
}
.divider-ornament svg { width: 22px; height: 22px; color: var(--color-gold-600); }

/* ============================================================
   BADGES / TAGS
   ============================================================ */
.badge {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: var(--fs-2xs); font-weight: var(--fw-semibold);
  padding: 0.35rem 0.8rem; border-radius: var(--radius-pill);
}
.badge--gold { background: var(--color-gold-100); color: var(--color-gold-700); }
.badge--maroon { background: rgba(110,28,39,0.08); color: var(--color-maroon-700); }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-item {
  border-bottom: 1px solid var(--color-line);
}
.faq-item__question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-md);
  padding: var(--space-md) 0;
  text-align: left;
  font-family: var(--font-body); font-weight: var(--fw-semibold); font-size: var(--fs-base);
  color: var(--color-navy-700);
}
.faq-item__icon {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-ivory-deep); color: var(--color-navy-600);
  transition: transform var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out);
}
.faq-item.is-open .faq-item__icon { transform: rotate(45deg); background: var(--color-gold-500); color: #fff; }
.faq-item__answer {
  max-height: 0; overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease-out);
}
.faq-item__answer-inner { padding-bottom: var(--space-md); font-size: var(--fs-sm); color: var(--color-text-muted); line-height: var(--lh-relaxed); }

/* ============================================================
   TIMELINE (Booking Steps)
   ============================================================ */
.timeline { display: flex; gap: var(--space-lg); }
.timeline__step { flex: 1; position: relative; text-align: center; }
.timeline__step::after {
  content: ""; position: absolute; top: 28px; left: calc(50% + 40px); right: calc(-50% + 40px);
  height: 2px; background: var(--color-line-strong);
}
.timeline__step:last-child::after { display: none; }
.timeline__num {
  width: 56px; height: 56px; margin-inline: auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-navy-600), var(--color-navy-800));
  color: var(--color-gold-300);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: var(--fs-md);
  margin-bottom: var(--space-sm);
  position: relative; z-index: 1;
}
.timeline__title { font-weight: var(--fw-semibold); margin-bottom: 0.3rem; }
.timeline__desc { font-size: var(--fs-xs); color: var(--color-text-muted); }

@media (max-width: 768px) {
  .timeline { flex-direction: column; gap: var(--space-lg); text-align: left; }
  .timeline__step { display: flex; gap: var(--space-md); text-align: left; }
  .timeline__num { margin-inline: 0; flex-shrink: 0; }
  .timeline__step::after { display: none; }
}

/* ============================================================
   LIGHTBOX (Gallery)
   ============================================================ */
.lightbox {
  position: fixed; inset: 0; z-index: var(--z-lightbox);
  background: rgba(20, 6, 8, 0.94);
  display: none; align-items: center; justify-content: center;
  padding: var(--space-lg);
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 82vh; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute; color: #fff; width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.1); border-radius: 50%;
}
.lightbox__close { top: var(--space-md); right: var(--space-md); }
.lightbox__prev { left: var(--space-md); top: 50%; transform: translateY(-50%); }
.lightbox__next { right: var(--space-md); top: 50%; transform: translateY(-50%); }

/* ============================================================
   GALLERY PAGE — filter tabs + masonry grid
   ============================================================ */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: var(--space-xl);
}
.gallery-filter {
  padding: 0.65rem 1.3rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--color-line-strong);
  background: var(--color-white);
  color: var(--color-navy-700);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  transition: all var(--dur-fast) var(--ease-out);
  min-height: 44px;
}
.gallery-filter:hover { border-color: var(--color-gold-500); }
.gallery-filter.is-active {
  background: var(--color-navy-700);
  border-color: var(--color-navy-700);
  color: #fff;
}

.masonry-gallery {
  columns: 4;
  column-gap: var(--space-sm);
}
.masonry-item {
  display: block;
  break-inside: avoid;
  margin-bottom: var(--space-sm);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--dur-slow) var(--ease-out);
}
.masonry-item:hover img { transform: scale(1.05); }
.masonry-item.is-hidden { display: none; }

@media (max-width: 1023px) { .masonry-gallery { columns: 3; } }
@media (max-width: 767px) { .masonry-gallery { columns: 2; column-gap: 0.6rem; } .masonry-item { margin-bottom: 0.6rem; } }
@media (max-width: 420px) { .masonry-gallery { columns: 1; } }


.grid { display: grid; gap: var(--space-lg); min-width: 0; }
.grid > * { min-width: 0; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--6 { grid-template-columns: repeat(6, 1fr); }

/* Desktop → Tablet (1024px): 4-col drops to 2-col, 6-col drops to 3-col */
@media (max-width: 1023px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--6 { grid-template-columns: repeat(3, 1fr); }
}
/* Tablet → Mobile (768px): everything collapses to a single column.
   This is the breakpoint that governs Why Choose Us and Fleet Cards. */
@media (max-width: 767px) {
  .grid--2, .grid--3, .grid--4, .grid--6 { grid-template-columns: 1fr; }
  .grid { gap: var(--space-md); }
}

.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.text-center { text-align: center; }

/* ---------- Horizontal snap scroller (tablet/mobile carousels) ---------- */
.scroller {
  display: flex; gap: var(--space-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: var(--space-sm);
  -ms-overflow-style: none; scrollbar-width: none;
}
.scroller::-webkit-scrollbar { display: none; }
.scroller > * { scroll-snap-align: start; flex-shrink: 0; }

/* ---------- Glass panel (used once — quick enquiry card over hero) ---------- */
.glass-panel {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
/* ============================================================
   HERO — full-width brand banner (client-supplied artwork).
   No overlay, no text, no crop — image is shown complete.
   ============================================================ */
.hero-banner {
  display: block;
  width: 100%;
  overflow: hidden;
  background: var(--color-ivory);
  line-height: 0; /* removes inline-image baseline gap */
}
.hero-banner img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ---------- Page headline strip (real H1, sits right below the hero) ---------- */
.hero-intro {
  padding-top: 22px;
  padding-bottom: 4px;
}
.hero-intro h1 {
  font-size: clamp(1.5rem, 3.2vw, var(--fs-2xl));
  text-wrap: balance;
  max-width: 26ch;
}
.hero-intro p {
  margin-top: 0.5rem;
  font-size: var(--fs-base);
  max-width: 68ch;
}
@media (max-width: 640px) {
  .hero-intro { padding-top: 20px; }
}

/* ============================================================
   HORIZONTAL QUICK QUOTE FORM — separate section below hero
   ============================================================ */
.quick-quote { padding-block: 20px var(--space-2xl); }
.quick-quote__wrap {
  width: min(100%, 1280px);
  margin-inline: auto;
  position: relative;
  padding-inline: var(--container-pad-x);
  box-sizing: border-box;
}
.quick-quote__card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--color-gold-600);
  padding: var(--space-lg) var(--space-xl);
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
}
.quick-quote__head { text-align: center; margin-bottom: var(--space-lg); }
.quick-quote__head h2 { font-size: var(--fs-xl); color: var(--color-navy-700); text-wrap: balance; }
.quick-quote__head p { font-size: var(--fs-sm); margin-top: 0.3rem; }

/* Desktop: a clean 4-column x 2-row grid (Pickup/Destination/Date/Passengers,
   then Bus Type/Name/Mobile/Button) — spacious enough for full placeholder
   text and labels to actually be readable, unlike a cramped 8-in-a-row layout. */
.quick-quote__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem 1.25rem;
  width: 100%;
  min-width: 0;
}
.quick-quote__grid .form-field { margin-bottom: 0; min-width: 0; }
.quick-quote__grid .form-field input,
.quick-quote__grid .form-field select { width: 100%; min-width: 0; box-sizing: border-box; padding: 0.85rem 1rem; }
.quick-quote__grid .btn {
  height: 52px; min-height: 44px; white-space: nowrap; width: 100%; box-sizing: border-box;
  align-self: end;
}

/* Tablet: 768–1023px — two columns, four rows */
@media (max-width: 1023px) {
  .quick-quote__grid { grid-template-columns: repeat(2, 1fr); }
  .quick-quote__grid .btn { grid-column: 1 / -1; }
}
/* Mobile: below 768px — single consistent column, one field per row */
@media (max-width: 767px) {
  .quick-quote__wrap { padding-inline: 16px; }
  .quick-quote__card { padding: 20px; border-radius: var(--radius-md); }
  .quick-quote__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .quick-quote__grid .form-field,
  .quick-quote__grid input,
  .quick-quote__grid select,
  .quick-quote__grid button {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .quick-quote__grid .btn { grid-column: auto; }
}

/* ============================================================
   TRUST BAR — single line on desktop, never wraps mid-phrase
   ============================================================ */
.trust-bar {
  background: linear-gradient(120deg, var(--color-navy-700), var(--color-navy-900));
  padding-block: var(--space-md);
}
.trust-bar__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 2vw, 1.75rem);
  flex-wrap: wrap;
  row-gap: 0.75rem;
}
.trust-bar__item {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  white-space: nowrap;
  color: rgba(241,244,248,0.92);
  font-size: clamp(0.75rem, 1vw, var(--fs-sm));
  font-weight: var(--fw-medium);
}
.trust-bar__item strong {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  color: var(--color-gold-400);
  font-size: clamp(1rem, 1.3vw, var(--fs-lg));
}
.trust-bar__divider { width: 1px; height: 18px; background: rgba(241,244,248,0.22); flex-shrink: 0; }

@media (max-width: 860px) {
  .trust-bar__divider { display: none; }
  .trust-bar__item { white-space: normal; }
}

/* ============================================================
   WHY CHOOSE US
   Column count fully governed by the shared .grid--4 utility
   (4 cols desktop → 2 cols ≤1023px → 1 col ≤767px). No
   standalone rule here — a redundant one previously overrode
   the mobile 1-column collapse since it applied at every width.
   ============================================================ */

/* ============================================================
   WHO WE SERVE
   ============================================================ */
.who-serve__grid {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1023px) {
  .who-serve__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .who-serve__grid { grid-template-columns: 1fr; gap: var(--space-sm); }
  .segment-card { min-height: 132px; padding: var(--space-md); }
}

/* ============================================================
   AMENITIES
   ============================================================ */
.amenities__grid { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 900px) { .amenities__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .amenities__grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   LANGUAGE / MULTILINGUAL BADGES (South Indian Tourists section)
   ============================================================ */
.lang-block { display: grid; grid-template-columns: 1fr 0.85fr; gap: var(--space-2xl); align-items: center; }
.lang-block__media { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.lang-block__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.lang-badges { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: var(--space-md); }
.lang-badge {
  display: flex; align-items: baseline; gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  background: var(--color-white);
  border: 1px solid var(--color-line-strong);
  font-size: var(--fs-sm);
}
.lang-badge__native { font-family: var(--font-devanagari); font-weight: var(--fw-semibold); color: var(--color-gold-700); }
.lang-badge__native--te { font-family: var(--font-telugu); }
.lang-badge__native--ta { font-family: var(--font-tamil); }
.lang-badge__label { font-size: var(--fs-xs); color: var(--color-text-muted); }
@media (max-width: 900px) { .lang-block { grid-template-columns: 1fr; } }

/* ============================================================
   ABOUT (homepage summary block)
   ============================================================ */
.about-block { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--space-2xl); align-items: center; }
.about-block__media { position: relative; }
.about-block__media img { border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }
.about-block__media-tag {
  position: absolute; bottom: -22px; left: -22px;
  background: var(--color-white); border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  padding: var(--space-md) var(--space-lg);
}
.about-block__media-tag .stat__value { color: var(--color-navy-700); font-size: var(--fs-2xl); }
.about-block__media-tag .stat__label { color: var(--color-text-muted); }
.about-block__list { margin-top: var(--space-md); display: flex; flex-direction: column; gap: 0.7rem; }
.about-block__list li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: var(--fs-sm); color: var(--color-text); }
.about-block__list svg { width: 20px; height: 20px; color: var(--color-gold-600); flex-shrink: 0; margin-top: 2px; }

.benefit-list { margin-top: var(--space-md); display: flex; flex-direction: column; gap: 0.6rem; }
.benefit-list li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: var(--fs-sm); color: var(--color-text); }
.benefit-list svg { width: 18px; height: 18px; color: var(--color-whatsapp-dark); flex-shrink: 0; margin-top: 2px; }

@media (max-width: 900px) {
  .about-block { grid-template-columns: 1fr; }
  .about-block__media-tag { position: static; margin-top: -40px; margin-inline: var(--space-md); }
}

/* ============================================================
   FLEET GROWTH (ceremony photos, trust block)
   ============================================================ */
.growth-block { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2xl); align-items: center; }
.growth-block__media { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-sm); }
.growth-block__media img:first-child { grid-row: span 2; height: 100%; object-fit: cover; border-radius: var(--radius-lg); }
.growth-block__media img:last-child { border-radius: var(--radius-lg); object-fit: cover; height: 100%; }
@media (max-width: 900px) { .growth-block { grid-template-columns: 1fr; } }

/* ============================================================
   GALLERY GRID
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: var(--space-sm);
}
.gallery-grid__item { border-radius: var(--radius-md); overflow: hidden; cursor: pointer; position: relative; }
.gallery-grid__item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); }
.gallery-grid__item:hover img { transform: scale(1.08); }
.gallery-grid__item--tall { grid-row: span 2; }
.gallery-grid__item--wide { grid-column: span 2; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 140px; } }
@media (max-width: 560px) {
  .gallery-grid { display: flex; overflow-x: auto; grid-auto-rows: unset; }
  .gallery-grid__item { min-width: 220px; height: 220px; }
  .gallery-grid__item--tall, .gallery-grid__item--wide { grid-row: unset; grid-column: unset; min-width: 220px; }
}

/* ============================================================
   VIDEO TESTIMONIALS (placeholder-ready)
   ============================================================ */
.video-testi__grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .video-testi__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .video-testi__grid { grid-template-columns: 1fr; max-width: 280px; margin-inline: auto; } }
.video-testi__card { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 9/16; background: var(--color-navy-800); display: flex; align-items: center; justify-content: center; }
.video-testi__play {
  width: 64px; height: 64px; border-radius: 50%; background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.5); display: flex; align-items: center; justify-content: center; color: #fff;
}

/* ============================================================
   GOOGLE REVIEWS
   ============================================================ */
.reviews-summary {
  display: flex; align-items: center; gap: var(--space-lg);
  background: var(--color-white); border-radius: var(--radius-lg); padding: var(--space-lg);
  box-shadow: var(--shadow-sm); margin-bottom: var(--space-lg);
}
.reviews-summary__score { font-family: var(--font-display); font-size: var(--fs-4xl); color: var(--color-navy-700); }
.reviews-summary__stars svg { width: 20px; height: 20px; color: var(--color-gold-500); }
.reviews-summary__count { font-size: var(--fs-xs); color: var(--color-text-muted); }

/* ============================================================
   FINAL CTA BAND
   ============================================================ */
.final-cta {
  background: linear-gradient(120deg, var(--color-navy-700), var(--color-navy-900));
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(201,162,39,0.18), transparent 45%);
}
.final-cta h2 { color: #fff; }
.final-cta p { color: rgba(255,255,255,0.82); max-width: 52ch; margin-inline: auto; }
.final-cta .btn-group { justify-content: center; margin-top: var(--space-lg); }

/* ============================================================
   SOCIAL MEDIA (placeholder-ready)
   ============================================================ */
.social-grid { grid-template-columns: repeat(4, 1fr); }
.social-grid .reserved-card { aspect-ratio: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-block { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--space-2xl); }
.contact-info-card { background: var(--color-white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); overflow: hidden; }
.contact-info-card img { aspect-ratio: 16/10; object-fit: cover; }
.contact-info-card__body { padding: var(--space-lg); }
.contact-info-row { display: flex; gap: 0.8rem; margin-bottom: var(--space-sm); font-size: var(--fs-sm); }
.contact-info-row svg { width: 20px; height: 20px; color: var(--color-navy-600); flex-shrink: 0; }
.contact-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); height: 100%; min-height: 320px; }
.contact-map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }
@media (max-width: 900px) { .contact-block { grid-template-columns: 1fr; } }

/* ---------- Contact page: quick action cards ---------- */
.contact-quick-card {
  padding: var(--space-lg);
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
}
.contact-quick-card__icon {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.contact-quick-card__icon svg { width: 24px; height: 24px; }
.contact-quick-card h3 { font-family: var(--font-body); font-size: var(--fs-md); color: var(--color-navy-700); }
.contact-quick-card p { font-size: var(--fs-sm); line-height: var(--lh-normal); }

/* ---------- Contact page: form + office info layout ---------- */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-2xl);
  align-items: start;
}
.contact-form-card { padding: var(--space-xl); }
.contact-form-card h2 { font-size: var(--fs-xl); }
@media (max-width: 900px) {
  .contact-page-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .contact-form-card { padding: var(--space-lg); }
}
