/* =============================================
   DS BHARAT TRAVELS – MAIN STYLESHEET
   ============================================= */

/* ---- CSS Variables ---- */
:root {
  --green-dark: #1B6B4A;
  --green-mid: #1e7a54;
  --green-bright: #22C55E;
  --green-footer: #0D3D26;
  --gold: #D4E600;
  --white: #ffffff;
  --off-white: #F8FAF9;
  --light-gray: #F1F5F3;
  --text-dark: #111827;
  --text-mid: #374151;
  --text-light: #6B7280;
  --border: #E5E7EB;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-script: 'Dancing Script', cursive;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden !important;
  max-width: 100vw !important;
  width: 100% !important;
}
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden !important;
  max-width: 100vw !important;
  width: 100% !important;
  position: relative;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; font-family: var(--font-main); }
input, select { outline: none; border: none; font-family: var(--font-body); }

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

/* =============================================
   TOP BAR
   ============================================= */
.top-bar {
  background: var(--green-dark);
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  padding: 8px 0;
  position: relative;
  z-index: 1000;
}
.top-bar-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 16px; }
.top-bar-left a, .top-bar-right a {
  color: rgba(255,255,255,0.88);
  display: flex; align-items: center; gap: 6px;
  font-size: 0.82rem;
}
.top-bar-left a:hover, .top-bar-right a:hover { color: var(--gold); }
.top-bar-left .fa-phone-alt, .top-bar-left .fa-envelope { color: var(--gold); }
.top-bar-right { gap: 10px; }
.top-bar-right span { opacity: 0.7; }
.top-bar-right a {
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  justify-content: center;
  font-size: 0.78rem;
}
.top-bar-right a:hover { background: var(--green-bright); color: white; }
.divider { opacity: 0.4; }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
}
.navbar.scrolled { background: rgba(255,255,255,0.96); backdrop-filter: blur(10px); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 16px;
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; text-decoration: none; }
.logo-img,
.nav-logo img,
.footer-logo img {
  width: 48px !important;
  height: 48px !important;
  max-width: 48px !important;
  max-height: 48px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  background: transparent;
  box-shadow: none;
  border: none;
  flex-shrink: 0;
  display: block;
  transition: var(--transition);
}
.footer-brand .footer-logo .logo-img {
  width: 44px !important;
  height: 44px !important;
  max-width: 44px !important;
  max-height: 44px !important;
}
.nav-logo:hover .logo-img {
  transform: scale(1.05);
  box-shadow: none;
}
.logo-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-bright));
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative;
  box-shadow: 0 4px 15px rgba(27,107,74,0.35);
}
.logo-ds { color: white; font-family: var(--font-main); font-weight: 800; font-size: 0.95rem; line-height: 1; }
.logo-plane { color: rgba(255,255,255,0.75); font-size: 0.7rem; }
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-family: var(--font-main); font-weight: 700; font-size: 1.05rem; color: var(--green-dark); line-height: 1.2; }
.logo-tagline { font-family: var(--font-script); font-size: 0.78rem; color: var(--text-light); line-height: 1; }

