/* ==========================================================================
   SOUTH INDIA HOLIDAYS TRIP — ROYAL LUXURY STYLESHEET
   Aesthetics: Royal + Premium + Elegant + Trustworthy + Professional + South Indian
   Preserves 100% of website structure, JS interactions, forms, and routes.
   ========================================================================== */

/* ============ 1. ROYAL PREMIUM DESIGN TOKENS ============ */
:root {
  /* Royal Palette Specifications */
  --header-bg: #FFFFFF;         /* Pure White Navbar/Header */
  --text-main: #111111;         /* Rich Black Main Text */
  --bg-warm: #F5EFE3;           /* Warm Beige Alternate Sections */
  --navy-dark: #0B1F3A;         /* Premium Deep Navy */
  --navy-light: #153258;        /* Deep Navy Accent/Hover */
  --navy-surface: #102542;      /* Deep Navy Dark Section Surface */
  --gold: #C6A15B;              /* Royal Antique Gold Accent */
  --gold-champagne: #D8B66A;    /* Champagne Gold Highlights & Hover */
  --gold-dark: #9F7B38;         /* Deep Antique Gold for high contrast */
  --gold-soft: #EFE7D5;         /* Soft Gold Tint */
  --teal-dark: #174C4B;         /* Deep Teal (Secondary Accent, Used Sparingly) */
  --teal-soft: #EBF3F2;         /* Soft Teal Tint */
  --bg-ivory: #FCFAF5;          /* Ivory Card Background */
  --bg-white: #FFFFFF;          /* Pure White Background */
  --border-beige: #D8C9A8;      /* Soft Beige Borders */
  --border-light: #EBE3D3;      /* Subtle Light Beige Divider */
  --border-gold: rgba(198, 161, 91, 0.4); /* Gold Accent Border */

  /* Semantic Aliases for Existing Structure Compatibility */
  --primary: #0B1F3A;
  --primary-dark: #071529;
  --secondary: #0B1F3A;
  --accent: #0B1F3A;
  --accent-dark: #C6A15B;
  --accent-light: #D8B66A;
  --gold-accent: #C6A15B;
  --teal: #174C4B;
  --teal-light: #EBF3F2;
  
  --bg: #FCFAF5;
  --cream: #F5EFE3;
  --white: #FFFFFF;
  --surface-tint: #FCFAF5;
  --surface-alt: #F5EFE3;

  --tint-peach: #FBF6EC;
  --tint-blue: #F0F4F8;
  --tint-gold: #F7EEDB;
  --tint-slate: #F5EFE3;
  --tint-teal: #EBF3F2;

  /* Typography */
  --font-head: 'Playfair Display', Georgia, serif;
  --font-subhead: 'Poppins', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-btn: 'Poppins', sans-serif;

  /* Text Colors */
  --text: #111111;
  --text-soft: #424B54;
  --text-muted: #6B7280;
  --text-inverse: #FFFFFF;
  --text-gold: #C6A15B;

  /* Shapes, Radius & Luxury Shadows */
  --radius: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --radius-pill: 50px;
  --shadow-sm: 0 2px 10px rgba(11, 31, 58, 0.04), 0 1px 3px rgba(11, 31, 58, 0.02);
  --shadow-md: 0 8px 24px rgba(11, 31, 58, 0.07), 0 2px 6px rgba(11, 31, 58, 0.04);
  --shadow-lg: 0 16px 40px rgba(11, 31, 58, 0.11), 0 4px 12px rgba(11, 31, 58, 0.05);
  --shadow-gold: 0 6px 20px rgba(198, 161, 91, 0.25);
  --shadow-navy: 0 6px 22px rgba(11, 31, 58, 0.22);
  
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============ 2. RESET & GLOBAL BASE ============ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--bg-ivory);
  line-height: 1.65;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

button, input[type="button"], input[type="submit"] {
  font-family: var(--font-btn);
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: none;
  transition: var(--transition);
}

input, select, textarea {
  font-family: var(--font-body);
  font-size: 1rem; /* 16px minimum prevents iOS zoom */
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy-dark);
  word-wrap: break-word;
  letter-spacing: -0.01em;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  position: relative;
  width: 100%;
  scroll-margin-top: 90px;
}

.section-pad {
  padding: 85px 0;
}

@media (max-width: 991px) {
  .section-pad { padding: 65px 0; }
  .container { padding: 0 20px; }
  section { scroll-margin-top: 76px; }
}

@media (max-width: 640px) {
  .section-pad { padding: 50px 0; }
  .container { padding: 0 16px; }
  section { scroll-margin-top: 70px; }
}

/* Accessibility Focus States */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ============ 3. LOADING SCREEN (LIGHT ROYAL LUXURY EXPERIENCE) ============ */
#loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--bg-ivory);
  background: radial-gradient(circle at 50% 45%, #FFFFFF 0%, #FCFAF5 45%, #F5EFE3 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  transition: opacity 0.55s var(--ease), visibility 0.55s var(--ease);
}

#loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-brand {
  position: relative;
  margin-bottom: 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  padding: 16px 28px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border-beige);
  box-shadow: 0 16px 40px rgba(11, 31, 58, 0.08), 0 4px 20px rgba(198, 161, 91, 0.2);
  animation: loaderBrandCard 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.loader-brand::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: calc(var(--radius) + 6px);
  border: 1.5px dashed rgba(198, 161, 91, 0.5);
  animation: loaderAuraPulse 2.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes loaderBrandCard {
  0% { transform: scale(0.9) translateY(8px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

@keyframes loaderAuraPulse {
  0% { transform: scale(0.98); opacity: 0.4; border-color: rgba(198, 161, 91, 0.35); }
  50% { transform: scale(1.03); opacity: 0.95; border-color: var(--gold); }
  100% { transform: scale(0.98); opacity: 0.4; border-color: rgba(198, 161, 91, 0.35); }
}

.loader-brand-img {
  width: clamp(200px, 45vw, 320px);
  height: auto;
  max-width: 85vw;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 4px 12px rgba(11, 31, 58, 0.08));
  animation: loaderLogoBreath 3s ease-in-out infinite;
}

@keyframes loaderLogoBreath {
  0% { transform: scale(0.99); opacity: 0.96; }
  50% { transform: scale(1.02); opacity: 1; filter: drop-shadow(0 6px 16px rgba(198, 161, 91, 0.25)); }
  100% { transform: scale(0.99); opacity: 0.96; }
}

/* Luxury Royal Navy & Gold Rotating Compass Spinner */
.loader-spinner {
  width: 44px;
  height: 44px;
  border: 2.5px solid rgba(11, 31, 58, 0.1);
  border-top-color: var(--navy-dark);
  border-right-color: var(--gold);
  border-radius: 50%;
  animation: loaderSpin 0.95s cubic-bezier(0.5, 0.1, 0.4, 0.9) infinite;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(198, 161, 91, 0.25);
  position: relative;
}

.loader-spinner::after {
  content: '';
  position: absolute;
  top: 2px;
  right: 2px;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--gold-champagne);
}

@keyframes loaderSpin {
  to { transform: rotate(360deg); }
}

#loader span {
  color: var(--navy-dark);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  font-family: var(--font-btn);
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  padding-bottom: 6px;
}

