/* ============================================================
   GOURAV TRAVEL - PREMIUM CSS SYSTEM
   ============================================================ */

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

:root {
  /* Brand palette — extracted from Gourav Travel logo */
  --navy: #111111;
  --navy-mid: #1a1a1a;
  --blue: #2563eb;
  --blue-light: #00d4ff;
  --purple: #7c3aed;
  --purple-light: #d946ef;
  --orange: #f97316;
  --amber: #f59e0b;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  /* Logo gradient: cyan → blue → purple → magenta → orange */
  --grad-primary: linear-gradient(135deg, #111111 0%, #1a1040 40%, #2d1b69 70%, #1a1a1a 100%);
  --grad-accent: linear-gradient(135deg, #00d4ff 0%, #2563eb 30%, #7c3aed 65%, #d946ef 85%, #f97316 100%);
  --grad-logo: linear-gradient(90deg, #00d4ff 0%, #2563eb 25%, #7c3aed 55%, #d946ef 78%, #f97316 100%);
  --grad-warm: linear-gradient(135deg, #f97316 0%, #d946ef 100%);
  --glass: rgba(255,255,255,0.07);
  --glass-border: rgba(255,255,255,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.4);
  --shadow-blue: 0 8px 32px rgba(0,212,255,0.3);
  --radius: 16px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--white); color: var(--navy); overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

/* ---- SCROLL PROGRESS ---- */
#scrollProgress { position: fixed; top: 0; left: 0; height: 3px; width: 0%; background: var(--grad-accent); z-index: 9999; transition: width 0.1s linear; }

/* ---- PAGE LOADER ---- */
#pageLoader {
  position: fixed; inset: 0; z-index: 99999;
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#pageLoader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-inner { display: flex; flex-direction: column; align-items: center; gap: 0; }

.loader-brand {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.6rem; font-weight: 800;
  color: white; letter-spacing: 0.02em;
  margin-bottom: 36px;
}
.loader-brand span { color: #60a5fa; }

/* Road scene */
.loader-road {
  position: relative;
  width: 320px; height: 50px;
  margin-bottom: 0;
  overflow: visible;
}

/* Car moves left→right */
.loader-car {
  position: absolute;
  bottom: 6px;
  left: -80px;
  width: 80px;
  animation: carDrive 2s linear infinite;
}
.loader-car svg { width: 80px; filter: drop-shadow(0 4px 12px rgba(96,165,250,0.4)); }

/* Spinning wheels */
.loader-car svg circle:nth-child(5),
.loader-car svg circle:nth-child(7) { animation: wheelSpin 0.4s linear infinite; transform-box: fill-box; transform-origin: center; }

/* Dashed road line */
.loader-road-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,0.3) 0px, rgba(255,255,255,0.3) 20px, transparent 20px, transparent 40px);
}

/* Progress track */
.loader-track {
  width: 320px; height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 4px;
}
.loader-bar {
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
  border-radius: 4px;
  animation: loaderFill 2s ease-in-out infinite;
}

.loader-text {
  margin-top: 14px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}

@keyframes carDrive {
  0%   { left: -80px; }
  100% { left: 320px; }
}
@keyframes loaderFill {
  0%   { width: 0%; }
  70%  { width: 90%; }
  100% { width: 100%; }
}
@keyframes wheelSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ---- TYPOGRAPHY ---- */
.display-hero {
  font-family: 'Urbanist', sans-serif;
  font-size: clamp(3.2rem, 6.5vw, 6rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
}
.section-title {
  font-family: 'Urbanist', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
}
.section-subtitle { font-size: 1.05rem; color: var(--gray-600); max-width: 560px; line-height: 1.75; font-weight: 400; }
.label-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,212,255,0.08); color: var(--blue-light); border: 1px solid rgba(0,212,255,0.2); padding: 5px 14px; border-radius: 100px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px; font-family: 'Inter', sans-serif; }
.label-tag.light { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.2); }

/* ---- BUTTONS ---- */
.btn-primary-grad { display: inline-flex; align-items: center; gap: 10px; background: var(--grad-accent); color: var(--white); padding: 14px 32px; border-radius: 100px; font-weight: 600; font-size: 0.95rem; border: none; cursor: pointer; box-shadow: var(--shadow-blue); transition: var(--transition); }
.btn-primary-grad:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(37,99,235,0.5); color: var(--white); }
.btn-outline-glass { display: inline-flex; align-items: center; gap: 10px; background: var(--glass); color: var(--white); padding: 14px 32px; border-radius: 100px; font-weight: 600; font-size: 0.95rem; border: 1px solid var(--glass-border); backdrop-filter: blur(10px); cursor: pointer; transition: var(--transition); }
.btn-outline-glass:hover { background: rgba(255,255,255,0.15); color: var(--white); transform: translateY(-2px); }
.btn-wa { display: inline-flex; align-items: center; gap: 10px; background: #25d366; color: var(--white); padding: 14px 32px; border-radius: 100px; font-weight: 600; font-size: 0.95rem; border: none; transition: var(--transition); }
.btn-wa:hover { background: #1ebe5d; color: var(--white); transform: translateY(-2px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: var(--transition); }
.site-header .navbar { padding: 20px 0; transition: var(--transition); }
.site-header.scrolled .navbar { padding: 12px 0; background: rgba(10,15,46,0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255,255,255,0.08); box-shadow: 0 4px 30px rgba(0,0,0,0.3); }
.logo-wrap { display: flex; align-items: center; gap: 12px; background: #ffffff; padding: 8px 16px 8px 10px; border-radius: 14px; box-shadow: 0 2px 12px rgba(0,0,0,0.15); }
.site-logo-img { height: 70px; width: auto; object-fit: contain; display: block; }
.site-logo-img--footer { height: 160px; }
.logo-text { font-family: 'Urbanist', sans-serif; font-size: 1.15rem; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; line-height: 1.2; }
.nav-link { color: rgba(255,255,255,0.8) !important; font-weight: 500; font-size: 0.9rem; padding: 8px 14px !important; border-radius: 8px; transition: var(--transition); position: relative; }
.nav-link:hover, .nav-link.active { color: var(--white) !important; background: rgba(255,255,255,0.08); }
.navbar-toggler { border: none; background: none; padding: 8px; display: flex; flex-direction: column; gap: 5px; }
.toggler-line { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* (scrolled state uses dark navy — base nav styles use white text for dark bg) */

/* ---- Mega Menu ---- */
.mega-parent { position: static !important; }

.mega-menu {
  position: fixed;
  left: 0; right: 0;
  top: 80px; /* fallback — JS overrides this dynamically */
  background: rgba(8, 12, 36, 0.98);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-top: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 1001;
}
/* When mega menu is open, also give the header a solid bg so it doesn't bleed through */
.mega-parent:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
/* Force header to be solid when any mega menu is hovered */
.site-header:has(.mega-parent:hover) .navbar {
  background: rgba(10,15,46,0.97) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.mega-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: stretch;
  gap: 0;
}

/* Each column */
.mega-col {
  flex: 1;
  padding: 32px 28px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.mega-col:last-child { border-right: none; }

/* Column label */
.mega-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0,212,255,0.15);
}

/* Links inside columns */
.mega-col a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 9px 12px;
  border-radius: 10px;
  margin-bottom: 2px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.mega-col a:hover {
  background: rgba(255,255,255,0.07);
  color: var(--white);
  transform: translateX(4px);
}

/* Icon wrapper inside each link */
.mega-col a .mega-link-icon {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 8px;
  background: rgba(0,212,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--blue-light);
  transition: background 0.2s ease, color 0.2s ease;
}
.mega-col a:hover .mega-link-icon {
  background: var(--blue);
  color: white;
}

/* Arrow icon at end */
.mega-col a .mega-arrow {
  margin-left: auto;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.25);
  transition: color 0.2s ease, transform 0.2s ease;
  background: none;
  width: auto; height: auto; min-width: auto;
  border-radius: 0;
}
.mega-col a:hover .mega-arrow {
  color: rgba(255,255,255,0.6);
  transform: translateX(3px);
  background: none;
}

/* "Explore all" link at bottom of each mega column */
.mega-col a.mega-explore-all {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 5px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--blue-light);
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.25);
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transform: none;
  transition: var(--transition);
}
.mega-col a.mega-explore-all i { font-size: 0.6rem; transition: transform 0.2s ease; }
.mega-col a.mega-explore-all:hover {
  background: rgba(0,212,255,0.2);
  color: white;
  transform: translateX(2px);
  border-color: rgba(0,212,255,0.5);
}
.mega-col a.mega-explore-all:hover i { transform: translateX(3px); }
.mega-col a.mega-explore-all .mega-link-icon { display: none; }

