/* SBT Holidays – Bharat Booking inspired layout */
:root {
  --primary: #F58220;
  --primary-dark: #d96d0f;
  --blue: #1565c0;
  --blue-dark: #0d47a1;
  --top-bar: #c62828;
  --top-bar-dark: #b71c1c;
  --text: #333;
  --text-muted: #666;
  --border: #e0e0e0;
  --bg-light: #f5f7fa;
  --white: #fff;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --font: 'Poppins', sans-serif;
  --header-h: 72px;
  --topbar-h: 40px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ===== Premium flying plane cursor (desktop) ===== */
@media (hover: hover) and (pointer: fine) {
  body.use-plane-cursor,
  body.use-plane-cursor a,
  body.use-plane-cursor button,
  body.use-plane-cursor input,
  body.use-plane-cursor select,
  body.use-plane-cursor textarea,
  body.use-plane-cursor label {
    cursor: none !important;
  }
}

.plane-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  will-change: transform;
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.plane-cursor.visible {
  opacity: 1;
  visibility: visible;
}
.plane-cursor.visible .plane-cursor-wrap {
  animation: planeEntrance 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes planeEntrance {
  from { transform: translate(-50%, -48%) scale(0.4); opacity: 0; }
  to { transform: translate(-50%, -48%) scale(1); opacity: 1; }
}

.plane-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99999;
  overflow: hidden;
}
.plane-particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(0.5px);
  animation: particleFade 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.plane-particle.streak {
  border-radius: 2px;
  filter: blur(1px);
  animation: particleStreak 0.85s ease-out forwards;
}
@keyframes particleFade {
  0% { opacity: 0.9; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(0.15); }
}
@keyframes particleStreak {
  0% { opacity: 0.75; transform: translate(-50%, -50%) scaleX(1); }
  100% { opacity: 0; transform: translate(-50%, -50%) scaleX(2.5) scaleY(0.3); }
}

/* Ground shadow */
.plane-shadow {
  position: absolute;
  top: 58%;
  left: 50%;
  width: 44px;
  height: 10px;
  margin-left: -22px;
  background: radial-gradient(ellipse, rgba(26, 35, 126, 0.22) 0%, transparent 70%);
  border-radius: 50%;
  transform: scale(1);
  transition: transform 0.15s ease, opacity 0.15s ease;
  filter: blur(3px);
  z-index: 0;
}

.plane-cursor-wrap {
  position: relative;
  width: 72px;
  height: 88px;
  transform: translate(-50%, -48%);
  perspective: 400px;
}

.plane-cursor-rotate {
  position: relative;
  transform-origin: center 48%;
  will-change: transform;
}

/* Glowing aura rings */
.plane-aura {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  margin: -35px 0 0 -35px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 130, 32, 0.35) 0%, rgba(21, 101, 192, 0.15) 45%, transparent 70%);
  animation: auraPulse 2.5s ease-in-out infinite;
  filter: blur(8px);
}
.plane-aura-2 {
  width: 90px;
  height: 90px;
  margin: -45px 0 0 -45px;
  background: radial-gradient(circle, rgba(77, 208, 225, 0.25) 0%, transparent 65%);
  animation: auraPulse 2.5s ease-in-out infinite 0.4s;
  filter: blur(12px);
}
@keyframes auraPulse {
  0%, 100% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 1; }
}

/* Jet stream lines */
.plane-jet-stream {
  position: absolute;
  top: 72%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  align-items: flex-end;
  height: 28px;
  opacity: 0.5;
}
.plane-jet-stream i {
  display: block;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(to top, transparent, #1a237e 40%, #4dd0e1);
  animation: jetStream 0.45s ease-in-out infinite;
}
.plane-jet-stream i:nth-child(1) { height: 10px; animation-delay: 0s; }
.plane-jet-stream i:nth-child(2) { height: 14px; animation-delay: 0.05s; }
.plane-jet-stream i:nth-child(3) { height: 18px; animation-delay: 0.1s; }
.plane-jet-stream i:nth-child(4) { height: 22px; animation-delay: 0.15s; opacity: 1; }
.plane-jet-stream i:nth-child(5) { height: 26px; animation-delay: 0.2s; }
.plane-jet-stream i:nth-child(6) { height: 22px; animation-delay: 0.25s; }
.plane-jet-stream i:nth-child(7) { height: 14px; animation-delay: 0.3s; }

@keyframes jetStream {
  0%, 100% { transform: scaleY(0.65); opacity: 0.35; }
  50% { transform: scaleY(1.2); opacity: 0.9; }
}

.plane-cursor-bob {
  position: relative;
  z-index: 2;
  animation: planeFloat 2.8s ease-in-out infinite;
}

.plane-cursor-tilt {
  position: relative;
  will-change: transform;
}

.plane-cursor-img {
  width: 58px;
  height: auto;
  display: block;
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 6px 14px rgba(26, 35, 126, 0.35)) drop-shadow(0 0 12px rgba(245, 130, 32, 0.25));
  user-select: none;
  -webkit-user-drag: none;
}