#loader span::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, var(--navy-dark) 80%, transparent 100%);
  background-size: 200% 100%;
  animation: loaderLineShimmer 2s ease-in-out infinite;
}

@keyframes loaderLineShimmer {
  0% { background-position: 100% 0; opacity: 0.6; }
  50% { opacity: 1; }
  100% { background-position: -100% 0; opacity: 0.6; }
}

/* ============ 4. SCROLL PROGRESS BAR ============ */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-champagne), var(--navy-dark));
  z-index: 10000;
  transition: width 0.1s linear;
}

/* ============ 5. HEADER / NAVBAR (PURE WHITE ROYAL) ============ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding: 12px 0;
  background: #FFFFFF !important;
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 14px rgba(11, 31, 58, 0.05), 0 1px 3px rgba(11, 31, 58, 0.02);
  transition: padding 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.navbar.scrolled {
  padding: 8px 0;
  background: #FFFFFF !important;
  box-shadow: 0 4px 22px rgba(11, 31, 58, 0.09);
  border-bottom: 1px solid var(--border-beige);
}

body {
  padding-top: 84px;
}

@media (max-width: 991px) {
  body {
    padding-top: 76px;
  }
}

@media (max-width: 640px) {
  body {
    padding-top: 70px;
  }
  .navbar {
    padding: 9px 0;
  }
  .navbar.scrolled {
    padding: 7px 0;
  }
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 52px;
}

/* Existing Logo Presentation - Enhanced Luxury Appeal */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 2px 0;
  position: relative;
  transition: transform 0.3s var(--ease);
}

.logo:hover {
  transform: translateY(-1px);
}

.logo-img {
  height: clamp(44px, 5.2vw, 66px);
  width: auto;
  display: block;
  aspect-ratio: 1297 / 677;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(11, 31, 58, 0.12)) drop-shadow(0 0 1px rgba(198, 161, 91, 0.35));
  transition: all 0.35s var(--ease);
}

.logo:hover .logo-img {
  filter: drop-shadow(0 4px 14px rgba(11, 31, 58, 0.18)) drop-shadow(0 0 8px rgba(198, 161, 91, 0.4));
}

.navbar.scrolled .logo-img {
  height: clamp(40px, 4.5vw, 56px);
}

@media (max-width: 640px) {
  .logo-img {
    height: 42px;
  }
  .navbar.scrolled .logo-img {
    height: 38px;
  }
}

/* Desktop Navigation Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(4px, 0.8vw, 14px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--navy-dark);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(0.78rem, 0.4vw + 0.5rem, 0.9rem);
  white-space: nowrap;
  position: relative;
  transition: color 0.25s var(--ease);
  padding: 8px 6px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 6px;
  right: 6px;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.25s var(--ease);
}

.nav-links a:hover {
  color: var(--gold-dark);
}

.nav-links a:hover::after {
  width: calc(100% - 12px);
}

.nav-ico { display: none; }
.mobile-lang-row { display: none; }

/* Navbar CTA "Book Now" Button */
.btn-book-nav {
  background: var(--navy-dark) !important;
  color: #FFFFFF !important;
  font-family: var(--font-btn);
  padding: 9px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.86rem;
  box-shadow: 0 4px 14px rgba(11, 31, 58, 0.22);
  border: 1px solid var(--navy-dark);
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.btn-book-nav::after { display: none !important; }

.btn-book-nav:hover {
  background: var(--gold) !important;
  color: var(--navy-dark) !important;
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(198, 161, 91, 0.35);
}

/* Nav Actions Container */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .nav-actions {
    gap: 8px;
  }
}

/* Desktop Language Switcher */
.lang-switcher {
  position: relative;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 38px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  background: var(--bg-ivory);
  color: var(--navy-dark);
  border: 1px solid var(--border-beige);
  font-family: var(--font-btn);
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.lang-btn:hover, .lang-switcher.open .lang-btn {
  background: #FFFFFF;
  color: var(--navy-dark);
  border-color: var(--gold);
  box-shadow: 0 3px 12px rgba(198, 161, 91, 0.2);
}

.lang-btn .fa-globe {
  color: var(--gold);
  font-size: 0.9rem;
}

.lang-caret {
  font-size: 0.65rem;
  color: var(--text-muted);
  transition: transform 0.25s var(--ease);
}

.lang-switcher.open .lang-caret {
  transform: rotate(180deg);
  color: var(--gold);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 144px;
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-beige);
  box-shadow: 0 10px 30px rgba(11, 31, 58, 0.12);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.25s var(--ease);
  z-index: 1100;
}

.lang-switcher.open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-menu li {
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-btn);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy-dark);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}

.lang-menu li:hover {
  background: var(--bg-warm);
  color: var(--gold-dark);
}

.lang-menu li.active {
  background: var(--navy-dark);
  color: #FFFFFF;
}

/* ============ 6. MOBILE NAVBAR & HAMBURGER ============ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4.5px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--bg-ivory);
  border: 1.5px solid var(--border-beige);
  cursor: pointer;
  padding: 0;
  transition: all 0.25s var(--ease);
  z-index: 1100;
  box-sizing: border-box;
}

@media (max-width: 640px) {
  .hamburger {
    width: 38px;
    height: 38px;
  }
}

.hamburger:hover {
  background: #FFFFFF;
  border-color: var(--gold);
  box-shadow: 0 2px 8px rgba(198, 161, 91, 0.2);
}

.hamburger span {
  display: block;
  height: 2.2px;
  width: 20px;
  background: var(--navy-dark);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, background-color 0.25s ease;
  transform-origin: center;
}

.hamburger.active {
  background: #FFFFFF;
  border-color: var(--gold);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(6.7px) rotate(45deg);
  background: var(--navy-dark);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-6.7px) rotate(-45deg);
  background: var(--navy-dark);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 31, 58, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* Mobile Nav Drawer & Mobile Header Language Switcher */
