/* ==========================================================================
   MAROUSKA TOURS - Modern Design System & Stylesheet
   Hurghada Private Transfers & Premium Service
   Built with pure Vanilla CSS, Grid, Flexbox, & Design Tokens
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS & VARIABLES
   -------------------------------------------------------------------------- */
:root {
  /* Brand Colors from Exact Logo */
  --primary: #FF3B00;
  --primary-hover: #E03400;
  --primary-light: #FFF2EE;
  --primary-gradient: linear-gradient(135deg, #FF1A1A 0%, #FF5500 50%, #FFAA00 100%);
  --secondary: #0B132B;
  --secondary-light: #1C2541;
  --secondary-card: #162039;
  --teal-brand: #096B80;
  --teal-light: #E6F4F7;
  
  /* Text & Neutral Colors */
  --text-main: #0F172A;
  --text-muted: #475569;
  --text-light: #94A3B8;
  --bg-body: #F8FAFC;
  --bg-card: #FFFFFF;
  --border-color: #E2E8F0;
  --border-focus: #FF3B00;

  /* Accent Colors */
  --star-yellow: #FFB800;
  --green-success: #10B981;

  /* Elevation Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 40px -10px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 10px 25px rgba(255, 59, 0, 0.25);

  /* Typography */
  --font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Layout Dimensions */
  --max-width: 1240px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.hero-background-wrapper picture,
.card-image-wrap picture,
.dest-image-wrap picture {
  display: block;
  width: 100%;
  height: 100%;
}

.tour-card > picture {
  display: contents;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
  background: none;
}

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

/* Accent Text & Badges */
.highlight {
  color: var(--primary);
  display: inline;
}

/* --------------------------------------------------------------------------
   3. ANIMATED LOGO & HEADER NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.46));
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 10px 30px rgba(15, 43, 72, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.78);
  transition: var(--transition);
}

.site-body {
  padding-top: 84px;
}

.site-body [id] {
  scroll-margin-top: 104px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

/* Exact Vector Animated Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
}

.brand-logo--image {
  width: clamp(126px, 11vw, 158px);
  max-height: 62px;
  flex: 0 0 auto;
  overflow: hidden;
}

.brand-logo--image picture,
.brand-logo--image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 62px;
  object-fit: contain;
}

.brand-logo--footer {
  width: min(100%, 210px);
  max-height: none;
  margin-bottom: 12px;
}

.brand-logo--footer img {
  max-height: none;
}

.photo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.photo-gallery-item {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border-color);
  box-shadow: 0 18px 42px -30px rgba(15, 23, 42, 0.35);
}

.photo-gallery-item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.photo-gallery-zoom {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.photo-gallery-item figcaption {
  padding: 12px 14px;
  color: var(--text-muted);
  font-weight: 700;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 72px 76px 54px;
  background: rgba(5, 12, 24, 0.88);
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox img {
  max-width: min(100%, 1180px);
  max-height: calc(100vh - 160px);
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
}

.gallery-lightbox p {
  margin: 16px 0 0;
  color: #fff;
  font-weight: 800;
  text-align: center;
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
  position: fixed;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--secondary);
  font-weight: 900;
  cursor: pointer;
}

.gallery-lightbox-close {
  top: 22px;
  right: 24px;
  width: 42px;
  height: 42px;
  font-size: 1rem;
}

.gallery-lightbox-nav {
  top: 50%;
  width: 52px;
  height: 52px;
  font-size: 2.1rem;
  transform: translateY(-50%);
}

.gallery-lightbox-prev {
  left: 24px;
}

.gallery-lightbox-next {
  right: 24px;
}

@media (max-width: 640px) {
  .gallery-lightbox {
    padding: 64px 16px 36px;
  }

  .gallery-lightbox-nav {
    width: 42px;
    height: 42px;
    font-size: 1.7rem;
  }
}

.animated-logo-svg {
  height: 64px;
  width: auto;
  overflow: visible;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-logo:hover .animated-logo-svg {
  transform: scale(1.04);
}

/* Logo CSS Keyframe Animations */
.logo-sun-arc {
  stroke-dasharray: 220;
  stroke-dashoffset: 0;
  animation: pulseArc 3.5s ease-in-out infinite alternate;
}

@keyframes pulseArc {
  0% {
    stroke-dashoffset: 0;
    opacity: 0.85;
    filter: drop-shadow(0 0 2px rgba(255, 85, 0, 0.4));
  }
  100% {
    stroke-dashoffset: 12;
    opacity: 1;
    filter: drop-shadow(0 0 10px rgba(255, 140, 0, 0.9));
  }
}

.logo-bird {
  animation: floatBird 3s ease-in-out infinite alternate;
  transform-origin: 220px 70px;
}

@keyframes floatBird {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-5px) rotate(2deg);
  }
  100% {
    transform: translateY(-9px) rotate(-1deg);
  }
}