/* CTA / highlight column */
.mega-highlight {
  flex: 0 0 240px;
  background: linear-gradient(160deg, rgba(37,99,235,0.15) 0%, rgba(124,58,237,0.12) 100%);
  border-left: 1px solid rgba(255,255,255,0.07) !important;
  border-right: none !important;
}

.mega-cta-box {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.mega-cta-box .mega-cta-title {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}
.mega-cta-box p {
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.mega-cta-box .mega-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 20px;
}
.btn-mega-wa {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: white;
  padding: 11px 16px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 10px;
  transition: var(--transition);
}
.btn-mega-wa:hover { background: #1ebe5d; color: white; transform: translateY(-1px); }
.btn-mega-call {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  padding: 11px 16px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}
.btn-mega-call:hover { background: rgba(255,255,255,0.14); color: white; transform: translateY(-1px); }

/* Stat pills inside CTA column */
.mega-stat-row {
  display: flex;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap;
}
.mega-stat {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 10px 8px;
  text-align: center;
}
.mega-stat-num {
  font-family: 'Urbanist', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}
.mega-stat-label {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.45);
  margin-top: 3px;
  line-height: 1.3;
}
.btn-nav-call { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.9); font-size: 0.85rem; font-weight: 500; padding: 8px 16px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.35); transition: var(--transition); }
.btn-nav-call:hover { background: rgba(255,255,255,0.12); color: white; border-color: rgba(255,255,255,0.6); }
.btn-nav-wa { display: inline-flex; align-items: center; gap: 8px; background: #25d366; color: white; font-size: 0.85rem; font-weight: 600; padding: 8px 18px; border-radius: 8px; transition: var(--transition); }
.btn-nav-wa:hover { background: #1ebe5d; color: white; }

/* Mobile Menu */
.mobile-menu { background: var(--navy); border-left: 1px solid rgba(255,255,255,0.08); width: 300px !important; }

/* Close button row */
.mobile-menu .offcanvas-header { padding: 14px 16px 0; border-bottom: none; justify-content: flex-end; }

/* Logo section centered below close button */
.mobile-logo-section {  padding: 12px 20px 20px; border-bottom: 1px solid rgba(255,255,255,0.08); }

/* Mobile logo — stacked vertically with white background */
.mobile-logo-wrap { flex-direction: column; align-items: center; text-align: center; padding: 12px 20px; border-radius: 14px; gap: 6px; }
.mobile-logo-wrap .site-logo-img { height: 90px; }
.mobile-logo-wrap .logo-text { font-size: 1.1rem; color: var(--navy); }
.mobile-nav-list li a { display: block; color: rgba(255,255,255,0.8); padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 0.95rem; transition: var(--transition); }
.mobile-nav-list li a:hover { color: var(--white); padding-left: 8px; }
.mobile-acc-btn { width: 100%; background: none; border: none; color: rgba(255,255,255,0.8); padding: 14px 0; font-size: 0.95rem; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.mobile-sub { display: none; padding-left: 16px; }
.mobile-sub.open { display: block; }
.mobile-sub li a { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.mobile-sub-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue-light); padding: 10px 0 4px; opacity: 0.8; }
.mobile-cta-btns { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.btn-mobile-call { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--grad-accent); color: white; padding: 12px; border-radius: 10px; font-weight: 600; }
.btn-mobile-wa { display: flex; align-items: center; justify-content: center; gap: 8px; background: #25d366; color: white; padding: 12px; border-radius: 10px; font-weight: 600; }
 

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section { min-height: 100vh; background: var(--grad-primary); position: relative; display: flex; align-items: center; overflow: hidden; padding: 120px 10px ; }
.hero-bg-orbs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.25; animation: orbFloat 8s ease-in-out infinite; }
.orb-1 { width: 600px; height: 600px; background: #00d4ff; top: -200px; right: -100px; animation-delay: 0s; }
.orb-2 { width: 400px; height: 400px; background: var(--purple); bottom: -100px; left: -100px; animation-delay: 3s; }
.orb-3 { width: 300px; height: 300px; background: var(--orange); top: 50%; left: 40%; animation-delay: 5s; opacity: 0.15; }
@keyframes orbFloat { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(30px,-30px) scale(1.05); } }

.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.hero-content { color: var(--white); }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); padding: 8px 18px; border-radius: 100px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 28px; backdrop-filter: blur(10px); }
.hero-badge .dot { width: 6px; height: 6px; background: #4ade80; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.3); } }
.hero-title { color: var(--white); margin-bottom: 24px; }
.hero-title .hero-accent {
  color: var(--white);
  position: relative;
  display: inline-block;
}
.hero-title .hero-accent::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-logo);
  border-radius: 2px;
  opacity: 0.8;
}
.hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.72); line-height: 1.75; margin-bottom: 40px; max-width: 480px; font-weight: 400; letter-spacing: 0.01em; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; gap: 40px; }
.stat-item { text-align: left; }
.stat-num { font-family: 'Urbanist', sans-serif; font-size: 2.2rem; font-weight: 800; color: var(--white); line-height: 1; letter-spacing: -0.03em; }
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* Hero Visual */
.hero-visual { position: relative; }
.hero-car-wrap { position: relative; z-index: 2; }
.hero-car-img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