/* Wing shimmer sweep */
.plane-shimmer {
  position: absolute;
  inset: 5% 10%;
  z-index: 4;
  border-radius: 50%;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.55) 50%, transparent 60%);
  background-size: 200% 100%;
  animation: wingShine 3s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: overlay;
}
@keyframes wingShine {
  0% { background-position: 200% 0; opacity: 0; }
  30% { opacity: 0.8; }
  50% { background-position: -100% 0; opacity: 0; }
  100% { background-position: -100% 0; opacity: 0; }
}

/* Engine glow */
.plane-engine {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #42a5f5;
  box-shadow: 0 0 8px #4dd0e1, 0 0 16px rgba(77, 208, 225, 0.6);
  top: 42%;
  z-index: 2;
  animation: enginePulse 0.35s ease-in-out infinite alternate;
}
.plane-engine-l { left: 22%; }
.plane-engine-r { right: 22%; }
@keyframes enginePulse {
  from { opacity: 0.6; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1.15); }
}

@keyframes planeFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-5px) rotate(-1deg); }
  75% { transform: translateY(-8px) rotate(1deg); }
}

/* Fast flight state */
.plane-cursor.moving .plane-cursor-bob {
  animation: planeTurbo 0.55s ease-in-out infinite;
}
.plane-cursor.moving .plane-jet-stream {
  opacity: 1;
}
.plane-cursor.moving .plane-jet-stream i {
  animation-duration: 0.22s;
}
.plane-cursor.moving .plane-aura {
  animation-duration: 1.2s;
}
.plane-cursor.moving .plane-engine {
  animation-duration: 0.15s;
  box-shadow: 0 0 12px #4dd0e1, 0 0 24px rgba(245, 130, 32, 0.5);
}

@keyframes planeTurbo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* Boost on click */
.plane-cursor.boost .plane-cursor-bob {
  animation: planeBoost 0.45s ease-out;
}
@keyframes planeBoost {
  0% { transform: scale(1); }
  40% { transform: scale(1.2) translateY(-18px); }
  100% { transform: scale(1) translateY(0); }
}

/* Hover links – gentle landing */
.plane-cursor.on-link .plane-cursor-img {
  filter: drop-shadow(0 8px 20px rgba(245, 130, 32, 0.5)) drop-shadow(0 0 20px rgba(245, 130, 32, 0.4));
}
.plane-cursor.on-link .plane-aura {
  background: radial-gradient(circle, rgba(245, 130, 32, 0.5) 0%, transparent 70%);
}
img { max-width: 100%; display: block; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }
.container { width: min(1200px, 94%); margin-inline: auto; }
.text-center { text-align: center; }
.bg-light { background: var(--bg-light); }

/* Preloader */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: #1a1a2e;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem;
  transition: opacity 0.5s, visibility 0.5s;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-logo { width: min(260px, 70vw); animation: pulse 1.5s ease infinite; }
.preloader-bar { width: 180px; height: 4px; background: rgba(255,255,255,0.2); border-radius: 4px; overflow: hidden; }
.preloader-bar span { display: block; height: 100%; background: var(--primary); animation: load 2s ease forwards; }
.preloader-text { color: var(--primary); font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; }
@keyframes load { to { width: 100%; } }
@keyframes pulse { 50% { transform: scale(1.02); } }

