/* ==========================================================================
   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);
}

/* ==========================================================================
   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('../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-content {
  position: relative;
  z-index: 2;
  max-width: 740px;
  padding-top: 3.5rem;
  padding-bottom: 5.5rem;
}

.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;
}

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

/* 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.75rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(4px);
}

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

.fleet-header {
  margin-bottom: 0.85rem;
}
.fleet-name {
  font-size: 1.25rem;
  color: var(--heading-dark);
  margin-bottom: 0.25rem;
  font-weight: 700;
}
.fleet-category {
  font-size: 0.8rem;
  color: var(--luxury-gold-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.fleet-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  background: var(--light-gold-bg);
  border: 1px solid var(--border-warm);
  padding: 0.75rem 0.5rem;
  border-radius: var(--radius-md);
  margin-bottom: 0.85rem;
}
.spec-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.spec-label {
  font-size: 0.68rem;
  color: var(--muted-text);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.spec-val {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--heading-dark);
  line-height: 1.3;
}

.fleet-ideal {
  font-size: 0.86rem;
  color: var(--body-text);
  margin-bottom: 0.85rem;
  line-height: 1.45;
  flex: 1;
}

.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: flex;
  gap: 0.65rem;
}
.fleet-btn-details {
  flex: 1;
}
.fleet-btn-quote {
  flex: 1.3;
}

/* ==========================================================================
   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;
}

.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);
}
.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: flex;
  gap: 0.65rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-warm);
}

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

.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
   ========================================================================== */

.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;
  }
}

  color: var(--luxury-gold-light);
  border: 1px solid var(--luxury-gold);
}

.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;
}

/* 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;
  }
}