.logo-text-marouska {
  animation: glowMarouska 4s ease-in-out infinite alternate;
}

@keyframes glowMarouska {
  0% {
    filter: drop-shadow(0 1px 2px rgba(255, 26, 26, 0.2));
  }
  100% {
    filter: drop-shadow(0 3px 8px rgba(255, 120, 0, 0.5));
  }
}

.logo-line-left, .logo-line-right {
  transition: transform 0.3s ease;
}

.brand-logo:hover .logo-line-left {
  transform: translateX(-5px);
}

.brand-logo:hover .logo-line-right {
  transform: translateX(5px);
}

/* Desktop Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.nav-item:hover .nav-link svg {
  transform: translateY(2px);
}

/* Dropdown Menu */
.nav-item {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  padding: 10px 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  list-style: none;
}

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

.dropdown-menu a {
  display: block;
  padding: 8px 18px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-main);
}

.dropdown-menu a:hover {
  background: var(--primary-light);
  color: var(--primary);
}

/* Header Right Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-selector {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
}

.lang-selector:hover {
  background: var(--primary-light);
}

.flag-icon {
  font-size: 1.1rem;
}

/* CTA Pill Button */
.btn-primary {
  background: var(--primary-gradient);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-glow);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(255, 59, 0, 0.35);
}

.btn-primary svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

/* Hamburger Toggle Button */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
}

.mobile-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--secondary);
  border-radius: 2px;
  transition: var(--transition);
}

/* --------------------------------------------------------------------------
   4. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  padding: 54px 0 32px;
  background: radial-gradient(circle at 74% 18%, rgba(30, 163, 187, .10), transparent 27%), linear-gradient(135deg, #ffffff 0%, #f7fafc 70%, #fff7f3 100%);
  overflow: hidden;
}

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

.hero-background-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 52%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-background-wrapper picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-background-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  mask-image: linear-gradient(to right, transparent 0%, black 39%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 39%);
}

.hero-content-grid {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-text-content {
  max-width: 720px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--teal-brand);
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .13em;
}

.hero-eyebrow span { width: 28px; height: 2px; background: var(--primary); border-radius: 2px; }

.hero-title {
  max-width: 710px;
  font-size: clamp(2.85rem, 4vw, 4.35rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--secondary);
  margin-bottom: 14px;
  letter-spacing: -.055em;
}

.hero-subtitle {
  font-size: 1.12rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 28px;
}

/* Hero Feature Badges Bar */
.hero-features-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 920px;
  border: 1px solid rgba(215, 226, 235, .95);
  border-radius: 18px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 18px 34px rgba(15, 35, 62, .08);
  backdrop-filter: blur(12px);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  min-width: 0;
  gap: 11px;
  padding: 17px 15px;
  border-right: 1px solid #e6edf2;
}

.feature-item:last-child { border-right: 0; }

.feature-icon-wrapper {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #f1fbfd, #fff);
  border: 1px solid #d8e9ee;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-brand);
  flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(15, 118, 110, .10);
}

.feature-icon-wrapper svg {
  width: 20px;
  height: 20px;
}

.feature-info {
  display: flex;
  flex-direction: column;
}

.feature-title {
  font-size: .87rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
}

.feature-desc {
  font-size: .74rem;
  color: var(--text-light);
  line-height: 1.35;
  margin-top: 3px;
}

/* --------------------------------------------------------------------------
   5. INTERACTIVE BOOKING WIDGET (STEPPER FORM)
   -------------------------------------------------------------------------- */
.booking-widget-container {
  margin-top: 12px;
  position: relative;
  z-index: 5;
  width: 100%;
}

.booking-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  padding: 32px;
  max-width: 100%;
}

.home-booking-form {
  display: grid;
  gap: 14px;
  width: 100%;
  max-width: none;
  margin-top: 18px;
  padding: 22px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 18px;
  background: #fff;
  box-shadow:
    0 28px 64px -30px rgba(15, 23, 42, 0.34),
    0 18px 34px -28px rgba(255, 59, 0, 0.32);
  position: relative;
  z-index: 3;
}