@media (max-width: 991px) {
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .lang-switcher {
    display: block;
  }

  .lang-btn {
    height: 36px;
    padding: 0 10px;
    font-size: 0.8rem;
    gap: 5px;
  }

  .lang-btn #langBtnLabel {
    font-size: 0.78rem;
  }

  .lang-menu {
    right: 0;
    top: calc(100% + 6px);
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(320px, 86vw);
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 78px 0 32px;
    gap: 0;
    box-shadow: -10px 0 40px rgba(11, 31, 58, 0.2);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    z-index: 1080;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border-left: 1px solid var(--border-beige);
  }
  
  .nav-links.open { transform: translateX(0); }
  
  .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--border-light);
  }
  
  .nav-links a {
    color: var(--navy-dark);
    font-size: 0.94rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 22px;
    width: 100%;
  }
  
  .nav-links a::after { display: none; }
  .nav-links a:hover { background: var(--bg-warm); color: var(--gold-dark); }
  .nav-ico { display: inline-flex; width: 20px; color: var(--gold); }
  
  .nav-links li.nav-item-cta {
    border-bottom: none;
    padding: 18px 20px 8px;
  }
  
  .nav-links a.btn-book-nav {
    background: var(--navy-dark) !important;
    color: #FFFFFF !important;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 12px 20px;
    font-size: 0.94rem;
    font-weight: 600;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 14px rgba(11, 31, 58, 0.22);
    border: 1px solid var(--navy-dark);
    text-align: center;
    transition: all 0.3s var(--ease);
  }

  .nav-links a.btn-book-nav:hover,
  .nav-links a.btn-book-nav:active {
    background: var(--gold) !important;
    color: var(--navy-dark) !important;
    border-color: var(--gold);
    box-shadow: 0 6px 18px rgba(198, 161, 91, 0.35);
  }

  .mobile-lang-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: var(--bg-warm);
    margin-top: 10px;
    border-top: 1px solid var(--border-beige);
    border-bottom: 1px solid var(--border-beige);
  }

  .mobile-lang-label {
    font-family: var(--font-btn);
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--navy-dark);
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .mobile-lang-label i { color: var(--gold); }

  .mobile-lang-options {
    display: flex;
    gap: 6px;
  }

  .mobile-lang-opt {
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-beige);
    background: #FFFFFF;
    font-family: var(--font-btn);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--navy-dark);
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .mobile-lang-opt.active {
    background: var(--navy-dark);
    color: #FFFFFF;
    border-color: var(--navy-dark);
  }
  
  .hamburger { display: flex; }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .nav-links { gap: 2px; }
  .nav-links a { font-size: 0.76rem; padding: 6px 3px; }
  .btn-book-nav { padding: 7px 14px; font-size: 0.78rem; }
  .lang-btn { height: 34px; padding: 0 10px; font-size: 0.78rem; }
  .logo-img { height: clamp(40px, 4vw, 52px); }
  .navbar.scrolled .logo-img { height: clamp(36px, 3.5vw, 46px); }
}

@media (min-width: 1201px) and (max-width: 1440px) {
  .nav-links { gap: clamp(3px, 0.5vw, 10px); }
  .nav-links a { font-size: clamp(0.78rem, 0.35vw + 0.5rem, 0.86rem); padding: 7px 5px; }
  .btn-book-nav { padding: 8px 18px; font-size: 0.84rem; }
  .lang-btn { height: 36px; padding: 0 12px; font-size: 0.82rem; }
}

/* ============ 7. BUTTONS SYSTEM ============ */
.btn {
  font-family: var(--font-btn);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  min-height: 46px;
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
  line-height: 1.2;
}

.btn:active { transform: scale(0.98); }

/* Primary Button: Deep Navy with Antique Gold hover */
.btn-primary {
  background: var(--navy-dark);
  color: #FFFFFF !important;
  border: 1.5px solid var(--navy-dark);
  box-shadow: var(--shadow-navy);
}

.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* Secondary Button / Outline: Ivory Background with Deep Navy & Gold border */
.btn-outline {
  background: var(--bg-ivory);
  border: 1.5px solid var(--border-beige);
  color: var(--navy-dark);
}

.btn-outline:hover {
  background: #FFFFFF;
  border-color: var(--gold);
  color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* Premium Gold Button */
.btn-gold {
  background: var(--gold);
  color: var(--navy-dark) !important;
  border: 1.5px solid var(--gold);
  font-family: var(--font-btn);
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
}

.btn-gold:hover {
  background: var(--gold-champagne);
  border-color: var(--gold-champagne);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(198, 161, 91, 0.4);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.84rem;
  min-height: 38px;
}

/* Ripple Animation */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transform: scale(0);
  animation: rippleAnim 0.6s linear;
  pointer-events: none;
}

@keyframes rippleAnim {
  to { transform: scale(3.2); opacity: 0; }
}

/* ============ 8. SECTION HEADERS & REVEALS ============ */
.section-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 46px;
}

@media (max-width: 640px) {
  .section-head {
    margin-bottom: 32px;
  }
}

.section-eyebrow {
  font-family: var(--font-btn);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: inline-block;
  margin-bottom: 8px;
  position: relative;
}

.section-head h2 {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  color: var(--navy-dark);
  margin-bottom: 12px;
  line-height: 1.22;
}

@media (max-width: 640px) {
  .section-head h2 {
    font-size: clamp(1.5rem, 5.5vw, 1.95rem);
  }
}

.section-head p {
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.65;
}

@media (max-width: 640px) {
  .section-head p {
    font-size: 0.9rem;
    line-height: 1.55;
  }
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============ 9. HERO SECTION (DEEP NAVY ROYAL) ============ */
.hero {
  min-height: calc(100vh - 84px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy-dark);
  padding: 60px 0 70px;
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 40px 0 48px;
  }
}

.hero-carousel {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s ease;
  transform: scale(1.04);
}

.hero-slide.active {
  opacity: 1;
  animation: kenBurns 4.5s ease-out forwards;
}

@keyframes kenBurns {
  from { transform: scale(1.04); }
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 31, 58, 0.72) 0%, rgba(11, 31, 58, 0.88) 55%, rgba(11, 31, 58, 0.97) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}

.hero-title {
  margin: 0 auto 16px;
  max-width: 940px;
  line-height: 1.2;
  text-align: center;
  width: 100%;
}

.hero-title-main {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4.2vw, 3.25rem);
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.45);
  line-height: 1.18;
}

@media (max-width: 640px) {
  .hero-title-main {
    font-size: clamp(1.65rem, 6.2vw, 2.2rem);
  }
}

.hero-title-sub {
  display: block;
  font-family: var(--font-head);
  font-style: italic;
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  font-weight: 600;
  color: var(--gold-champagne);
  margin-top: 8px;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  line-height: 1.3;
}

@media (max-width: 640px) {
  .hero-title-sub {
    font-size: clamp(0.98rem, 4vw, 1.25rem);
  }
}

.hero p.sub {
  color: rgba(255, 255, 255, 0.95);
  font-family: var(--font-body);
  font-size: clamp(0.96rem, 1.5vw, 1.14rem);
  max-width: 800px;
  margin: 0 auto 8px;
  line-height: 1.65;
  text-align: center;
}

@media (max-width: 640px) {
  .hero p.sub {
    font-size: 0.92rem;
    line-height: 1.55;
  }
}

.hero-extra {
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-body);
  font-size: 0.92rem;
  max-width: 760px;
  margin: 0 auto 22px;
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 640px) {
  .hero-extra {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 18px;
  }
}

.hero-badges {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto 24px;
  max-width: 880px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-family: var(--font-btn);
  font-size: 0.82rem;
  font-weight: 600;
}

@media (max-width: 480px) {
  .hero-badge {
    font-size: 0.76rem;
    padding: 4px 10px;
  }
}

.hero-badge i { color: var(--gold); }

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto 28px;
  width: 100%;
}