/* Hero Slider */
.hero-slider { position: relative; width: 100%; aspect-ratio: 16/10; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(255,255,255,0.12); box-shadow: 0 30px 80px rgba(0,0,0,0.4); }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,23,42,0.45) 0%, rgba(37,99,235,0.15) 100%); }
.hero-slide-label { position: absolute; bottom: 14px; left: 16px; z-index: 2; color: #fff; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; background: rgba(0,0,0,0.35); backdrop-filter: blur(6px); padding: 4px 12px; border-radius: 20px; }
.hero-slider-dots { position: absolute; bottom: 14px; right: 16px; z-index: 2; display: flex; gap: 6px; align-items: center; }
.hsd { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: all 0.3s; }
.hsd.active { background: #fff; width: 22px; border-radius: 4px; }

/* Floating Cards */
.float-card { position: absolute; background: rgba(255,255,255,0.1); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius); padding: 14px 18px; color: white; z-index: 3; animation: floatCard 4s ease-in-out infinite; }
.float-card-1 { top: -20px; left: -30px; animation-delay: 0s; }
.float-card-2 { bottom: 20px; right: -20px; animation-delay: 2s; }
.float-card-3 { top: 50%; left: -40px; transform: translateY(-50%); animation-delay: 1s; }
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.float-card-3 { animation: floatCard3 4s ease-in-out infinite; }
@keyframes floatCard3 { 0%,100% { transform: translateY(-50%); } 50% { transform: translateY(calc(-50% - 10px)); } }
.fc-icon { font-size: 1.4rem; margin-bottom: 4px; }
.fc-label { font-size: 0.7rem; opacity: 0.7; text-transform: uppercase; letter-spacing: 0.06em; }
.fc-value { font-size: 1rem; font-weight: 700; }
.fc-sub { font-size: 0.75rem; opacity: 0.7; }

/* Route Indicator */
.route-indicator { display: flex; align-items: center; gap: 8px; }
.route-dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; }
.route-line { flex: 1; height: 2px; background: linear-gradient(90deg, #4ade80, #60a5fa); border-radius: 2px; }
.route-dot-end { width: 8px; height: 8px; border-radius: 50%; background: #60a5fa; }

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section-pad { padding: 64px 0; }
.section-pad-sm { padding: 48px 0; }
.section-header { margin-bottom: 60px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section { background: var(--gray-50); }
.service-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px 28px; border: 1px solid var(--gray-200); transition: var(--transition); position: relative; overflow: hidden; height: 100%; }
.service-card::before { content: ''; position: absolute; inset: 0; background: var(--grad-primary); opacity: 0; transition: var(--transition); z-index: 0; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-blue); border-color: transparent; }
.service-card:hover::before { opacity: 1; }
.service-card:hover .sc-icon, .service-card:hover .sc-title, .service-card:hover .sc-desc, .service-card:hover .sc-link { color: white; }
.service-card:hover .sc-icon { background: rgba(255,255,255,0.15); }
.service-card > * { position: relative; z-index: 1; }
.sc-icon { width: 56px; height: 56px; background: rgba(0,212,255,0.1); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--blue); margin-bottom: 20px; transition: var(--transition); }
.sc-title { font-family: 'Urbanist', sans-serif; font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; transition: var(--transition); }
.sc-desc { font-size: 0.9rem; color: var(--gray-600); line-height: 1.6; margin-bottom: 20px; transition: var(--transition); }
.sc-link { font-size: 0.85rem; font-weight: 600; color: var(--blue); display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }
.sc-link i { transition: var(--transition); }
.service-card:hover .sc-link i { transform: translateX(4px); }

/* ============================================================
   TOURS SECTION
   ============================================================ */
.tours-section { background: var(--white); }
.tour-card { border-radius: var(--radius-lg); overflow: hidden; background: var(--white); border: 1px solid var(--gray-200); transition: var(--transition); height: 100%; }
.tour-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.12); }
.tour-img-wrap { position: relative; overflow: hidden; aspect-ratio: 4/3; background: linear-gradient(135deg, var(--navy), var(--blue)); }
.tour-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.tour-card:hover .tour-img-wrap img { transform: scale(1.08); }
.tour-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 3rem; color: rgba(255,255,255,0.4); }
.tour-badge { position: absolute; top: 14px; left: 14px; background: var(--grad-accent); color: white; padding: 4px 12px; border-radius: 100px; font-size: 0.75rem; font-weight: 600; }
.tour-duration { position: absolute; bottom: 14px; right: 14px; background: rgba(0,0,0,0.6); backdrop-filter: blur(10px); color: white; padding: 4px 12px; border-radius: 100px; font-size: 0.75rem; font-weight: 500; }
.tour-body { padding: 24px; }
.tour-title { font-family: 'Urbanist', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.tour-desc { font-size: 0.875rem; color: var(--gray-600); line-height: 1.6; margin-bottom: 16px; }
.tour-meta { display: flex; gap: 16px; margin-bottom: 16px; }
.tour-meta span { font-size: 0.8rem; color: var(--gray-600); display: flex; align-items: center; gap: 5px; }
.tour-meta i { color: var(--blue); }
.tour-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding-top: 16px; border-top: 1px solid var(--gray-100); flex-wrap: wrap; }
.btn-tour { display: inline-flex; align-items: center; gap: 6px; background: var(--grad-accent); color: white; padding: 8px 16px; border-radius: 100px; font-size: 0.8rem; font-weight: 600; transition: var(--transition); }
.btn-tour:hover { transform: translateY(-2px); box-shadow: var(--shadow-blue); color: white; }
.btn-tour-outline { background: transparent; border: 1.5px solid var(--blue); color: var(--blue); }
.btn-tour-outline:hover { background: var(--blue); color: white; box-shadow: none; }

/* ============================================================
   TOUR CATEGORY CARDS (homepage)
   ============================================================ */
a.tour-cat-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
a.tour-cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.13);
}
.tcc-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.tcc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
a.tour-cat-card:hover .tcc-img img { transform: scale(1.06); }
.tcc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 60%);
}
.tcc-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
}
.tcc-accent-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.tcc-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.tcc-title {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.tcc-desc {
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 14px;
  flex: 1;
}
.tcc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 16px;
}
.tcc-tags span {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  color: var(--gray-600);
  font-size: 0.7rem;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 100px;
}
.tcc-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue);
  transition: gap 0.2s ease;
}
a.tour-cat-card:hover .tcc-cta { gap: 10px; }

/* ============================================================
   DESTINATIONS
   ============================================================ */
.destinations-section {
  background: var(--grad-primary);
  padding: 80px 0 100px;
  overflow: hidden;
}
.destinations-section .section-subtitle { max-width: 520px; }

/* Masonry-style grid: large card left, 2×2 right */
.dest-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 14px;
  margin-top: 48px;
}

/* Large card spans 2 rows */
.dest-card.dest-large {
  grid-row: span 2;
}

/* All cards */
.dest-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: inherit;
}
.dest-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.dest-card:hover img { transform: scale(1.07); }

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
  transition: background 0.3s ease;
}
.dest-card:hover .dest-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}

.dest-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 22px;
  color: white;
}
.dest-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
}
.dest-name {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 5px;
}
.dest-card.dest-large .dest-name { font-size: 1.9rem; }
.dest-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.dest-sub i { font-size: 0.7rem; color: rgba(255,255,255,0.55); }

