/* ============================================================
   JOMSHUTTLE — MAIN STYLESHEET
   Light/Dark mode, CSS variables, responsive, animations
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Sora:wght@300;400;600;700&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  /* Brand */
  --brand-blue: #1a73e8;
  --brand-orange: #f5820d;
  --brand-gradient: linear-gradient(135deg, #1a73e8 0%, #8b3cf7 50%, #f5820d 100%);
  --brand-gradient-soft: linear-gradient(135deg, #1a73e8 0%, #f5820d 100%);
  --whatsapp: #25d366;
  --whatsapp-dark: #128c7e;

  /* Light Mode */
  --bg-primary: #ffffff;
  --bg-secondary: #f0f4ff;
  --bg-card: #ffffff;
  --bg-glass: rgba(255,255,255,0.85);
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.14);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.18);
  --nav-bg: rgba(255,255,255,0.95);
  --hero-overlay: rgba(15,23,42,0.55);
  --input-bg: #f8fafc;
  --tag-bg: #eff6ff;
  --tag-color: #1a73e8;
  --price-bg: #fff7ed;
  --price-color: #c2410c;

  /* Typography */
  --font-display: 'Sora', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Spacing */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 999px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: all 0.25s var(--ease);
}

[data-theme="dark"] {
  --bg-primary: #0a0f1e;
  --bg-secondary: #111827;
  --bg-card: #161e30;
  --bg-glass: rgba(22,30,48,0.92);
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border: #1e2d45;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.5);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.6);
  --nav-bg: rgba(10,15,30,0.95);
  --hero-overlay: rgba(5,10,20,0.65);
  --input-bg: #0d1525;
  --tag-bg: #1e2d45;
  --tag-color: #60a5fa;
  --price-bg: #1c1200;
  --price-color: #fb923c;
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--brand-blue); border-radius: 99px; }

/* ── Typography ────────────────────────────────────────────── */
h1,h2,h3,h4,h5 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }

/* ── Layout Utilities ──────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: 0.5rem; } .gap-2 { gap: 1rem; } .gap-3 { gap: 1.5rem; }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; }

/* ── Section Header ────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-label {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--tag-bg); color: var(--tag-color);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.35rem 0.9rem; border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}
.section-title { color: var(--text-primary); margin-bottom: 0.75rem; }
.section-subtitle { color: var(--text-secondary); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem; border-radius: var(--radius-full);
  font-family: var(--font-body); font-weight: 700; font-size: 0.9rem;
  transition: var(--transition); white-space: nowrap;
  position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0); transition: background 0.2s;
}
.btn:hover::after { background: rgba(255,255,255,0.12); }
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--brand-gradient-soft);
  color: #fff; box-shadow: 0 4px 15px rgba(26,115,232,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(26,115,232,0.45); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff; box-shadow: 0 4px 15px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover { background: var(--whatsapp-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37,211,102,0.45); }

.btn-outline {
  border: 2px solid var(--border); color: var(--text-primary);
  background: transparent;
}
.btn-outline:hover { border-color: var(--brand-blue); color: var(--brand-blue); background: var(--tag-bg); }

.btn-ghost { color: var(--brand-blue); background: var(--tag-bg); }
.btn-ghost:hover { background: var(--brand-blue); color: #fff; }

.btn-sm { padding: 0.5rem 1rem; font-size: 0.82rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-xl { padding: 1.1rem 2.4rem; font-size: 1.05rem; }

/* ── Card ──────────────────────────────────────────────────── */
.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  overflow: hidden; transition: var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }

/* ── Badge ─────────────────────────────────────────────────── */
.badge {
  display: inline-block; padding: 0.2rem 0.65rem; border-radius: var(--radius-full);
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
}
.badge-popular { background: #ff4757; color: #fff; }
.badge-new { background: #2ed573; color: #0a1a0a; }
.badge-private { background: var(--brand-gradient-soft); color: #fff; }

/* ── Navbar ────────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; padding: 0 1.25rem; max-width: 1200px; margin: 0 auto;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.6rem; text-decoration: none;
}
.nav-logo img { height: 44px; width: auto; transition: var(--transition); }
.nav-logo:hover img { transform: scale(1.05); }
.nav-logo-text { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; }
.logo-jom { color: var(--brand-blue); }
.logo-shuttle { color: var(--brand-orange); }
.logo-com { color: var(--text-muted); font-size: 0.85rem; }

.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
  padding: 0.5rem 0.85rem; border-radius: var(--radius-full);
  font-weight: 600; font-size: 0.88rem; color: var(--text-secondary);
  transition: var(--transition); position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--brand-blue); background: var(--tag-bg); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex; align-items: center; gap: 0.3rem;
  padding: 0.5rem 0.85rem; border-radius: var(--radius-full);
  font-weight: 600; font-size: 0.88rem; color: var(--text-secondary);
  transition: var(--transition); cursor: pointer;
}
.nav-dropdown-toggle:hover { color: var(--brand-blue); background: var(--tag-bg); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 0.5rem); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); box-shadow: var(--shadow-xl);
  padding: 0.5rem; min-width: 240px;
  opacity: 0; pointer-events: none; transition: var(--transition);
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.25rem;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-menu:hover {
  opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0);
}
.dropdown-item {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 0.75rem; border-radius: var(--radius-sm);
  font-size: 0.85rem; font-weight: 500; color: var(--text-secondary);
  transition: var(--transition);
}
.dropdown-item:hover { background: var(--tag-bg); color: var(--brand-blue); }
.dropdown-item .emoji { font-size: 1.1rem; }

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

/* Dark mode toggle */
/* Dark mode toggle */
.theme-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  font-size: 0.85rem;   /* smaller icon size */
  transition: var(--transition);
  cursor: pointer;
}

.theme-toggle:hover {
  background: var(--tag-bg);
  border-color: var(--brand-blue);
  transform: rotate(20deg);
}


/* Mobile menu */
.nav-hamburger {
  display: none; width: 40px; height: 40px;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; border-radius: var(--radius-sm);
  background: var(--bg-secondary); border: 1px solid var(--border);
}
.nav-hamburger span {
  display: block; width: 20px; height: 2px;
  background: var(--text-primary); border-radius: 2px;
  transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.nav-mobile {
  display: none; position: fixed; top: 70px; left: 0; right: 0;
  background: var(--nav-bg); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.25rem 1.5rem; z-index: 999;
  max-height: calc(100vh - 70px); overflow-y: auto;
}
.nav-mobile.open { display: block; }
.mobile-section-title {
  font-size: 0.72rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text-muted); margin: 1rem 0 0.5rem;
}
.mobile-link {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.7rem 0.5rem; border-radius: var(--radius-sm);
  font-weight: 600; color: var(--text-secondary); transition: var(--transition);
}
.mobile-link:hover { color: var(--brand-blue); background: var(--tag-bg); }
.mobile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.25rem; }

/* ── Hero ──────────────────────────────────────────────────── */
#hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center; overflow: hidden;
  background: var(--bg-primary);
}
.hero-bg {
  position: absolute; inset: 0;
  background: var(--bg-primary);
  overflow: hidden;
}
.hero-mesh {
  position: absolute; inset: 0; opacity: 0.5;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(26,115,232,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(245,130,13,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(139,60,247,0.10) 0%, transparent 55%);
}
.hero-grid-pattern {
  position: absolute; inset: 0; opacity: 0.03;
  background-image:
    linear-gradient(var(--text-primary) 1px, transparent 1px),
    linear-gradient(90deg, var(--text-primary) 1px, transparent 1px);
  background-size: 50px 50px;
}
.hero-van-bg {
  position: absolute; right: -5%; bottom: 0;
  width: 55%; max-width: 700px;
  opacity: 0.06; pointer-events: none;
  filter: blur(1px);
}
[data-theme="dark"] .hero-van-bg { opacity: 0.08; }

.hero-content {
  position: relative; z-index: 2;
  padding: 8rem 0 5rem;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--brand-gradient);
  color: #fff; font-size: 0.78rem; font-weight: 700;
  padding: 0.4rem 1rem; border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  animation: fadeInUp 0.6s ease both;
}
.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800; line-height: 1.1; margin-bottom: 1.25rem;
  animation: fadeInUp 0.6s 0.1s ease both;
}
.hero-title .highlight {
  background: var(--brand-gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem); color: var(--text-secondary);
  max-width: 520px; margin-bottom: 2rem;
  animation: fadeInUp 0.6s 0.2s ease both;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2.5rem;
  animation: fadeInUp 0.6s 0.3s ease both;
}
.hero-stats {
  display: flex; gap: 2rem; flex-wrap: wrap;
  animation: fadeInUp 0.6s 0.4s ease both;
}
.hero-stat { display: flex; flex-direction: column; }
.stat-value {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.6rem; color: var(--text-primary); line-height: 1;
}
.stat-value span { background: var(--brand-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; margin-top: 0.2rem; }

/* Hero van image area */
.hero-visual {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  animation: fadeInRight 0.8s 0.3s ease both;
}
.hero-van-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px); border: 1px solid var(--border);
  border-radius: var(--radius-xl); box-shadow: var(--shadow-xl);
  overflow: hidden; position: relative;
}
.hero-van-card img { width: 100%; height: 340px; object-fit: cover; }
.hero-van-badge {
  position: absolute; bottom: 1rem; left: 1rem; right: 1rem;
  background: var(--bg-glass); backdrop-filter: blur(10px);
  border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 0.75rem 1rem; display: flex; align-items: center; gap: 0.75rem;
}
.badge-icon { font-size: 1.5rem; }
.badge-text strong { display: block; font-size: 0.9rem; color: var(--text-primary); }
.badge-text span { font-size: 0.78rem; color: var(--text-muted); }