@media (max-width: 540px) {
  .hero-ctas {
    flex-direction: column;
    gap: 10px;
  }
  .hero-ctas .btn {
    width: 100%;
    max-width: 320px;
  }
}

.hero-ctas .btn-primary {
  background: var(--gold) !important;
  color: var(--navy-dark) !important;
  border-color: var(--gold);
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}

.hero-ctas .btn-primary:hover {
  background: var(--gold-champagne) !important;
  border-color: var(--gold-champagne);
  color: var(--navy-dark) !important;
  transform: translateY(-2px);
}

.btn-call-hero {
  background: #FFFFFF;
  color: var(--navy-dark) !important;
  border: 1.5px solid var(--border-beige);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn-call-hero:hover {
  background: var(--bg-ivory);
  border-color: var(--gold);
  color: var(--gold-dark) !important;
  transform: translateY(-2px);
}

.btn-wa-hero {
  background: #25D366;
  color: #FFFFFF !important;
  border: 1.5px solid #25D366;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-wa-hero:hover {
  background: #1EBE5B;
  border-color: #1EBE5B;
  color: #FFFFFF !important;
  transform: translateY(-2px);
}

.hero-trust-strip {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto 26px;
  max-width: 980px;
  width: 100%;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 6px 15px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 500;
  text-align: left;
}

@media (max-width: 480px) {
  .trust-pill {
    font-size: 0.76rem;
    padding: 5px 12px;
  }
}

.trust-pill i { color: var(--gold); }

.hero-stats {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 480px) {
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 320px;
    gap: 10px;
  }
}

.stat-card {
  background: rgba(11, 31, 58, 0.6);
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(10px);
  padding: 14px 28px;
  border-radius: var(--radius-md);
  color: #FFFFFF;
  text-align: center;
  min-width: 145px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
}

@media (max-width: 480px) {
  .stat-card {
    min-width: unset;
    padding: 10px 12px;
  }
}

.stat-num {
  font-family: var(--font-btn);
  font-weight: 800;
  font-size: 1.85rem;
  color: var(--gold-champagne);
  line-height: 1.1;
  font-variant-numeric: normal;
}

@media (max-width: 480px) {
  .stat-num { font-size: 1.55rem; }
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 3px;
  line-height: 1.3;
}

@media (max-width: 480px) {
  .stat-label { font-size: 0.75rem; }
}

/* ============ 10. SERVICES & BOOKING SECTION (IVORY) ============ */
.services-booking-section {
  background: var(--bg-ivory);
}

.services-booking-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: start;
}

@media (max-width: 1024px) {
  .services-booking-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.services-taxi-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media (max-width: 640px) {
  .services-taxi-col {
    gap: 24px;
  }
}

.section-head-left {
  text-align: left;
  margin-bottom: 18px;
}

.section-head-left .section-eyebrow {
  margin-bottom: 6px;
}

.section-head-left h2 {
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  color: var(--navy-dark);
  margin-bottom: 10px;
  line-height: 1.25;
}

@media (max-width: 640px) {
  .section-head-left h2 {
    font-size: clamp(1.45rem, 5.2vw, 1.85rem);
  }
}

.about-lead {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-main);
  line-height: 1.7;
}

@media (max-width: 640px) {
  .about-lead { font-size: 0.94rem; }
}

.about-text-left {
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

@media (max-width: 640px) {
  .about-text-left { font-size: 0.88rem; }
}

/* Service Pillars Grid */
.about-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 640px) {
  .about-pillars {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.pillar-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 20px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border: 1px solid var(--border-beige);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.pillar-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.pillar-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius-sm);
  background: var(--bg-warm);
  color: var(--navy-dark);
  border: 1px solid var(--border-beige);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: var(--transition);
}

.pillar-card:hover .pillar-icon {
  background: var(--navy-dark);
  color: var(--gold);
  border-color: var(--navy-dark);
  transform: scale(1.05);
}

.pillar-info {
  flex: 1;
}

.pillar-info h4 {
  font-family: var(--font-btn);
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 4px;
  line-height: 1.3;
}

.pillar-info p {
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.5;
  margin: 0;
}

/* Airport Transfer Box */
.airport-transfer-box {
  background: #FFFFFF;
  border-radius: var(--radius);
  padding: 26px;
  border: 1px solid var(--border-beige);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

@media (max-width: 640px) {
  .airport-transfer-box {
    padding: 20px 16px;
    border-radius: var(--radius-md);
  }
}

.airport-transfer-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-champagne), var(--navy-dark));
}

.airport-title-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

@media (max-width: 480px) {
  .airport-title-group {
    align-items: flex-start;
    gap: 12px;
  }
}

.airport-main-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: var(--radius-sm);
  background: var(--navy-dark);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 14px rgba(11, 31, 58, 0.2);
}

.airport-eyebrow {
  font-family: var(--font-btn);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 2px;
}

.airport-title-group h3 {
  font-size: clamp(1.15rem, 1.9vw, 1.35rem);
  color: var(--navy-dark);
  margin: 0 0 3px;
  line-height: 1.25;
}

.airport-price-tag {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin: 0;
}

.airport-price-tag strong {
  font-size: 1.15rem;
  color: var(--gold-dark);
  font-family: var(--font-btn);
  font-weight: 700;
  font-variant-numeric: normal;
}

.airport-perks-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 16px 0 22px;
}

.airport-perks-list span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-main);
  line-height: 1.45;
}

.airport-perks-list i {
  color: var(--gold);
  margin-top: 3px;
  font-size: 0.92rem;
  flex-shrink: 0;
}

.airport-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 540px) {
  .airport-actions {
    flex-direction: column;
  }
  .airport-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============ 11. BOOKING FORM (PRISTINE ROYAL CARD) ============ */
.booking-col {
  position: sticky;
  top: 96px;
  width: 100%;
}

@media (max-width: 1024px) {
  .booking-col {
    position: static;
    max-width: 680px;
    margin: 0 auto;
  }
}

.booking-side-card {
  background: #FFFFFF;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-beige);
  overflow: hidden;
  width: 100%;
}

.booking-side-header {
  background: var(--navy-dark);
  color: #FFFFFF;
  padding: 24px 22px;
  border-bottom: 2px solid var(--gold);
}

@media (max-width: 640px) {
  .booking-side-header {
    padding: 18px 16px;
  }
}

.booking-side-header .section-eyebrow {
  color: var(--gold-champagne);
}

.booking-side-header h2 {
  color: #FFFFFF;
  font-size: clamp(1.35rem, 2.1vw, 1.6rem);
  margin: 4px 0 6px;
}

.booking-side-header p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  line-height: 1.45;
}

.booking-perks-inline {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 14px 0 16px;
}

.booking-perks-inline li {
  display: flex;
  gap: 8px;
  align-items: center;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.84rem;
}

.booking-perks-inline i {
  color: var(--gold-champagne);
  font-size: 0.86rem;
  flex-shrink: 0;
}

.direct-contact-mini {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .direct-contact-mini {
    flex-direction: column;
  }
  .direct-contact-mini .btn {
    width: 100%;
    justify-content: center;
  }
}