/* Hover lift */
.dest-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.dest-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }

/* Responsive */
@media (max-width: 991px) {
  .dest-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 220px;
  }
  .dest-card.dest-large { grid-row: span 1; grid-column: span 2; }
}
@media (max-width: 576px) {
  .dest-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 200px);
  }
  .dest-card.dest-large { grid-column: span 1; }
}

/* ============================================================
   FLEET SECTION
   ============================================================ */
.fleet-section { background: var(--gray-50); }
.fleet-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--gray-200); transition: var(--transition); }
.fleet-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.fleet-img-wrap { background: linear-gradient(135deg, #f1f5f9, #e2e8f0); aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.fleet-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.fleet-img-placeholder { font-size: 4rem; color: var(--gray-400); }
.fleet-body { padding: 24px; }
.fleet-name { font-family: 'Urbanist', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; }
.fleet-specs { display: flex; gap: 16px; margin-bottom: 16px; flex-wrap: wrap; }
.fleet-spec { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: var(--gray-600); }
.fleet-spec i { color: var(--blue); }
.fleet-features { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.fleet-tag { background: rgba(37,99,235,0.08); color: var(--blue); padding: 4px 10px; border-radius: 100px; font-size: 0.75rem; font-weight: 500; }
.btn-fleet-book { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--grad-accent); color: white; padding: 10px; border-radius: 10px; font-weight: 600; font-size: 0.85rem; transition: var(--transition); width: 100%; }
.btn-fleet-book:hover { transform: translateY(-2px); box-shadow: var(--shadow-blue); color: white; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { background: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-visual { position: relative; }
.why-main-card { background: var(--grad-primary); border-radius: var(--radius-lg); padding: 48px; color: white; position: relative; overflow: hidden; }
.why-main-card::before { content: ''; position: absolute; top: -50px; right: -50px; width: 200px; height: 200px; background: rgba(255,255,255,0.05); border-radius: 50%; }
.why-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }
.why-stat { text-align: center; background: rgba(255,255,255,0.08); border-radius: var(--radius); padding: 20px; }
.why-stat-num, .staticStat { font-family: 'Urbanist', sans-serif; font-size: 2rem; font-weight: 800; color: white; }
.why-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.7); margin-top: 4px; }
.why-features { display: flex; flex-direction: column; gap: 24px; }
.why-feature { display: flex; gap: 20px; align-items: flex-start; padding: 24px; border-radius: var(--radius); border: 1px solid var(--gray-200); transition: var(--transition); }
.why-feature:hover { border-color: var(--blue); box-shadow: 0 4px 20px rgba(37,99,235,0.1); transform: translateX(4px); }
.wf-icon { width: 48px; height: 48px; min-width: 48px; border-radius: 12px; background: var(--grad-accent); display: flex; align-items: center; justify-content: center; color: white; font-size: 1.2rem; }
.wf-title { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.wf-desc { font-size: 0.875rem; color: var(--gray-600); line-height: 1.6; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--gray-50); }
.testi-card { background: var(--white); border-radius: var(--radius-lg); padding: 32px; border: 1px solid var(--gray-200); height: 100%; transition: var(--transition); }
.testi-card:hover { box-shadow: 0 10px 40px rgba(0,0,0,0.08); transform: translateY(-4px); }
.testi-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.testi-stars i { color: #f59e0b; font-size: 0.9rem; }
.testi-text { font-size: 0.95rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--grad-accent); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 1rem; }
.testi-name { font-weight: 700; font-size: 0.9rem; }
.testi-loc { font-size: 0.8rem; color: var(--gray-400); }
.testi-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; flex-wrap: wrap; gap: 8px; }
.testi-trip-badge { display: inline-flex; align-items: center; gap: 5px; background: rgba(37,99,235,0.08); color: var(--blue); border: 1px solid rgba(37,99,235,0.15); font-size: 0.7rem; font-weight: 600; padding: 3px 10px; border-radius: 100px; }

/* ---- Shared Swiper nav (services + testimonials) ---- */
.services-swiper,
.testi-swiper {
  padding-bottom: 48px !important;
}
.services-swiper .swiper-slide,
.testi-swiper .swiper-slide {
  height: auto;
}
.services-swiper .service-card,
.testi-swiper .testi-card {
  height: 100%;
}

/* Shared nav row */
.services-nav,
.testi-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 4px;
}
.services-btn-prev, .services-btn-next,
.testi-btn-prev,   .testi-btn-next {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--navy);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.services-btn-prev:hover, .services-btn-next:hover,
.testi-btn-prev:hover,   .testi-btn-next:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
  transform: scale(1.08);
}
.services-btn-prev:disabled, .services-btn-next:disabled,
.testi-btn-prev:disabled,   .testi-btn-next:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* Swiper pagination dots */
.swiper-pagination-bullet {
  background: var(--gray-400);
  opacity: 1;
  width: 7px;
  height: 7px;
  transition: var(--transition);
}
.swiper-pagination-bullet-active {
  background: var(--blue);
  width: 22px;
  border-radius: 4px;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta { background: var(--grad-primary); padding: 100px 0; position: relative; overflow: hidden; text-align: center; }
.final-cta::before { content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; background: rgba(0,212,255,0.15); border-radius: 50%; filter: blur(80px); }
.final-cta-content { position: relative; z-index: 2; color: white; }
.final-cta-title { font-family: 'Urbanist', sans-serif; font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 800; margin-bottom: 16px; letter-spacing: -0.03em; }
.final-cta-sub { font-size: 1.1rem; color: rgba(255,255,255,0.75); margin-bottom: 40px; }
.final-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.8); }
.footer-top { padding: 70px 0 60px; }

/* Centered brand row */
.footer-brand-row { text-align: center; }
.footer-logo { display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px; background: #ffffff; border-radius: 16px; padding: 10px 20px; box-shadow: 0 4px 20px rgba(0,0,0,0.3); transition: box-shadow 0.3s ease; }
.footer-logo:hover { box-shadow: 0 6px 28px rgba(0,0,0,0.45); }
.footer-tagline { font-size: 0.9rem; color: rgba(255,255,255,0.55); max-width: 480px; margin: 0 auto 20px; line-height: 1.7; }
.footer-socials { display: flex; align-items: center; justify-content: center; gap: 10px; }
.footer-socials a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 0.8rem; transition: var(--transition); }
.footer-socials a:hover { background: var(--blue); border-color: var(--blue); color: white; transform: translateY(-2px); }

/* Divider */
.footer-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 40px 0; }

