/* ==========================================================================
   ROYAL INDIA JOURNEYS - OFFICIAL LUXURY THEME
   Brand Palette: Royal Plum, Luxury Gold, Warm Ivory, Soft Cream, Light Gold
   Typography: Playfair Display / Cormorant Garamond display serif, Outfit / Inter sans
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,600;0,700;1,600;1,700&family=Inter:wght@400;500;600;700&family=Outfit:wght@500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600;1,700&display=swap');

:root {
  /* 1. Official Core Royal Theme Palette */
  --royal-plum: #1b0b1f;
  --royal-plum-light: #2a122d;
  --royal-plum-soft: #3a1c3e;

  --luxury-gold: #e2b94f;
  --luxury-gold-light: #f1d77a;
  --luxury-gold-dark: #b88a28;

  --warm-ivory: #fffaf0;
  --soft-cream: #f7f0e2;
  --light-gold-bg: #fbf5e8;
  --pure-white: #ffffff;

  --heading-dark: #211824;
  --body-text: #625968;
  --muted-text: #817786;
  --border-warm: #e7dcc7;

  --whatsapp-green: #25d366;
  --error-red: #c53935;

  /* 2. Theme Aliases for Full Compatibility */
  --color-primary: var(--royal-plum);
  --color-primary-dark: #120615;
  --color-primary-light: var(--royal-plum-light);
  --color-primary-soft: var(--royal-plum-soft);
  --color-primary-subtle: #fbf5e8;

  --color-secondary: var(--luxury-gold);
  --color-secondary-hover: var(--luxury-gold-dark);
  --color-accent: var(--luxury-gold);
  --color-accent-hover: var(--luxury-gold-dark);
  --color-accent-light: var(--light-gold-bg);

  --color-ivory: var(--warm-ivory);
  --color-sand: var(--soft-cream);
  --color-light: var(--light-gold-bg);
  --color-white: var(--pure-white);

  --color-heading: var(--heading-dark);
  --color-text: var(--body-text);
  --color-text-main: var(--heading-dark);
  --color-text-muted: var(--muted-text);
  --color-text-light: #988f9d;

  --color-border: var(--border-warm);
  --color-border-light: #f1ebdE;

  --color-whatsapp: var(--whatsapp-green);
  --color-whatsapp-dark: #1ea952;
  --color-call: var(--royal-plum);

  /* Background Contexts */
  --color-bg: var(--pure-white);
  --color-bg-alt: var(--soft-cream);
  --color-bg-warm: var(--warm-ivory);

  /* Typography */
  --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-heading: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Elevation Shadows */
  --shadow-sm: 0 2px 4px 0 rgba(27, 11, 31, 0.04);
  --shadow-md: 0 4px 10px -1px rgba(27, 11, 31, 0.07), 0 2px 4px -2px rgba(27, 11, 31, 0.04);
  --shadow-lg: 0 10px 22px -3px rgba(27, 11, 31, 0.1), 0 4px 8px -4px rgba(27, 11, 31, 0.05);
  --shadow-xl: 0 20px 32px -5px rgba(27, 11, 31, 0.14), 0 8px 14px -6px rgba(27, 11, 31, 0.06);

  /* Transitions */
  --transition-fast: 0.18s ease-in-out;
  --transition-normal: 0.28s ease-in-out;
  --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-pill: 9999px;

  /* Header Height */
  --header-height: 80px;
}

/* Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
  background: var(--color-bg);
  color: var(--color-text);
}

/* Skip link for accessibility */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--luxury-gold);
  color: var(--royal-plum);
  padding: 0.5rem 1rem;
  z-index: 9999;
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-decoration: none;
  transition: top var(--transition-fast);
}
.skip-to-content:focus {
  top: 1rem;
}

/* Typography Standards */
h1, h2, h3, h4, h5, h6 {
  color: var(--color-heading);
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: -0.015em;
}

h1, h2 {
  font-family: var(--font-display);
  font-weight: 700;
}

h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

h1 { font-size: clamp(2.2rem, 4vw + 0.5rem, 3.4rem); }
h2 { font-size: clamp(1.75rem, 2.7vw + 0.5rem, 2.45rem); }
h3 { font-size: clamp(1.2rem, 1.8vw + 0.2rem, 1.5rem); }
h4 { font-size: 1.15rem; }
h5 { font-size: 1.05rem; }
h6 { font-size: 0.95rem; }

p {
  margin-bottom: 1rem;
  color: var(--color-text);
  line-height: 1.65;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--luxury-gold-dark);
  text-decoration: none;
  transition: color var(--transition-fast), transform var(--transition-fast);
}
a:hover {
  color: var(--luxury-gold);
}

:focus-visible {
  outline: 3px solid var(--luxury-gold);
  outline-offset: 3px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style-position: inside;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: min(100% - 40px, 1240px);
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

.container-narrow {
  max-width: 960px;
}

.section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section-sm {
  padding-top: 2.75rem;
  padding-bottom: 2.75rem;
}

/* Alternating Section Backgrounds */
.section-bg-ivory,
.section-bg-warm {
  background-color: var(--warm-ivory);
}

.section-bg-white {
  background-color: var(--pure-white);
}

.section-bg-cream,
.section-bg-alt {
  background-color: var(--soft-cream);
}

.section-bg-gold {
  background-color: var(--light-gold-bg);
}

.section-bg-dark,
.section-bg-plum {
  background-color: var(--royal-plum);
  color: var(--warm-ivory);
  position: relative;
}
.section-bg-dark h1,
.section-bg-dark h2,
.section-bg-dark h3,
.section-bg-dark h4,
.section-bg-plum h1,
.section-bg-plum h2,
.section-bg-plum h3,
.section-bg-plum h4 {
  color: var(--warm-ivory);
}
.section-bg-dark p,
.section-bg-plum p {
  color: var(--soft-cream);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.section-header {
  margin-bottom: 2.75rem;
  max-width: 760px;
}
.section-header.text-center {
  margin-left: auto;
  margin-right: auto;
}
.section-header h2 {
  margin-bottom: 0.75rem;
  color: var(--color-heading);
}
.section-header p {
  font-size: 1.05rem;
  color: var(--color-text);
  line-height: 1.6;
}

.grid {
  display: grid;
  gap: 1.75rem;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ==========================================================================
   BUTTON SYSTEM
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-md);
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-normal);
  white-space: nowrap;
  line-height: 1.3;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn:active {
  transform: translateY(0);
}
.btn:hover svg {
  transform: translateX(3px);
}
.btn svg {
  transition: transform var(--transition-fast);
}

/* Primary Gold Button */
.btn-primary {
  color: var(--royal-plum);
  background: linear-gradient(135deg, var(--luxury-gold-light), var(--luxury-gold));
  border-color: var(--luxury-gold);
  box-shadow: 0 4px 14px rgba(226, 185, 79, 0.32);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--luxury-gold), var(--luxury-gold-dark));
  border-color: var(--luxury-gold-dark);
  color: var(--royal-plum);
  box-shadow: 0 6px 18px rgba(226, 185, 79, 0.42);
}

/* Secondary Plum Button */
.btn-secondary {
  color: var(--warm-ivory);
  background-color: var(--royal-plum);
  border: 1px solid var(--luxury-gold-dark);
}
.btn-secondary:hover {
  background-color: var(--royal-plum-light);
  border-color: var(--luxury-gold);
  color: var(--luxury-gold-light);
}

/* Accent Button */
.btn-accent {
  color: var(--royal-plum);
  background: linear-gradient(135deg, var(--luxury-gold-light), var(--luxury-gold));
  border-color: var(--luxury-gold);
}
.btn-accent:hover {
  background: linear-gradient(135deg, var(--luxury-gold), var(--luxury-gold-dark));
  color: var(--royal-plum);
}

/* Outline Button */
.btn-outline {
  background-color: transparent;
  color: var(--royal-plum);
  border: 1.5px solid var(--luxury-gold);
}
.btn-outline:hover {
  background-color: var(--light-gold-bg);
  border-color: var(--luxury-gold-dark);
  color: var(--royal-plum);
}

/* Outline White Button */
.btn-outline-white {
  background-color: rgba(255, 250, 240, 0.1);
  color: var(--warm-ivory);
  border: 1.5px solid var(--luxury-gold);
  backdrop-filter: blur(4px);
}
.btn-outline-white:hover {
  background-color: var(--luxury-gold);
  color: var(--royal-plum);
  border-color: var(--luxury-gold);
}

/* WhatsApp Button */
.btn-whatsapp {
  background-color: var(--whatsapp-green);
  color: #ffffff;
  border-color: var(--whatsapp-green);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}