.hero-section .section-title-wrap:has(.home-booking-form) {
  width: 100%;
}

.home-hero-content {
  width: 100%;
}

.home-booking-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 12px;
}

.home-booking-grid label {
  display: grid;
  gap: 7px;
  color: var(--text-muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-booking-grid select {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  background: #fff;
  color: var(--text-main);
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  padding: 0 14px;
  -webkit-appearance: menulist;
  appearance: menulist;
}

.home-booking-form .btn-search-cta {
  width: 100%;
  max-width: none;
  border: 0;
}

@media (max-width: 820px) {
  .home-booking-grid {
    grid-template-columns: 1fr;
  }
}

#bookingForm .booking-card {
  border-color: rgba(226, 232, 240, 0.92);
  box-shadow:
    0 28px 64px -26px rgba(15, 23, 42, 0.34),
    0 14px 28px -22px rgba(255, 59, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

#bookingForm .booking-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 36px 72px -28px rgba(15, 23, 42, 0.4),
    0 18px 34px -22px rgba(255, 59, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

@media (prefers-reduced-motion: reduce) {
  #bookingForm .booking-card { transition: none; }
  #bookingForm .booking-card:hover { transform: none; }
}

/* Stepper Header */
.stepper-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 760px;
  margin: 0 auto 28px;
  position: relative;
}

.stepper-progress-line {
  position: absolute;
  top: 18px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: var(--border-color);
  z-index: 1;
}

.stepper-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid var(--border-color);
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.step-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
}

.stepper-step.active .step-number {
  background: var(--primary);
  border-color: var(--primary);
  color: #FFFFFF;
  box-shadow: var(--shadow-glow);
}

.stepper-step.active .step-label {
  color: var(--primary);
  font-weight: 700;
}

/* Booking Form Content */
.form-heading {
  margin-bottom: 20px;
}

.form-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--secondary);
}

.form-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Booking Form Grid */
.booking-form-grid {
  display: grid;
  grid-template-columns: 1.3fr 1.8fr 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
  width: 100%;
}

.input-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  min-width: 0;
}

.field-label {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
}

.input-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #F8FAFC;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 12px 12px;
  transition: var(--transition);
  min-width: 0;
  width: 100%;
}

.input-box:focus-within {
  border-color: var(--border-focus);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(255, 59, 0, 0.12);
}

.input-icon {
  color: var(--teal-brand);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.input-box select,
.input-box input,
.input-box textarea {
  width: 100%;
  min-width: 0;
  background: transparent;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
}

/* Swap Locations Button */
.btn-swap {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #F1F5F9;
  border: 1px solid var(--border-color);
  color: var(--teal-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  margin-bottom: 2px;
  transition: var(--transition);
  flex-shrink: 0;
}

.btn-swap:hover {
  background: var(--primary-light);
  color: var(--primary);
  transform: rotate(180deg);
}

.btn-swap svg {
  width: 16px;
  height: 16px;
}

/* Popular Destinations Quick Tags */
.quick-tags-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.quick-tags-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.tag-btn {
  background: #F1F5F9;
  color: var(--text-main);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  border: 1px solid transparent;
}

.tag-btn:hover,
.tag-btn.active {
  background: var(--primary-light);
  color: var(--primary);
  border-color: rgba(255, 59, 0, 0.2);
}

/* Form Main CTA Button */
.btn-search-cta {
  width: 100%;
  background: var(--primary-gradient);
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 800;
  padding: 16px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: var(--shadow-glow);
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.btn-search-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(255, 59, 0, 0.35);
}

.btn-search-cta svg {
  width: 20px;
  height: 20px;
}

/* Booking submit feedback */
.booking-submit-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-top-color: #fff;
  border-radius: 50%;
  animation: booking-spin 0.7s linear infinite;
}

.booking-submit-button.is-loading {
  cursor: wait;
  opacity: 0.88;
  transform: none;
}

.booking-submit-button.is-loading .booking-submit-spinner {
  display: inline-block;
}

.booking-submit-button:disabled {
  cursor: not-allowed;
}

@keyframes booking-spin {
  to { transform: rotate(360deg); }
}

.booking-success-pop {
  position: fixed;
  z-index: 1100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(11, 19, 43, 0.58);
  backdrop-filter: blur(3px);
}

.booking-success-pop[hidden] {
  display: none;
}

.booking-success-pop__panel {
  width: min(100%, 440px);
  padding: 32px;
  border-radius: 20px;
  background: #fff;
  color: var(--text-main);
  text-align: center;
  box-shadow: 0 24px 70px rgba(11, 19, 43, 0.3);
  animation: booking-success-enter 0.25s ease-out;
}

.booking-success-pop__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #dcfce7;
  color: #15803d;
  font-size: 2rem;
  font-weight: 800;
}

