/* ==========================================================================
   AASTHA TOUR & TRAVELS - MODERN LIGHT & ROYAL NAVY THEME
   "Safe Journey, Memorable Experience" | +91 78770 77963
   ========================================================================== */

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

:root {
  /* Brand Palette (From User Reference Mockup) */
  --primary-navy: #0b1e48;
  --primary-navy-dark: #06112c;
  --primary-navy-light: #162f6b;
  --royal-navy: #0b1e48;
  --royal-navy-dark: #06112c;
  --royal-navy-light: #162f6b;
  --royal-blue: #1c3559;

  /* Warm Golden Amber / Terracotta Accent */
  --accent-amber: #c87a38;
  --accent-amber-light: #df914e;
  --accent-amber-dark: #a96127;
  --desert-gold: #c87a38;
  --desert-gold-light: #df914e;
  --desert-gold-dark: #a96127;
  --desert-gold-glow: rgba(200, 122, 56, 0.25);

  /* Functional Accents */
  --emerald: #10b981;
  --terracotta: #e11d48;
  --whatsapp-green: #25d366;
  --whatsapp-dark: #1ea952;

  /* Modern Light Theme Backgrounds & Neutrals */
  --bg-page: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-light: #ffffff;
  --bg-card-dark: #ffffff;
  --bg-light: #f8fafc;
  --bg-cream: #f1f5f9;
  --bg-dark: #0b1e48;

  /* Typography Colors */
  --text-dark: #0b1e48;
  --text-heading: #0b1e48;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light: #ffffff;
  --text-light-muted: #94a3b8;

  /* Borders & Dividers */
  --border-subtle: #e2e8f0;
  --border-light: #e2e8f0;
  --border-dark: #cbd5e1;
  --border-dark-strong: #0b1e48;

  /* Fonts */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-script: 'Dancing Script', cursive;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Shadows & Radius */
  --shadow-sm: 0 2px 8px rgba(11, 30, 72, 0.04);
  --shadow-md: 0 6px 20px rgba(11, 30, 72, 0.07);
  --shadow-lg: 0 15px 40px rgba(11, 30, 72, 0.10);
  --shadow-gold: 0 8px 24px rgba(200, 122, 56, 0.25);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button, input, select, textarea {
  font-family: inherit;
}

ul, ol {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Brand Script Accent */
.brand-script {
  font-family: var(--font-script);
  color: var(--accent-amber);
  font-weight: 700;
  display: inline-block;
  line-height: 1;
}

/* ==========================================================================
   TOP BAR (HIDDEN PER USER REQUEST)
   ========================================================================== */
.top-bar {
  display: none !important;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-bar a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-body);
  font-weight: 500;
}

.top-bar a:hover {
  color: var(--accent-amber);
}

.top-bar .badge-gold {
  background: #fef3c7;
  color: #b45309;
  border: 1px solid #fde68a;
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ==========================================================================
   MAIN HEADER & NAVIGATION (WHITE BACKGROUND LIKE MOCKUP)
   ========================================================================== */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 2px 14px rgba(11, 30, 72, 0.04);
  transition: var(--transition-smooth);
}

.main-header .navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  border-radius: 0;
  border: none;
  box-shadow: none;
}

.brand-text {
  display: none; /* Logo image contains the full typography matching mockup */
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  color: var(--primary-navy);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 0.5rem 0.2rem;
  position: relative;
  transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-amber);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--accent-amber);
  transition: var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Nav Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.5rem 0;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-smooth);
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-navy);
}

.nav-dropdown-item:hover {
  background: #f8fafc;
  color: var(--accent-amber);
  padding-left: 1.5rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.hamburger-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger-btn span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--primary-navy);
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* ==========================================================================
   BUTTONS (PILL CAPSULES LIKE MOCKUP)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn-pill {
  border-radius: var(--radius-full);
}

.btn-primary, .btn-navy {
  background: var(--primary-navy);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(11, 30, 72, 0.18);
}

.btn-primary:hover, .btn-navy:hover {
  background: var(--primary-navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(11, 30, 72, 0.28);
}

.btn-amber {
  background: var(--accent-amber);
  color: #ffffff;
  box-shadow: var(--shadow-gold);
}

.btn-amber:hover {
  background: var(--accent-amber-light);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--whatsapp-green);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45);
}