/* Floating indicators */
.hero-float {
  position: absolute; background: var(--bg-glass);
  backdrop-filter: blur(12px); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 0.6rem 0.9rem;
  display: flex; align-items: center; gap: 0.5rem;
  box-shadow: var(--shadow-md); white-space: nowrap;
}
.float-1 { top: 10%; left: -15%; animation: floatY 3s ease-in-out infinite; }
.float-2 { bottom: 20%; right: -10%; animation: floatY 3s 1.5s ease-in-out infinite; }
.float-icon { font-size: 1.1rem; }
.float-text { font-size: 0.78rem; font-weight: 600; color: var(--text-primary); }

.hero-van-badge,
.hero-float {
  display: none !important;
}
/* ── Service Tabs ──────────────────────────────────────────── */
#services { background: var(--bg-secondary); }
.service-tabs {
  display: flex; justify-content: center; gap: 0.5rem;
  margin-bottom: 2.5rem; flex-wrap: wrap;
}
.service-tab {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem; border-radius: var(--radius-full);
  font-weight: 700; font-size: 0.9rem; color: var(--text-secondary);
  background: var(--bg-card); border: 2px solid var(--border);
  transition: var(--transition); cursor: pointer;
}
.service-tab.active {
  background: var(--brand-gradient-soft); color: #fff;
  border-color: transparent; box-shadow: 0 4px 15px rgba(26,115,232,0.3);
}
.service-tab:hover:not(.active) { border-color: var(--brand-blue); color: var(--brand-blue); }
.service-content { display: none; animation: fadeIn 0.3s ease; }
.service-content.active { display: block; }

/* ── Destination Cards ─────────────────────────────────────── */
.dest-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); transition: var(--transition);
  cursor: pointer;
}
.dest-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.dest-card-header {
  padding: 1.25rem; display: flex; align-items: center;
  justify-content: space-between; border-bottom: 1px solid var(--border);
}
.dest-card-name { display: flex; align-items: center; gap: 0.6rem; }
.dest-emoji { font-size: 1.8rem; }
.dest-name { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }
.dest-count { font-size: 0.78rem; color: var(--text-muted); }
.dest-arrow {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--tag-bg); display: flex; align-items: center;
  justify-content: center; color: var(--brand-blue); font-size: 1rem;
  transition: var(--transition);
}
.dest-card:hover .dest-arrow { background: var(--brand-blue); color: #fff; transform: translateX(3px); }
.dest-card-routes { padding: 1rem 1.25rem; }
.route-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.6rem 0; border-bottom: 1px solid var(--border); font-size: 0.85rem;
}
.route-item:last-child { border-bottom: none; }
.route-label { color: var(--text-secondary); flex: 1; }
.route-prices { display: flex; gap: 0.5rem; }
.route-price {
  background: var(--price-bg); color: var(--price-color);
  font-weight: 700; font-size: 0.8rem;
  padding: 0.2rem 0.55rem; border-radius: var(--radius-sm);
}

/* ── Tour Package Cards ────────────────────────────────────── */
.tour-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); transition: var(--transition);
  cursor: pointer; display: flex; flex-direction: column;
}
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.tour-card-img {
  position: relative; height: 220px; overflow: hidden;
}
.tour-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.tour-card:hover .tour-card-img img { transform: scale(1.08); }
.tour-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
}
.tour-card-badges {
  position: absolute; top: 0.75rem; left: 0.75rem;
  display: flex; gap: 0.4rem;
}
.tour-card-emoji {
  position: absolute; bottom: 0.75rem; left: 0.75rem;
  font-size: 2.5rem; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}