/* 4-column grid */
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.footer-heading { font-family: 'Urbanist', sans-serif; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue-light); margin-bottom: 18px; display: flex; align-items: center; gap: 8px; }
.footer-heading i { font-size: 0.72rem; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 8px; transition: var(--transition); }
.footer-links a i { font-size: 0.55rem; color: var(--blue-light); flex-shrink: 0; }
.footer-links a:hover { color: white; padding-left: 4px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.875rem; color: rgba(255,255,255,0.6); }
.footer-contact-list li i { color: var(--blue-light); margin-top: 2px; flex-shrink: 0; width: 14px; text-align: center; }
.footer-contact-list a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-contact-list a:hover { color: white; }
.btn-footer-wa { display: inline-flex; align-items: center; gap: 8px; background: #25d366; color: white; padding: 10px 20px; border-radius: 100px; font-weight: 600; font-size: 0.85rem; transition: var(--transition); }
.btn-footer-wa:hover { background: #1ebe5d; color: white; transform: translateY(-2px); }
.footer-bottom { padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.85rem; color: rgba(255,255,255,0.5); }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.floating-btns { position: fixed; bottom: 30px; right: 24px; display: flex; flex-direction: column; gap: 12px; z-index: 998; }
.float-wa, .float-call, .float-fb, .float-insta, .float-google { width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: white; box-shadow: 0 4px 20px rgba(0,0,0,0.3); transition: var(--transition); position: relative; }
.float-wa { background: #25d366; }
.float-call { background: var(--grad-accent); }
.float-fb { background: #1877f2; }
.float-insta { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.float-google { background: #ffffff; border: 2px solid #e2e8f0; box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.float-google { background: #ffffff; border: 2px solid #e2e8f0; }
.float-wa:hover, .float-call:hover, .float-fb:hover, .float-insta:hover { transform: scale(1.1); color: white; }
.float-google:hover { transform: scale(1.1); }
.float-tooltip { position: absolute; right: 64px; background: var(--navy); color: white; padding: 6px 12px; border-radius: 8px; font-size: 0.8rem; white-space: nowrap; opacity: 0; pointer-events: none; transition: var(--transition); }
.float-wa:hover .float-tooltip, .float-call:hover .float-tooltip, .float-fb:hover .float-tooltip, .float-insta:hover .float-tooltip, .float-google:hover .float-tooltip { opacity: 1; }

/* ============================================================
   FORMS
   ============================================================ */
.inquiry-form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); border: 1px solid var(--gray-200); }
.form-group { margin-bottom: 20px; }
.form-label { font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; display: block; }
.form-control, .form-select { border: 1.5px solid var(--gray-200); border-radius: 10px; padding: 12px 16px; font-size: 0.9rem; color: var(--navy); transition: var(--transition); background: var(--white); width: 100%; }
.form-control:focus, .form-select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); outline: none; }
textarea.form-control { resize: vertical; min-height: 120px; }
.btn-submit { width: 100%; background: var(--grad-accent); color: white; border: none; padding: 14px; border-radius: 10px; font-weight: 600; font-size: 1rem; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 10px; }
.btn-submit:hover { transform: translateY(-2px); box-shadow: var(--shadow-blue); }
.alert-success { background: rgba(74,222,128,0.1); border: 1px solid rgba(74,222,128,0.3); color: #166534; padding: 14px 18px; border-radius: 10px; margin-bottom: 20px; font-size: 0.9rem; }
.alert-error { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3); color: #991b1b; padding: 14px 18px; border-radius: 10px; margin-bottom: 20px; font-size: 0.9rem; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero { background: var(--grad-primary); padding: 140px 0 80px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; background: rgba(0,212,255,0.15); border-radius: 50%; filter: blur(60px); }
.page-hero-content { position: relative; z-index: 2; color: white; }
.breadcrumb-nav { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.breadcrumb-nav a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.breadcrumb-nav a:hover { color: white; }
.breadcrumb-nav i { font-size: 0.6rem; }
.page-hero-title { font-family: 'Urbanist', sans-serif; font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 800; color: white; margin-bottom: 16px; }
.page-hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.75); max-width: 600px; line-height: 1.7; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story { background: var(--white); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.story-visual { position: sticky; top: 100px; margin: 16px 16px 32px 16px; }

/* Image collage */
.story-img-collage { display: grid; grid-template-columns: 1.5fr 1fr; grid-template-rows: 480px; gap: 10px; }
.sic-main { border-radius: var(--radius-lg); overflow: hidden; }
.sic-main img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.sic-main:hover img { transform: scale(1.05); }
.sic-secondary { display: grid; grid-template-rows: 1fr 1fr; gap: 10px; }
.sic-img { border-radius: var(--radius); overflow: hidden; }
.sic-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.sic-img:hover img { transform: scale(1.05); }

.story-badge-float { position: absolute; bottom: -16px; right: -16px; background: var(--white); border-radius: var(--radius); padding: 18px 22px; box-shadow: 0 10px 40px rgba(0,0,0,0.15); text-align: center; z-index: 2; }
.story-badge-float .num { font-family: 'Urbanist', sans-serif; font-size: 2.5rem; font-weight: 800; color: var(--blue); line-height: 1; }
.story-badge-float .lbl { font-size: 0.8rem; color: var(--gray-600); margin-top: 4px; }
.story-badge-float-2 { position: absolute; top: 20px; left: -16px; background: var(--white); border-radius: var(--radius); padding: 12px 16px; box-shadow: 0 10px 40px rgba(0,0,0,0.15); text-align: center; z-index: 2; }
.story-badge-float-2 .fc-icon { font-size: 1.2rem; margin-bottom: 4px; }
.story-badge-float-2 .lbl { font-size: 0.75rem; color: var(--gray-600); margin-top: 2px; }
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, #00d4ff, #7c3aed, #f97316); }
.timeline-item { position: relative; margin-bottom: 32px; }
.timeline-item::before { content: ''; position: absolute; left: -28px; top: 6px; width: 12px; height: 12px; border-radius: 50%; background: var(--blue); border: 2px solid white; box-shadow: 0 0 0 3px rgba(37,99,235,0.2); }
.timeline-year { font-size: 0.75rem; font-weight: 700; color: var(--blue); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 4px; }
.timeline-title { font-weight: 700; font-size: 1rem; margin-bottom: 6px; }
.timeline-desc { font-size: 0.875rem; color: var(--gray-600); line-height: 1.6; }
.mission-vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mv-card { padding: 36px; border-radius: var(--radius-lg); }
.mv-card.mission { background: var(--grad-primary); color: white; }
.mv-card.vision { background: var(--gray-50); border: 1px solid var(--gray-200); }
.mv-icon { font-size: 2rem; margin-bottom: 16px; }
.mv-title { font-family: 'Urbanist', sans-serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; }
.mv-card.vision .mv-title { color: var(--navy); }
.mv-desc { font-size: 0.9rem; line-height: 1.7; }
.mv-card.mission .mv-desc { color: rgba(255,255,255,0.8); }
.mv-card.vision .mv-desc { color: var(--gray-600); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info-card { background: var(--grad-primary); border-radius: var(--radius-lg); padding: 48px; color: white; height: 100%; }
.contact-info-title { font-family: 'Urbanist', sans-serif; font-size: 1.8rem; font-weight: 800; margin-bottom: 12px; color: white; }
.contact-info-sub { color: rgba(255,255,255,0.75); margin-bottom: 40px; line-height: 1.7; font-size: 0.95rem; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.ci-icon { width: 44px; height: 44px; min-width: 44px; background: rgba(255,255,255,0.15); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: white; }
.ci-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.6); margin-bottom: 4px; }
.ci-value { font-weight: 600; color: white; font-size: 0.95rem; line-height: 1.6; }
.ci-value a { color: white; text-decoration: none; transition: var(--transition); }
.ci-value a:hover { color: rgba(255,255,255,0.75); }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; margin-top: 32px; }
.map-wrap iframe { width: 100%; height: 250px; border: none; display: block; }

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-grid { columns: 3; gap: 16px; }
.gallery-item { break-inside: avoid; margin-bottom: 16px; border-radius: var(--radius); overflow: hidden; cursor: pointer; position: relative; }
.gallery-item img { width: 100%; display: block; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(10,15,46,0.6); opacity: 0; transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 2rem; color: white; }
.gallery-placeholder { width: 100%; aspect-ratio: 4/3; background: linear-gradient(135deg, var(--navy), var(--blue)); display: flex; align-items: center; justify-content: center; }
.gallery-placeholder i { font-size: 2.5rem; color: rgba(255,255,255,0.3); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 9999; display: none; align-items: center; justify-content: center; }
.lightbox.active { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 90vh; border-radius: var(--radius); }
.lightbox-close { position: absolute; top: 20px; right: 20px; width: 44px; height: 44px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.2rem; cursor: pointer; transition: var(--transition); border: none; }
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* ============================================================
   FLEET PAGE
   ============================================================ */
.fleet-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; }
.fleet-page-grid .fleet-card { display: flex; flex-direction: column; height: 100%; }
.fleet-page-grid .fleet-body { display: flex; flex-direction: column; flex: 1; }
.fleet-page-grid .fleet-body .btn-fleet-book { margin-top: auto; }

/* ============================================================
   ROUTES PAGE — extends existing tour-card styles
   ============================================================ */
.route-card-inner .tour-img-wrap img { object-fit: contain !important; background: var(--gray-100); padding: 16px; }

/* ============================================================
   ROUTE SLUG PAGE
   ============================================================ */

/* Hero overlay for when a destination image is used */
.route-page-hero { position: relative; }
.route-hero-overlay { position: absolute; inset: 0; background: rgba(10,15,46,0.75); z-index: 1; }

/* Meta pills below hero title */
.route-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}
.route-hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}
.route-hero-meta span i { color: var(--blue-light); }