.btn-outline, .btn-outline-navy {
  background: transparent;
  border: 1.5px solid var(--primary-navy);
  color: var(--primary-navy);
}

.btn-outline:hover, .btn-outline-navy:hover {
  background: var(--primary-navy);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  color: #ffffff;
}

.btn-outline-white:hover {
  background: #ffffff;
  color: var(--primary-navy);
}

.btn-sm {
  padding: 0.45rem 1.1rem;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 0.85rem 2rem;
  font-size: 1rem;
}

/* ==========================================================================
   HERO SECTION (BRIGHT SKY & VEHICLE MONTAGE MATCHING MOCKUP)
   ========================================================================== */
/* ==========================================================================
   HERO SERVICES & PLACES SLIDESHOW (PREMIUM CAROUSEL)
   ========================================================================== */
.hero-slider-section {
  position: relative;
  overflow: hidden;
  background: #06112c;
  width: 100%;
}

.hero-slider {
  position: relative;
  width: 100%;
  min-height: 620px;
  height: 75vh;
  max-height: 750px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1.03);
  display: flex;
  align-items: center;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(6, 17, 44, 0.95) 0%,
    rgba(11, 30, 72, 0.85) 50%,
    rgba(11, 30, 72, 0.45) 100%
  );
  z-index: 2;
}

.hero-slide-container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.hero-slide-content {
  max-width: 760px;
  color: #ffffff;
}

.hero-slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200, 122, 56, 0.28);
  border: 1px solid var(--accent-amber-light);
  color: #fde68a;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
}

.hero-slide-title {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
}

.hero-slide-title .brand-script {
  font-family: var(--font-script);
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--accent-amber-light);
  display: block;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-slide-desc {
  font-size: 1.12rem;
  color: #e2e8f0;
  line-height: 1.65;
  margin-bottom: 2rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  max-width: 640px;
}

.hero-slide-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-slide-features {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 1.25rem;
  flex-wrap: wrap;
}

.hero-slide-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #cbd5e1;
  font-size: 0.88rem;
  font-weight: 600;
}

.hero-slide-feature .feature-icon {
  color: var(--accent-amber-light);
  font-size: 1.15rem;
}

/* Slider Controls: Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  font-size: 1.75rem;
  user-select: none;
}

.slider-arrow:hover {
  background: #ffffff;
  color: var(--primary-navy);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.slider-arrow-prev {
  left: 1.5rem;
}

.slider-arrow-next {
  right: 1.5rem;
}

/* Slider Controls: Dots Indicator */
.slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.slider-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.35s ease;
  padding: 0;
}

.slider-dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.slider-dot.active {
  background: var(--accent-amber);
  border-color: #ffffff;
  width: 38px;
  border-radius: 20px;
}

/* ==========================================================================
   WHY CHOOSE US SECTION (FROM MOCKUP)
   ========================================================================== */
.section-why-us {
  padding: 3rem 0;
  background: #ffffff;
}

.section-why-us .section-title {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--primary-navy);
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-why-us .brand-script {
  font-family: var(--font-script);
  color: var(--accent-amber);
  font-size: 3.2rem;
  font-weight: 700;
  margin: 0 0.25rem;
}

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

.why-us-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem 1.25rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(11, 30, 72, 0.03);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-us-card:hover {
  transform: translateY(-5px);
  border-color: #cbd5e1;
  box-shadow: 0 12px 30px rgba(11, 30, 72, 0.08);
}

.why-us-icon {
  margin: 0 auto 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-navy);
}

.why-us-card h4 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

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

/* ==========================================================================
   POPULAR DESTINATIONS STRIP (FROM MOCKUP)
   ========================================================================== */
.section-destinations {
  padding: 2.5rem 0 4.5rem;
  background: #f8fafc;
}

.section-header-flanked {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
}

.flank-line {
  height: 1.5px;
  width: 60px;
  background: #94a3b8;
}

.flank-title {
  font-family: var(--font-heading);
  font-size: 2.15rem;
  font-weight: 800;
  color: var(--primary-navy);
  letter-spacing: -0.3px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.flank-title .plane-icon {
  color: var(--primary-navy);
  font-size: 1.5rem;
  transform: rotate(45deg);
  display: inline-block;
}

.dest-strip-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.15rem;
}