/* Top bar */
.top-bar {
  background: linear-gradient(90deg, var(--top-bar-dark), var(--top-bar));
  color: var(--white);
  font-size: 0.8rem;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1002;
  height: var(--topbar-h);
}
.top-bar-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.top-bar a { color: var(--white); transition: opacity 0.2s; }
.top-bar a:hover { opacity: 0.85; }
.top-bar i { margin-right: 0.35rem; }
.top-quote-btn {
  background: var(--primary) !important;
  padding: 0.35rem 0.9rem !important;
  border-radius: 4px;
  font-weight: 600;
}
.top-quote-btn:hover { background: var(--primary-dark) !important; opacity: 1 !important; }

/* Main header */
.main-header {
  position: fixed;
  top: var(--topbar-h);
  left: 0; right: 0;
  z-index: 1001;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  height: var(--header-h);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo img { height: 58px; width: auto; }
.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.main-nav > ul > li > a {
  padding: 0.5rem 0.75rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: #222;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active { color: var(--blue); }
.main-nav > ul > li > a i { font-size: 0.65rem; margin-left: 0.2rem; }
.btn-header {
  background: var(--primary) !important;
  color: var(--white) !important;
  padding: 0.5rem 1rem !important;
  border-radius: 4px !important;
  font-weight: 600 !important;
}
.btn-header:hover { background: var(--primary-dark) !important; color: var(--white) !important; }

.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: 6px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.25s;
  z-index: 100;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  color: var(--text);
}
.dropdown a:hover { background: var(--bg-light); color: var(--blue); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span { width: 26px; height: 3px; background: #333; border-radius: 2px; }

/* Hero slider */
.hero-bbh {
  position: relative;
  margin-top: calc(var(--topbar-h) + var(--header-h));
  height: min(480px, 55vh);
  min-height: 320px;
  overflow: hidden;
}
.hero-slider { height: 100%; position: relative; }
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.slide.active { opacity: 1; z-index: 1; }
.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 100%);
}
.slide-caption {
  position: absolute;
  top: 20%;
  bottom: auto;
  left: 5%;
  z-index: 4;
  color: var(--white);
  max-width: 500px;
}
.slide-caption h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); font-weight: 700; margin-bottom: 0.35rem; }
.slide-caption p { font-size: 1rem; opacity: 0.9; }

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.9);
  color: var(--blue);
  font-size: 1rem;
  box-shadow: var(--shadow);
  transition: 0.2s;
}
.slider-btn:hover { background: var(--primary); color: var(--white); }
.slider-btn.prev { left: 1rem; }
.slider-btn.next { right: 1rem; }

.slider-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 0.5rem;
}
.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: transparent;
  padding: 0;
  transition: 0.2s;
}
.slider-dots button.active { background: var(--primary); border-color: var(--primary); }

/* Booking box */
.booking-section {
  margin-top: -45px;
  position: relative;
  z-index: 10;
  padding-bottom: 2rem;
}
.booking-box {
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.booking-tabs {
  display: flex;
  flex-wrap: wrap;
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
}
.b-tab {
  flex: 1;
  min-width: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.85rem 0.5rem;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 600;
  transition: 0.25s;
  border-bottom: 3px solid transparent;
}
.b-tab i { font-size: 1.25rem; }
.b-tab.active,
.b-tab:hover {
  background: var(--white);
  color: var(--blue);
  border-bottom-color: var(--primary);
}
.b-tab.active { color: var(--primary); }

.booking-panels { padding: 1.5rem; }
.b-panel { display: none; animation: fadeIn 0.35s ease; }
.b-panel.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.panel-title {
  font-size: 1rem;
  color: var(--blue-dark);
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.b-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  align-items: end;
}
.b-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}
.b-field input,
.b-field select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: var(--font);
  font-size: 0.9rem;
}
.b-field input:focus,
.b-field select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 2px rgba(21, 101, 192, 0.15);
}
.qty-control {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.qty-control input {
  border: none !important;
  border-radius: 0 !important;
  text-align: center;
  padding: 0.65rem 0.3rem;
  box-shadow: none !important;
}
.qty-btn {
  border: none;
  background: #eef3f8;
  color: #0d47a1;
  font-size: 1.2rem;
  font-weight: 700;
  height: 100%;
  min-height: 42px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.qty-btn:hover {
  background: #dfeaf7;
  color: #08306b;
}
.btn-search {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: var(--font);
  transition: 0.2s;
  min-height: 44px;
}
.btn-search:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245, 130, 32, 0.4); }
.btn-search.full { width: 100%; }