.btn-whatsapp:hover {
  background-color: #1ea952;
  border-color: #1ea952;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

/* Call Button */
.btn-call {
  background-color: var(--royal-plum);
  color: var(--luxury-gold-light);
  border: 1px solid var(--luxury-gold-dark);
}
.btn-call:hover {
  background-color: var(--royal-plum-light);
  color: #ffffff;
  border-color: var(--luxury-gold);
}

.btn-sm {
  padding: 0.45rem 0.95rem;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 0.85rem 1.75rem;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-block {
  display: flex;
  width: 100%;
}

/* Back to Home Button (Inner Pages) */
.back-home-wrap {
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
}
.back-home-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  height: 40px;
  padding: 0 1rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--pure-white);
  background: var(--royal-plum);
  border: 1px solid var(--luxury-gold);
  border-radius: var(--radius-md);
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: all var(--transition-normal);
}
.back-home-btn:hover {
  background: var(--luxury-gold);
  color: var(--royal-plum);
  border-color: var(--luxury-gold);
  box-shadow: var(--shadow-md);
}
.back-home-btn svg {
  transition: transform var(--transition-fast);
}
.back-home-btn:hover svg {
  transform: translateX(-3px);
}

.global-back-home-wrap {
  padding: .8rem 0;
  border-bottom: 1px solid var(--border-warm);
  background: var(--pure-white);
}

.global-back-home-wrap .back-home-btn { margin: 0; }

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: var(--royal-plum);
  border-bottom: 1px solid rgba(226, 185, 79, 0.22);
  box-shadow: 0 4px 20px rgba(10, 3, 12, 0.4);
}

.header-inner {
  width: min(100% - 32px, 1240px);
  min-width: 0;
  min-height: 108px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

/* Brand Link and Logo Image */
.brand {
  min-width: 0;
  flex: 0 1 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--warm-ivory);
  text-decoration: none;
}

.official-brand-logo {
  content: url('assets/img/royal-india-logo.png');
  width: clamp(170px, 15vw, 220px);
  height: 96px;
  max-width: none;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform var(--transition-fast);
}
.brand:hover .official-brand-logo {
  transform: scale(1.02);
}

.official-brand-logo-footer {
  height: clamp(52px, 4.5vw, 66px);
  width: auto;
  max-width: 260px;
  object-fit: contain;
  display: block;
}

/* Legacy fallback classes hidden if present */
.brand-mark, .brand-copy {
  display: none !important;
}

/* Desktop Navigation */
.desktop-navigation {
  min-width: 0;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.25vw, 22px);
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: clamp(10px, 1.2vw, 18px);
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--warm-ivory);
  text-decoration: none;
  padding: 0.5rem 0.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  position: relative;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--luxury-gold);
  border-radius: 2px;
  transition: width 0.25s ease;
}
.nav-link:hover {
  color: var(--luxury-gold-light);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.nav-link.active {
  color: var(--luxury-gold);
}

.dropdown-arrow {
  width: 13px;
  height: 13px;
  color: var(--luxury-gold);
  transition: transform 0.2s ease;
}
.nav-item:hover .dropdown-arrow,
.nav-item:focus-within .dropdown-arrow {
  transform: rotate(180deg);
}

/* Desktop Dropdowns & Mega Menus */
.has-dropdown {
  position: relative;
}
.has-dropdown::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 14px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--warm-ivory);
  min-width: 260px;
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(18, 5, 22, 0.24);
  border: 1px solid var(--border-warm);
  padding: 0.85rem;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 1100;
}

.dropdown-menu.mega-menu {
  width: 540px;
  max-width: min(540px, calc(100vw - 40px));
  padding: 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.dropdown-col-title {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--royal-plum);
  padding-bottom: 0.45rem;
  margin-bottom: 0.45rem;
  border-bottom: 1px solid var(--border-warm);
}

.dropdown-col-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
}

.has-dropdown:hover > .dropdown-menu,
.has-dropdown:focus-within > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu.dropdown-right {
  left: auto;
  right: 0;
}

.dropdown-item {
  margin-bottom: 0.15rem;
}
.dropdown-item:last-child {
  margin-bottom: 0;
}

.dropdown-link {
  display: flex;
  align-items: center;
  padding: 0.45rem 0.65rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--body-text);
  text-decoration: none;
  border-radius: 6px;
  border-left: 2px solid transparent;
  transition: all 0.2s ease;
}
.dropdown-link:hover {
  background-color: var(--light-gold-bg);
  color: var(--royal-plum);
  border-left-color: var(--luxury-gold);
  padding-left: 0.85rem;
}

/* Desktop Header Get Quote CTA */
.desktop-quote-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  background: linear-gradient(135deg, var(--luxury-gold-light), var(--luxury-gold));
  color: var(--royal-plum);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(226, 185, 79, 0.35);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.desktop-quote-cta:hover {
  background: linear-gradient(135deg, var(--luxury-gold), var(--luxury-gold-dark));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(226, 185, 79, 0.48);
  color: var(--royal-plum);
}

/* Mobile Hamburger Button */
.mobile-menu-button {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 10px;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(226, 185, 79, 0.5);
  border-radius: 10px;
  background: var(--royal-plum-light);
  cursor: pointer;
}

.mobile-menu-button span {
  width: 100%;
  height: 2px;
  display: block;
  border-radius: 2px;
  background: var(--luxury-gold);
}

/* Mobile Drawer Overlay & Container */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 5, 18, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1190;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 280ms ease, visibility 280ms ease;
}

.mobile-menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-navigation {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1200;
  width: min(360px, 90vw);
  height: 100dvh;
  overflow-y: auto;
  background: var(--royal-plum);
  transform: translateX(105%);
  transition: transform 280ms ease;
  box-shadow: -8px 0 28px rgba(10, 3, 12, 0.45);
  display: flex;
  flex-direction: column;
}

.mobile-navigation.is-open {
  transform: translateX(0);
}

.mobile-menu-header {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(226, 185, 79, 0.2);
  background: var(--royal-plum-dark);
}

.mobile-menu-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--luxury-gold);
}

.mobile-menu-close {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--royal-plum-light);
  border: 1px solid rgba(226, 185, 79, 0.4);
  border-radius: 8px;
  font-size: 24px;
  line-height: 1;
  color: var(--luxury-gold);
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-menu-close:hover {
  background: var(--royal-plum-soft);
  color: #ffffff;
  border-color: var(--luxury-gold-light);
}

.mobile-menu-links {
  flex: 1;
  padding: 16px 20px;
  overflow-y: auto;
}

.mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-menu-item {
  border-bottom: 1px solid rgba(226, 185, 79, 0.15);
  padding-bottom: 6px;
}

.mobile-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 8px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--warm-ivory);
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.mobile-menu-link:hover {
  color: var(--luxury-gold-light);
  background: rgba(226, 185, 79, 0.1);
  padding-left: 12px;
}

.mobile-menu-link.highlight {
  color: var(--luxury-gold);
  font-weight: 700;
}

.mobile-menu-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-submenu-toggle {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--royal-plum-light);
  border: 1px solid rgba(226, 185, 79, 0.35);
  border-radius: 6px;
  cursor: pointer;
  color: var(--luxury-gold);
  transition: all 0.2s ease;
}

.mobile-submenu-toggle svg {
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
}

.mobile-submenu-toggle.is-open svg {
  transform: rotate(180deg);
}

.mobile-submenu {
  list-style: none;
  margin: 4px 0 8px 12px;
  padding: 6px 0 6px 12px;
  border-left: 2px solid rgba(226, 185, 79, 0.3);
  display: none;
  flex-direction: column;
  gap: 4px;
}

.mobile-submenu.is-open {
  display: flex;
}

.mobile-submenu-link {
  display: block;
  padding: 6px 8px;
  font-size: 0.92rem;
  font-weight: 500;
  color: #e2d8e6;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.mobile-submenu-link:hover {
  color: var(--luxury-gold-light);
  background: rgba(226, 185, 79, 0.12);
  padding-left: 12px;
}

.mobile-menu-actions {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(226, 185, 79, 0.2);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ==========================================================================
   HOMEPAGE HERO SLIDER
   ========================================================================== */

.hero-slider-section {
  position: relative;
  background: var(--royal-plum);
  color: #ffffff;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  min-height: 600px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(27, 11, 31, 0.94) 0%, rgba(27, 11, 31, 0.82) 58%, rgba(27, 11, 31, 0.5) 100%);
}

.hero-vehicle {
  position: absolute;
  right: clamp(30px, 4vw, 76px);
  bottom: 38px;
  z-index: 2;
  width: min(46vw, 650px);
  height: auto;
  max-height: 72%;
  object-fit: contain;
  object-position: right bottom;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 22px 24px rgba(0, 0, 0, 0.38));
  transform: translateX(24px) scale(0.96);
  opacity: 0;
  transition: opacity 0.7s ease 0.2s, transform 0.8s ease 0.2s;
}