/* Highlights list */
.route-highlights { display: flex; flex-direction: column; gap: 12px; margin-bottom: 12px; }
.route-highlight-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--navy);
    transition: var(--transition);
}
.route-highlight-item:hover { border-color: var(--blue); background: rgba(37,99,235,0.04); }
.rh-icon {
    width: 32px; height: 32px; min-width: 32px;
    background: rgba(37,99,235,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--blue);
    font-size: 0.75rem;
}

/* Vehicle cards row */
.route-vehicles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.route-vehicle-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    padding: 14px 10px;
    text-align: center;
    transition: var(--transition);
}
.route-vehicle-card:hover { border-color: var(--blue); box-shadow: 0 6px 24px rgba(37,99,235,0.1); transform: translateY(-3px); }
.route-vehicle-card img { height: 60px; width: 100%; object-fit: contain; margin-bottom: 8px; }
.rvc-name { font-weight: 700; font-size: 0.78rem; color: var(--navy); margin-bottom: 4px; }
.rvc-meta { font-size: 0.72rem; color: var(--gray-600); margin-bottom: 4px; }
.rvc-price { font-size: 0.8rem; font-weight: 700; color: var(--blue); }

/* Booking card */
.route-booking-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    position: sticky;
    top: 100px;
}
.rbc-header {
    background: var(--grad-primary);
    padding: 28px 28px 24px;
    text-align: center;
    color: white;
}
.rbc-header i { font-size: 2rem; margin-bottom: 10px; display: block; color: var(--blue-light); }
.rbc-header h3 { font-family: 'Urbanist', sans-serif; font-size: 1.3rem; font-weight: 800; margin-bottom: 4px; }
.rbc-header p { font-size: 0.85rem; color: rgba(255,255,255,0.65); margin: 0; }
.rbc-body { padding: 24px; }
.rbc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.875rem;
}
.rbc-row:last-of-type { border-bottom: none; }
.rbc-label { color: var(--gray-600); display: flex; align-items: center; gap: 8px; }
.rbc-label i { color: var(--blue); width: 16px; }
.rbc-val { font-weight: 600; color: var(--navy); }
.rbc-divider { height: 1px; background: var(--gray-200); margin: 16px 0; }
.rbc-note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--gray-600);
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.rbc-note i { color: var(--blue); }

/* Responsive */
@media (max-width: 991px) {
    .route-vehicles { grid-template-columns: repeat(2, 1fr); }
    .route-booking-card { position: static; margin-top: 32px; }
}
@media (max-width: 575px) {
    .route-vehicles { grid-template-columns: repeat(2, 1fr); }
    .route-hero-meta { gap: 8px; }
}

/* ============================================================
   SERVICE / TOUR INNER PAGES
   ============================================================ */
.service-overview { background: var(--white); }
.service-overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.benefits-list { display: flex; flex-direction: column; gap: 16px; }
.benefit-item { display: flex; gap: 14px; align-items: flex-start; padding: 16px; border-radius: var(--radius); border: 1px solid var(--gray-200); transition: var(--transition); }
.benefit-item:hover { border-color: var(--blue); background: rgba(37,99,235,0.03); }
.benefit-icon { width: 36px; height: 36px; min-width: 36px; background: rgba(37,99,235,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--blue); font-size: 0.9rem; }
.benefit-title { font-weight: 600; font-size: 0.9rem; margin-bottom: 2px; }
.benefit-desc { font-size: 0.825rem; color: var(--gray-600); }

/* FAQ */
.faq-section { background: var(--gray-50); }
.faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-question { padding: 20px 24px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: var(--transition); background: var(--white); }
.faq-question:hover { background: var(--gray-50); }
.faq-question.open { background: var(--navy); color: white; }
.faq-question i { transition: var(--transition); }
.faq-question.open i { transform: rotate(180deg); }
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; font-size: 0.9rem; color: var(--gray-600); line-height: 1.7; background: var(--white); }
.faq-answer.open { max-height: 300px; padding: 20px 24px; }

/* Itinerary */
.itinerary-section { background: var(--white); }
.day-card { border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 16px; }
.day-header { background: var(--grad-accent); color: white; padding: 16px 24px; display: flex; align-items: center; gap: 16px; }
.day-num { font-family: 'Urbanist', sans-serif; font-size: 1.5rem; font-weight: 800; opacity: 0.5; }
.day-title { font-weight: 700; font-size: 1rem; }
.day-body { padding: 24px; }
.day-body p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.7; }