.dest-strip-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 190px;
  box-shadow: 0 6px 18px rgba(11, 30, 72, 0.08);
  display: block;
  transition: all 0.35s ease;
}

.dest-strip-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dest-strip-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(11, 30, 72, 0.16);
}

.dest-strip-card:hover img {
  transform: scale(1.08);
}

.dest-strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(11, 30, 72, 0.9) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1rem;
}

.dest-strip-overlay h4 {
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* ==========================================================================
   GENERAL SECTION HEADINGS
   ========================================================================== */
.section {
  padding: 4.5rem 0;
}

.section-cream {
  background: #f8fafc;
}

.section-dark {
  background: var(--primary-navy);
  color: #ffffff;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
}

.section-subtitle {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-amber);
  margin-bottom: 0.65rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--primary-navy);
  margin-bottom: 0.85rem;
}

.section-dark .section-title {
  color: #ffffff;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.section-dark .section-lead {
  color: #cbd5e1;
}

.gold-divider {
  width: 70px;
  height: 3px;
  background: var(--accent-amber);
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* Trust Bar / Legacy Bar */
.trust-bar {
  background: #ffffff;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border-subtle);
  border-top: 1px solid var(--border-subtle);
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #eff6ff;
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.trust-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.trust-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   GRIDS & PACKAGE CARDS
   ========================================================================== */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

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

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

/* Travel Card */
.travel-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(11, 30, 72, 0.05);
  border: 1px solid var(--border-subtle);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.travel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(11, 30, 72, 0.12);
  border-color: #cbd5e1;
}

.travel-card-media {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.travel-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.travel-card:hover .travel-card-media img {
  transform: scale(1.08);
}

.card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #ffffff;
  color: var(--primary-navy);
  border: 1px solid var(--border-subtle);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.card-price-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(11, 30, 72, 0.92);
  color: #ffffff;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.card-price-badge span {
  color: var(--accent-amber-light);
  font-size: 1.05rem;
}

.travel-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.travel-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.travel-card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.travel-card-text {
  font-size: 0.9rem;
  color: var(--text-body);
  margin-bottom: 1.25rem;
  flex-grow: 1;
  line-height: 1.55;
}

.travel-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.tag-pill {
  background: #f1f5f9;
  color: var(--primary-navy);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  border: 1px solid #e2e8f0;
}

.travel-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}

/* ==========================================================================
   CAR RENTAL FLEET SHOWCASE
   ========================================================================== */
.fleet-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(11, 30, 72, 0.05);
  transition: var(--transition-smooth);
}

.fleet-card:hover {
  border-color: #cbd5e1;
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(11, 30, 72, 0.1);
}

.fleet-header {
  background: var(--primary-navy);
  color: #ffffff;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fleet-header h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
}

.fleet-capacity-badge {
  background: rgba(200, 122, 56, 0.25);
  border: 1px solid var(--accent-amber-light);
  color: #fde68a;
  font-size: 0.75rem;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  font-weight: 700;
}

.fleet-body {
  padding: 1.5rem;
}

.fleet-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1.25rem 0;
  font-size: 0.85rem;
  color: var(--text-body);
}

.fleet-spec-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.fleet-pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  font-size: 0.88rem;
}

.fleet-pricing-table td {
  padding: 0.6rem 0;
  border-bottom: 1px solid #edf2f7;
}

.fleet-pricing-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--primary-navy);
}

/* ==========================================================================
   ATTRACTIONS & ROUTE CARDS
   ========================================================================== */
.attraction-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(11, 30, 72, 0.03);
  transition: var(--transition-fast);
}

.attraction-card:hover {
  transform: translateY(-4px);
  border-color: #cbd5e1;
  box-shadow: 0 10px 25px rgba(11, 30, 72, 0.08);
}

.attraction-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.4rem;
}

.attraction-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Poster Cards (Marketing Showcase) */
.poster-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(11, 30, 72, 0.08);
  border: 1px solid var(--border-subtle);
  background: #ffffff;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.poster-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(11, 30, 72, 0.14);
}

.poster-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top center;
  transition: var(--transition-smooth);
}

.poster-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 30, 72, 0.95) 0%, rgba(11, 30, 72, 0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: #ffffff;
}