.direct-contact-mini .btn-sm {
  padding: 8px 14px;
  font-size: 0.82rem;
  border-radius: var(--radius-sm);
}

.booking-form-box {
  padding: 22px;
  background: #FFFFFF;
}

@media (max-width: 640px) {
  .booking-form-box {
    padding: 18px 14px;
  }
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 12px;
}

@media (max-width: 580px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
  width: 100%;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-label {
  font-family: var(--font-btn);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-label i {
  color: var(--gold-dark);
  font-size: 0.84rem;
  flex-shrink: 0;
}

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.input-wrap input,
.input-wrap select,
.input-wrap textarea {
  width: 100%;
  height: 46px;
  padding: 0 14px 0 38px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-beige);
  background: var(--bg-ivory);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 1rem; /* 16px minimum */
  transition: all 0.25s var(--ease);
}

.input-wrap select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 34px;
  cursor: pointer;
}

.input-wrap select option {
  color: var(--text-main);
  background: #FFFFFF;
  padding: 8px;
}

.input-wrap.textarea-wrap {
  align-items: flex-start;
}

.input-wrap textarea {
  height: auto;
  min-height: 80px;
  padding: 10px 14px 10px 38px;
  resize: vertical;
}

.input-wrap input:focus,
.input-wrap select:focus,
.input-wrap textarea:focus {
  border-color: var(--navy-dark);
  background: #FFFFFF;
  outline: none;
  box-shadow: 0 0 0 3px rgba(198, 161, 91, 0.25);
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #B91C1C;
  background: #FEF2F2;
}

.form-error-msg {
  font-size: 0.74rem;
  color: #B91C1C;
  min-height: 15px;
  font-weight: 500;
}

.field-icon {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-dark);
  font-size: 0.88rem;
  pointer-events: none;
  transition: color 0.25s var(--ease);
}

.input-wrap.textarea-wrap .field-icon {
  top: 13px;
  transform: none;
}

.input-wrap:focus-within .field-icon {
  color: var(--navy-dark);
}

.select-caret {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--navy-dark);
  font-size: 0.74rem;
  pointer-events: none;
  transition: transform 0.25s var(--ease);
}

.input-wrap:focus-within .select-caret {
  transform: translateY(-50%) rotate(180deg);
  color: var(--gold-dark);
}

.form-submit {
  margin-top: 8px;
  width: 100%;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--navy-dark);
  color: #FFFFFF;
  font-family: var(--font-btn);
  font-weight: 600;
  font-size: 0.98rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1.5px solid var(--navy-dark);
  box-shadow: var(--shadow-navy);
  transition: all 0.3s var(--ease);
  cursor: pointer;
}

.form-submit:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.form-success {
  display: none;
  text-align: center;
  padding: 30px 14px;
}

.form-success.show {
  display: block;
  animation: fadeUp 0.6s var(--ease);
}

.form-success i {
  font-size: 2.6rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.form-success h3 {
  font-size: 1.35rem;
  color: var(--navy-dark);
  margin-bottom: 6px;
}

/* ============ 12. SECTION 8: LOCAL SIGHTSEEING (IVORY) ============ */
#local-sightseeing {
  background: var(--bg-ivory);
}

.sightseeing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 32px;
}

@media (max-width: 960px) { .sightseeing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .sightseeing-grid { grid-template-columns: 1fr; gap: 16px; } }

.sightseeing-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-beige);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}

.sightseeing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.sightseeing-img,
.sightseeing-icon {
  width: 100%;
  height: 180px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--navy-dark);
  border: 1px solid var(--border-light);
  position: relative;
  display: block;
}

@media (max-width: 480px) {
  .sightseeing-img,
  .sightseeing-icon {
    height: 160px;
  }
}

.sightseeing-img img,
.sightseeing-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--ease);
}

.sightseeing-card:hover .sightseeing-img img,
.sightseeing-card:hover .sightseeing-icon img {
  transform: scale(1.06);
}

.sightseeing-card h3 {
  font-size: 1.15rem;
  color: var(--navy-dark);
  margin-bottom: 8px;
}

.sightseeing-card p {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.6;
}

.sightseeing-cta-wrap {
  text-align: center;
  margin-top: 36px;
  width: 100%;
}

@media (max-width: 540px) {
  .sightseeing-cta-wrap .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}

/* ============ 13. SECTION 9: TOUR PACKAGES (WARM BEIGE) ============ */
.packages {
  background: var(--bg-warm);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: stretch;
}

@media (max-width: 1180px) { .package-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .package-grid { grid-template-columns: 1fr; gap: 18px; } }

.pkg-card {
  background: #FFFFFF;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-beige);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.35s var(--ease);
}

.pkg-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.pkg-img {
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
  background: var(--navy-dark);
}

.pkg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.pkg-card:hover .pkg-img img {
  transform: scale(1.06);
}

.pkg-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(11, 31, 58, 0.92);
  color: var(--gold-champagne);
  border: 1px solid var(--border-gold);
  padding: 3px 11px;
  border-radius: var(--radius-pill);
  font-family: var(--font-btn);
  font-size: 0.72rem;
  font-weight: 700;
  backdrop-filter: blur(4px);
  z-index: 2;
}

.pkg-body {
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pkg-body h3 {
  font-size: 1.15rem;
  margin-bottom: 4px;
  color: var(--navy-dark);
}

.pkg-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-btn);
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 0.82rem;
  margin-bottom: 8px;
}

.pkg-desc {
  font-size: 0.86rem;
  color: var(--text-soft);
  line-height: 1.55;
  margin-bottom: 16px;
  min-height: 40px;
}

@media (max-width: 600px) {
  .pkg-desc {
    min-height: unset;
  }
}

.pkg-book {
  margin-top: auto;
  width: 100%;
  padding: 11px 16px;
  border-radius: var(--radius-sm);
  background: var(--bg-warm);
  color: var(--navy-dark) !important;
  font-family: var(--font-btn);
  font-weight: 600;
  font-size: 0.88rem;
  border: 1.5px solid var(--border-beige);
  transition: all 0.25s var(--ease);
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  text-decoration: none;
}

.pkg-book span,
.pkg-book i {
  color: var(--navy-dark) !important;
  transition: color 0.25s var(--ease);
}

.pkg-book:hover,
.pkg-book:active,
.pkg-book:focus {
  background: var(--navy-dark) !important;
  border-color: var(--navy-dark) !important;
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-navy);
}

.pkg-book:hover span,
.pkg-book:hover i,
.pkg-book:active span,
.pkg-book:active i,
.pkg-book:focus span,
.pkg-book:focus i {
  color: #FFFFFF !important;
}

/* ============ 14. SECTION 10: OUTSTATION ROUTES (IVORY) ============ */
.routes {
  background: var(--bg-ivory);
}

.routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

@media (max-width: 1024px) { .routes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .routes-grid { grid-template-columns: 1fr; gap: 16px; } }

.route-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-beige);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.35s var(--ease);
}