.hero-slide.active .hero-vehicle {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 740px;
  margin-inline: auto;
  padding-top: 3.5rem;
  padding-bottom: 5.5rem;
  text-align: center;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.4vw, 62px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--warm-ivory);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
  max-width: 720px;
}
.hero-title .highlight {
  color: var(--luxury-gold);
  font-style: italic;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.3vw, 1.22rem);
  line-height: 1.6;
  color: var(--soft-cream);
  margin-bottom: 2rem;
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Slider Controls */
.hero-slider-nav {
  position: absolute;
  bottom: 26px;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  pointer-events: auto;
}
.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 250, 240, 0.4);
  border: 1px solid rgba(255, 250, 240, 0.7);
  cursor: pointer;
  padding: 0;
  transition: all var(--transition-normal);
}
.slider-dot:hover {
  background: var(--warm-ivory);
}
.slider-dot.active {
  width: 32px;
  background: var(--luxury-gold);
  border-color: var(--luxury-gold);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(27, 11, 31, 0.85);
  border: 1px solid rgba(226, 185, 79, 0.5);
  color: var(--luxury-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-normal);
  pointer-events: auto;
  backdrop-filter: blur(4px);
}
.slider-arrow:hover {
  background: var(--luxury-gold);
  border-color: var(--luxury-gold);
  color: var(--royal-plum);
  transform: translateY(-50%) scale(1.08);
}
.slider-prev { left: 24px; }
.slider-next { right: 24px; }

/* ==========================================================================
   BOOKING ENQUIRY PANEL
   ========================================================================== */

.booking-bar-wrapper {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 20;
}

.booking-card {
  background: var(--pure-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1.5px solid var(--border-warm);
  padding: 2.25rem;
}

.booking-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-warm);
}
.booking-card-title {
  font-size: 1.35rem;
  color: var(--heading-dark);
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.booking-card-title svg {
  color: var(--luxury-gold);
}

.booking-form-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.form-group.span-2 {
  grid-column: span 2;
}

.form-label {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--heading-dark);
}
.form-label .req {
  color: var(--error-red);
}

.form-control {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--heading-dark);
  background: var(--pure-white);
  border: 1.5px solid var(--border-warm);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.form-control:focus {
  border-color: var(--luxury-gold);
  box-shadow: 0 0 0 3px rgba(226, 185, 79, 0.2);
}

.booking-submit-area {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-warm);
}
.booking-note {
  font-size: 0.88rem;
  color: var(--body-text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ==========================================================================
   FLEET SECTION & CARDS
   ========================================================================== */

.fleet-filter-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 1.25rem;
}

.filter-toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.filter-btn,
.fleet-filter-btn {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius-pill);
  background: var(--pure-white);
  border: 1.5px solid var(--border-warm);
  color: var(--heading-dark);
  cursor: pointer;
  transition: all var(--transition-normal);
  white-space: nowrap;
}
.filter-btn:hover,
.fleet-filter-btn:hover {
  border-color: var(--luxury-gold);
  color: var(--royal-plum);
  background: var(--light-gold-bg);
}
.filter-btn.active,
.fleet-filter-btn.active {
  background: var(--royal-plum);
  border-color: var(--luxury-gold);
  color: var(--luxury-gold-light);
  box-shadow: 0 4px 12px rgba(27, 11, 31, 0.25);
}

.fleet-result-count {
  text-align: center;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted-text);
  margin-bottom: 1.75rem;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.85rem;
}

.fleet-card {
  background: var(--pure-white);
  border-radius: 18px;
  border: 1.5px solid var(--border-warm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
  cursor: pointer;
}
.fleet-img-wrap { display: block; }
.fleet-name a { color: inherit; }
.fleet-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--luxury-gold);
}

.fleet-img-wrap {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: var(--soft-cream);
}
.fleet-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}
.fleet-card:hover .fleet-img-wrap img {
  transform: scale(1.04);
}

.fleet-driver-tag {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(27, 11, 31, 0.92);
  color: var(--warm-ivory);
  border: 1px solid rgba(226, 185, 79, 0.4);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.38rem 0.65rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.fleet-body {
  padding: 1.3rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.fleet-header {
  margin-bottom: 1rem;
}
.fleet-name {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  line-height: 1.25;
  color: var(--heading-dark);
  margin-bottom: 0.45rem;
  font-weight: 700;
}
.fleet-category {
  display: inline-flex;
  width: fit-content;
  font-size: 0.75rem;
  color: var(--luxury-gold-dark);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: var(--light-gold-bg);
}

.fleet-specs {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  background: #fffdf8;
  border: 1px solid var(--border-warm);
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-md);
  margin-bottom: 0.9rem;
}
.spec-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
  padding: 0.55rem 0;
  text-align: left;
  border-bottom: 1px solid rgba(190,153,58,.17);
}
.spec-item:last-child { border-bottom: 0; }
.spec-label {
  flex: 0 0 auto;
  font-size: 0.7rem;
  color: var(--muted-text);
  text-transform: none;
  font-weight: 700;
  letter-spacing: 0;
}
.spec-val {
  min-width: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--heading-dark);
  line-height: 1.35;
  text-align: right;
  overflow-wrap: anywhere;
}

.fleet-ideal {
  font-size: 0.84rem;
  color: var(--body-text);
  margin-bottom: 0.9rem;
  padding: 0.8rem 0.85rem;
  line-height: 1.55;
  border-radius: var(--radius-md);
  background: #f8f6f1;
  flex: 1;
}
.fleet-ideal strong { color: var(--royal-plum); font-weight: 700; }

.fleet-pricing-note {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--luxury-gold-dark);
  margin-bottom: 1.15rem;
  padding-top: 0.5rem;
  border-top: 1px dashed var(--border-warm);
}

.fleet-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  width: 100%;
}
.fleet-btn-details {
  min-width: 0;
}
.fleet-btn-quote {
  min-width: 0;
}

/* ==========================================================================
   SERVICES SECTION & CARDS
   ========================================================================== */

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.85rem;
}

.service-card {
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border-warm);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--luxury-gold);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--light-gold-bg);
  color: var(--royal-plum);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border: 1px solid var(--border-warm);
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}
.service-card:hover .service-icon {
  background: var(--royal-plum);
  color: var(--luxury-gold-light);
  border-color: var(--luxury-gold);
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 0.65rem;
  color: var(--heading-dark);
}
.service-desc {
  font-size: 0.92rem;
  color: var(--body-text);
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex: 1;
}

.service-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--royal-plum);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.service-link:hover {
  color: var(--luxury-gold-dark);
}
.service-link:hover svg {
  transform: translateX(4px);
}
.service-link svg {
  transition: transform var(--transition-fast);
}

/* ==========================================================================
   TOUR PACKAGES SECTION & CARDS
   ========================================================================== */

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.85rem;
}

.section-eyebrow {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: var(--luxury-gold-dark);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tour-category-tabs {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  margin: -0.25rem 0 2rem;
  padding: 0.25rem 0 0.65rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
}

.tour-category-tabs::-webkit-scrollbar {
  display: none;
}

.tour-tab {
  flex: 0 0 auto;
  padding: 0.65rem 1rem;
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-pill);
  background: var(--pure-white);
  color: var(--heading-dark);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
}

.tour-tab:hover,
.tour-tab.active {
  border-color: var(--luxury-gold);
  background: var(--royal-plum);
  color: var(--warm-ivory);
}

#homepage-fleet-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.package-card {
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border-warm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
  cursor: pointer;
}
.package-card:focus-visible {
  outline: 3px solid var(--luxury-gold);
  outline-offset: 4px;
}
.package-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--luxury-gold);
}

.package-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.package-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}
.package-card:hover .package-img-wrap img {
  transform: scale(1.04);
}

.package-duration {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(27, 11, 31, 0.92);
  color: var(--warm-ivory);
  border: 1px solid rgba(226, 185, 79, 0.4);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
}