.poster-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.3rem;
}

.poster-card-subtitle {
  font-size: 0.82rem;
  color: #fde68a;
  margin-bottom: 0.75rem;
}

.poster-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  align-self: flex-start;
  backdrop-filter: blur(4px);
}

/* ==========================================================================
   SUBPAGE HERO & ITINERARY
   ========================================================================== */
.page-hero {
  position: relative;
  min-height: 440px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  color: #ffffff;
  padding: 4.5rem 0 3.5rem;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 17, 44, 0.88) 0%, rgba(11, 30, 72, 0.80) 100%);
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--accent-amber-light);
  margin-bottom: 1rem;
}

.breadcrumbs a {
  color: #e2e8f0;
}

.breadcrumbs a:hover {
  color: #ffffff;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.page-hero-subtitle {
  font-size: 1.15rem;
  color: #e2e8f0;
  max-width: 700px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Itinerary Timeline */
.itinerary-timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.timeline-day-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 4px 15px rgba(11, 30, 72, 0.03);
  overflow: hidden;
}

.timeline-header {
  background: #f8fafc;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  border-bottom: 1px solid var(--border-subtle);
}

.day-tag {
  background: var(--primary-navy);
  color: #ffffff;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
}

.timeline-body {
  padding: 1.5rem;
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* Inclusions Box */
.inclusions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: #ffffff;
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 4px 18px rgba(11, 30, 72, 0.04);
  margin: 2.5rem 0;
}

.inclusion-col h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.inclusion-col.inc h4 { color: var(--emerald); }
.inclusion-col.exc h4 { color: var(--terracotta); }

.inclusion-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-body);
}

/* ==========================================================================
   WHY US COMPARISON TABLE (LIGHT HIGH-CONTRAST THEME)
   ========================================================================== */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(11, 30, 72, 0.05);
  border: 1px solid var(--border-subtle);
}

.comparison-table th {
  background: var(--primary-navy);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 1.2rem 1.5rem;
  text-align: left;
}

.comparison-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #edf2f7;
  font-size: 0.9rem;
  color: var(--text-body);
}

.comparison-table tr:nth-child(even) td {
  background: #f8fafc;
}

/* ==========================================================================
   TESTIMONIALS & FAQ
   ========================================================================== */
.review-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 4px 18px rgba(11, 30, 72, 0.04);
  position: relative;
}

.review-stars {
  color: #f59e0b;
  margin-bottom: 1rem;
  display: flex;
  gap: 0.25rem;
  font-size: 1.15rem;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-body);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #eff6ff;
  color: var(--primary-navy);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #bfdbfe;
}

.author-info h5 {
  font-size: 0.95rem;
  color: var(--primary-navy);
  font-weight: 700;
}

.author-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(11, 30, 72, 0.02);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.faq-question svg {
  transition: transform var(--transition-fast);
  color: var(--primary-navy);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.65;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ==========================================================================
   BOOKING CARD (CONTACT & GENERAL INQUIRY)
   ========================================================================== */
.booking-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: 0 10px 30px rgba(11, 30, 72, 0.06);
  color: var(--text-body);
}

.booking-card-header {
  margin-bottom: 1.5rem;
}