.route-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.route-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.route-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: var(--bg-warm);
  color: var(--gold-dark);
  border: 1px solid var(--border-beige);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.route-card:hover .route-icon {
  background: var(--navy-dark);
  color: var(--gold);
  border-color: var(--navy-dark);
}

.route-header h3 {
  font-size: 1.15rem;
  color: var(--navy-dark);
  line-height: 1.3;
}

.route-sub {
  font-family: var(--font-btn);
  font-size: 0.76rem;
  color: var(--gold-dark);
  font-weight: 600;
  display: block;
  margin-top: 2px;
}

.route-desc {
  font-size: 0.86rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 16px;
}

.route-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
  margin-top: auto;
}

.route-meta li {
  font-size: 0.82rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}

.route-meta li i {
  color: var(--gold);
  font-size: 0.84rem;
  flex-shrink: 0;
}

.btn-route-book {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  padding: 11px 16px;
  border-radius: var(--radius-sm);
  background: var(--bg-warm);
  border: 1.5px solid var(--border-beige);
  color: var(--navy-dark) !important;
  font-family: var(--font-btn);
  font-weight: 600;
  font-size: 0.88rem;
  min-height: 42px;
  text-decoration: none;
  transition: all 0.25s var(--ease);
  cursor: pointer;
}

.btn-route-book span,
.btn-route-book i {
  color: var(--navy-dark) !important;
  transition: color 0.25s var(--ease);
}

.btn-route-book:hover,
.btn-route-book:active,
.btn-route-book:focus {
  background: var(--navy-dark) !important;
  border-color: var(--navy-dark) !important;
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-navy);
}

.btn-route-book:hover span,
.btn-route-book:hover i,
.btn-route-book:active span,
.btn-route-book:active i,
.btn-route-book:focus span,
.btn-route-book:focus i {
  color: #FFFFFF !important;
}

/* ============ 15. SECTION 11: CAB FLEET & TARIFFS (WARM BEIGE) ============ */
.cabs {
  background: var(--bg-warm);
}

.cab-fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: stretch;
}

@media (max-width: 1200px) { .cab-fleet-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .cab-fleet-grid { grid-template-columns: 1fr; gap: 16px; } }

.cab-card {
  background: #FFFFFF;
  border-radius: var(--radius);
  border: 1px solid var(--border-beige);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.35s var(--ease);
  position: relative;
}

.cab-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.cab-card.featured {
  border: 2px solid var(--gold);
  box-shadow: 0 8px 24px rgba(198, 161, 91, 0.16);
}

.cab-img-wrap {
  position: relative;
  width: 100%;
  height: 175px;
  background: radial-gradient(ellipse at 50% 65%, #FFFFFF 0%, #F5EFE3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 12px 10px;
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

@media (max-width: 480px) {
  .cab-img-wrap {
    height: 155px;
  }
}

.cab-img-wrap img {
  max-height: 130px;
  width: auto;
  max-width: 90%;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(11, 31, 58, 0.15));
  transition: transform 0.4s var(--ease);
}

.cab-card:hover .cab-img-wrap img {
  transform: scale(1.05);
}

.seat-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(11, 31, 58, 0.9);
  color: #FFFFFF;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-family: var(--font-btn);
  font-size: 0.7rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.popular-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-family: var(--font-btn);
  font-size: 0.7rem;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(198, 161, 91, 0.3);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 4px;
}

.popular-badge.premium-badge {
  background: var(--navy-dark);
  color: var(--gold-champagne);
  border: 1px solid var(--gold);
}

.cab-badge-circle { display: none; }

.cab-card-body {
  padding: 18px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: #FFFFFF;
}

.cab-head {
  margin-bottom: 8px;
  text-align: left;
}

.cab-cat {
  font-family: var(--font-btn);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 2px;
}

.cab-head h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 3px;
}

.cab-subtitle {
  font-size: 0.82rem;
  color: var(--text-soft);
  line-height: 1.45;
  min-height: 34px;
}

@media (max-width: 640px) {
  .cab-subtitle { min-height: unset; }
}

.cab-specs-row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
  margin: 8px 0 10px;
  font-size: 0.76rem;
  color: var(--text-soft);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-light);
}

.cab-specs-row span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.cab-specs-row i {
  color: var(--gold);
  font-size: 0.78rem;
}

/* Tariff Block Inside Cab Card */
.tariff-block {
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-beige);
  background: var(--bg-warm);
  overflow: hidden;
  margin-bottom: 10px;
}

.tariff-tier {
  padding: 9px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.tariff-tier-below {
  background: rgba(198, 161, 91, 0.08);
  border-bottom: 1px dashed var(--border-beige);
}

.tariff-tier-label {
  font-family: var(--font-btn);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy-dark);
  margin-bottom: 1px;
}

.tariff-tier-price {
  font-family: var(--font-btn);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.2;
  font-variant-numeric: normal;
}

.tariff-tier-note {
  font-size: 0.74rem;
  color: var(--text-soft);
  font-weight: 500;
  margin-top: 1px;
}

.tariff-tier-above {
  background: #FFFFFF;
}

.tariff-tier-single {
  padding: 14px 10px;
  background: linear-gradient(180deg, rgba(198, 161, 91, 0.08) 0%, #FFFFFF 100%);
  min-height: 105px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.tariff-tier-single .tariff-tier-label {
  font-size: 0.72rem;
  color: var(--navy-dark);
  margin-bottom: 3px;
}

.tariff-tier-single .tariff-tier-price-sm {
  font-size: 0.94rem;
  margin: 2px 0 3px;
}

.tariff-tier-single .tariff-tier-total {
  font-size: 0.78rem;
  padding: 2px 10px;
}

.tariff-tier-price-sm {
  font-family: var(--font-btn);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin: 2px 0;
}

.tariff-plus {
  color: var(--gold-dark);
  font-weight: 800;
}

.tariff-tier-total {
  display: inline-block;
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  background: var(--tint-gold);
  color: var(--navy-dark);
  border: 1px solid var(--border-beige);
  font-size: 0.74rem;
  font-weight: 700;
  margin-top: 3px;
}

.tariff-divider { display: none; }

.toll-note {
  font-size: 0.74rem;
  color: var(--text-soft);
  margin: 0 0 12px;
  line-height: 1.35;
  text-align: center;
}

.toll-note i {
  color: var(--gold);
  margin-right: 3px;
}

.cab-card-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: auto;
}

@media (max-width: 360px) {
  .cab-card-btns {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

.btn-book-cab {
  background: var(--navy-dark);
  color: #FFFFFF !important;
  font-family: var(--font-btn);
  font-weight: 600;
  font-size: 0.84rem;
  padding: 10px 6px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 40px;
  border: 1px solid var(--navy-dark);
  transition: all 0.25s var(--ease);
}

.btn-book-cab:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark) !important;
  transform: translateY(-2px);
}

.btn-wa-card {
  background: #25D366;
  color: #FFFFFF !important;
  font-family: var(--font-btn);
  font-weight: 600;
  font-size: 0.84rem;
  padding: 10px 6px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 40px;
  border: 1px solid #25D366;
  transition: all 0.25s var(--ease);
}

.btn-wa-card:hover {
  background: #1EBE5B;
  border-color: #1EBE5B;
  transform: translateY(-2px);
}

/* Tariff Policy Trust Banner */
.know-fare-box {
  margin-top: 40px;
  background: var(--navy-dark);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: var(--shadow-md);
}

@media (max-width: 640px) {
  .know-fare-box {
    padding: 22px 18px;
    border-radius: var(--radius-md);
  }
}

.know-fare-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

@media (max-width: 860px) {
  .know-fare-content { flex-direction: column; align-items: flex-start; }
  .btn-gold { width: 100%; justify-content: center; }
}

.know-fare-text h3 {
  color: #FFFFFF;
  font-size: 1.25rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.know-fare-text h3 i { color: var(--gold-champagne); }

.know-fare-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 800px;
}

/* ============ 16. SECTION 12: WHY CHOOSE US (WARM BEIGE) ============ */
.why {
  background: var(--bg-warm);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width: 960px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; gap: 16px; } }