/* Nav Links */
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links li { position: relative; }
.nav-link {
  font-family: var(--font-main);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; gap: 4px;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: 4px; left: 12px; right: 12px;
  height: 2px; background: var(--green-dark);
  border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link:hover { color: var(--green-dark); }
.nav-link.active { color: var(--green-dark); }
.nav-link .fa-chevron-down { font-size: 0.65rem; transition: transform 0.3s; }
.has-dropdown:hover .fa-chevron-down { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 40px rgba(27,107,74,0.18);
  min-width: 210px;
  opacity: 0; visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.25s ease;
  border: 1px solid rgba(27,107,74,0.15);
  border-top: 3px solid var(--green-dark);
  overflow: hidden;
  z-index: 100;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a {
  display: block; padding: 11px 18px;
  font-family: var(--font-main); font-size: 0.84rem; font-weight: 500;
  color: var(--text-mid);
  border-bottom: 1px solid rgba(27,107,74,0.08);
  transition: var(--transition);
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: var(--green-light); color: var(--green-dark); padding-left: 24px; font-weight: 600; }

/* Enquire Button */
.btn-enquire {
  background: linear-gradient(135deg, var(--green-dark), var(--green-bright));
  color: white;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 10px 22px;
  border-radius: 50px;
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(27,107,74,0.3);
  transition: var(--transition);
}
.btn-enquire:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(27,107,74,0.4); color: white; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; background: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--green-dark); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  height: 90vh;
  min-height: 600px;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.68) 0%, rgba(0,0,0,0.3) 55%, rgba(0,0,0,0.1) 100%);
}
.hero-content { position: relative; z-index: 10; height: 100%; display: flex; align-items: center; }
.hero-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 40px; }
.hero-text { max-width: 580px; }
.hero-script {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--green-bright);
  margin-bottom: 12px;
  display: block;
  animation: fadeUp 0.8s ease both;
}
.hero-heading {
  font-family: var(--font-main);
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 900;
  color: white;
  line-height: 1.2;
  margin-bottom: 16px;
  text-transform: uppercase;
  animation: fadeUp 0.9s ease 0.1s both;
}
.hero-line-1 {
  display: block;
  white-space: nowrap;
}
.hero-line-2 {
  display: block;
  white-space: nowrap;
}
.green-text { color: var(--green-bright); }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  animation: fadeUp 1s ease 0.2s both;
}
.btn-hero {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-bright));
  color: white;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 50px;
  box-shadow: 0 6px 25px rgba(27,107,74,0.4);
  transition: var(--transition);
  animation: fadeUp 1.1s ease 0.3s both;
}
.btn-hero:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(27,107,74,0.5); color: white; }
.btn-hero .fa-arrow-right { transition: transform 0.3s; }
.btn-hero:hover .fa-arrow-right { transform: translateX(4px); }

/* Hero Badge – Static Text with Orbiting Plane */
.hero-badge { flex-shrink: 0; animation: fadeUp 1.2s ease 0.4s both; }
.badge-ring {
  width: 160px; height: 160px;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.badge-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  gap: 2px;
  pointer-events: none;
}
.badge-top { font-family: var(--font-main); font-size: 0.7rem; font-weight: 700; letter-spacing: 3px; color: rgba(255,255,255,0.9); text-transform: uppercase; }
.badge-script { font-family: var(--font-script); font-size: 2.2rem; color: var(--green-bright); font-weight: 700; line-height: 1; }
.badge-bottom { font-family: var(--font-main); font-size: 0.65rem; font-weight: 700; letter-spacing: 3px; color: rgba(255,255,255,0.9); text-transform: uppercase; }

/* Rotating Orbit and Airplane */
.badge-orbit {
  position: absolute;
  inset: -6px;
  border: 2px dashed rgba(255,255,255,0.65);
  border-radius: 50%;
  animation: spin-slow 10s linear infinite;
  pointer-events: none;
}
.badge-plane-wrap {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
}
.badge-plane {
  font-size: 1.35rem;
  color: var(--green-bright);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
  transform: rotate(45deg);
  display: block;
}

.hero-arrow {
  position: absolute; top: 50%; z-index: 20;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  color: white;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.25);
}
.hero-arrow:hover { background: var(--green-dark); border-color: var(--green-dark); }
.hero-prev { left: 24px; }
.hero-next { right: 24px; }
/* Hide prev/next arrows on mobile – use swipe gestures instead */
@media (max-width: 768px) {
  .hero-arrow { display: none; }
}