.booking-card-header h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary-navy);
  margin-bottom: 0.3rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  background: #ffffff;
  color: var(--primary-navy);
  font-size: 0.92rem;
  outline: none;
  transition: var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary-navy);
  box-shadow: 0 0 0 3px rgba(11, 30, 72, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ==========================================================================
   FOOTER (DEEP ROYAL NAVY)
   ========================================================================== */
.main-footer {
  background: var(--primary-navy);
  color: #cbd5e1;
  padding: 4.5rem 0 2rem;
  border-top: 3px solid var(--accent-amber);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2.5px;
  background: var(--accent-amber);
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 0.35rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.footer-contact-item svg {
  color: var(--accent-amber-light);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: #94a3b8;
}

.footer-bottom a {
  color: var(--accent-amber-light);
}

.footer-bottom a:hover {
  color: #ffffff;
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON & LIGHTBOX
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: var(--transition-fast);
  text-decoration: none;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: pulse-ring 1.8s infinite cubic-bezier(0.25, 0, 0, 1);
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 0; }
  100% { transform: scale(1.2); opacity: 0; }
}

.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(6, 17, 44, 0.94);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.lightbox-caption {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-top: 1rem;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: -10px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1100px) {
  .dest-strip-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero-slide-title {
    font-size: 2.8rem;
  }
  .hero-slide-title .brand-script {
    font-size: 3.2rem;
  }
}

@media (max-width: 1024px) {
  .hero-slider {
    min-height: 560px;
    height: auto;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-slider {
    min-height: 520px;
    height: auto;
  }
  .hero-slide-container {
    padding: 3rem 1.25rem 4rem;
  }
  .hero-slide-title {
    font-size: 2.1rem;
    line-height: 1.2;
  }
  .hero-slide-title .brand-script {
    font-size: 2.4rem;
  }
  .hero-slide-desc {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  .hero-slide-features {
    gap: 0.75rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .slider-arrow {
    display: none;
  }
  .why-us-grid {
    grid-template-columns: 1fr 1fr;
  }
  .dest-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3, .grid-2 {
    grid-template-columns: 1fr;
  }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 1.5rem;
    box-shadow: 0 15px 30px rgba(11, 30, 72, 0.12);
    border-top: 1px solid var(--border-subtle);
    max-height: 80vh;
    overflow-y: auto;
    z-index: 999;
  }
  .nav-menu.active {
    display: flex;
  }
  .nav-dropdown {
    width: 100%;
  }
  .nav-dropdown > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 1px solid var(--border-subtle);
    background: #f8fafc;
    border-radius: var(--radius-sm);
    margin: 0.5rem 0 0.75rem 0;
    padding: 0.5rem 0;
    display: none;
  }
  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }
  .hamburger-btn {
    display: block;
  }
  .top-bar {
    display: none;
  }
  .inclusions-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-slide-title {
    font-size: 1.85rem;
  }
  .hero-slide-title .brand-script {
    font-size: 2.1rem;
  }
  .hero-slide-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-slide-actions .btn {
    text-align: center;
    justify-content: center;
    width: 100%;
  }
  .why-us-grid {
    grid-template-columns: 1fr;
  }
  .dest-strip-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   BOOK NOW DROPDOWN (NAVBAR HEADER)
   ========================================================================== */
.book-dropdown-wrap {
  position: relative;
  display: inline-block;
}

.book-btn-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--primary-navy);
  color: #ffffff;
  border: 1.5px solid var(--primary-navy);
  cursor: pointer;
  padding: 0.52rem 1.25rem;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: var(--radius-full);
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(11, 30, 72, 0.16);
  user-select: none;
}

.book-btn-trigger:hover,
.book-dropdown-wrap:hover .book-btn-trigger {
  background: var(--royal-navy);
  border-color: var(--royal-navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(11, 30, 72, 0.26);
  color: #ffffff;
}

.book-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 270px;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 0.65rem;
  box-shadow: 0 18px 45px rgba(11, 30, 72, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1001;
}

.book-dropdown-wrap:hover .book-dropdown-menu,
.book-dropdown-wrap.active .book-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.book-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  right: 28px;
  width: 12px;
  height: 12px;
  background: #ffffff;
  border-left: 1px solid var(--border-subtle);
  border-top: 1px solid var(--border-subtle);
  transform: rotate(45deg);
}

.book-option-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 0.95rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-bottom: 0.35rem;
}

.book-option-link:last-child {
  margin-bottom: 0;
}

.book-option-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.option-call .book-option-icon {
  background: #eff6ff;
  color: #2563eb;
}

.option-wa .book-option-icon {
  background: #ecfdf5;
  color: #10b981;
}