.why-card {
  background: #FFFFFF;
  padding: 26px 22px;
  border-radius: var(--radius);
  text-align: left;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-beige);
  transition: all 0.35s var(--ease);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.why-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: var(--bg-warm);
  border: 1px solid var(--border-beige);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-dark);
  font-size: 1.3rem;
  margin-bottom: 16px;
  transition: all 0.3s var(--ease);
}

.why-card:hover .why-icon {
  background: var(--navy-dark);
  color: var(--gold);
  border-color: var(--navy-dark);
}

.why-card h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: var(--navy-dark);
}

.why-card p {
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ============ 17. SECTION 13: MADURAI TRAVEL GUIDE (IVORY) ============ */
.madurai-guide {
  background: var(--bg-ivory);
}

.madurai-guide-container {
  display: flex;
  flex-direction: column;
  gap: 26px;
  max-width: 1100px;
  margin: 0 auto;
}

.guide-intro-card {
  background: #FFFFFF;
  border-radius: var(--radius);
  padding: 30px 34px;
  border: 1px solid var(--border-beige);
  border-left: 5px solid var(--gold);
  box-shadow: var(--shadow-sm);
}

@media (max-width: 640px) {
  .guide-intro-card {
    padding: 20px 18px;
    border-radius: var(--radius-md);
  }
}

.guide-intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--bg-warm);
  color: var(--navy-dark);
  border: 1px solid var(--border-beige);
  font-family: var(--font-btn);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.guide-intro-badge i { color: var(--gold); }

.guide-intro-p {
  color: var(--text-main);
  font-size: 0.96rem;
  line-height: 1.75;
}

.guide-pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

@media (max-width: 768px) {
  .guide-pillars-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.guide-pillar-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 26px 24px;
  border: 1px solid var(--border-beige);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.guide-pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.guide-pillar-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.guide-pillar-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: var(--radius-sm);
  background: var(--bg-warm);
  border: 1px solid var(--border-beige);
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all 0.3s var(--ease);
}

.guide-pillar-card:hover .guide-pillar-icon {
  background: var(--navy-dark);
  color: var(--gold);
  border-color: var(--navy-dark);
  transform: scale(1.06);
}

.guide-pillar-card h3 {
  font-size: 1.15rem;
  color: var(--navy-dark);
  line-height: 1.3;
  margin-bottom: 2px;
}

.guide-pillar-sub {
  font-family: var(--font-btn);
  font-size: 0.76rem;
  color: var(--gold-dark);
  font-weight: 600;
  display: block;
}

.guide-pillar-card p {
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.65;
}

.guide-cta-note {
  background: var(--bg-warm);
  border-radius: var(--radius-md);
  padding: 20px 26px;
  border: 1px dashed var(--border-beige);
  text-align: center;
}

@media (max-width: 640px) {
  .guide-cta-note {
    padding: 16px 14px;
    text-align: left;
  }
}

.guide-cta-note p {
  color: var(--text-main);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
}

/* ============ 18. SECTION 14: FAQ (WARM BEIGE) ============ */
.faq {
  background: var(--bg-warm);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border-beige);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

@media (max-width: 640px) {
  .faq-item {
    padding: 15px 18px;
  }
}

.faq-item[open] {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.faq-item summary {
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy-dark);
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

@media (max-width: 640px) {
  .faq-item summary {
    font-size: 0.96rem;
  }
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-family: var(--font-btn);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold-dark);
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  color: var(--navy-dark);
}

.faq-item p {
  color: var(--text-soft);
  margin-top: 12px;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============ 19. SECTION 15: GALLERY (ROYAL BLACK LUXURY) ============ */
.gallery {
  background: #080D1A;
  background: radial-gradient(ellipse at 50% 20%, #111C30 0%, #070D18 60%, #04070D 100%);
  color: #FFFFFF;
}

.gallery .section-eyebrow { color: var(--gold-champagne); }
.gallery .section-head h2 { color: #FFFFFF; }
.gallery .section-head p { color: rgba(255, 255, 255, 0.85); }

.gallery-filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.filter-btn {
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-btn);
  font-weight: 600;
  font-size: 0.84rem;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.25s var(--ease);
}

@media (max-width: 480px) {
  .filter-btn {
    padding: 6px 12px;
    font-size: 0.78rem;
  }
}

.filter-btn:hover {
  border-color: var(--gold);
  color: #FFFFFF;
  background: rgba(198, 161, 91, 0.2);
}

.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
}

.masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 860px) { .masonry { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .masonry { grid-template-columns: 1fr; gap: 14px; } }

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.gallery-item .g-ph {
  width: 100%;
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  background: var(--navy-surface);
}

.gallery-item .g-ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.gallery-item:hover .g-ph img {
  transform: scale(1.06);
}

.g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 31, 58, 0.9), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  display: flex;
  align-items: flex-end;
  padding: 14px 16px;
}

.gallery-item:hover .g-overlay { opacity: 1; }

.g-overlay span {
  color: #FFFFFF;
  font-family: var(--font-btn);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Lightbox Modal */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(11, 31, 58, 0.92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s var(--ease);
}

#lightbox.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

#lightboxBox {
  max-width: 900px;
  max-height: 85vh;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-gold);
}

#lightboxClose {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  color: var(--navy-dark);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

#lightboxClose:hover {
  background: var(--gold);
  color: var(--navy-dark);
  transform: scale(1.08);
}

/* ============ 20. SECTION 16: GOOGLE REVIEWS (IVORY) ============ */
.reviews-section {
  background: var(--bg-ivory);
  text-align: center;
}

.reviews-box {
  max-width: 780px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: var(--radius);
  padding: 44px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-beige);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

@media (max-width: 640px) {
  .reviews-box {
    padding: 28px 18px;
    border-radius: var(--radius-md);
  }
}

.reviews-badge-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--bg-warm);
  border: 2px solid var(--border-beige);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1.85rem;
  margin-bottom: 16px;
  box-shadow: 0 4px 14px rgba(198, 161, 91, 0.2);
}