/* Inclusions/Exclusions */
.inc-exc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.inc-card, .exc-card { border-radius: var(--radius-lg); padding: 28px; }
.inc-card { background: rgba(74,222,128,0.08); border: 1px solid rgba(74,222,128,0.2); }
.exc-card { background: rgba(239,68,68,0.06); border: 1px solid rgba(239,68,68,0.15); }
.inc-exc-title { font-weight: 700; font-size: 1rem; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.inc-card .inc-exc-title { color: #166534; }
.exc-card .inc-exc-title { color: #991b1b; }
.inc-list li, .exc-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; margin-bottom: 10px; color: var(--gray-600); }
.inc-list li i { color: #22c55e; margin-top: 2px; }
.exc-list li i { color: #ef4444; margin-top: 2px; }

/* Related cards */
.related-section { background: var(--gray-50); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
/* Elements start visible — opacity only hides if JS is confirmed running */
[data-aos] { opacity: 1; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }
[data-aos="fade-left"] { transform: translateX(-20px); }
[data-aos="fade-left"].aos-animate { opacity: 1; transform: translateX(0); }
[data-aos="fade-right"] { transform: translateX(20px); }
[data-aos="fade-right"].aos-animate { opacity: 1; transform: translateX(0); }
[data-aos="zoom-in"] { transform: scale(0.95); }
[data-aos="zoom-in"].aos-animate { opacity: 1; transform: scale(1); }

/* JS adds this class to <html> when it's running — only then hide for animation */
.js-ready [data-aos] { opacity: 0; }
.js-ready [data-aos].aos-animate { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  [data-aos], .js-ready [data-aos] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .story-visual { position: static; margin: 0 0 24px 0; }
  .story-img-collage { grid-template-rows: 260px; }
  .story-badge-float { bottom: -12px; right: -8px; padding: 12px 16px; }
  .story-badge-float .num { font-size: 1.8rem; }
  .story-badge-float-2 { display: none; }
  .contact-split { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr 1fr; }
  .dest-card.large { grid-row: span 1; }
  .inc-exc-grid { grid-template-columns: 1fr; }
  .mission-vision-grid { grid-template-columns: 1fr; }
  .service-overview-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2; }
}
@media (max-width: 767px) {
  .section-pad { padding: 48px 0; }
  .hero-stats { gap: 24px; }
  .stat-num { font-size: 1.5rem; }
  .dest-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1; }
  .footer-wa-inner { flex-direction: column; text-align: center; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .mega-inner { flex-direction: column; gap: 24px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .final-cta-btns { flex-direction: column; align-items: center; }
}

/* ============================================================
   ADDITIONAL POLISH & FIXES
   ============================================================ */

/* Contact split responsive */
@media (max-width: 991px) {
  .contact-split { grid-template-columns: 1fr; }
  .contact-info-card { height: auto; }
}

/* Smooth page transitions */
body { animation: pageFadeIn 0.4s ease; }
@keyframes pageFadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* Section dividers */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
  margin: 0;
}

/* Gradient text utility */
.gradient-text {
  background: var(--grad-logo);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Pulse animation for live badge */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* Card hover lift */
.hover-lift { transition: var(--transition); }
.hover-lift:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.12); }

/* Sticky header transparent on hero */
.site-header:not(.scrolled) .navbar { background: transparent; }

/* Nav active underline */
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--grad-logo);
  border-radius: 2px;
}

/* Form select arrow */
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

/* Floating button pulse ring */
.float-wa::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: #25d366;
  opacity: 0.3;
  animation: floatPulse 2s ease-in-out infinite;
}
@keyframes floatPulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.3); opacity: 0; }
}

/* Tour card image fallback emoji sizing */
.tour-img-placeholder {
  font-size: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* Destination grid responsive */
@media (max-width: 575px) {
  .dest-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .stat-num { font-size: 1.6rem; }
  .floating-btns { bottom: 20px; right: 16px; }
  .float-wa, .float-call, .float-fb, .float-insta, .float-google { width: 48px; height: 48px; font-size: 1.2rem; }
}

/* Navbar logo smaller on mobile */
@media (max-width: 991px) {
  .site-header .logo-wrap:not(.mobile-logo-wrap) .site-logo-img { height: 46px; }
  .site-header .logo-wrap:not(.mobile-logo-wrap) { padding: 5px 10px 5px 8px; }
  .site-header .logo-wrap:not(.mobile-logo-wrap) .logo-text { font-size: 0.95rem; }
}

/* Offcanvas header fix */
.offcanvas-header { border-bottom: 1px solid rgba(255,255,255,0.08); padding: 20px; }
.offcanvas-body { padding: 20px; }

/* Scroll to top smooth */
html { scroll-padding-top: 80px; }

/* Print styles */
@media print {
  .site-header, .floating-btns, .final-cta, .site-footer { display: none; }
  body { color: #000; }
}

/* Focus styles for accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

/* Skip to content */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--grad-accent);
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  z-index: 10000;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

/* Lazy image placeholder */
img[data-src] { background: var(--gray-100); min-height: 100px; }

/* Tour meta overflow fix */
.tour-meta { flex-wrap: wrap; gap: 8px; }
.tour-meta span { font-size: 0.75rem; }

/* Fleet page grid responsive */
@media (max-width: 575px) {
  .fleet-page-grid { grid-template-columns: 1fr; }
}

/* Inquiry form dark variant (for dark bg sections) */
.inquiry-form-wrap.dark {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}
.inquiry-form-wrap.dark h3,
.inquiry-form-wrap.dark .form-label { color: white; }
.inquiry-form-wrap.dark p { color: rgba(255,255,255,0.7); }
.inquiry-form-wrap.dark .form-control,
.inquiry-form-wrap.dark .form-select {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: white;
}
.inquiry-form-wrap.dark .form-control::placeholder { color: rgba(255,255,255,0.4); }

/* Gallery hidden state */
.gallery-item.hidden { display: none; }

/* Lightbox content center */
.lightbox { flex-direction: column; gap: 0; }
#lightboxContent { padding: 40px; }

/* ============================================================
   TOUR CATEGORY PAGES
   ============================================================ */

/* Sticky quick-nav inside hero */
.tour-cat-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.tour-cat-nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.tour-cat-nav a:hover {
  background: rgba(255,255,255,0.2);
  color: white;
  transform: translateY(-1px);
}

/* Section header for each tour */
.tour-section-header { margin-bottom: 0; }
.tour-section-header .section-subtitle { max-width: 680px; }

/* ---- Tour card: image top, content bottom ---- */
.tour-card-block {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.tour-card-block:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

/* Image panel — full width, fixed height */
.tcb-image {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: linear-gradient(160deg, #1a1040 0%, #2d1b69 50%, #111827 100%);
}
.tcb-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.tour-card-block:hover .tcb-image img { transform: scale(1.04); }
.tcb-image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  opacity: 0.2;
}
.tcb-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.15) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 26px;
  z-index: 2;
}
.tcb-image-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.28);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 100px;
  margin-bottom: 8px;
  width: fit-content;
}
.tcb-image-title {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: white;
  line-height: 1.15;
  letter-spacing: -0.025em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
  margin-bottom: 4px;
}
.tcb-image-sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.45;
  max-width: 640px;
}

/* Accent bar under image */
.tcb-accent-bar {
  height: 3px;
  width: 100%;
}