/* Slider Dots */
.hero-dots { position: absolute; bottom: 64px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 20; }
.dot {
  width: 10px; height: 10px;
  background: rgba(255,255,255,0.45);
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.dot.active { width: 28px; background: var(--green-bright); }

/* =============================================
   SEARCH BAR
   ============================================= */
.search-section { padding: 0; position: relative; z-index: 50; margin-top: -18px; }
.search-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: stretch;
  overflow: visible; /* allow dest dropdown to overflow */
  border: 1px solid var(--border);
}
.search-field {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px;
  flex: 1;
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
}
.search-field:hover { background: var(--off-white); }
/* First field needs matching left radius so hover bg stays inside card corners */
.search-field:first-child { border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
.search-field:first-child:hover { border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
.search-icon { font-size: 1.1rem; color: var(--green-dark); flex-shrink: 0; }
.search-field-content { display: flex; flex-direction: column; gap: 4px; flex: 1; min-width: 0; }
.search-field-content label {
  font-family: var(--font-main); font-size: 0.65rem;
  font-weight: 700; color: var(--text-light); letter-spacing: 1px;
  text-transform: uppercase;
}

/* Custom Destination Dropdown */
.custom-dest-wrap {
  position: relative; display: flex; align-items: center; gap: 6px; cursor: pointer;
}
.dest-value {
  font-size: 0.9rem; color: var(--text-dark);
  font-family: var(--font-body); flex: 1;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.dest-chevron {
  font-size: 0.7rem; color: var(--text-light);
  transition: transform 0.25s ease; flex-shrink: 0;
}
.dest-wrap-open .dest-chevron { transform: rotate(180deg); }
.dest-dropdown {
  position: absolute; top: calc(100% + 12px); left: -52px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 40px rgba(0,0,0,0.14);
  min-width: 200px;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.22s ease;
  z-index: 200;
  overflow: hidden;
  border: 1px solid var(--border);
  list-style: none; padding: 6px 0; margin: 0;
}
.dest-dropdown.open { opacity: 1; visibility: visible; transform: translateY(0); }
.dest-opt {
  padding: 9px 18px;
  font-family: var(--font-main); font-size: 0.85rem; font-weight: 500; color: var(--text-mid);
  cursor: pointer; transition: all 0.18s;
}
.dest-opt:hover { background: var(--off-white); color: var(--green-dark); padding-left: 24px; }
.dest-opt.selected { color: var(--green-dark); font-weight: 700; background: rgba(27,107,74,0.05); }
.dest-opt-placeholder { color: var(--text-light); }

/* Counter +/- Fields */
.sf-counter .search-field-content { gap: 2px; }
.counter-wrap {
  display: flex; align-items: center; gap: 6px;
}
.counter-btn {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--green-dark);
  background: white; color: var(--green-dark);
  font-size: 1.1rem; font-weight: 700; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.18s; flex-shrink: 0;
  padding: 0;
}
.counter-btn:hover { background: var(--green-dark); color: white; }
.counter-btn:active { transform: scale(0.9); }
.counter-val {
  font-size: 0.9rem; color: var(--text-dark);
  font-family: var(--font-body); font-weight: 600;
  min-width: 70px; text-align: center; white-space: nowrap;
}

/* old select styles kept for legacy */
.search-field-content select,
.search-field-content input[type="text"] {
  font-size: 0.9rem; color: var(--text-dark);
  background: transparent; width: 100%;
  font-family: var(--font-body);
  appearance: none; -webkit-appearance: none;
}
.search-divider { width: 1px; background: var(--border); flex-shrink: 0; }
.btn-search {
  background: linear-gradient(135deg, var(--green-dark), var(--green-bright));
  color: white;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 20px 32px;
  display: flex; align-items: center; gap: 10px;
  white-space: nowrap;
  transition: var(--transition);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.btn-search:hover { background: linear-gradient(135deg, var(--green-mid), var(--green-dark)); }


/* =============================================
   TRUST STRIP
   ============================================= */
.trust-strip {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  margin-top: 28px;
}
.trust-grid {
  display: flex; align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
  flex: 1; min-width: 160px;
  padding: 8px 16px;
  border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  font-size: 1.4rem; color: var(--green-dark);
  width: 42px; height: 42px;
  background: rgba(27,107,74,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-item div { display: flex; flex-direction: column; }
.trust-item strong { font-family: var(--font-main); font-size: 0.85rem; color: var(--text-dark); }
.trust-item span { font-size: 0.78rem; color: var(--text-light); }

/* =============================================
   DESTINATIONS SECTION
   ============================================= */
.destinations-section { padding: 60px 0 70px; background: var(--off-white); }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 32px; }
.section-label { font-family: var(--font-script); font-size: 1.15rem; color: var(--green-dark); margin-bottom: 4px; }
.section-title {
  font-family: var(--font-main);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}
.view-all-link {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-main); font-weight: 600;
  font-size: 0.875rem; color: var(--green-dark);
  padding: 10px 20px;
  border: 2px solid var(--green-dark);
  border-radius: 50px;
  white-space: nowrap;
  transition: var(--transition);
}
.view-all-link:hover { background: var(--green-dark); color: white; }

/* Destination Cards – Clean 2-Row Grid (3 cards per row) */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dest-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}
.dest-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.dest-img-wrap { position: relative; height: 180px; overflow: hidden; }
.dest-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.dest-card:hover .dest-img-wrap img { transform: scale(1.08); }
.dest-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, transparent 100%);
  padding: 24px 12px 10px;
}
.dest-name { color: white; font-family: var(--font-main); font-weight: 700; font-size: 0.92rem; display: flex; align-items: center; gap: 5px; }
.dest-name .fa-map-marker-alt { color: var(--green-bright); font-size: 0.75rem; }
.dest-info { padding: 12px 14px 14px; display: flex; flex-direction: column; flex: 1; }
.dest-duration { font-size: 0.78rem; color: var(--text-light); font-weight: 500; display: block; margin-bottom: 8px; }
.dest-price-row { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.dest-price { font-family: var(--font-main); font-weight: 700; font-size: 0.95rem; color: var(--green-dark); display: flex; flex-direction: column; align-items: flex-start; line-height: 1.2; }
.dest-price small { font-size: 0.68rem; font-weight: 500; color: var(--text-light); margin-top: 1px; }
.dest-rating { font-size: 0.8rem; color: var(--text-mid); font-weight: 600; display: flex; align-items: center; gap: 4px; }
.dest-rating .fa-star { color: #F59E0B; }

/* =============================================
   OFFER BANNER
   ============================================= */
.offer-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 64px 0;
  overflow: hidden;
}
.offer-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(13,61,38,0.92) 0%, rgba(13,61,38,0.75) 60%, rgba(13,61,38,0.5) 100%);
}
.offer-inner {
  position: relative; z-index: 2;
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.offer-content { flex: 1; }
.offer-label {
  font-family: var(--font-main); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 3px; color: var(--gold); text-transform: uppercase;
  margin-bottom: 8px; display: block;
}
.offer-heading {
  font-family: var(--font-main); font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900; color: white; line-height: 1.1;
  text-transform: uppercase;
}
.offer-amount { color: var(--gold); }
.offer-sub { font-size: 1rem; color: rgba(255,255,255,0.85); margin-top: 6px; font-weight: 500; }
.offer-validity {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold); color: var(--green-dark);
  font-family: var(--font-main); font-weight: 700; font-size: 0.8rem;
  padding: 6px 16px; border-radius: 50px;
  margin-top: 16px;
}
.offer-plane-path {
  flex: 0 0 200px;
  display: flex; align-items: center; justify-content: center;
}
.plane-svg { width: 200px; }
/* ===== OFFER BANNER CTA ===== */
.btn-book-now {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--green-dark);
  font-family: var(--font-main); font-weight: 700; font-size: 1rem;
  padding: 16px 36px; border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 6px 25px rgba(212,230,0,0.4);
}
.btn-book-now:hover { background: white; transform: translateY(-3px); box-shadow: 0 12px 35px rgba(0,0,0,0.2); }

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-section { padding: 70px 0; background: white; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px; align-items: center; }
.why-left .section-label { margin-bottom: 4px; }
.why-left .section-title { margin-bottom: 24px; }
.why-list { display: flex; flex-direction: column; gap: 14px; }
.why-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; color: var(--text-mid); font-weight: 500;
}
.why-check { color: var(--green-bright); font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }

/* Stats */
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat-item {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.stat-item:hover { background: rgba(27,107,74,0.06); border-color: var(--green-bright); transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.stat-icon { font-size: 1.6rem; color: var(--green-dark); margin-bottom: 4px; }
.stat-number {
  font-family: var(--font-main); font-size: 2rem;
  font-weight: 900; color: var(--green-dark); line-height: 1;
}
.stat-plus { font-family: var(--font-main); font-size: 1.5rem; font-weight: 800; color: var(--green-bright); }
.stat-label { font-size: 0.82rem; color: var(--text-light); font-weight: 500; }

/* Testimonials */
.testimonial-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.testimonial-header {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.quote-icon { font-size: 1.5rem; color: var(--green-bright); }
.testimonial-label { font-family: var(--font-main); font-weight: 700; font-size: 0.85rem; color: var(--text-mid); }
.testimonial-slides { position: relative; min-height: 120px; }
.testimonial-slide { 
  display: none; 
  animation: fadeIn 0.55s cubic-bezier(0.22, 1, 0.36, 1); 
}
.testimonial-slide.active { display: block; }
.testimonial-text { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; font-style: italic; margin-bottom: 12px; }
.testimonial-stars { color: #F59E0B; font-size: 0.9rem; margin-bottom: 8px; display: flex; gap: 2px; }
.testimonial-name { font-family: var(--font-main); font-weight: 700; font-size: 0.85rem; color: var(--green-dark); }
.testimonial-arrows { display: flex; gap: 8px; margin-top: 16px; }
.testimonial-arrows button {
  width: 32px; height: 32px;
  background: white; border: 1px solid var(--border);
  border-radius: 50%; font-size: 0.75rem;
  color: var(--green-dark); display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.testimonial-arrows button:hover { background: var(--green-dark); color: white; border-color: var(--green-dark); }

/* =============================================
   GALLERY
   ============================================= */
.gallery-section { padding: 70px 0; background: var(--off-white); }
.gallery-header { margin-bottom: 32px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}
.gallery-item {
  position: relative; overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item.gallery-tall { grid-row: span 2; aspect-ratio: unset; }
.gallery-item.gallery-wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-hover {
  position: absolute; inset: 0;
  background: rgba(27,107,74,0.4);
  opacity: 0; display: flex; align-items: center; justify-content: center;
  transition: opacity 0.3s;
  color: white; font-size: 1.5rem;
}
.gallery-item:hover .gallery-hover { opacity: 1; }

/* =============================================
   NEWSLETTER
   ============================================= */
.newsletter-section {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '✈';
  position: absolute; right: 10%; top: 50%;
  transform: translateY(-50%) rotate(30deg);
  font-size: 8rem; opacity: 0.05;
  pointer-events: none;
}
.newsletter-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.newsletter-left {
  display: flex; align-items: center; gap: 20px;
  flex: 1;
}
.nl-icon { font-size: 2.5rem; color: rgba(255,255,255,0.8); flex-shrink: 0; }
.newsletter-left h3 { font-family: var(--font-main); font-size: 1.4rem; font-weight: 700; color: white; margin-bottom: 4px; }
.newsletter-left p { font-size: 0.88rem; color: rgba(255,255,255,0.8); }
.newsletter-form { display: flex; flex: 1; max-width: 480px; width: 100%; box-sizing: border-box; }
.newsletter-form input {
  min-width: 0;
  flex: 1 1 auto;
  padding: 14px 20px;
  background: rgba(255,255,255,0.15);
  color: white; font-size: 0.9rem;
  border-radius: 50px 0 0 50px;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
  box-sizing: border-box;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.65); }
.newsletter-form input:focus { background: rgba(255,255,255,0.2); }
#btn-subscribe {
  flex-shrink: 0;
  white-space: nowrap;
  background: var(--gold); color: var(--green-dark);
  font-family: var(--font-main); font-weight: 700; font-size: 0.9rem;
  padding: 14px 24px;
  border-radius: 0 50px 50px 0;
  display: flex; align-items: center; gap: 8px;
  transition: var(--transition);
  box-sizing: border-box;
}
#btn-subscribe:hover { background: white; }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--green-footer); padding: 60px 0 0; width: 100%; box-sizing: border-box; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr 1.5fr;
  gap: 40px;
  width: 100%;
  box-sizing: border-box;
}
.footer-col { min-width: 0; box-sizing: border-box; }
.footer-brand .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; text-decoration: none; }
.footer-brand .footer-logo .logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: #ffffff;
  border: 2px solid rgba(255,255,255,0.2);
}
.logo-icon-sm { width: 40px; height: 40px; }
.footer-brand .logo-name { color: white; font-size: 0.95rem; }
.footer-brand .logo-tagline { color: rgba(255,255,255,0.5); }
.footer-about { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 20px; word-break: break-word; }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); font-size: 0.85rem;
  transition: var(--transition);
  flex-shrink: 0;
}
.footer-social a:hover { background: var(--green-bright); color: white; }
.footer-heading { font-family: var(--font-main); font-weight: 700; font-size: 0.95rem; color: white; margin-bottom: 20px; word-break: break-word; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.65); transition: var(--transition); display: flex; align-items: center; gap: 6px; word-break: break-word; }
.footer-links a::before { content: '›'; color: var(--green-bright); font-size: 1rem; flex-shrink: 0; }
.footer-links a:hover { color: var(--green-bright); padding-left: 4px; }
.footer-contact-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.85rem; color: rgba(255,255,255,0.65);
  margin-bottom: 12px; line-height: 1.5;
  word-break: break-word;
}
.footer-contact-list li .fas { color: var(--green-bright); font-size: 0.9rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,0.65); word-break: break-word; overflow-wrap: anywhere; }
.footer-contact-list a:hover { color: var(--green-bright); }
.footer-available p { font-size: 0.85rem; color: rgba(255,255,255,0.65); margin-bottom: 20px; line-height: 1.6; word-break: break-word; }
.btn-whatsapp {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: #25D366; color: white;
  font-family: var(--font-main); font-weight: 600; font-size: 0.9rem;
  padding: 12px 22px; border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(37,211,102,0.3);
  max-width: 100%;
  box-sizing: border-box;
  white-space: nowrap;
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37,211,102,0.4); color: white; }
.btn-whatsapp .fab { font-size: 1.1rem; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  margin-top: 48px;
  word-break: break-word;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.45); }

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}
.lightbox.active { opacity: 1; visibility: visible; }
#lightbox-img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-md); object-fit: contain; box-shadow: var(--shadow-lg); }
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%; color: white; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.3); }

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 500;
  width: 48px; height: 48px;
  background: var(--green-dark);
  color: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s ease;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--green-bright); transform: translateY(-4px); }