.tour-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.tour-card-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; margin-bottom: 0.3rem; }
.tour-card-subtitle { color: var(--text-secondary); font-size: 0.87rem; margin-bottom: 1rem; }
.tour-card-meta { display: flex; gap: 1rem; margin-bottom: 1.25rem; }
.tour-meta-item { display: flex; align-items: center; gap: 0.35rem; font-size: 0.82rem; color: var(--text-secondary); }
.tour-card-price {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--border);
}
.price-value { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--brand-orange); }
.price-note { font-size: 0.75rem; color: var(--text-muted); }

/* ── Booking Modal / Detail ────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(4px);
  display: flex; align-items: flex-end; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
@media(min-width:768px) {
  .modal-overlay { align-items: center; }
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--bg-card); border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  max-height: 92vh; width: 100%; max-width: 700px;
  overflow-y: auto; transform: translateY(30px);
  transition: transform 0.35s var(--ease);
  position: relative;
}
@media(min-width:768px) {
  .modal-box { border-radius: var(--radius-xl); transform: translateY(30px) scale(0.97); }
}
.modal-overlay.open .modal-box { transform: translateY(0) scale(1); }
.modal-close {
  position: sticky; top: 0; left: 0; right: 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem; background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}
.modal-close-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-secondary); display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem; color: var(--text-secondary);
  transition: var(--transition); cursor: pointer;
}
.modal-close-btn:hover { background: #ff4757; color: #fff; }
.modal-body { padding: 1.5rem 1.25rem; }

/* ── Booking Form ──────────────────────────────────────────── */
#booking { background: var(--bg-secondary); }
.booking-form-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); box-shadow: var(--shadow-lg);
  overflow: hidden; max-width: 720px; margin: 0 auto;
}
.booking-form-header {
  padding: 1.5rem; background: var(--brand-gradient);
  color: #fff; text-align: center;
}
.booking-form-header h3 { font-size: 1.3rem; margin-bottom: 0.25rem; }
.booking-form-header p { font-size: 0.9rem; opacity: 0.9; }
.booking-form-body { padding: 1.75rem; }

.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 0.4rem; color: var(--text-primary); }
.form-label span { color: #ef4444; }
.form-control {
  width: 100%; padding: 0.75rem 1rem;
  background: var(--input-bg); border: 1.5px solid var(--border);
  border-radius: var(--radius-md); font-family: var(--font-body);
  font-size: 0.9rem; color: var(--text-primary);
  transition: var(--transition); outline: none;
}
.form-control:focus { border-color: var(--brand-blue); box-shadow: 0 0 0 3px rgba(26,115,232,0.12); background: var(--bg-card); }
.form-control::placeholder { color: var(--text-muted); }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media(max-width:520px) { .form-row { grid-template-columns: 1fr; } }

/* Honeypot — HIDDEN from real users, visible to bots */
.honeypot-field {
  position: absolute; left: -9999px; top: -9999px;
  opacity: 0; pointer-events: none; tabindex: -1;
}

.form-divider { border: none; border-top: 1px solid var(--border); margin: 1.5rem 0; }
.form-submit { width: 100%; padding: 1rem; font-size: 1rem; border-radius: var(--radius-md); }

.form-success {
  display: none; text-align: center; padding: 2rem;
  animation: fadeInUp 0.4s ease;
}
.form-success.show { display: block; }
.success-icon { font-size: 3rem; margin-bottom: 0.75rem; }
.success-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.5rem; }
.success-text { color: var(--text-secondary); font-size: 0.9rem; }

/* ── Why Us ────────────────────────────────────────────────── */
.why-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--brand-blue); }
.why-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.why-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.why-desc { font-size: 0.87rem; color: var(--text-secondary); line-height: 1.6; }

/* ── Testimonials ──────────────────────────────────────────── */
#testimonials { background: var(--bg-secondary); }
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.t-stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 0.75rem; }
.t-text { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.1rem; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 0.75rem; }
.t-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--brand-gradient); display: flex; align-items: center;
  justify-content: center; color: #fff; font-weight: 800; font-size: 0.85rem; flex-shrink: 0;
}
.t-name { font-weight: 700; font-size: 0.9rem; }
.t-location { font-size: 0.78rem; color: var(--text-muted); }

/* ── Van Info Banner ───────────────────────────────────────── */
.van-info-banner {
  background: var(--bg-secondary); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.25rem 1.5rem;
  display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: flex-start;
  margin-bottom: 2rem;
}
.van-info-item { flex: 1; min-width: 200px; }
.van-info-label {
  font-weight: 800; font-size: 0.85rem; color: var(--brand-blue);
  margin-bottom: 0.3rem; display: flex; align-items: center; gap: 0.4rem;
}
.van-info-desc { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; }