/* Content area */
.tcb-content { display: flex; flex-direction: column; }
.tcb-body { padding: 24px 28px 16px; }

.tcb-desc {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.78;
  margin-bottom: 20px;
  padding-left: 14px;
  border-left: 3px solid;
}

.tcb-section-label {
  font-size: 0.63rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--gray-400);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tcb-section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}

.tcb-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 20px;
}
.tcb-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  padding: 5px 13px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--navy);
  white-space: nowrap;
}
.tcb-meta-pill i { font-size: 0.7rem; }
.tcb-meta-pill span {
  color: var(--gray-400);
  font-size: 0.63rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-right: 2px;
}

.tcb-highlights {
  display: grid;
  grid-template-columns: repeat(var(--hl-cols, 4), 1fr);
  gap: 8px;
}
/* Last item spans remaining columns if row isn't full */
.tcb-hl-item:last-child {
  grid-column: auto / -1;
}
.tcb-hl-item {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  padding: 9px 12px;
  transition: border-color 0.2s ease, background 0.2s ease;
  min-width: 0;
}
.tcb-hl-item:hover { border-color: var(--gray-300); background: var(--white); }
.tcb-hl-item .hl-emoji { font-size: 1rem; min-width: 20px; line-height: 1; }
.tcb-hl-item .hl-text strong { display: block; font-size: 0.78rem; font-weight: 600; color: var(--navy); line-height: 1.25; }
.tcb-hl-item .hl-text small { font-size: 0.68rem; color: var(--gray-400); line-height: 1.3; }

.tcb-footer {
  display: flex;
  gap: 10px;
  padding: 16px 28px;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  margin-top: 16px;
}
.tcb-footer .btn-wa,
.tcb-footer .btn-primary-grad {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.875rem;
}

/* Accent color themes */
.tcb-accent-orange .tcb-accent-bar { background: linear-gradient(90deg,#f97316,#f59e0b); }
.tcb-accent-orange .tcb-desc { border-color: #f97316; }
.tcb-accent-orange .tcb-meta-pill i { color: #f97316; }

.tcb-accent-purple .tcb-accent-bar { background: linear-gradient(90deg,#7c3aed,#d946ef); }
.tcb-accent-purple .tcb-desc { border-color: #7c3aed; }
.tcb-accent-purple .tcb-meta-pill i { color: #7c3aed; }

.tcb-accent-blue .tcb-accent-bar { background: linear-gradient(90deg,#2563eb,#00d4ff); }
.tcb-accent-blue .tcb-desc { border-color: #2563eb; }
.tcb-accent-blue .tcb-meta-pill i { color: #2563eb; }

.tcb-accent-green .tcb-accent-bar { background: linear-gradient(90deg,#059669,#34d399); }
.tcb-accent-green .tcb-desc { border-color: #059669; }
.tcb-accent-green .tcb-meta-pill i { color: #059669; }

.tcb-accent-gold .tcb-accent-bar { background: linear-gradient(90deg,#d97706,#fbbf24); }
.tcb-accent-gold .tcb-desc { border-color: #d97706; }
.tcb-accent-gold .tcb-meta-pill i { color: #d97706; }

.tcb-accent-rose .tcb-accent-bar { background: linear-gradient(90deg,#e11d48,#fb7185); }
.tcb-accent-rose .tcb-desc { border-color: #e11d48; }
.tcb-accent-rose .tcb-meta-pill i { color: #e11d48; }

/* Responsive */
@media (max-width: 767px) {
  .tcb-image { height: 200px; }
  .tcb-image-title { font-size: 1.3rem; }
  .tcb-body { padding: 18px 18px 12px; }
  .tcb-footer { padding: 14px 18px; flex-direction: column; }
  .tcb-highlights { grid-template-columns: repeat(2, 1fr) !important; }
}
.tour-meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 14px 16px;
}
.tour-meta-item i {
  width: 34px;
  height: 34px;
  min-width: 34px;
  background: rgba(37,99,235,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 0.85rem;
}
.tour-meta-item div { display: flex; flex-direction: column; }
.tour-meta-item div span {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--gray-400);
  font-weight: 600;
}
.tour-meta-item div { font-size: 0.875rem; font-weight: 600; color: var(--navy); }

/* Itinerary inside tour section */
.tour-section-itinerary { margin-top: 8px; }
.tour-section-itinerary h4 {
  font-family: 'Urbanist', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--navy);
}
.ts-day {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}
.ts-day:last-child { border-bottom: none; }
.ts-day-num {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--blue);
  background: rgba(37,99,235,0.08);
  border-radius: 6px;
  padding: 3px 8px;
  white-space: nowrap;
  margin-top: 2px;
  min-width: 48px;
  text-align: center;
}
.ts-day strong { color: var(--navy); }

/* Sidebar */
.tour-section-sidebar {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: sticky;
  top: 90px;
}
.tss-destinations {
  padding: 20px 24px;
}
.tss-destinations h4 {
  font-family: 'Urbanist', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--gray-400);
  margin-bottom: 12px;
}
.tss-dest-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
}
.tss-dest-item:last-child { border-bottom: none; }
.tss-dest-item > span { font-size: 1.2rem; min-width: 26px; }
.tss-dest-item div { display: flex; flex-direction: column; }
.tss-dest-item strong { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.tss-dest-item small { font-size: 0.75rem; color: var(--gray-400); margin-top: 1px; }

/* CTA inside sidebar */
.tss-cta { padding: 16px 20px; border-top: 1px solid var(--gray-100); }
.tss-cta .btn-wa, .tss-cta .btn-primary-grad {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
}
.tss-cta .mt-2 { margin-top: 10px; }

/* Divider between tour sections */
.tour-section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

/* Devi darshan cards (day trip grid) */
.devi-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  height: 100%;
  transition: var(--transition);
}
.devi-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 30px rgba(37,99,235,0.1);
  transform: translateY(-4px);
}
.devi-card-top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 14px;
}
.devi-icon { font-size: 2rem; min-width: 40px; }
.devi-title {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.devi-meta { font-size: 0.78rem; color: var(--gray-400); }
.devi-meta i { color: var(--blue); margin-right: 2px; }
.devi-desc { font-size: 0.875rem; color: var(--gray-600); line-height: 1.65; margin-bottom: 16px; }
.devi-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.devi-tags span {
  background: rgba(37,99,235,0.07);
  color: var(--blue);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
}
.devi-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 991px) {
  .tour-section-sidebar { position: static; }
  .tss-inc-exc { grid-template-columns: 1fr; }
  .tss-inc { border-right: none; border-bottom: 1px solid var(--gray-100); }
}
@media (max-width: 767px) {
  .tour-meta-grid { grid-template-columns: 1fr; }
  .tour-cat-nav a { font-size: 0.75rem; padding: 6px 12px; }
  .tcb-body { padding: 20px; }
  .tcb-footer { padding: 16px 20px; }
  .tcb-highlights { grid-template-columns: 1fr 1fr; }
  .tcb-footer .btn-wa,
  .tcb-footer .btn-primary-grad { flex: 1 1 100%; }
}