.reviews-box h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 10px;
}

.reviews-box p {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto 24px;
}

@media (max-width: 640px) {
  .reviews-box p {
    font-size: 0.88rem;
  }
}

.btn-google-reviews {
  background: var(--navy-dark);
  color: #FFFFFF !important;
  padding: 13px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1.5px solid var(--navy-dark);
  box-shadow: var(--shadow-navy);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease);
}

.btn-google-reviews:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

@media (max-width: 540px) {
  .btn-google-reviews { width: 100%; justify-content: center; }
}

/* ============ 21. SECTION 17: CONTACT & MAP (DEEP NAVY) ============ */
.contact {
  background: var(--navy-dark);
  color: #FFFFFF;
  padding: 75px 0 40px;
}

@media (max-width: 640px) {
  .contact {
    padding: 50px 0 25px;
  }
}

.contact .section-head {
  margin-bottom: 32px;
}

.contact .section-eyebrow { color: var(--gold-champagne); }
.contact .section-head h2 { color: #FFFFFF; }
.contact .section-head p { color: rgba(255, 255, 255, 0.88); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

@media (max-width: 960px) { .contact-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 480px) { .contact-grid { grid-template-columns: 1fr; gap: 12px; } }

.contact-card {
  background: #FFFFFF;
  padding: 26px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-beige);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  border-color: var(--gold);
}

.contact-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: var(--radius-sm);
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.35rem;
  transition: all 0.35s var(--ease);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
}

.contact-card:hover .contact-icon {
  transform: scale(1.1) translateY(-2px);
}

.contact-icon-phone {
  background: var(--navy-dark);
  color: var(--gold);
}

.contact-icon-wa {
  background: #25D366;
}

.contact-icon-insta {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.contact-icon-fb {
  background: #1877F2;
}

.contact-icon-email {
  background: var(--navy-dark);
  color: var(--gold);
}

.contact-icon-map {
  background: var(--teal-dark);
  color: #FFFFFF;
}

.contact-card h4 {
  font-family: var(--font-btn);
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--navy-dark);
}

.contact-card p {
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.5;
  word-break: break-word;
}

.map-embed {
  width: 100%;
  height: 350px;
  margin-top: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  border: 2px solid var(--border-gold);
  line-height: 0;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

@media (max-width: 768px) {
  .map-embed { height: 260px; border-radius: var(--radius-md); }
}

/* ============ 22. FOOTER (DEEP NAVY ROYAL) ============ */
footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 65px 0 0;
  border-top: 3px solid var(--gold);
}

@media (max-width: 640px) {
  footer {
    padding: 48px 0 0;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: 26px; } }

.footer-brand-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  background: #FFFFFF;
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-gold);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25), 0 0 10px rgba(198, 161, 91, 0.15);
  transition: all 0.35s var(--ease);
}

.footer-logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35), 0 0 16px rgba(198, 161, 91, 0.3);
  border-color: var(--gold);
}

.footer-logo-img {
  height: 44px;
  width: auto;
}

.footer-tagline {
  font-size: 0.88rem;
  max-width: 330px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

@media (max-width: 560px) {
  .footer-tagline {
    max-width: 100%;
  }
}

.footer-col h4 {
  color: var(--gold-champagne);
  font-size: 1.05rem;
  margin-bottom: 14px;
  font-family: var(--font-head);
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 26px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 8px;
}

.footer-col a {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.82);
  transition: all 0.25s var(--ease);
}

.footer-col a:hover {
  color: var(--gold-champagne);
  padding-left: 4px;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1rem;
  transition: all 0.25s var(--ease);
}

.social-icons a:hover {
  transform: translateY(-3px) scale(1.08);
}

.social-icons a.social-fb:hover {
  background: #1877F2;
  border-color: #1877F2;
}

.social-icons a.social-insta:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: transparent;
}

.social-icons a.social-wa:hover {
  background: #25D366;
  border-color: #25D366;
}

.social-icons a.social-phone:hover {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}

.btn-policy-link {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  cursor: pointer;
  padding: 0;
  text-align: left;
  transition: color 0.2s var(--ease), padding-left 0.2s var(--ease);
}

.btn-policy-link:hover {
  color: var(--gold-champagne);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 640px) {
  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

/* ============ 23. FLOATING ACTION BUTTONS ============ */
.float-btns {
  position: fixed;
  bottom: 22px;
  right: 18px;
  z-index: 990;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

@media (max-width: 640px) {
  .float-btns {
    bottom: 16px;
    right: 14px;
  }
}

.fbtn {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.25rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

@media (max-width: 640px) {
  .fbtn {
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
  }
}

.fbtn:hover {
  transform: translateY(-3px) scale(1.05);
}

.fbtn.whatsapp {
  background: #25D366;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.fbtn.call {
  background: var(--navy-dark);
  border: 1px solid var(--gold);
  box-shadow: 0 6px 20px rgba(11, 31, 58, 0.35);
}

.fbtn.call:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

.fbtn.top {
  position: fixed;
  bottom: 22px;
  left: 18px;
  z-index: 990;
  background: #FFFFFF;
  color: var(--navy-dark);
  border: 1px solid var(--border-beige);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  box-shadow: 0 4px 16px rgba(11, 31, 58, 0.12);
  transition: all 0.3s var(--ease);
}

@media (max-width: 640px) {
  .fbtn.top {
    bottom: 16px;
    left: 14px;
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }
}

.fbtn.top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.fbtn.top:hover {
  background: var(--navy-dark);
  color: var(--gold);
  border-color: var(--navy-dark);
}

.pulse-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulseWhatsapp 2s cubic-bezier(0.25, 0.8, 0.25, 1) infinite;
  pointer-events: none;
}

@keyframes pulseWhatsapp {
  0% { transform: scale(0.95); opacity: 0.85; }
  70% { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ============ 24. POLICY MODAL ============ */
.policy-modal {
  position: fixed;
  inset: 0;
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}

.policy-modal[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.policy-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 31, 58, 0.75);
  backdrop-filter: blur(5px);
}

.policy-modal-content {
  position: relative;
  z-index: 2;
  background: #FFFFFF;
  border-radius: var(--radius);
  max-width: 760px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 36px 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-beige);
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 640px) {
  .policy-modal-content {
    padding: 26px 18px;
    border-radius: var(--radius-md);
  }
}

.policy-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-warm);
  color: var(--navy-dark);
  border: 1px solid var(--border-beige);
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}

.policy-modal-close:hover {
  background: var(--navy-dark);
  color: var(--gold);
  border-color: var(--navy-dark);
}

.policy-modal-content h2, .policy-modal-content h3 {
  color: var(--navy-dark);
  margin-bottom: 12px;
}

.policy-modal-content p {
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 14px;
  font-size: 0.92rem;
}

.policy-modal-content ul {
  margin: 10px 0 16px 20px;
  color: var(--text-soft);
  line-height: 1.7;
  list-style: disc;
  font-size: 0.92rem;
}