/* ── Footer ────────────────────────────────────────────────── */
#footer {
  background: var(--bg-secondary); border-top: 1px solid var(--border);
}
.footer-top {
  padding: 3.5rem 0 2.5rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
}
@media(max-width:900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media(max-width:560px) { .footer-top { grid-template-columns: 1fr; } }

.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-tagline { color: var(--text-secondary); font-size: 0.88rem; margin-bottom: 1rem; line-height: 1.6; }
.footer-contact { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-contact a {
  display: flex; align-items: center; gap: 0.5rem;
  color: var(--text-secondary); font-size: 0.87rem; transition: var(--transition);
}
.footer-contact a:hover { color: var(--brand-blue); }
.footer-col-title {
  font-family: var(--font-display); font-size: 0.85rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-primary);
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-link { color: var(--text-secondary); font-size: 0.87rem; transition: var(--transition); }
.footer-link:hover { color: var(--brand-blue); }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 1.25rem 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.75rem;
}
.footer-copy { font-size: 0.82rem; color: var(--text-muted); }
.footer-social { display: flex; gap: 0.5rem; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; color: var(--text-secondary); transition: var(--transition);
}
.social-btn:hover { background: var(--brand-blue); color: #fff; border-color: var(--brand-blue); }

/* ── WhatsApp Floating Btn ─────────────────────────────────── */
.wa-fab {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 900;
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--whatsapp); color: #fff;
  padding: 0.75rem 1.25rem; border-radius: var(--radius-full);
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
  font-weight: 700; font-size: 0.9rem;
  transition: var(--transition); animation: pulse-wa 2.5s infinite;
}
.wa-fab:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 10px 30px rgba(37,211,102,0.55); animation: none; }
.wa-fab svg { width: 22px; height: 22px; fill: #fff; }

/* ── Itinerary Timeline ────────────────────────────────────── */
.itinerary-day {
  margin-bottom: 1.5rem; position: relative;
  padding-left: 1.5rem; border-left: 2px solid var(--border);
}
.itinerary-day::before {
  content: ''; position: absolute; left: -6px; top: 0.35rem;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--brand-blue); border: 2px solid var(--bg-card);
}
.itinerary-day-title {
  font-weight: 800; font-size: 0.92rem; color: var(--brand-blue);
  margin-bottom: 0.6rem; font-family: var(--font-display);
}
.itinerary-items { list-style: none; }
.itinerary-item {
  font-size: 0.87rem; color: var(--text-secondary);
  padding: 0.2rem 0; line-height: 1.6;
}

/* ── Animations ────────────────────────────────────────────── */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes pulse-wa {
  0%,100% { box-shadow: 0 6px 20px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 6px 30px rgba(37,211,102,0.75); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.animate-on-scroll {
  opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ────────────────────────────────────────────── */
@media(max-width:1024px) {
  .nav-links, .nav-dropdown { display: none; }
  .nav-hamburger { display: flex; }
}
@media(max-width:768px) {
  .section { padding: 3.5rem 0; }
  .hero-content { padding: 7rem 0 3rem; }
  .hero-visual { display: none; }
  .hero-stats { gap: 1.25rem; }
  .footer-top { grid-template-columns: 1fr; }
  .wa-fab span { display: none; }
  .wa-fab { padding: 0.85rem; }
}
@media(max-width:480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .service-tab { padding: 0.6rem 1rem; font-size: 0.82rem; }
}

/* ── Hero 2-col layout ─────────────────────────────────────── */
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 3rem;
}
@media(max-width:768px) { .hero-grid { grid-template-columns: 1fr; } }

/* ── Smooth page top on hash navigation ────────────────────── */
.page-top { padding-top: 80px; }

/* ── Toast notification ────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  z-index: 3000;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.2rem;
  box-shadow: var(--shadow-xl);
  display: none; /* 🔑 hide by default */
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  transform: translateX(110%);
  transition: transform 0.3s var(--ease);
  max-width: 320px;
}

.toast.show {
  display: flex; /* 🔑 only show when active */
  transform: translateX(0);
}

.toast-icon {
  font-size: 1.2rem;
}

.toast-success {
  border-left: 4px solid #22c55e;
}

.toast-error {
  border-left: 4px solid #ef4444;
}

.toast:empty {
  display: none;
}

/* ── Loading spinner ───────────────────────────────────────── */
.spinner {
  width: 20px; height: 20px; border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff; border-radius: 50%; animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