/* Buttons */
.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 0.7rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: 0.2s;
}
.btn-primary:hover { background: var(--primary-dark); }
.btn-outline-dark {
  display: inline-block;
  border: 2px solid var(--blue);
  color: var(--blue);
  padding: 0.55rem 1.25rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: 0.2s;
}
.btn-outline-dark:hover { background: var(--blue); color: var(--white); }

/* Section titles */
.bbh-title {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  color: var(--blue-dark);
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--primary);
  display: inline-block;
}
.bbh-title.center { display: block; text-align: center; border-bottom: none; }
.bbh-title.center::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary);
  margin: 0.5rem auto 0;
}

/* Offers */
.offers-section { padding: 3rem 0; }
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1rem;
}
.offer-card {
  padding: 1.25rem;
  border-radius: 8px;
  color: var(--white);
  transition: transform 0.25s, box-shadow 0.25s;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.offer-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.offer-card i { font-size: 1.75rem; margin-bottom: 0.5rem; opacity: 0.9; }
.offer-card h4 { font-size: 0.95rem; margin-bottom: 0.25rem; }
.offer-card p { font-size: 0.75rem; opacity: 0.9; }
.offer-1 { background: linear-gradient(135deg, #1565c0, #0d47a1); }
.offer-2 { background: linear-gradient(135deg, #F58220, #e65100); }
.offer-3 { background: linear-gradient(135deg, #2e7d32, #1b5e20); }
.offer-4 { background: linear-gradient(135deg, #c2185b, #880e4f); }
.offer-5 { background: linear-gradient(135deg, #6a1b9a, #4a148c); }
.offer-6 { background: linear-gradient(135deg, #00838f, #006064); }

/* Intro */
.intro-section { padding: 3rem 0; }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.sub-title { color: var(--primary); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.intro-text h2 { font-size: clamp(1.5rem, 3vw, 2rem); color: var(--blue-dark); margin: 0.5rem 0 1rem; }
.intro-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: 0.75rem; font-size: 0.95rem; }
.intro-img { border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-lg); }
.intro-img img { width: 100%; height: 340px; object-fit: cover; }

/* Categories */
.category-section { padding: 3rem 0; background: var(--bg-light); }
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1.25rem;
}
.cat-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s;
}
.cat-card:hover { transform: translateY(-6px); }
.cat-img {
  height: 140px;
  background-size: cover;
  background-position: center;
}
.cat-info { padding: 1rem; text-align: center; }
.cat-info h4 { font-size: 0.95rem; color: var(--blue-dark); margin-bottom: 0.25rem; }
.cat-info span { font-size: 0.8rem; color: var(--primary); font-weight: 600; }

/* Packages */
.packages-section { padding: 3rem 0; }
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.pkg-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pkg-duration {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
}
.pkg-img { height: 180px; overflow: hidden; }
.pkg-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.pkg-card:hover .pkg-img img { transform: scale(1.08); }
.pkg-body { padding: 1.25rem; }
.pkg-body h3 { font-size: 1rem; color: var(--blue-dark); margin-bottom: 0.5rem; }
.pkg-price { font-size: 1.15rem; font-weight: 700; color: var(--primary); margin-bottom: 0.75rem; }
.pkg-price small { font-size: 0.75rem; font-weight: 400; color: var(--text-muted); }
.pkg-btn {
  display: block;
  text-align: center;
  background: var(--blue);
  color: var(--white);
  padding: 0.55rem;
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: 0.2s;
}
.pkg-btn:hover { background: var(--blue-dark); color: var(--white); }

/* Destinations BBH */
.dest-section { padding: 3rem 0; }
.dest-bbh-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
}
.dest-bbh-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  transition: transform 0.25s;
}
.dest-bbh-card:hover { transform: translateY(-5px); }
.dest-bbh-card img { width: 100%; height: 150px; object-fit: cover; }
.dest-bbh-info { padding: 0.85rem; text-align: center; }
.dest-bbh-info h4 { font-size: 0.95rem; color: var(--blue-dark); margin-bottom: 0.2rem; }
.dest-bbh-info span { font-size: 0.8rem; color: var(--primary); font-weight: 600; }

/* Why us */
.why-bbh { padding: 3rem 0; }
.why-lead { color: var(--text-muted); max-width: 600px; margin: -0.5rem auto 2rem; line-height: 1.7; }
.why-bbh-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.why-bbh-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-light);
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: 0.25s;
}
.why-bbh-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
}
.why-bbh-card h3 { font-size: 1rem; color: var(--blue-dark); margin-bottom: 0.5rem; }
.why-bbh-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* Trust */
.trust-section {
  padding: 2.5rem 0;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: var(--white);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.trust-item i { font-size: 2rem; margin-bottom: 0.5rem; opacity: 0.9; }
.trust-item h3 { font-size: 2rem; font-weight: 800; }
.trust-item h3 span { font-size: 1rem; font-weight: 500; }
.trust-item p { font-size: 0.9rem; opacity: 0.9; margin-top: 0.25rem; }

/* Partners */
.partners-bbh { padding: 2.5rem 0; background: #263238; }
.partners-label { color: var(--white); text-align: center; font-size: 0.95rem; margin-bottom: 1rem; opacity: 0.9; }
.marquee-wrap { overflow: hidden; margin-bottom: 2rem; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 2.5rem; animation: marquee 30s linear infinite; width: max-content; }
.marquee-track img {
  height: 42px;
  width: auto;
  max-width: 120px;
  min-width: 60px;
  object-fit: contain;
  background: var(--white);
  padding: 6px 14px;
  border-radius: 6px;
  opacity: 0.95;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.marquee-track img:hover { opacity: 1; transform: scale(1.05); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Featured logo strip before footer */
.featured-logos-home {
  padding: 2.4rem 0 2.1rem;
  background: linear-gradient(180deg, #f6f9ff 0%, #edf3fb 100%);
  border-top: 1px solid #e5eef7;
}
.featured-marquee {
  margin-bottom: 0;
}
.featured-marquee .marquee-track img {
  height: 50px;
  max-width: 150px;
  background: #fff;
}

/* Quote form */
.quote-section {
  padding: 3rem 0;
  background: linear-gradient(135deg, #fff8f0, #ffe0b2);
}
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: start;
}
.quote-info h2 { font-size: 1.5rem; color: var(--blue-dark); margin-bottom: 1rem; }
.quote-steps { margin-bottom: 1.5rem; }
.quote-steps li { padding: 0.4rem 0; font-size: 0.95rem; color: var(--text); }
.quote-steps i { color: #2e7d32; margin-right: 0.5rem; }
.quote-contact p { margin: 0.5rem 0; font-weight: 500; color: var(--blue-dark); }
.quote-contact i { color: var(--primary); margin-right: 0.5rem; width: 20px; }

.quote-form {
  background: var(--white);
  padding: 1.75rem;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.quote-form h3 {
  font-size: 1.1rem;
  color: var(--blue-dark);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary);
}
.qf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.qf-field { margin-bottom: 1rem; }
.qf-field label { display: block; font-size: 0.8rem; font-weight: 600; margin-bottom: 0.35rem; color: var(--text-muted); }
.qf-field input,
.qf-field select {
  width: 100%;
  padding: 0.6rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: var(--font);
}

/* Footer */
.footer-bbh {
  background: #1a237e;
  color: rgba(255,255,255,0.85);
  padding: 3rem 0 0;
}
.footer-bbh-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 0.9fr 0.9fr 1.45fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.brand-col img { height: 65px; margin-bottom: 1rem; }
.brand-col p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 1rem; }
.footer-social { display: flex; gap: 0.6rem; }
.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: 0.2s;
}
.footer-social a:hover { background: var(--primary); }
.footer-col h4 { color: var(--white); font-size: 1rem; margin-bottom: 1rem; }
.footer-col > a {
  display: block;
  font-size: 0.88rem;
  padding: 0.3rem 0;
  color: rgba(255,255,255,0.75);
  transition: 0.2s;
}
.footer-col > a:hover { color: var(--primary); padding-left: 4px; }
.footer-col p { font-size: 0.88rem; margin-bottom: 0.6rem; line-height: 1.5; }
.footer-col p i { color: var(--primary); margin-right: 0.5rem; width: 18px; }
.footer-bbh-bottom { padding: 1rem 0; text-align: center; font-size: 0.85rem; }

/* Float widgets – layout handled in premium.css (.float-stack) */

body.popup-open { overflow: hidden; }

/* ===== Premium booking popup ===== */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 10050;
  background: rgba(10, 15, 30, 0.72);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-modal {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(960px, 96vw);
  max-height: min(92vh, 640px);
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.45s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.popup-overlay.active .popup-modal {
  transform: scale(1) translateY(0);
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 20;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: 0.2s;
}
.popup-close:hover {
  background: var(--primary);
  color: var(--white);
  transform: rotate(90deg);
}

/* Left panel */
.popup-left {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-right: 1px solid var(--border);
  overflow: hidden;
}

.popup-promo-slider {
  position: relative;
  height: 200px;
  flex-shrink: 0;
  overflow: hidden;
}
.popup-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.popup-slide.active { opacity: 1; z-index: 1; }
.popup-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.2) 100%);
}
.popup-slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  z-index: 2;
  color: var(--white);
}
.popup-slide-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  line-height: 1.35;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.popup-slide-btn {
  display: inline-block;
  background: #c6ff00;
  color: #1a1a1a;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.45rem 0.85rem;
  border-radius: 4px;
  transition: 0.2s;
}
.popup-slide-btn:hover {
  background: #a8e600;
  color: #000;
  transform: translateX(3px);
}

.popup-trust {
  padding: 1rem 1.15rem;
  flex: 1;
  overflow-y: auto;
}
.popup-trust h4 {
  font-size: 0.88rem;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}
.popup-trust h4 strong { color: var(--blue-dark); }
.popup-trust-grid {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.popup-trust-grid li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}
.popup-trust-grid i {
  color: var(--primary);
  width: 18px;
  text-align: center;
  font-size: 0.85rem;
}

.popup-contact-bar {
  padding: 0.75rem 1.15rem;
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
}
.popup-contact-bar strong {
  display: block;
  color: var(--blue-dark);
  margin-bottom: 0.35rem;
  font-size: 0.8rem;
}
.popup-contact-bar p { color: var(--text-muted); }
.popup-contact-bar i { color: var(--primary); margin-right: 0.25rem; }

/* Right panel – form */
.popup-right {
  background: linear-gradient(160deg, #0d1b4d 0%, #1a237e 45%, #1565c0 100%);
  padding: 1.5rem 1.35rem 1.25rem;
  overflow-y: auto;
  color: var(--white);
}
.popup-right h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
  padding-right: 2rem;
  line-height: 1.35;
  color: var(--white);
}

.popup-form { display: flex; flex-direction: column; gap: 0.65rem; }
.popup-field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: rgba(255, 255, 255, 0.9);
}
.popup-field label span { color: #ffab40; }
.popup-field input,
.popup-field select {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border: none;
  border-radius: 6px;
  font-family: var(--font);
  font-size: 0.88rem;
  background: var(--white);
  color: var(--text);
  transition: box-shadow 0.2s;
}
.popup-field input:focus,
.popup-field select:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(245, 130, 32, 0.45);
}
.popup-field-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0.65rem;
}
.popup-input-icon { position: relative; }
.popup-input-icon input { padding-right: 2.25rem; }
.popup-input-icon i {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  pointer-events: none;
  font-size: 0.9rem;
}

.popup-submit {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.75rem;
  border: none;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--primary), #e65100);
  color: var(--white);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: 0.25s;
  box-shadow: 0 6px 24px rgba(245, 130, 32, 0.45);
}
.popup-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(245, 130, 32, 0.55);
}

.popup-instant {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: #ffab40;
  margin: 0.85rem 0 0.65rem;
}
.popup-instant i { margin-right: 0.35rem; }

.popup-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.popup-badges span {
  font-size: 0.62rem;
  font-weight: 600;
  padding: 0.3rem 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
}
.popup-badges i { margin-right: 0.2rem; color: #90caf9; }

/* Responsive */
@media (max-width: 992px) {
  .intro-grid, .quote-grid { grid-template-columns: 1fr; }
  .footer-bbh-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
/* Mobile/tablet rules → see css/responsive.css */