.booking-success-pop__panel h2 {
  margin: 0 0 10px;
  font-size: 1.45rem;
}

.booking-success-pop__panel p {
  margin: 0 0 22px;
  color: var(--text-muted);
}

.booking-success-pop__close {
  width: 100%;
  padding: 13px 18px;
  border: 0;
  border-radius: var(--radius-md);
  background: var(--primary-gradient);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.booking-success-pop__download {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 10px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 59, 0, 0.28);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--primary);
  font-weight: 900;
  text-decoration: none;
}

/* Persistent quick-contact actions */
.floating-contact-bar {
  position: fixed;
  z-index: 1000;
  right: 22px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-contact-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 8px 22px rgba(11, 19, 43, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-contact-button:hover,
.floating-contact-button:focus-visible {
  color: #fff;
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 12px 28px rgba(11, 19, 43, 0.3);
}

.floating-contact-button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.floating-contact-button svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.floating-contact-button--whatsapp { background: #25d366; }
.floating-contact-button--chat { background: #2563eb; }
.floating-contact-button--phone { background: #0f766e; }
.floating-contact-button--email { background: #ea580c; }

.floating-contact-button::after {
  position: absolute;
  right: calc(100% + 10px);
  width: max-content;
  max-width: 190px;
  padding: 7px 10px;
  border-radius: 7px;
  background: #0b132b;
  color: #fff;
  content: attr(data-tooltip);
  font-size: 0.76rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateX(4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.floating-contact-button:hover::after,
.floating-contact-button:focus-visible::after {
  opacity: 1;
  transform: translateX(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes booking-success-enter {
  from { opacity: 0; transform: translateY(12px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 768px) {
  .floating-contact-bar {
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
    flex-direction: row;
    gap: 8px;
  }

  .floating-contact-button {
    width: 45px;
    height: 45px;
  }

  .floating-contact-button::after {
    display: none;
  }
}

/* Booking Bottom Trust Badges */
.booking-trust-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon svg {
  width: 18px;
  height: 18px;
}

.trust-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}

.trust-sub {
  font-size: 0.72rem;
  color: var(--text-light);
  line-height: 1.2;
}

/* --------------------------------------------------------------------------
   6. SECTION HEADINGS GENERAL
   -------------------------------------------------------------------------- */
.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
}

.page-rich-head {
  align-items: center;
  gap: 28px;
}

.page-head-image {
  width: min(100%, 430px);
  flex: 0 0 min(38vw, 430px);
}

.page-head-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, .14);
}

.section-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: -0.5px;
}

.section-title::after {
  content: '';
  display: block;
  width: 44px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  margin-top: 6px;
}

.link-view-all {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.link-view-all:hover {
  color: var(--primary);
}

.link-view-all svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.link-view-all:hover svg {
  transform: translateX(4px);
}

/* Slider Controls */
.slider-arrows {
  display: flex;
  align-items: center;
  gap: 10px;
}

.slider-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: #FFFFFF;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.slider-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #FFFFFF;
  box-shadow: var(--shadow-glow);
}

.slider-arrow svg {
  width: 18px;
  height: 18px;
}

/* --------------------------------------------------------------------------
   7. OUR TRANSFER SERVICES SECTION
   -------------------------------------------------------------------------- */
.services-section {
  padding: 80px 0;
}

.services-carousel-wrapper {
  position: relative;
  overflow: hidden;
  padding: 10px 4px 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  scroll-snap-type: x mandatory;
}

.service-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 59, 0, 0.3);
}

.card-image-wrap {
  position: relative;
  height: 160px;
  overflow: hidden;
}

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

.service-card:hover .card-image-wrap img {
  transform: scale(1.08);
}

/* Floating Circular Badge */
.card-floating-badge {
  position: absolute;
  bottom: -18px;
  left: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal-brand);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(9, 107, 128, 0.3);
  border: 3px solid #FFFFFF;
  z-index: 2;
}

.card-floating-badge svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.service-card-body {
  padding: 28px 20px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 6px;
}

.service-card-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 16px;
  flex-grow: 1;
}

.card-link-action {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card:hover .card-link-action {
  color: var(--primary);
}

.card-link-action svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.service-card:hover .card-link-action svg {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   8. POPULAR DESTINATIONS SECTION
   -------------------------------------------------------------------------- */
.faq-section {
  position: relative;
  overflow: hidden;
  padding: 92px 0;
  background: linear-gradient(135deg, #f4f8fb 0%, #ffffff 52%, #fff5f1 100%);
}

.faq-section::before {
  position: absolute;
  top: -170px;
  right: -100px;
  width: 390px;
  height: 390px;
  border: 52px solid rgba(255, 90, 36, 0.07);
  border-radius: 50%;
  content: '';
  pointer-events: none;
}

.faq-section .container { position: relative; z-index: 1; }

.faq-heading {
  align-items: end;
  gap: 28px;
  margin-bottom: 34px;
}

.faq-heading .section-title-wrap { max-width: 650px; }

.faq-heading .section-title { margin: 8px 0 10px; }

.faq-heading p { margin: 0; color: var(--text-muted); line-height: 1.65; }

.faq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .13em;
}

.faq-eyebrow::before {
  width: 26px;
  height: 2px;
  background: currentColor;
  content: '';
}

.faq-contact-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border: 1px solid #dbe4ec;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  color: var(--secondary);
  font-size: .86rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(15, 35, 62, .06);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.faq-contact-link span { color: var(--primary); }
.faq-contact-link:hover { transform: translateY(-2px); border-color: rgba(255, 90, 36, .38); box-shadow: 0 12px 28px rgba(15, 35, 62, .1); }

.faq-accordion {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 1120px;
}

.faq-item {
  min-width: 0;
  border: 1px solid #e0e8ef;
  border-radius: 16px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 8px 22px rgba(15, 35, 62, .045);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.faq-item:hover { transform: translateY(-2px); border-color: #cbd9e5; box-shadow: 0 14px 30px rgba(15, 35, 62, .08); }
.faq-item[open] { border-color: rgba(255, 90, 36, .45); box-shadow: 0 16px 35px rgba(255, 90, 36, .12); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  color: var(--secondary);
  font-size: .98rem;
  font-weight: 750;
  line-height: 1.5;
  cursor: pointer;
  list-style: none;
}

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

.faq-question::after {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  border-radius: 50%;
  background: #eff4f8;
  color: var(--primary);
  content: '+';
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.faq-item[open] .faq-question::after { transform: rotate(45deg); background: var(--primary); color: #fff; }

.faq-answer { padding: 0 22px 21px; }
.faq-answer p { margin: 0; color: var(--text-muted); font-size: .9rem; line-height: 1.72; }

.destinations-section {
  padding: 40px 0 80px;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.destination-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.destination-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.dest-image-wrap {
  height: 180px;
  overflow: hidden;
  position: relative;
}

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

.destination-card:hover .dest-image-wrap img {
  transform: scale(1.08);
}

.dest-card-footer {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #FFFFFF;
}

.dest-card-footer svg {
  width: 18px;
  height: 18px;
  color: var(--teal-brand);
}

.dest-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--secondary);
}

/* --------------------------------------------------------------------------
   9. TOP TOURS & EXCURSIONS SECTION
   -------------------------------------------------------------------------- */
.tours-section {
  padding: 40px 0 80px;
}

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

.tour-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 320px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.tour-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  z-index: 1;
}

.tour-card:hover .tour-bg-image {
  transform: scale(1.08);
}

.tour-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.05) 0%, rgba(15, 23, 42, 0.85) 85%);
  z-index: 2;
}

.tour-content {
  position: relative;
  z-index: 3;
  padding: 24px;
  color: #FFFFFF;
}

.tour-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.tour-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 14px;
  line-height: 1.3;
}

.tour-action-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.tour-action-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.tour-card:hover .tour-action-link svg {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   10. TRUSTED BY TRAVELERS (TESTIMONIALS) SECTION
   -------------------------------------------------------------------------- */
.testimonials-section {
  background: var(--secondary);
  padding: 80px 0;
  color: #FFFFFF;
  position: relative;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 44px;
}

.testimonials-header .section-title {
  color: #FFFFFF;
}

.testimonials-header .section-title::after {
  margin: 8px auto 0;
}

.rating-summary-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.star-rating-icons {
  display: flex;
  gap: 3px;
  color: var(--star-yellow);
}

.star-rating-icons svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.reviews-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.review-card {
  background: var(--secondary-card);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

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

.platform-badge {
  width: 24px;
  height: 24px;
}

.review-text {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  font-style: italic;
}

.reviewer-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.reviewer-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   11. PRE-FOOTER CTA BANNER
   -------------------------------------------------------------------------- */
.cta-banner-section {
  background: var(--primary-gradient);
  padding: 44px 0;
  color: #FFFFFF;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-left-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cta-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #FFFFFF;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.cta-icon-circle svg {
  width: 32px;
  height: 32px;
}

.cta-banner-title {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.2;
}

.cta-banner-sub {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 2px;
}

.btn-white-cta {
  background: #FFFFFF;
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  transition: var(--transition);
}

.btn-white-cta:hover {
  background: #F8FAFC;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.btn-white-cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.btn-white-cta:hover svg {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   12. SITE FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--secondary);
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr 1.5fr;
  gap: 32px;
  margin-bottom: 50px;
}

.footer-about-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-desc {
  font-size: 0.85rem;
  line-height: 1.5;
}

.social-icons-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.social-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-col-title {
  color: #FFFFFF;
  font-size: 0.92rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-list a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links-list a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
}

.contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

.footer-bottom-row {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* --------------------------------------------------------------------------
   13. INTERACTIVE SUMMARY MODAL
   -------------------------------------------------------------------------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.modal-card {
  background: #FFFFFF;
  width: 100%;
  max-width: 540px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: translateY(20px);
  transition: var(--transition);
}

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

.modal-header {
  background: var(--secondary);
  color: #FFFFFF;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title {
  font-size: 1.15rem;
  font-weight: 800;
}

.btn-modal-close {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.5rem;
  line-height: 1;
}

.btn-modal-close:hover {
  color: #FFFFFF;
}

.modal-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.summary-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border-color);
  font-size: 0.9rem;
}

.summary-label {
  color: var(--text-muted);
  font-weight: 600;
}

.summary-value {
  color: var(--secondary);
  font-weight: 700;
}

.price-estimate-box {
  background: var(--primary-light);
  border: 1px solid rgba(255, 59, 0, 0.2);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  margin-top: 10px;
}

.price-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
}

.price-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}

.booking-detail-widget .booking-card {
  max-width: 1120px;
  margin: 0 auto;
}

.booking-section-title {
  margin: 18px 0 10px;
  color: var(--secondary);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.booking-detail-widget .booking-form-grid {
  align-items: start;
  margin-bottom: 0;
}

.booking-detail-widget [hidden] {
  display: none !important;
}

.booking-choice-grid {
  grid-template-columns: 1.2fr 1.7fr 1.1fr;
}

.booking-details-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.return-trip-divider {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 6px 0 0;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.return-trip-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: rgba(255, 59, 0, 0.22);
}

.return-confirmation-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 8px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.return-confirmation-divider::after {
    content: "";
    height: 1px;
    flex: 1;
    background: rgba(255, 59, 0, 0.22);
}

.booking-confirmation-actions {
    display: grid;
    grid-template-columns: minmax(180px, 0.35fr) 1fr;
    gap: 12px;
    margin-top: 18px;
}

.booking-confirmation-actions .btn-search-cta {
    display: flex;
    margin-top: 0;
}

.booking-download-pdf {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 18px;
    border: 1px solid rgba(255, 59, 0, 0.32);
    border-radius: 12px;
    background: #fff;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 900;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
}

@media (max-width: 640px) {
    .booking-confirmation-actions {
        grid-template-columns: 1fr;
    }
}

.booking-customer-grid {
  grid-template-columns: 1.1fr 1.5fr 1fr 1fr;
}

.booking-extra-grid {
  grid-template-columns: repeat(2, minmax(220px, 280px));
  justify-content: start;
}

.booking-detail-widget .price-estimate-box {
  display: grid;
  justify-items: center;
  gap: 4px;
  margin: 18px 0 4px;
  padding: 18px;
  border-radius: 16px;
}

.booking-detail-widget .input-box {
  min-height: 54px;
}

.booking-detail-widget .input-box:has(textarea) {
  min-height: 76px;
  align-items: flex-start;
}

.booking-detail-widget textarea {
  min-height: 50px;
  max-height: 120px;
  resize: vertical;
  line-height: 1.45;
}

.seat-checkboxes {
  gap: 14px;
  flex-wrap: wrap;
}

.seat-checkboxes label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--text-main);
  font-weight: 700;
}

.seat-checkboxes input {
  width: auto;
  accent-color: var(--primary);
}

.booking-details-grid .input-field-group:has(textarea) {
  grid-column: span 2;
}

/* --------------------------------------------------------------------------
   14. MOBILE & RESPONSIVE BREAKPOINTS (iOS & Android Optimized)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-background-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin-top: 0;
    opacity: 0.18;
  }
  
  .hero-background-img {
    mask-image: none;
    -webkit-mask-image: none;
    border-radius: var(--radius-md);
  }

  .booking-form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .btn-swap {
    display: none;
  }

  .services-grid,
  .destinations-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-top-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .page-rich-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-head-image {
    width: 100%;
    flex-basis: auto;
  }

  .site-header {
    height: 74px;
  }

  .site-body {
    padding-top: 74px;
  }

  .site-body [id] {
    scroll-margin-top: 90px;
  }

  .header-inner {
    height: 74px;
  }

  .animated-logo-svg {
    height: 50px;
  }

  .nav-menu {
    position: fixed;
    top: 74px;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }

  .mobile-toggle {
    display: flex;
  }

  .header-actions {
    gap: 8px;
  }

  .header-actions > .btn-primary {
    display: none;
  }

  .lang-selector {
    padding: 4px 6px;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .home-booking-form {
    padding: 16px;
    border-radius: 16px;
  }

  .home-booking-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .home-booking-grid select,
  .home-booking-form .btn-search-cta {
    min-height: 52px;
  }

  .hero-eyebrow { margin-bottom: 10px; font-size: .6rem; letter-spacing: .1em; }
  .hero-eyebrow span { width: 20px; }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-features-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-item { padding: 14px 12px; }
  .feature-item:nth-child(2) { border-right: 0; }
  .feature-item:nth-child(-n+2) { border-bottom: 1px solid #e6edf2; }

  .booking-card {
    padding: 20px 16px;
  }

  .booking-form-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .booking-details-grid,
  .booking-customer-grid,
  .booking-extra-grid,
  .booking-choice-grid {
    grid-template-columns: 1fr !important;
  }

  .booking-details-grid .input-field-group,
  .booking-details-grid .input-field-group:has(textarea) {
    grid-column: auto;
  }

  .booking-detail-widget .field-label {
    white-space: normal;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .booking-detail-widget .input-box,
  .booking-detail-widget input,
  .booking-detail-widget select,
  .booking-detail-widget textarea {
    width: 100%;
    min-width: 0;
  }

  .faq-section { padding: 62px 0; }
  .faq-heading { align-items: flex-start; flex-direction: column; gap: 18px; margin-bottom: 24px; }
  .faq-contact-link { width: fit-content; }
  .faq-accordion { grid-template-columns: 1fr; gap: 10px; }
  .faq-question { padding: 17px 18px; font-size: .92rem; }
  .faq-answer { padding: 0 18px 18px; }

  .booking-trust-badges {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 16px;
    -webkit-overflow-scrolling: touch;
  }

  .service-card {
    min-width: 250px;
    max-width: 280px;
  }

  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tours-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-left-content {
    flex-direction: column;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 480px) {
  .booking-detail-widget .booking-card {
    padding: 18px 12px;
  }

  .booking-detail-widget .field-label {
    font-size: 0.76rem;
    letter-spacing: 0.03em;
  }

  .booking-detail-widget .input-box {
    min-height: 56px;
  }

  .hero-features-bar {
    grid-template-columns: 1fr;
  }

  .feature-item,
  .feature-item:nth-child(2) { border-right: 0; border-bottom: 1px solid #e6edf2; }
  .feature-item:last-child { border-bottom: 0; }
  
  .stepper-header {
    display: none;
  }

  .destinations-grid {
    grid-template-columns: 1fr;
  }

  .booking-trust-badges {
    grid-template-columns: 1fr;
  }

  .btn-primary span {
    font-size: 0.82rem;
  }
}

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