.book-option-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.book-option-text strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.book-option-text small {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.book-option-link:hover {
  transform: translateX(3px);
}

.option-call:hover {
  background: #f0f7ff;
}

.option-call:hover .book-option-text strong {
  color: #1d4ed8;
}

.option-wa:hover {
  background: #f0fdf4;
}

.option-wa:hover .book-option-text strong {
  color: #15803d;
}

/* ==========================================================================
   UNIVERSAL BOOKING MODAL (BOTH CALL & WHATSAPP CHOICES)
   ========================================================================== */
.booking-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(11, 30, 72, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
}

.booking-modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.booking-modal-card {
  background: #ffffff;
  border-radius: 24px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 30px 70px rgba(11, 30, 72, 0.32);
  position: relative;
  overflow: hidden;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid var(--border-subtle);
}

.booking-modal-backdrop.active .booking-modal-card {
  transform: scale(1) translateY(0);
}

.booking-modal-header {
  background: linear-gradient(135deg, #0b1e48 0%, #1e3a8a 100%);
  color: #ffffff;
  padding: 1.75rem 2rem 1.6rem;
  position: relative;
}

.booking-modal-close {
  position: absolute;
  top: 1.15rem;
  right: 1.15rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
}

.booking-modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.modal-badge {
  display: inline-block;
  background: rgba(235, 131, 36, 0.25);
  color: #fed7aa;
  border: 1px solid rgba(235, 131, 36, 0.45);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.6rem;
}

.booking-modal-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.35rem;
  line-height: 1.25;
}

.booking-modal-subtitle {
  font-size: 0.88rem;
  color: #cbd5e1;
  line-height: 1.45;
}

.booking-modal-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-choice-btn {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  padding: 1.15rem 1.25rem;
  border-radius: 16px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  cursor: pointer;
}

/* Call Option in Modal */
.choice-call {
  background: #f8fafc;
  border-color: #e2e8f0;
}

.choice-call:hover {
  background: #eff6ff;
  border-color: #3b82f6;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(59, 130, 246, 0.16);
}

.choice-call .choice-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: #2563eb;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(37, 99, 235, 0.3);
}

.choice-call .choice-title {
  font-size: 1.08rem;
  font-weight: 800;
  color: #1e3a8a;
  display: block;
}

.choice-call .choice-desc {
  font-size: 0.82rem;
  color: #64748b;
  display: block;
  margin-top: 3px;
}

.choice-call .choice-arrow {
  margin-left: auto;
  font-size: 1.3rem;
  color: #3b82f6;
  font-weight: 800;
  transition: transform 0.2s ease;
}

.choice-call:hover .choice-arrow {
  transform: translateX(4px);
}

/* WhatsApp Option in Modal */
.choice-wa {
  background: #f0fdf4;
  border-color: #bbf7d0;
}

.choice-wa:hover {
  background: #dcfce7;
  border-color: #22c55e;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.22);
}

.choice-wa .choice-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: #25D366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(37, 211, 102, 0.35);
}

.choice-wa .choice-title {
  font-size: 1.08rem;
  font-weight: 800;
  color: #14532d;
  display: block;
}

.choice-wa .choice-desc {
  font-size: 0.82rem;
  color: #166534;
  display: block;
  margin-top: 3px;
}

.choice-wa .choice-arrow {
  margin-left: auto;
  font-size: 1.3rem;
  color: #22c55e;
  font-weight: 800;
  transition: transform 0.2s ease;
}

.choice-wa:hover .choice-arrow {
  transform: translateX(4px);
}

.booking-modal-footer {
  padding: 0 1.75rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  font-size: 0.78rem;
  color: #64748b;
  border-top: 1px solid #f1f5f9;
  padding-top: 1.1rem;
}

.booking-modal-footer span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

@media (max-width: 480px) {
  .booking-modal-card {
    border-radius: 20px;
  }
  .booking-modal-header {
    padding: 1.4rem 1.25rem;
  }
  .booking-modal-title {
    font-size: 1.25rem;
  }
  .booking-modal-body {
    padding: 1.25rem;
  }
  .booking-choice-btn {
    padding: 1rem;
  }
  .choice-call .choice-icon,
  .choice-wa .choice-icon {
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
  }
}

/* ==========================================================================
/* ==========================================================================
   REVIEWS & COMMENTS SHOWCASE (BOX PATTERNS & INLINE REVIEW FORM)
   ========================================================================== */
.reviews-simple-section,
.reviews-section {
  background: #f8fafc;
  padding: 4.5rem 0;
  position: relative;
}

.reviews-slider-box-wrapper,
.reviews-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.rev-arrow-btn,
.reviews-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: var(--primary-navy, #0b1e48);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(11, 30, 72, 0.08);
  transition: all 0.2s ease;
  flex-shrink: 0;
  user-select: none;
  z-index: 2;
  line-height: 1;
}