.package-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.package-title {
  font-size: 1.25rem;
  color: var(--heading-dark);
  margin-bottom: 0.35rem;
}
.package-route {
  font-size: 0.82rem;
  color: var(--luxury-gold-dark);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.package-desc {
  font-size: 0.88rem;
  color: var(--body-text);
  line-height: 1.5;
  margin-bottom: 1rem;
  flex: 1;
}

.package-highlights {
  list-style: none;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.package-highlights li {
  font-size: 0.82rem;
  color: var(--heading-dark);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.package-highlights li::before {
  content: '✓';
  color: var(--luxury-gold);
  font-weight: 700;
}

.package-footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  width: 100%;
  padding-top: 1rem;
  border-top: 1px solid var(--border-warm);
}

/* Keep every card action readable and contained, including narrow four-column cards. */
.fleet-card .btn,
.package-card .btn,
.service-card .btn,
.service-vehicle-card .btn,
.related-tour-card .btn,
.gt-package-row .btn,
.booking-card .btn {
  box-sizing: border-box;
  min-width: 0;
  max-width: 100%;
  padding: .52rem .7rem;
  font-size: .78rem;
  line-height: 1.25;
  white-space: normal;
  overflow-wrap: anywhere;
  text-align: center;
}

.fleet-actions .btn,
.package-footer .btn,
.service-vehicle-body > div .btn {
  width: 100%;
}

.package-contact-strip {
  margin-top: 2.25rem;
  padding: 1.35rem 1.5rem;
  border: 1px solid rgba(226, 185, 79, 0.5);
  border-radius: var(--radius-lg);
  background: var(--pure-white);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.package-contact-copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.package-contact-copy strong {
  color: var(--royal-plum);
  font-family: var(--font-heading);
  font-size: 1.08rem;
}

.package-contact-copy span {
  color: var(--body-text);
  font-size: 0.9rem;
}

.package-contact-actions {
  flex: 0 0 auto;
  display: flex;
  gap: 0.75rem;
}

/* Dynamic destination package detail pages */
.dynamic-package-hero { margin-top: 0; }
.tour-detail-intro { margin: 1rem 0 1.75rem; max-width: 780px; font-size: 1.02rem; line-height: 1.8; }
.tour-detail-highlights { margin: 1.5rem 0; padding: 1.5rem; background: var(--pure-white); border: 1px solid var(--border-warm); border-radius: var(--radius-lg); }
.tour-detail-highlights ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem 1.5rem; margin: 1rem 0 0; padding: 0; list-style: none; }
.tour-detail-highlights li::before { content: '\2713'; margin-right: .55rem; color: var(--luxury-gold-dark); font-weight: 800; }
.dynamic-itinerary { margin-top: 2rem; scroll-margin-top: 110px; }
.dynamic-itinerary article { display: grid; grid-template-columns: 90px 1fr; gap: 1rem; margin-top: .8rem; padding: 1rem 1.1rem; border-left: 4px solid var(--luxury-gold); background: var(--pure-white); box-shadow: var(--shadow-sm); }
.dynamic-itinerary article strong { color: var(--royal-plum); }
.dynamic-itinerary article p { margin: 0; }
.dynamic-quote-card { position: sticky; top: 105px; display: flex; flex-direction: column; gap: .8rem; box-shadow: var(--shadow-xl); }
.dynamic-quote-card h3, .dynamic-quote-card p { margin: 0; }
.dynamic-quote-card small, .detail-note { color: var(--body-text); line-height: 1.55; }
.detail-back-link { align-items: center; justify-content: center; text-decoration: none; font-size: 1.65rem; color: var(--heading-dark); }

/* Contact page: shared premium visual language used by current tour pages. */
.contact-hero { min-height: 520px; }
.contact-experience { position: relative; background: linear-gradient(180deg, var(--warm-ivory) 0, #fff 44%); }
.contact-layout { position: relative; z-index: 1; }
.contact-info-stack > div { border-color: var(--border-warm) !important; border-radius: var(--radius-lg) !important; background: var(--pure-white) !important; box-shadow: var(--shadow-sm); transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth); }
.contact-info-stack > div:hover { transform: translateY(-3px); border-color: var(--luxury-gold) !important; box-shadow: var(--shadow-lg); }
.contact-info-stack > div > div:first-child { background: var(--royal-plum) !important; color: var(--warm-ivory) !important; border-radius: 50% !important; }
.contact-form-card { position: sticky; top: 105px; border-color: var(--border-warm) !important; background: rgba(255,255,255,.98); }
.contact-form-card .form-control,
.contact-form-card .form-select { min-height: 48px; border-color: var(--border-warm); background: #fff; }
.contact-form-card textarea.form-control { min-height: 110px; }
.dest-card { color: inherit; text-decoration: none; }
.service-card[role="link"] { cursor: pointer; }
.service-card[role="link"]:focus-visible,
.dest-card:focus-visible { outline: 3px solid var(--luxury-gold); outline-offset: 4px; }

/* Related tour catalogue shared by every tour family page. */
.related-tour-section { background: linear-gradient(180deg,#fffaf0,#fff); }
.related-tour-list { display:flex; flex-direction:column; gap:1.25rem; }
.related-tour-continuation { margin-top:1.25rem; }
.related-tour-card { display:grid; grid-template-columns:230px minmax(0,1fr) 175px; min-height:265px; overflow:hidden; border:1px solid var(--border-warm); border-radius:var(--radius-lg); background:#fff; box-shadow:var(--shadow-sm); cursor:pointer; transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease; }
.related-tour-card:hover { transform:translateY(-3px); border-color:var(--luxury-gold); box-shadow:var(--shadow-lg); }
.related-tour-card:focus-visible { outline:3px solid var(--luxury-gold); outline-offset:3px; }
.related-tour-image { overflow:hidden; background:var(--soft-cream); }
.related-tour-image img { width:100%; height:100%; min-height:265px; object-fit:cover; transition:transform .4s ease; }
.related-tour-card:hover img { transform:scale(1.04); }
.related-tour-info { padding:1.35rem; min-width:0; }
.related-tour-info>span { color:var(--luxury-gold-dark); font-size:.76rem; font-weight:800; letter-spacing:.08em; text-transform:uppercase; }
.related-tour-info h3 { margin:.3rem 0 .9rem; color:var(--royal-plum); font-size:1.3rem; }
.related-tour-info dl { margin:0; }
.related-tour-info dl>div { display:grid; grid-template-columns:80px 1fr; gap:.55rem; margin:.45rem 0; }
.related-tour-info dt { color:var(--muted-text); font-weight:700; }
.related-tour-info dd { margin:0; color:var(--body-text); line-height:1.5; }
.related-tour-tags { display:flex; flex-wrap:wrap; gap:.45rem; margin-top:.9rem; }
.related-tour-tags b { padding:.3rem .6rem; border-radius:999px; background:var(--light-gold-bg); color:var(--royal-plum); font-size:.72rem; }
.related-tour-action { display:flex; flex-direction:column; justify-content:center; gap:.65rem; padding:1.25rem; border-left:1px solid var(--border-warm); text-align:center; }
.related-tour-action small { color:var(--muted-text); }
.related-tour-action strong { color:var(--royal-plum); font-size:1.3rem; }
.related-tour-action>a:not(.btn) { color:var(--luxury-gold-dark); font-weight:700; font-size:.84rem; }
.article-hero { min-height:540px; }
.article-layout { display:grid; grid-template-columns:minmax(0,1fr) 310px; gap:2.5rem; align-items:start; }
.long-tour-article { min-width:0; }
.long-tour-article>section { position:relative; margin-bottom:1.5rem; padding:1.8rem; border:1px solid var(--border-warm); border-radius:var(--radius-lg); background:#fff; box-shadow:var(--shadow-sm); }
.long-tour-article h2 { margin:0 0 1rem; color:var(--royal-plum); }
.long-tour-article p { margin:0; color:var(--body-text); line-height:1.85; text-align:justify; }
.article-section-number { display:none !important; }
.article-quote { position:sticky; top:105px; display:flex; flex-direction:column; gap:.8rem; box-shadow:var(--shadow-xl); }
.article-faq { margin-top:1.5rem; }
.article-faq details { margin-top:.65rem; padding:.9rem 1rem; border:1px solid var(--border-warm); border-radius:var(--radius-md); background:var(--warm-ivory); }
.article-faq summary { cursor:pointer; color:var(--royal-plum); font-weight:800; }
.article-faq details p { margin-top:.65rem; text-align:left; }

/* Shared Golden-Triangle-style destination guide used on every tour page. */
.family-guide-section { background:#fff; }
.family-guide-nav { position:sticky; top:88px; z-index:8; display:flex; gap:.55rem; margin-bottom:2rem; padding:.8rem; overflow-x:auto; border:1px solid var(--border-warm); border-radius:var(--radius-lg); background:rgba(255,255,255,.96); box-shadow:var(--shadow-sm); scrollbar-width:thin; }
.family-guide-nav a { flex:0 0 auto; padding:.55rem .8rem; border-radius:999px; background:var(--light-gold-bg); color:var(--royal-plum); font-size:.78rem; font-weight:800; }
.family-guide-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:1.15rem; }
.family-guide-card { scroll-margin-top:170px; padding:1.5rem; border:1px solid var(--border-warm); border-radius:var(--radius-lg); background:linear-gradient(145deg,#fff,#fffaf0); box-shadow:var(--shadow-sm); }
.family-guide-card h3 { margin-bottom:.7rem; color:var(--royal-plum); font-size:1.2rem; }
.family-guide-card p { color:var(--body-text); line-height:1.75; }
.family-guide-card p+p { margin-top:.65rem; color:var(--muted-text); font-size:.9rem; }
.family-testimonials,.family-faq,.family-internal-links { margin-top:4rem; }
.family-testimonials .section-header::after { content:'Experience examples describe our planning standards and are not attributed customer reviews.'; display:block; max-width:680px; margin:.65rem auto 0; color:var(--muted-text); font-size:.82rem; }
.family-testimonial-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:1rem; }
.family-testimonial-grid blockquote { margin:0; padding:1.5rem; border:1px solid var(--border-warm); border-radius:var(--radius-lg); background:var(--warm-ivory); box-shadow:var(--shadow-sm); }
.family-testimonial-grid blockquote p { color:var(--royal-plum); font:600 1rem/1.7 var(--font-heading); }
.family-testimonial-grid cite { display:block; margin-top:1rem; color:var(--luxury-gold-dark); font-size:.82rem; font-style:normal; font-weight:800; }
.family-faq>.article-faq { max-width:900px; margin:0 auto; }
.family-faq>.article-faq>h3 { display:none; }
.family-internal-links { padding:2rem; border-radius:var(--radius-lg); background:var(--royal-plum); color:#fff; }
.family-internal-links h2 { margin-bottom:1rem; color:#fff; }
.family-internal-links>div { display:flex; flex-wrap:wrap; gap:.7rem; }
.family-internal-links a { padding:.7rem .9rem; border:1px solid rgba(255,255,255,.25); border-radius:999px; color:#fff; font-weight:700; }
.family-internal-links a:hover { border-color:var(--luxury-gold); background:rgba(255,255,255,.08); }

/* Unified cab-service detail pages */
.service-modern-main { width:100%; overflow:hidden; }
.service-compact-hero { padding:3.5rem 0; background:linear-gradient(135deg,var(--royal-plum),#35143b); color:#fff; border-bottom:1px solid rgba(226,185,79,.35); }
.service-hero-grid { display:grid; grid-template-columns:minmax(0,1.05fr) minmax(360px,.95fr); gap:3rem; align-items:center; }
.service-hero-grid h1 { max-width:760px; margin:.35rem 0 1rem; color:#fff; font-size:clamp(2.2rem,4.5vw,4rem); line-height:1.08; }
.service-hero-grid>div>p { max-width:690px; color:#e2d9e6; font-size:1.05rem; line-height:1.75; }
.service-hero-points { display:flex; flex-wrap:wrap; gap:.55rem; margin:1.25rem 0; }
.service-hero-points span { padding:.45rem .75rem; border:1px solid rgba(226,185,79,.4); border-radius:999px; background:rgba(255,255,255,.07); color:var(--luxury-gold-light); font-size:.78rem; font-weight:800; }
.service-hero-actions { display:flex; flex-wrap:wrap; gap:.75rem; }
.service-hero-photo { height:330px; overflow:hidden; border:1px solid rgba(226,185,79,.45); border-radius:var(--radius-xl); background:#fff; box-shadow:0 25px 55px rgba(0,0,0,.3); }
.service-hero-photo img { width:100%; height:100%; object-fit:cover; object-position:center; }
.service-fleet-showcase { background:var(--warm-ivory); }
.service-vehicle-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:1.15rem; }
.service-vehicle-card { display:flex; flex-direction:column; min-width:0; overflow:hidden; border:1px solid var(--border-warm); border-radius:var(--radius-lg); background:#fff; box-shadow:var(--shadow-sm); transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease; }
.service-vehicle-card:hover { transform:translateY(-4px); border-color:var(--luxury-gold); box-shadow:var(--shadow-lg); }
.service-vehicle-image { position:relative; height:185px; overflow:hidden; background:#f2eee5; }
.service-vehicle-image img { width:100%; height:100%; object-fit:cover; transition:transform .35s ease; }
.service-vehicle-card:hover img { transform:scale(1.04); }
.service-vehicle-image span { position:absolute; right:.65rem; bottom:.65rem; padding:.35rem .6rem; border-radius:999px; background:rgba(27,11,31,.92); color:#fff; font-size:.68rem; font-weight:800; }
.service-vehicle-body { display:flex; flex:1; flex-direction:column; padding:1.15rem; }
.service-vehicle-body small { color:var(--luxury-gold-dark); font-weight:800; }
.service-vehicle-body h3 { margin:.25rem 0 .75rem; color:var(--royal-plum); font-size:1.15rem; }
.service-vehicle-body ul { flex:1; margin:0 0 1rem; padding:0; list-style:none; }
.service-vehicle-body li { padding:.45rem 0; border-bottom:1px solid #eee7d8; color:var(--body-text); font-size:.8rem; line-height:1.45; }
.service-vehicle-body li:last-child { border-bottom:0; }
.service-vehicle-body>div { display:grid; grid-template-columns:1fr; gap:.5rem; }
.service-guide { background:#fff; }
.service-guide-nav { position:sticky; top:88px; z-index:8; display:flex; gap:.55rem; margin-bottom:2rem; padding:.8rem; overflow-x:auto; border:1px solid var(--border-warm); border-radius:var(--radius-lg); background:rgba(255,255,255,.96); box-shadow:var(--shadow-sm); }
.service-guide-nav a { flex:0 0 auto; padding:.55rem .8rem; border-radius:999px; background:var(--light-gold-bg); color:var(--royal-plum); font-size:.78rem; font-weight:800; }
.service-guide-list { max-width:1000px; margin:0 auto; }
.service-guide-list>article { scroll-margin-top:170px; margin-bottom:1.25rem; padding:1.8rem; border:1px solid var(--border-warm); border-radius:var(--radius-lg); background:linear-gradient(145deg,#fff,#fffaf1); box-shadow:var(--shadow-sm); }
.service-guide-list h2 { margin-bottom:1rem; color:var(--royal-plum); font-size:1.5rem; }
.service-guide-list>article>p { margin:0; color:var(--body-text); line-height:1.88; text-align:justify; }
.service-faq { margin-top:1.5rem; }
.service-faq details { margin-top:.65rem; padding:1rem; border:1px solid var(--border-warm); border-radius:var(--radius-md); background:#fff; }
.service-faq summary { cursor:pointer; color:var(--royal-plum); font-weight:800; }
.service-faq p { margin:.65rem 0 0; line-height:1.65; }
.service-standards { margin-top:4rem; }
.service-standards>div:last-child { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:1rem; }
.service-standards article { padding:1.4rem; border:1px solid var(--border-warm); border-radius:var(--radius-lg); background:var(--warm-ivory); text-align:center; }
.service-standards h3 { color:var(--royal-plum); }
.service-standards p { margin-top:.45rem; color:var(--body-text); line-height:1.6; }
.service-book-panel { display:flex; align-items:center; justify-content:space-between; gap:1.5rem; margin-top:4rem; padding:2rem; border:1px solid rgba(226,185,79,.35); border-radius:var(--radius-xl); background:linear-gradient(135deg,var(--royal-plum),#37163e); color:#fff; box-shadow:var(--shadow-xl); }
.service-book-panel span { color:var(--luxury-gold-light); font-weight:800; }
.service-book-panel h2 { margin:.25rem 0; color:#fff; }
.service-book-panel p { color:#ddd3e1; }
.service-book-panel>div:last-child { display:flex; flex:0 0 auto; gap:.7rem; }
.service-related-links { display:flex; flex-wrap:wrap; justify-content:center; gap:.65rem; margin-top:2rem; }
.service-related-links a { padding:.65rem .9rem; border:1px solid var(--border-warm); border-radius:999px; color:var(--royal-plum); font-weight:800; }

/* Destinations directory long-form planning guide */
.destinations-guide-section { background:linear-gradient(180deg,#fff,#fffaf0); }
.dest-guide-nav { position:sticky; top:88px; z-index:8; display:flex; gap:.55rem; margin-bottom:2rem; padding:.8rem; overflow-x:auto; border:1px solid var(--border-warm); border-radius:var(--radius-lg); background:rgba(255,255,255,.96); box-shadow:var(--shadow-sm); }
.dest-guide-nav a { flex:0 0 auto; padding:.55rem .8rem; border-radius:999px; background:var(--light-gold-bg); color:var(--royal-plum); font-size:.78rem; font-weight:800; }
.dest-guide-list { max-width:1000px; margin:0 auto; }
.dest-guide-list>article { scroll-margin-top:170px; margin-bottom:1.25rem; padding:1.8rem; border:1px solid var(--border-warm); border-radius:var(--radius-lg); background:#fff; box-shadow:var(--shadow-sm); }
.dest-guide-list h2 { margin-bottom:1rem; color:var(--royal-plum); font-size:1.5rem; }
.dest-guide-list>article>p { margin:0; color:var(--body-text); line-height:1.88; text-align:justify; }
.dest-guide-faq { margin-top:1.5rem; }
.dest-guide-faq details { margin-top:.65rem; padding:1rem; border:1px solid var(--border-warm); border-radius:var(--radius-md); background:var(--warm-ivory); }
.dest-guide-faq summary { cursor:pointer; color:var(--royal-plum); font-weight:800; }
.dest-guide-faq p { margin:.65rem 0 0; line-height:1.65; }
.dest-guide-cta { display:flex; align-items:center; justify-content:space-between; gap:1.5rem; margin-top:3rem; padding:2rem; border-radius:var(--radius-xl); background:linear-gradient(135deg,var(--royal-plum),#37163e); color:#fff; box-shadow:var(--shadow-xl); }
.dest-guide-cta span { color:var(--luxury-gold-light); font-weight:800; }
.dest-guide-cta h2 { margin:.25rem 0; color:#fff; }
.dest-guide-cta p { color:#ddd3e1; }
.dest-guide-cta>div:last-child { display:flex; flex:0 0 auto; gap:.7rem; }
.dest-guide-links { display:flex; flex-wrap:wrap; justify-content:center; gap:.65rem; margin-top:2rem; }
.dest-guide-links a { padding:.65rem .9rem; border:1px solid var(--border-warm); border-radius:999px; color:var(--royal-plum); font-weight:800; }
.dest-card::after { content:'View details →'; position:absolute; right:1rem; top:1rem; z-index:2; padding:.35rem .6rem; border-radius:999px; background:rgba(27,11,31,.86); color:#fff; font-size:.68rem; font-weight:800; opacity:0; transform:translateY(-4px); transition:.2s ease; }
.dest-card:hover::after,.dest-card:focus-visible::after { opacity:1; transform:translateY(0); }

/* ========================================================================== 
   DESTINATIONS & ROUTES SECTION
   ========================================================================== */

.tour-seo-guide {
  background: var(--pure-white);
}

.tour-guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

.tour-guide-topic {
  position: relative;
  min-width: 0;
  padding: 1.5rem;
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--pure-white), var(--warm-ivory));
  box-shadow: var(--shadow-sm);
}

.tour-guide-number {
  display: none !important;
}

.tour-guide-topic h3 {
  margin-bottom: 0.55rem;
  color: var(--royal-plum);
  font-size: 1.08rem;
}

.tour-guide-topic p {
  color: var(--body-text);
  font-size: 0.94rem;
  line-height: 1.72;
}

.tour-guide-cta {
  margin-top: 2rem;
  padding: 1.75rem;
  border: 1px solid rgba(226, 185, 79, 0.5);
  border-radius: var(--radius-lg);
  background: var(--royal-plum);
  text-align: center;
}

.tour-guide-cta h3,
.tour-guide-cta p {
  color: var(--warm-ivory);
}

.tour-guide-cta p {
  margin: 0.45rem auto 1.1rem;
}

.tour-guide-actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.tour-guide-cta .btn-outline {
  border-color: var(--luxury-gold);
  color: var(--warm-ivory);
}

.travel-album-section {
  background:
    radial-gradient(circle at 12% 15%, rgba(226, 185, 79, 0.13), transparent 28%),
    linear-gradient(180deg, var(--warm-ivory) 0%, var(--pure-white) 100%);
}

.travel-album-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 210px;
  gap: 1rem;
}

.travel-album-item {
  position: relative;
  grid-column: span 3;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(226, 185, 79, 0.35);
  border-radius: var(--radius-lg);
  background: var(--royal-plum);
  box-shadow: var(--shadow-md);
}

.travel-album-featured {
  grid-column: span 6;
  grid-row: span 2;
}

.travel-album-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease, filter 500ms ease;
}

.travel-album-item::after {
  content: '';
  position: absolute;
  inset: 38% 0 0;
  background: linear-gradient(transparent, rgba(27, 11, 31, 0.88));
  pointer-events: none;
}

.travel-album-item:hover img {
  transform: scale(1.045);
  filter: saturate(1.08);
}

.travel-album-item figcaption {
  position: absolute;
  right: 1rem;
  bottom: 0.85rem;
  left: 1rem;
  z-index: 1;
  color: var(--warm-ivory);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.travel-album-featured figcaption {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.travel-album-cta {
  max-width: 820px;
  margin: 2rem auto 0;
  text-align: center;
}

.travel-album-cta p {
  margin-bottom: 1rem;
  color: var(--body-text);
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.dest-card {
  position: relative;
  height: 260px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}
.dest-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}
.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}
.dest-card:hover img {
  transform: scale(1.06);
}

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(27, 11, 31, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  color: #ffffff;
}
.dest-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: var(--warm-ivory);
}
.dest-tag {
  font-size: 0.8rem;
  color: var(--luxury-gold-light);
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.route-card {
  background: var(--pure-white);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-warm);
  text-decoration: none;
  transition: all var(--transition-normal);
}
.route-card:hover {
  border-color: var(--luxury-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.route-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--heading-dark);
  margin-bottom: 0.35rem;
}
.route-dist {
  font-size: 0.82rem;
  color: var(--luxury-gold-dark);
  font-weight: 600;
}

/* Steps Grid (How Booking Works) */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.step-card {
  background: var(--pure-white);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border-warm);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform var(--transition-normal), border-color var(--transition-normal);
}
.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--luxury-gold);
}
.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--royal-plum);
  color: var(--luxury-gold-light);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border: 1px solid var(--luxury-gold);
}
.step-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
  color: var(--heading-dark);
}
.step-card p {
  font-size: 0.88rem;
  color: var(--body-text);
  line-height: 1.55;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background: var(--pure-white);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-warm);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}
.faq-item.active {
  border-color: var(--luxury-gold);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--heading-dark);
  cursor: pointer;
}
.faq-icon {
  font-size: 1.35rem;
  color: var(--luxury-gold);
  transition: transform var(--transition-fast);
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.95rem;
  color: var(--body-text);
  line-height: 1.6;
  display: none;
}
.faq-item.active .faq-answer {
  display: block;
}

/* ========================================================================== 
   INNER PAGE HEADER / HERO
   ========================================================================== */

/* Tour detail hero and content shell */
.tour-detail-hero {
  --tour-hero-image: url('assets/img/enjoytheworld-india-4051753_1920.jpg');
  position: relative;
  isolation: isolate;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  padding: 5.5rem 0 4.5rem;
  overflow: hidden;
  background: var(--royal-plum) var(--tour-hero-image) center / cover no-repeat;
}

.tour-detail-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(20, 7, 23, .96) 0%, rgba(27, 11, 31, .82) 53%, rgba(27, 11, 31, .35) 100%);
}

.tour-detail-hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 120px;
  background: linear-gradient(transparent, rgba(20, 7, 23, .5));
}

.tour-detail-hero-compact {
  min-height: 370px;
  padding: 3.25rem 0 3rem;
}

.tour-detail-hero-compact h1 {
  font-size: clamp(2.25rem, 4.3vw, 3.55rem);
}

.tour-hero-content {
  max-width: 820px;
}

.tour-detail-hero h1 {
  max-width: 800px;
  margin-bottom: 1rem;
  color: #fff;
  font-size: clamp(2.35rem, 5vw, 4.25rem);
  text-shadow: 0 3px 24px rgba(0, 0, 0, .45);
}

.tour-detail-hero p {
  max-width: 720px;
  margin-bottom: 1.35rem;
  color: #f2eaf2;
  font-size: 1.08rem;
}

.tour-hero-meta,
.tour-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.tour-hero-meta { margin-bottom: 1.5rem; }

.tour-meta-chip {
  padding: .5rem .8rem;
  border: 1px solid rgba(226, 185, 79, .4);
  border-radius: 999px;
  background: rgba(27, 11, 31, .62);
  color: #fffaf0;
  font-size: .86rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.tour-content-section { background: #fffdf9; }

.tour-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(320px, .9fr);
  align-items: start;
  gap: 2.5rem;
}

.tour-detail-main,
.tour-detail-sidebar { min-width: 0; }

.tour-detail-sidebar .booking-card {
  position: sticky !important;
  top: 126px !important;
  border-top: 4px solid var(--luxury-gold) !important;
}

.tour-detail-main > h2,
.tour-detail-main > h3 { margin-top: 0; }

.tour-inclusion-card {
  height: 100%;
  padding: 1.35rem;
  border-radius: var(--radius-md);
}

.tour-inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin: 2rem 0;
  padding: 1.4rem 1.5rem;
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #fff, var(--light-gold-bg));
  box-shadow: var(--shadow-sm);
}

.tour-inline-cta h3 { margin-bottom: .25rem; }
.tour-inline-cta p { margin: 0; }
.tour-inline-actions { display: flex; flex-wrap: wrap; gap: .65rem; flex: 0 0 auto; }

/* Package directory inspired by the supplied list-and-sidebar reference. */
.package-directory-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  align-items: start;
  gap: 2rem;
}

.package-directory-layout .package-grid {
  grid-template-columns: minmax(0, 1fr);
}

.package-directory-layout .package-card {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
}

.package-directory-layout .package-img-wrap { height: 100%; min-height: 270px; }
.package-directory-layout .package-body { padding: 1.5rem; }

.package-sidebar {
  position: sticky;
  top: 126px;
  padding: 1.4rem;
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.package-sidebar h3 {
  margin-bottom: 1rem;
  padding-bottom: .7rem;
  border-bottom: 2px solid var(--luxury-gold);
  color: var(--royal-plum);
}

.package-sidebar-links { display: flex; flex-wrap: wrap; gap: .55rem; }
.package-sidebar-links a {
  padding: .48rem .65rem;
  border: 1px solid var(--border-warm);
  border-radius: 6px;
  background: var(--warm-ivory);
  color: var(--royal-plum);
  font-size: .86rem;
  font-weight: 600;
}
.package-sidebar-links a:hover { border-color: var(--luxury-gold); background: var(--light-gold-bg); }

/* Golden Triangle package catalogue */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.gt-catalogue-section {
  padding: 3.5rem 0 4.5rem;
  background: #fff;
}

.gt-notice {
  margin: -1.25rem 0 2.25rem;
  padding: .85rem 1rem;
  border-left: 4px solid var(--luxury-gold);
  background: var(--light-gold-bg);
  color: var(--royal-plum);
  text-align: center;
}

.gt-section-heading { margin-bottom: 1.5rem; }
.gt-section-heading h2 { margin: .25rem 0 .55rem; }
.gt-section-heading p { max-width: 760px; }

.gt-search-panel {
  display: grid;
  grid-template-columns: 1.2fr .85fr .9fr auto;
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding: 1.25rem;
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-md);
  background: var(--soft-cream);
}

.gt-search-panel .form-control,
.gt-search-panel .btn { min-height: 46px; }

.gt-catalogue-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 285px;
  align-items: start;
  gap: 1.75rem;
}

.gt-package-list { display: flex; flex-direction: column; gap: 1.25rem; min-width: 0; }

.gt-package-row {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) 175px;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.gt-package-row:hover { transform: translateY(-3px); border-color: var(--luxury-gold); box-shadow: var(--shadow-md); }
.gt-package-row[hidden] { display: none; }

.gt-package-image { min-height: 285px; overflow: hidden; background: var(--soft-cream); }
.gt-package-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gt-package-row:hover .gt-package-image img { transform: scale(1.04); }

.gt-package-info { min-width: 0; padding: 1.25rem; }
.gt-package-kicker { color: var(--luxury-gold-dark); font-size: .75rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.gt-package-info h3 { margin: .2rem 0 .8rem; color: var(--royal-plum); font-size: 1.3rem; }
.gt-package-facts { margin: 0; }
.gt-package-facts > div { display: grid; grid-template-columns: 76px minmax(0, 1fr); gap: .45rem; margin-bottom: .45rem; }
.gt-package-facts dt { color: var(--muted-text); font-size: .85rem; font-weight: 700; }
.gt-package-facts dd { margin: 0; color: var(--body-text); font-size: .88rem; line-height: 1.55; }

.gt-package-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .85rem; }
.gt-package-tags span { padding: .28rem .52rem; border-radius: 999px; background: var(--light-gold-bg); color: var(--royal-plum); font-size: .72rem; font-weight: 700; }

.gt-package-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .25rem;
  padding: 1rem;
  border-left: 1px solid var(--border-warm);
  background: #fffdf8;
  text-align: center;
}
.gt-package-price small, .gt-package-price span { color: var(--muted-text); font-size: .76rem; }
.gt-package-price strong { color: var(--royal-plum); font-size: 1.25rem; }
.gt-package-price .btn { width: 100%; margin-top: .65rem; white-space: normal; }
.gt-text-link { margin-top: .4rem; font-size: .8rem; font-weight: 700; }

.gt-sidebar { position: sticky; top: 126px; display: flex; flex-direction: column; gap: 1rem; }
.gt-sidebar-card, .gt-help-card { padding: 1.15rem; border: 1px solid var(--border-warm); border-radius: var(--radius-md); background: #fff; }
.gt-sidebar-card h3 { margin: 0 0 .9rem; padding-bottom: .65rem; border-bottom: 2px solid var(--luxury-gold); font-size: 1.05rem; }
.gt-sidebar-links { display: flex; flex-wrap: wrap; gap: .5rem; }
.gt-sidebar-links button { padding: .5rem .62rem; border: 1px solid var(--border-warm); border-radius: 5px; background: var(--warm-ivory); color: var(--royal-plum); font: inherit; font-size: .8rem; cursor: pointer; }
.gt-sidebar-links button:hover { border-color: var(--luxury-gold); background: var(--light-gold-bg); }
.gt-help-card { background: var(--royal-plum); color: #fff; }
.gt-help-card > span { color: var(--luxury-gold); font-size: .76rem; font-weight: 800; text-transform: uppercase; }
.gt-help-card h3 { margin: .2rem 0 .45rem; color: #fff; }
.gt-help-card p { color: #e7dfe9; font-size: .84rem; }
.gt-help-card .btn + .btn { margin-top: .55rem; }
.gt-price-note { margin: 1rem 0 0; color: var(--muted-text); font-size: .78rem; }
.gt-no-results { padding: 2rem; border: 1px dashed var(--border-warm); border-radius: var(--radius-md); text-align: center; }
.home-tour-showcase { border-top:1px solid var(--border-warm); }
.home-tour-showcase .gt-catalogue-heading { text-align:center; }
.home-tour-showcase .gt-package-tags span { text-transform:capitalize; }
.home-mixed-tour-card:focus-visible { outline:3px solid var(--luxury-gold); outline-offset:3px; }

.page-header {
  background: var(--royal-plum);
  color: var(--warm-ivory);
  padding: 3.5rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(226, 185, 79, 0.2);
}
.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(226, 185, 79, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-header h1 {
  font-family: var(--font-display);
  color: var(--warm-ivory);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 2;
}
.page-header p {
  color: var(--soft-cream);
  font-size: 1.15rem;
  max-width: 720px;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

/* Content Container & Article Typography */
.rich-content {
  line-height: 1.7;
}
.rich-content p {
  margin-bottom: 1.25rem;
  font-size: 1.02rem;
  color: var(--body-text);
}
.rich-content h2 {
  margin-top: 2.25rem;
  margin-bottom: 1rem;
  color: var(--heading-dark);
}
.rich-content h3 {
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--heading-dark);
}
.rich-content ul, .rich-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.25rem;
  color: var(--body-text);
}
.rich-content li {
  margin-bottom: 0.4rem;
}

/* ==========================================================================
   FOOTER & FIXED ACTION BARS
   ========================================================================== */

.desktop-fixed-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.fixed-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: #ffffff;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
}
.fixed-cta-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: var(--shadow-xl);
  color: #ffffff;
}
.fixed-cta-btn.whatsapp {
  background-color: var(--whatsapp-green);
}
.fixed-cta-btn.call {
  background-color: var(--royal-plum);
  color: var(--luxury-gold-light);
  border: 1px solid var(--luxury-gold);
}

/* Floating CTA: final design for WhatsApp and Call circular buttons */
@keyframes floatingCtaBounce {
  0%,
  68%,
  100% {
    transform: translateY(0) scale(1);
  }

  76% {
    transform: translateY(-8px) scale(1.04);
  }

  83% {
    transform: translateY(0) scale(1);
  }

  89% {
    transform: translateY(-4px) scale(1.02);
  }

  95% {
    transform: translateY(0) scale(1);
  }
}

.floating-cta-group {
  position: fixed;
  right: 18px;
  bottom: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-cta {
  position: relative;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(10,6,12,0.12);
  transition: transform 200ms var(--transition-fast), box-shadow 200ms var(--transition-fast);
  animation: floatingCtaBounce 3.8s ease-in-out infinite;
  will-change: transform;
}

.floating-cta svg {
  width: 27px;
  height: 27px;
  display: block;
}

.floating-whatsapp {
  background: var(--whatsapp-green);
  color: #ffffff; /* SVGs use currentColor */
}

.floating-call {
  background: var(--royal-plum);
  color: var(--luxury-gold);
  border: 2px solid var(--luxury-gold);
}

/* Staggered animation delay */
.floating-whatsapp { animation-delay: 0s; }
.floating-call { animation-delay: 0.55s; }

/* WhatsApp pulse ring */
.floating-whatsapp::after {
  content: "";
  position: absolute;
  inset: -1px;
  border: 2px solid rgba(37, 211, 102, 0.5);
  border-radius: 50%;
  animation: whatsappRing 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes whatsappRing {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }

  75%,
  100% {
    transform: scale(1.42);
    opacity: 0;
  }
}

/* Hover: pause animation, scale up and stronger shadow */
.floating-cta:hover {
  animation-play-state: paused;
  transform: scale(1.1);
  box-shadow: 0 12px 28px rgba(10,6,12,0.18);
}

/* Tooltip on desktop only */
.floating-cta[data-tooltip]::before {
  content: attr(data-tooltip);
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(27,11,31,0.95);
  color: var(--luxury-gold);
  padding: 6px 9px;
  border-radius: 6px;
  font-size: 0.86rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
  box-shadow: 0 6px 18px rgba(10,6,12,0.12);
}
.floating-cta:hover[data-tooltip]::before {
  opacity: 1;
  transform: translateY(-50%) translateY(-4px);
}
@media (max-width: 767px) {
  .floating-cta-group {
    right: 12px;
    /* place above mobile bottom bar (62px) plus safe-area inset */
    bottom: calc(14px + env(safe-area-inset-bottom) + 62px);
    gap: 10px;
  }

  .floating-cta {
    width: 52px;
    height: 52px;
  }

  .floating-cta svg {
    width: 24px;
    height: 24px;
  }

  /* hide tooltip on small screens */
  .floating-cta[data-tooltip]::before { display: none; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .floating-cta,
  .floating-whatsapp::after {
    animation: none !important;
  }
}

.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--pure-white);
  border-top: 1px solid var(--border-warm);
  box-shadow: 0 -4px 15px rgba(27, 11, 31, 0.08);
  z-index: 1050;
  height: 62px;
}

.mobile-bottom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 100%;
}
.mobile-bar-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
}
.mobile-bar-btn svg {
  width: 20px;
  height: 20px;
}
.mobile-bar-btn.call { color: var(--royal-plum); }
.mobile-bar-btn.whatsapp { color: var(--whatsapp-green); }
.mobile-bar-btn.quote { color: var(--luxury-gold-dark); }

/* Fixed contact controls were intentionally removed site-wide. */
.desktop-fixed-cta,
.floating-cta-group,
.mobile-bottom-bar {
  display: none !important;
}

/* Site Footer */
.site-footer {
  background: var(--royal-plum);
  color: var(--warm-ivory);
  padding-top: 4.5rem;
  margin-top: auto;
  border-top: 1px solid rgba(226, 185, 79, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3.5rem;
}

.footer-col h4 {
  color: var(--luxury-gold);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--luxury-gold);
}

.footer-about p {
  color: #cfc4d4;
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: #ddd4e2;
}
.footer-contact-item svg {
  color: var(--luxury-gold);
}
.footer-contact-item a {
  color: var(--warm-ivory);
}
.footer-contact-item a:hover {
  color: var(--luxury-gold-light);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a {
  color: #cfc4d4;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all var(--transition-fast);
}
.footer-links a:hover {
  color: var(--luxury-gold-light);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(226, 185, 79, 0.15);
  background: #140717;
  padding: 1.5rem 0;
  font-size: 0.85rem;
  color: #9f94a4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom-links { display:flex; flex-wrap:wrap; gap:1rem; }
.footer-bottom-links a { color:#94a3b8; }
.footer-bottom-links a:hover { color:var(--luxury-gold-light); }

/* Shared social-media section and footer icons */
.global-social-section {
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  border-top: 1px solid var(--border-warm);
  background: linear-gradient(135deg, #fffaf0 0%, #f4ead7 100%);
}

.social-section-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, .9fr);
  gap: 2.5rem;
  align-items: center;
}

.social-section-copy h2 { margin: .3rem 0 .75rem; color: var(--royal-plum); }
.social-section-copy p { max-width: 650px; margin: 0; color: var(--body-text); line-height: 1.7; }

.social-section-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  min-width: 0;
  min-height: 50px;
  padding: .7rem 1rem;
  border: 1px solid rgba(190, 135, 30, .35);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--royal-plum);
  font-family: var(--font-heading);
  font-size: .88rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.social-link:hover { transform: translateY(-2px); border-color: var(--luxury-gold); box-shadow: var(--shadow-md); color: var(--royal-plum); }
.social-link svg { flex: 0 0 22px; width: 22px; height: 22px; }
.social-instagram:hover { color: #c13584; }
.social-facebook:hover { color: #1877f2; }
.social-x:hover { color: #111; }
.social-youtube:hover { color: #ff0000; }

.footer-social-block { margin-top: 1.35rem; }
.footer-social-block h4 { margin-bottom: .7rem; color: var(--luxury-gold-light); font-size: .95rem; }
.footer-social-links { display: flex; flex-wrap: wrap; gap: .55rem; }
.footer-social-links .social-link {
  width: 42px;
  min-height: 42px;
  padding: 0;
  border-color: rgba(226, 185, 79, .3);
  background: rgba(255,255,255,.06);
  color: #fff;
  box-shadow: none;
}
.footer-social-links .social-link:hover { color: var(--luxury-gold-light); background: rgba(226,185,79,.12); }
.footer-social-links .social-link svg { width: 19px; height: 19px; }

/* Homepage Google Map */
.about-detail-intro { margin-top: 4.5rem; }

.about-detail-list {
  display: grid;
  gap: 1.5rem;
  max-width: 1040px;
  margin: 0 auto 4rem;
}

.about-detail-section {
  position: relative;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  overflow: hidden;
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, #fff, #fffaf1);
  box-shadow: var(--shadow-sm);
}

.about-detail-number { display: none !important; }

.about-detail-section h2 {
  position: relative;
  max-width: 760px;
  margin-bottom: 1.2rem;
  padding-right: 0;
  color: var(--royal-plum);
}

.about-detail-section p {
  position: relative;
  margin-bottom: 1rem;
  color: var(--body-text);
  line-height: 1.85;
}

.about-detail-section p:last-child { margin-bottom: 0; }
.about-detail-section a { color: var(--luxury-gold-dark); font-weight: 700; text-decoration: underline; }

.home-map-section {
  background: linear-gradient(180deg, #fff 0%, var(--warm-ivory) 100%);
  border-top: 1px solid var(--border-warm);
}

.home-map-heading {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
}

.home-map-heading h2 { margin-bottom: .75rem; }
.home-map-heading p { margin: 0; color: var(--muted-text); }

.home-map-frame {
  min-height: 440px;
  overflow: hidden;
  border: 1px solid rgba(190, 135, 30, .35);
  border-radius: var(--radius-xl);
  background: #e8e2d8;
  box-shadow: var(--shadow-lg);
}

.home-map-frame iframe {
  display: block;
  width: 100%;
  min-height: 440px;
}

.home-map-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: 1.25rem;
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-lg);
  background: #fff;
}

.home-map-footer p { margin: 0; }
.home-map-footer .btn { flex: 0 0 auto; }

/* Modal Popup */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 5, 18, 0.75);
  backdrop-filter: blur(4px);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-smooth), visibility var(--transition-smooth);
}
.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: var(--pure-white);
  border-radius: var(--radius-xl);
  max-width: 580px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  position: relative;
  box-shadow: var(--shadow-xl);
  border: 1.5px solid var(--border-warm);
}
.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: transparent;
  border: none;
  font-size: 1.75rem;
  color: var(--muted-text);
  cursor: pointer;
  line-height: 1;
}

/* Accessibility: Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