/* =============================================
   ANIMATIONS
   ============================================= */

/* Scroll-triggered fade-up — synchronized row-by-row smooth easing */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition: opacity 0.72s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.72s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideInDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-6px); }
  40%       { transform: translateX(6px); }
  60%       { transform: translateX(-4px); }
  80%       { transform: translateX(4px); }
}
@keyframes pulse-soft {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.04); }
}

/* Respect user's reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .animate-on-scroll { opacity: 1; transform: none; }
}

/* =============================================
   RESPONSIVE – TABLET
   ============================================= */
/* =============================================
   RESPONSIVE – TABLET & MOBILE
   ============================================= */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-right { grid-column: span 2; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; }
  .footer-brand { grid-column: span 2; }
  .badge-ring { width: 130px; height: 130px; }
  .badge-script { font-size: 1.8rem; }
  .badge-top, .badge-bottom { font-size: 0.58rem; letter-spacing: 2px; }
  .dest-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}

@media (max-width: 768px) {
  /* Container on Mobile: balanced padding giving maximum usable width */
  .container { padding: 0 16px; }

  /* Top Contact Bar on Mobile: strictly 1 single clean line */
  .top-bar { padding: 5px 0; overflow: hidden; }
  .top-bar-right { display: none !important; }
  .top-bar-inner { justify-content: center; text-align: center; padding: 0 4px; width: 100%; }
  .top-bar-left {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
    gap: 4px;
    font-size: clamp(0.5rem, 2.25vw, 0.72rem);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .top-bar-left a {
    display: inline-flex;
    align-items: center;
    font-size: inherit;
    gap: 3px;
    white-space: nowrap;
    color: rgba(255,255,255,0.92);
  }
  .top-bar-left .fa-phone-alt,
  .top-bar-left .fa-envelope { font-size: 0.85em; }
  .top-bar-left .divider { opacity: 0.45; margin: 0 1px; font-size: 0.8em; }

  /* Mobile Nav Backdrop Overlay */
  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 997;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .nav-backdrop.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* Nav */
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 32px;
    gap: 0;
    box-shadow: -6px 0 30px rgba(0, 0, 0, 0.18);
    transform: translateX(105%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
    z-index: 998;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }
  .nav-link { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--border); border-radius: 0; }
  .nav-link::after { display: none; }
  .hamburger { display: flex; z-index: 999; }
  .btn-enquire { display: none; }

  /* Mobile dropdown - accordion style */
  .has-dropdown > a .fa-chevron-down { transition: transform 0.3s; }
  .has-dropdown.dropdown-open > a .fa-chevron-down { transform: rotate(180deg); }
  .has-dropdown .dropdown {
    position: static; opacity: 1 !important; visibility: visible !important;
    transform: none !important; box-shadow: none;
    border: none; border-left: 3px solid var(--green-dark);
    border-top: none; border-radius: 0;
    background: rgba(27,107,74,0.05);
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s ease;
    min-width: 100%;
  }
  .has-dropdown.dropdown-open .dropdown { max-height: 300px; }
  .dropdown li a { padding: 10px 20px; font-size: 0.85rem; }

  /* Hero on Mobile - tighter layout, content higher up */
  .hero {
    height: auto;
    min-height: 480px;
    padding: 16px 0 72px;
  }
  .hero-content {
    align-items: flex-start;
    padding-top: 8px;
  }
  .hero-inner {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 8px;
    padding: 0 16px;
  }
  .hero-text { max-width: 100%; text-align: left; }
  .hero-script { font-size: 1.25rem; margin-bottom: 6px; }
  .hero-heading {
    font-size: clamp(1.65rem, 6.8vw, 2.2rem);
    line-height: 1.2;
    margin-bottom: 12px;
  }
  .hero-line-1, .hero-line-2 {
    white-space: normal;
  }
  .hero-sub {
    font-size: 0.9rem;
    margin-bottom: 22px;
  }
  .hero-badge {
    display: block;
    align-self: flex-end;
    margin-bottom: -4px;
  }
  .badge-ring {
    width: 96px;
    height: 96px;
    background: rgba(255, 255, 255, 0.12);
  }
  .badge-content { gap: 0px; }
  .badge-top { font-size: 0.48rem; letter-spacing: 1.5px; }
  .badge-script { font-size: 1.3rem; }
  .badge-bottom { font-size: 0.42rem; letter-spacing: 1.5px; }
  .badge-orbit { inset: -4px; border-width: 1.5px; }
  .badge-plane-wrap { top: -9px; }
  .badge-plane { font-size: 0.95rem; }

  /* Top Destinations 2-Row Grid on Mobile */
  .dest-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .dest-img-wrap { height: 130px; }
  .dest-info { padding: 10px 12px 12px; }
  .dest-name { font-size: 0.85rem; }
  .dest-price { font-size: 0.88rem; }

  /* Search */
  .search-card { flex-direction: column; border-radius: var(--radius-md); overflow: visible; }
  .search-divider { width: 100%; height: 1px; }
  .btn-search { border-radius: 0 0 var(--radius-md) var(--radius-md); justify-content: center; padding: 16px; }
  .dest-dropdown { left: 0; min-width: 100%; }
  .counter-wrap { gap: 10px; }
  .counter-btn { width: 30px; height: 30px; font-size: 1.2rem; }
  .counter-val { min-width: 80px; font-size: 0.85rem; }

  /* Trust */
  .trust-grid { display: grid; grid-template-columns: 1fr 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border); }
  .trust-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .trust-item:last-child { border-bottom: none; grid-column: span 2; justify-content: center; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; }
  .why-right { grid-column: span 1; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.gallery-tall { grid-row: span 1; aspect-ratio: 4/3; }
  .gallery-item.gallery-wide { grid-column: span 2; }

  /* Newsletter on Mobile */
  .newsletter-section { padding: 48px 0; }
  .newsletter-inner { flex-direction: column; text-align: center; gap: 20px; }
  .newsletter-left { flex-direction: column; text-align: center; gap: 10px; width: 100%; }
  .newsletter-left h3 { font-size: 1.25rem; margin-bottom: 4px; }
  .newsletter-left p { font-size: 0.85rem; }
  .newsletter-form { width: 100%; max-width: 440px; margin: 0 auto; min-width: 0; }
  .newsletter-form input { min-width: 0; flex: 1 1 auto; padding: 12px 16px; font-size: 0.88rem; }
  #btn-subscribe { flex-shrink: 0; white-space: nowrap; padding: 12px 20px; font-size: 0.88rem; }

  /* Footer on Mobile */
  .footer { padding: 48px 0 0; }
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 16px;
    width: 100%;
  }
  .footer-col { min-width: 0; width: 100%; }
  .footer-brand {
    grid-column: 1 / -1 !important;
    text-align: left;
  }
  .footer-brand .footer-logo { margin-bottom: 12px; }
  .footer-about { font-size: 0.84rem; line-height: 1.6; margin-bottom: 16px; }
  .footer-social { gap: 8px; margin-bottom: 4px; }
  .footer-social a { width: 34px; height: 34px; font-size: 0.82rem; }
  .footer-heading { font-size: 0.92rem; margin-bottom: 14px; }
  
  /* Quick Links (col 1) & Top Destinations (col 2) side-by-side */
  .footer-col:nth-child(2) { grid-column: 1; }
  .footer-col:nth-child(3) { grid-column: 2; }
  .footer-links li { margin-bottom: 8px; }
  .footer-links a { font-size: 0.84rem; }

  /* Contact Us spans full width for unclipped email, phone & address */
  .footer-col:has(.footer-contact-list),
  .footer-col:nth-child(4) {
    grid-column: 1 / -1 !important;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .footer-contact-list li {
    font-size: 0.84rem;
    margin-bottom: 0;
    line-height: 1.5;
  }
  .footer-contact-list a {
    font-size: 0.84rem;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* We are Available 24/7 spans full width for WhatsApp button */
  .footer-col.footer-available,
  .footer-col:nth-child(5) {
    grid-column: 1 / -1 !important;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .footer-available p {
    font-size: 0.84rem;
    margin-bottom: 14px;
    line-height: 1.5;
  }
  .btn-whatsapp {
    display: inline-flex;
    padding: 12px 22px;
    font-size: 0.88rem;
    width: auto;
    max-width: 100%;
  }
  .footer-bottom {
    margin-top: 32px;
    padding: 16px 0;
  }
  .footer-bottom p {
    font-size: 0.78rem;
    line-height: 1.5;
  }

  /* Offer Banner - mobile: keep left content left, CTA right; hide decorative SVG path */
  .offer-banner { padding: 44px 0; }
  .offer-overlay { background: linear-gradient(135deg, rgba(13,61,38,0.95) 0%, rgba(13,61,38,0.88) 100%); }
  .offer-inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
  }
  .offer-content { flex: 1 1 200px; min-width: 0; }
  .offer-heading { font-size: clamp(1.4rem, 5vw, 2.2rem); }
  .offer-sub { font-size: 0.88rem; }
  .offer-plane-path { display: none; } /* hide decorative SVG path on mobile */
  .btn-book-now { padding: 12px 22px; font-size: 0.9rem; flex-shrink: 0; }

  /* Section header */
  .section-header { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .top-bar { padding: 4px 0; overflow: hidden; }
  .top-bar-right { display: none !important; }
  .top-bar-inner { justify-content: center; padding: 0 2px; }
  .top-bar-left {
    justify-content: center;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
    font-size: clamp(0.44rem, 2.15vw, 0.62rem);
    gap: 3px;
    width: 100%;
    overflow: hidden;
  }
  .top-bar-left a { font-size: inherit; gap: 2px; }
  .top-bar-left .divider { margin: 0 1px; }
  .hero-heading { font-size: 1.65rem; }
  .hero-badge { align-self: flex-end; }
  .badge-ring { width: 84px; height: 84px; }
  .badge-script { font-size: 1.15rem; }
  .badge-top { font-size: 0.42rem; }
  .badge-bottom { font-size: 0.38rem; }
  .badge-plane { font-size: 0.85rem; }
  .badge-plane-wrap { top: -8px; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .dest-img-wrap { height: 110px; }
  .dest-name { font-size: 0.78rem; }
  .dest-price { font-size: 0.82rem; }
  .dest-duration { font-size: 0.7rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.gallery-wide { grid-column: span 1; }

  /* Newsletter small mobile */
  .newsletter-section { padding: 36px 0; }
  .newsletter-left h3 { font-size: 1.15rem; }
  .newsletter-left p { font-size: 0.8rem; }
  .newsletter-form { width: 100%; max-width: 100%; }
  .newsletter-form input { padding: 11px 14px; font-size: 0.82rem; }
  #btn-subscribe { padding: 11px 16px; font-size: 0.82rem; gap: 6px; }

  /* Footer small mobile */
  .footer { padding: 36px 0 0; }
  .footer-grid { gap: 20px 12px; }
  .footer-social a { width: 32px; height: 32px; font-size: 0.78rem; }
  .footer-heading { font-size: 0.88rem; margin-bottom: 10px; }
  .footer-links li { margin-bottom: 7px; }
  .footer-links a { font-size: 0.82rem; }
  .footer-contact-list li { font-size: 0.82rem; gap: 8px; }
  .footer-contact-list a { font-size: 0.82rem; }
  .footer-available p { font-size: 0.82rem; margin-bottom: 12px; }
  .btn-whatsapp { font-size: 0.84rem; padding: 10px 18px; }
  .footer-bottom { margin-top: 24px; padding: 14px 0; }
  .footer-bottom p { font-size: 0.75rem; }

  /* Offer banner extra small: stack vertically */
  .offer-inner { flex-direction: column; gap: 16px; }
  .offer-content { text-align: center; }
  .btn-book-now { width: 100%; justify-content: center; }
  .back-to-top { bottom: 20px; right: 16px; width: 42px; height: 42px; font-size: 0.9rem; }
}