.rev-arrow-btn:hover,
.reviews-nav-btn:hover {
  background: var(--primary-navy, #0b1e48);
  color: #ffffff;
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(11, 30, 72, 0.2);
}

.rev-slider-viewport,
.reviews-slider-viewport {
  overflow: hidden;
  width: 100%;
  padding: 0.75rem 0.25rem;
}

.reviews-slider-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

/* Box Pattern Review Card */
.review-box-card,
.review-slide-card {
  flex: 0 0 calc((100% - 3rem) / 3);
  max-width: calc((100% - 3rem) / 3);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.6rem;
  box-shadow: 0 6px 20px rgba(11, 30, 72, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-sizing: border-box;
  min-height: 250px;
}

.review-box-card:hover,
.review-slide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(11, 30, 72, 0.1);
  border-color: #cbd5e1;
}

.box-top-row,
.card-top-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.box-stars,
.card-stars {
  color: #f59e0b;
  font-size: 1.15rem;
  letter-spacing: 2px;
}

.box-verified,
.card-verified-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: #059669;
  background: #ecfdf5;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid #a7f3d0;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.box-comment-text,
.card-review-text {
  font-size: 0.92rem;
  color: #334155;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.box-tour-tag,
.card-tour-badge {
  display: inline-block;
  background: #f1f5f9;
  color: #475569;
  font-size: 0.76rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  margin-bottom: 0.85rem;
  border: 1px solid #e2e8f0;
}

.box-author-row,
.card-author-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid #f1f5f9;
  padding-top: 0.85rem;
}

.box-author-avatar,
.card-author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--royal-navy, #0b1e48), #1e3a8a);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.box-author-name,
.card-author-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-navy, #0b1e48);
}

.box-author-city,
.card-author-city {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 1px;
}

/* Dots */
.reviews-dots-container {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.75rem;
}

.rev-dot,
.review-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.25s ease;
}

.rev-dot.active,
.review-dot.active {
  width: 24px;
  border-radius: 8px;
  background: var(--primary-navy, #0b1e48);
}

/* Write a Review Box (Directly below slideshow) */
.write-review-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 2.25rem 2.5rem;
  box-shadow: 0 10px 30px rgba(11, 30, 72, 0.06);
  max-width: 860px;
  margin: 0 auto;
}

.write-review-header {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 1rem;
}

.write-review-title {
  font-family: var(--font-heading, inherit);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-navy, #0b1e48);
  margin-bottom: 0.25rem;
}

.write-review-subtitle {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.5;
}

.review-form-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-field label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-navy, #0b1e48);
}

.form-field label .required {
  color: #ef4444;
}

.rev-input,
.form-input {
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1.5px solid #cbd5e1;
  font-size: 0.92rem;
  font-family: inherit;
  color: #1e293b;
  outline: none;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
  width: 100%;
}

.rev-input:focus,
.form-input:focus {
  border-color: var(--primary-navy, #0b1e48);
  box-shadow: 0 0 0 3px rgba(11, 30, 72, 0.1);
}

/* Star selection 1 to 5 */
.inline-star-picker,
.star-rating-picker {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  user-select: none;
}

.star-click-item,
.star-item {
  font-size: 2.1rem;
  color: #cbd5e1;
  cursor: pointer;
  transition: transform 0.15s ease, color 0.15s ease;
  line-height: 1;
}

.star-click-item.active,
.star-item.active,
.star-click-item:hover,
.star-item:hover {
  color: #f59e0b;
}

.star-click-item:hover,
.star-item:hover {
  transform: scale(1.2);
}

.star-rating-label,
.rating-text-feedback {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-navy, #0b1e48);
  margin-left: 0.75rem;
}

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 0.25rem;
  flex-wrap: wrap;
}

.review-success-msg {
  display: none;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

@media (max-width: 1024px) {
  .review-box-card,
  .review-slide-card {
    flex: 0 0 calc((100% - 1.5rem) / 2);
    max-width: calc((100% - 1.5rem) / 2);
  }
  .form-row-3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .review-box-card,
  .review-slide-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .form-row-3 {
    grid-template-columns: 1fr;
  }
  .write-review-box {
    padding: 1.5rem 1.25rem;
  }
  .rev-arrow-btn,
  .reviews-nav-btn {
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
  }
}
