﻿:root {
  --indigo:       #3730A3;
  --indigo-deep:  #1E1B4B;
  --indigo-mid:   #312E81;
  --indigo-light: #4F46E5;
  --blue:         #2563EB;
  --blue-bright:  #3B82F6;
  --cyan:         #06B6D4;
  --white:        #FFFFFF;
  --off-white:    #F8FAFF;
  --gray-50:      #F0F4FF;
  --gray-100:     #E0E7FF;
  --gray-300:     #A5B4FC;
  --gray-500:     #6B7280;
  --gray-700:     #374151;
  --dark:         #0F0E1A;
  --dark2:        #17162B;
  --surface:      #1E1D35;
  --surface2:     #252440;
  --border:       rgba(79,70,229,0.3);
  --border-light: rgba(165,180,252,0.15);
  --green:        #10B981;
  --amber:        #F59E0B;
  --accent-gold: #c9963a;
  --navy: #0D1B3E;
  --navy2: #132248;
  --navy3: #1A2E5A;
  --yellow: #FFB800;
  --red: #E8001D;
      --bg-card: #FFFFFF;

  --gold: #F59E0B;
    --gold-dark: #D97706;

  --radius:       10px;
  --radius-lg:    16px;
  --radius-xl:    24px;
  --radius-2xl:   32px;

  --font-head:  'Outfit', sans-serif;
  --font-body:  'Plus Jakarta Sans', sans-serif;

  --shadow-blue:  0 8px 40px rgba(37,99,235,0.3);
  --shadow-card:  0 4px 24px rgba(0,0,0,0.15);
  --shadow-lg:    0 12px 48px rgba(0,0,0,0.2);

  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--gray-700);
  line-height: 1.65;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }
input, select, textarea { font-family: var(--font-body); }

/* ── Utilities ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.text-indigo { color: var(--indigo-light); }
.text-cyan { color: var(--cyan); }
.popframe {
    width: 100%;
    height: 100vh;
    padding-bottom: 6%;
}

/* ═══════════════════════════════════
   NAVBAR
═══════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(55,48,163,0.12); }
.nav-top-row {
  border-bottom: 1px solid var(--gray-100);
}
.navbar.scrolled .nav-top-row { border-bottom-color: transparent; }
.nav-inner {
  display: flex;
  align-items: center;
  height: 52px;
  gap: 0;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo  img{width: 90px;}
.nav-logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--indigo-light), var(--blue));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.nav-brand-name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--indigo-deep);
  letter-spacing: -0.02em;
  line-height: 1;
}
.nav-brand-name span { color: var(--indigo-light); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-500);
  padding: 7px 13px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--indigo-light);
  background: var(--gray-50);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 16px;
}
.btn-nav-call {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--indigo-light);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 40px;
  border: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-nav-call:hover {
  background: var(--indigo);
  transform: translateY(-1px);
  box-shadow: var(--shadow-blue);
}
/* Mobile horizontal scroll nav bar */
.mobile-nav-bar {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 2px solid var(--gray-100);
}
.mobile-nav-scroll {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  gap: 0;
  padding: 0 8px;
}
.mobile-nav-scroll::-webkit-scrollbar { display: none; }
.mob-nav-link {
  flex-shrink: 0;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gray-500);
  padding: 7px 12px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}
.mob-nav-link.active {
  color: var(--indigo-light);
  border-bottom-color: var(--indigo-light);
}

/* Section sticky nav */
.section-sticky-nav {
  position: sticky;
  top: 62px; /* below navbar */
  z-index: 998;
  background: var(--indigo-deep);
  border-bottom: 1px solid rgba(165,180,252,0.15);
  display: none; /* shown via JS when in relevant sections */
  box-shadow: 0 3px 16px rgba(30,27,75,0.18);
}
.section-sticky-nav.visible { display: block; }
.ssn-inner {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  gap: 0;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.ssn-inner::-webkit-scrollbar { display: none; }
.ssn-tab {
  flex-shrink: 0;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(165,180,252,0.7);
  padding: 11px 18px;
  border-bottom: 2.5px solid transparent;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}
.ssn-tab:hover,
.ssn-tab.active {
  color: var(--white);
  border-bottom-color: var(--cyan);
}

/* ═══════════════════════════════════
   HERO 2 — Interactive Service Selector
═══════════════════════════════════ */
.hero2 {
  background: linear-gradient(160deg, var(--indigo-deep) 0%, var(--indigo-mid) 55%, #1e3a8a 100%);
  padding-bottom: 0;
  overflow: hidden;
  position: relative;
}
.hero2::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: repeating-linear-gradient(0deg, rgba(255, 255, 255, .025) 0, rgba(255, 255, 255, .025) 1px, transparent 1px, transparent 48px), repeating-linear-gradient(90deg, rgba(255, 255, 255, .025) 0, rgba(255, 255, 255, .025) 1px, transparent 1px, transparent 48px);
}
/* Top text area */
.h2-top {
  padding: 52px 0 32px;
}
.h2-headline-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.h2-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(99,102,241,0.22);
  border: 1px solid rgba(165,180,252,0.3);
  color: var(--gray-300);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 40px;
  width: fit-content;
}
.h2-stars { color: var(--amber); letter-spacing: 1px; }
.hero-badge-dot {
 width: 8px; height: 8px;
 background: #4ADE80; border-radius: 50%;
 animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
 0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.6); }
 50%       { box-shadow: 0 0 0 8px rgba(74,222,128,0); }
}
.h2-headline {
  font-family: var(--font-head);
  font-size: clamp(2rem, 6vw, 3.8rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin: 0;
}
.h2-headline em {
  font-style: normal;
  background: var(--gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.h2-sub {
  color: rgba(224,231,255,0.75);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 560px;
}
.h2-cta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.h2-btn-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cyan);
  color: var(--indigo-deep);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.88rem;
  padding: 13px 24px;
  border-radius: 40px;
  border: none;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 6px 24px rgba(6,182,212,0.35);
}
.h2-btn-call:hover { background: #22D3EE; transform: translateY(-2px); }
.h2-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 13px 24px;
  border-radius: 40px;
  border: none;
  transition: background 0.2s, transform 0.15s;
}
.h2-btn-wa:hover { background: #1EBE59; transform: translateY(-2px); }

/* Stats row */
.h2-stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(165,180,252,0.15);
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  width: fit-content;
}
.h2-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
}
.h2-stat-div {
  width: 1px;
  height: 36px;
  background: rgba(165,180,252,0.2);
}
.h2-stat-num {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
}
.h2-stat-lbl {
  font-size: 0.7rem;
  color: rgba(165,180,252,0.75);
  margin-top: 3px;
  white-space: nowrap;
}

/* Service label */
.h2-services-wrap {
  padding-bottom: 0;
}
.h2-pick-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(165,180,252,0.8);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.h2-pick-label i { color: var(--cyan); margin-right: 4px; }

/* Horizontal scroll track */
.h2-cards-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 0 20px 8px;
  /* allow full-width bleed */
  max-width: 100%;
}
.h2-cards-scroll::-webkit-scrollbar { display: none; }

/* Service card */
.h2-svc-card {
  flex-shrink: 0;
  width: 160px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  scroll-snap-align: start;
  transition: transform 0.22s, box-shadow 0.22s;
  background: var(--indigo-mid);
  border: 1.5px solid rgba(165,180,252,0.12);
  position: relative;
}
.h2-svc-card:hover,
.h2-svc-card:focus {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 36px rgba(0,0,0,0.3);
  outline: none;
  border-color: var(--cyan);
}
.h2-card-img-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
}
.h2-card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.h2-svc-card:hover .h2-card-img-wrap img { transform: scale(1.06); }
.h2-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(30,27,75,0.1) 0%, rgba(30,27,75,0.6) 100%);
}
.h2-card-body {
  padding: 10px 12px 12px;
  background: rgba(30,27,75,0.85);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%
}
.h2-card-icon { font-size: 1.3rem; margin-bottom: 4px; }
.h2-card-name {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}
.h2-card-tag {
  font-size: 0.68rem;
  color: var(--cyan);
  margin-top: 3px;
  font-weight: 600;
}

/* Scroll dots (mobile pagination hint) */
.h2-scroll-dots {
  display: flex;
  justify-content: center;
  gap: 5px;
  padding: 10px 0 4px;
}
.h2-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(165,180,252,0.25);
  transition: background 0.2s, transform 0.2s;
}
.h2-dot.active {
  background: var(--cyan);
  transform: scale(1.3);
}

/* Quick booking bar */
.h2-quick-bar {
  background: rgba(255,255,255,0.06);
  border-top: 1px solid rgba(165,180,252,0.12);
  padding: 14px 0;
  margin-top: 10px;
}
.h2-qb-inner {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--white);
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
  border: 1.5px solid rgba(79,70,229,0.15);
}
.h2-qb-item {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  padding: 0 18px;
  min-width: 0;
}
.h2-qb-item i {
  color: var(--indigo-light);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.h2-qb-input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.85rem;
  color: var(--gray-700);
  width: 100%;
  padding: 14px 0;
  font-family: var(--font-body);
}
.h2-qb-input::placeholder { color: var(--gray-500); font-size: 0.82rem; }
.h2-qb-div {
  width: 1px;
  height: 28px;
  background: var(--gray-100);
  flex-shrink: 0;
}
.h2-qb-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--indigo-light);
  color: var(--white);
  border: none;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 14px 26px;
  white-space: nowrap;
  border-radius: 0 50px 50px 0;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
  flex-shrink: 0;
}
.h2-qb-btn:hover { background: var(--indigo); }

/* Desktop: wider cards in a grid-like row */
@media (min-width: 769px) {
  .h2-top { padding: 60px 0 36px; }
  .h2-headline-row { flex-direction: row; align-items: flex-start; justify-content: space-between; gap: 40px; }
  .h2-text { flex: 1; max-width: 560px; }
  .h2-stats-row { align-self: flex-start; }
  .h2-cards-scroll {
    padding: 0 20px 16px;
    /* On desktop, allow larger cards */
  }
  .h2-svc-card { width: 190px; }
  
  .h2-scroll-dots { display: none; }
  .h2-quick-bar { padding: 18px 0; }
}
@media (min-width: 1080px) {
  .h2-svc-card { width: calc((1180px - 8*14px) / 9); max-width: 210px; }
  .h2-cards-scroll {
    /* center within container on very large screens */
    justify-content: center;
    padding: 0 0 16px;
    max-width: 1180px;
    margin: 0 auto;
    overflow-x: visible;
  }
}
@media (max-width: 768px) {
  .h2-top { padding: 32px 0 22px; }
  .h2-headline-row { flex-direction: column; gap: 16px; }
  .h2-stats-row {
    width: 100%;
    justify-content: space-around;
    padding: 12px 10px;
  }
  .h2-stat { padding: 0 10px; }
  .h2-stat-num { font-size: 1.2rem; }
  .h2-svc-card { width: 140px;        height: 199px; }
  .h2-card-img-wrap { height: 100px; }
  .h2-qb-inner {
    flex-direction: column;
    border-radius: var(--radius-lg);
    overflow: visible;
    background: transparent;
    box-shadow: none;
    border: none;
    gap: 8px;
  }
  .h2-qb-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 0 16px;
    border: 1.5px solid var(--gray-100);
  }
  .h2-qb-div { display: none; }
  .h2-qb-btn {
    width: 100%;
    justify-content: center;
    border-radius: var(--radius);
    padding: 14px;
  }
  .h2-quick-bar { padding: 14px 0 20px; }
}

/* ═══════════════════════════════════
   WHY CHOOSE US — Flip cards, horizontal scroll
═══════════════════════════════════ */
.mobile-show{display: none;}
.hero-wcu{margin-top: 20px; text-align: left !important;     margin-left: 21px; margin-bottom: 5px !important;}

.wcu-section {
  background: var(--indigo-deep);
  padding: 52px 0 32px;
  overflow: hidden;
}
.wcu-head {
  text-align: center;
  margin-bottom: 24px;
}
.wcu-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(99,102,241,0.22);
  border: 1px solid rgba(165,180,252,0.25);
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 12px;
}
.wcu-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.wcu-title span {
  background: linear-gradient(90deg, var(--cyan), #818CF8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.wcu-subtitle {
  font-size: 0.85rem;
  color: rgba(165,180,252,0.75);
}

/* Scroll track */
.wcu-scroll-wrap { overflow: hidden; }
.wcu-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 8px 20px 20px;
}
.wcu-track::-webkit-scrollbar { display: none; }

/* Flip card */
.wcu-card {
  flex-shrink: 0;
  width: 168px;
  height: 180px;
  scroll-snap-align: start;
  perspective: 800px;
  cursor: pointer;
  outline: none;
}
.wcu-card-front,
.wcu-card-back {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 18px 14px 14px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
}
.wcu-card-front {
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(165,180,252,0.15);
  justify-content: flex-start;
  align-items: flex-start;
  transform: rotateY(0deg);
}
.wcu-card-back {
  background: var(--indigo-light);
  border: 1.5px solid rgba(99,102,241,0.4);
  color: var(--white);
  transform: rotateY(180deg);
  justify-content: flex-start;
  align-items: flex-start;
  overflow: hidden;
}
/* inner wrapper for 3d context */
.wcu-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
}
.wcu-card.flipped .wcu-card-inner { transform: rotateY(180deg); }
/* Hover effect (non-touch) */
@media (hover: hover) {
  .wcu-card:hover .wcu-card-inner { transform: rotateY(180deg); }
}

.wcu-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 12px;
  flex-shrink: 0;
}
.wcu-card-label {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  flex: 1;
}
.wcu-tap {
  font-size: 0.62rem;
  color: rgba(165,180,252,0.6);
  font-weight: 600;
  margin-top: 6px;
  letter-spacing: 0.02em;
}
/* warn card accent */
.wcu-card--warn .wcu-card-front {
  border-color: rgba(251,146,60,0.35);
  background: rgba(251,146,60,0.1);
}
.wcu-back-icon {
  font-size: 1.4rem;
  margin-bottom: 8px;
  opacity: 0.85;
}
.wcu-back-title {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 7px;
  line-height: 1.2;
}
.wcu-card-back p {
  font-size: 0.72rem;
  line-height: 1.6;
  opacity: 0.92;
  margin: 0;
  height: 65px;
  overflow-y: scroll;
  padding-right: 10px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.wcu-card-back p::-webkit-scrollbar { display: none; }

/* Custom always-visible scrollbar */
.wcu-sb-wrap {
  position: relative;
  flex-shrink: 0;
}
.wcu-sb-track {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: rgba(30,27,75,0.55);
  border-radius: 4px;
  z-index: 3;
  pointer-events: none;
}
.wcu-sb-thumb {
  position: absolute;
  left: 0;
  right: 0;
  background: #6f6dd9;
  border-radius: 4px;
  min-height: 16px;
  pointer-events: none;
}

/* Scroll hint */
.wcu-scroll-hint {
  font-size: 0.72rem;
  color: rgba(165,180,252,0.55);
  font-weight: 600;
  text-align: center;
  padding: 4px 0 8px;
  letter-spacing: 0.03em;
}
.wcu-scroll-hint i { margin-right: 5px; }

/* Desktop: wrap into grid */
@media (min-width: 1080px) {
  .wcu-track {
    max-width: 1180px;
    margin: 0 auto;
    padding: 8px 0 20px;
    flex-wrap: wrap;
    overflow-x: visible;
    justify-content: center;
  }
  .wcu-card { width: calc((1180px - 11*14px) / 6 - 1px); }
  .wcu-scroll-hint { display: none; }
}
@media (max-width: 768px) {
  .wcu-section { padding: 36px 0 24px; }
  .wcu-card { width: 152px; height: 170px; }
}

/* keep old .btn-primary and .btn-outline-white for any references elsewhere */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cyan);
  color: var(--indigo-deep);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.88rem;
  padding: 14px 26px;
  border-radius: 40px;
  border: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: #22D3EE; transform: translateY(-2px); }
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 13px 26px;
  border-radius: 40px;
  border: 1.5px solid rgba(255,255,255,0.3);
  transition: background 0.2s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(6,182,212,0.6); }
  50%      { box-shadow: 0 0 0 8px rgba(6,182,212,0); }
}

/* ═══════════════════════════════════
   TRUST STRIP
═══════════════════════════════════ */
.trust-strip {
  background: var(--indigo-deep);
  overflow: hidden;
  padding: 0;
}
.trust-track {
  display: flex;
  gap: 0;
  animation: scrollLeft 24s linear infinite;
  width: max-content;
  padding: 13px 0;
}
@keyframes scrollLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 30px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-family: var(--font-head);
  white-space: nowrap;
}
.trust-item i { color: var(--cyan); font-size: 0.95rem; }
.trust-sep { color: rgba(165,180,252,0.25); padding: 0 4px; }

/* ═══════════════════════════════════
   SECTION COMMONS
═══════════════════════════════════ */
.section { padding: 96px 0; }
.section-light { background: var(--white); }
.section-soft  { background: var(--gray-50); }
.section-dark  { background: var(--indigo-deep); }
.section-mid   { background: var(--off-white); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--indigo-light);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px; height: 2.5px;
  background: var(--indigo-light);
  border-radius: 2px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--indigo-deep);
  margin-bottom: 14px;
}
.section-title span { color: var(--indigo-light); }
.section-title .accent { color: var(--cyan); background: none; -webkit-text-fill-color: var(--cyan); }
.section-desc {
  font-size: 0.97rem;
  color: var(--gray-500);
  max-width: 520px;
  line-height: 1.8;
}
.text-center { text-align: center; }
.text-center .section-label { justify-content: center; }
.text-center .section-label::before { display: none; }
.text-center .section-desc { margin: 0 auto; }

/* ═══════════════════════════════════
   SERVICES 2 — Horizontal card grid
═══════════════════════════════════ */
.svc2-section {
  padding: 64px 0 48px;
  background:#213370;
  overflow: hidden;
}
.svc2-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.svc2-head .section-label { color: var(--cyan); }
.svc2-head .section-title { color: var(--white); margin-bottom: 6px; }
.svc2-head .section-title span { color: var(--cyan); }
.svc2-subtitle { color: rgba(165,180,252,0.75); font-size: 0.85rem; margin-top: 4px; }
.svc2-head-stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-self: flex-end;
}
.svc2-head-stats span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(165,180,252,0.15);
  color: rgba(165,180,252,0.85);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 40px;
  white-space: nowrap;
}
.svc2-head-stats span i { color: var(--cyan); }

/* Track */
.svc2-track-wrap { overflow: hidden; }
.svc2-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 4px 20px 16px;
}
.svc2-track::-webkit-scrollbar { display: none; }

/* Card */
.svc2-card {
  flex-shrink: 0;
  width: 300px;
  background: var(--surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  scroll-snap-align: start;
  border: 1.5px solid rgba(165,180,252,0.1);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
}
.svc2-card:hover,
.svc2-card--active {
  border-color: var(--cyan);
  box-shadow: 0 8px 40px rgba(6,182,212,0.2);
  transform: translateY(-3px);
}

/* Image */
.svc2-card-img-wrap {
  position: relative;
  height: 160px;
  overflow: hidden;
  flex-shrink: 0;
}
.svc2-card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.svc2-card:hover .svc2-card-img-wrap img { transform: scale(1.05); }
.svc2-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(14,13,35,0.75) 100%);
}
.svc2-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: rgba(30,27,75,0.88);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  border: 1px solid rgba(165,180,252,0.2);
}
.svc2-badge--cyan  { background: rgba(6,182,212,0.85); }
.svc2-badge--amber { background: rgba(245,158,11,0.88); }
.svc2-badge--green { background: rgba(16,185,129,0.88); }
.svc2-badge--purple { background: rgba(147,51,234,0.88); }

/* Body */
.svc2-card-body {
  padding: 16px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.svc2-icon-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.svc2-icon-sm {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(79,70,229,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
  font-size: 1rem;
  flex-shrink: 0;
}
.svc2-card-title {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}
.svc2-card-sub {
  font-size: 0.68rem;
  color: rgba(165,180,252,0.65);
  margin-top: 2px;
}

/* Pills */
.svc2-pills {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.svc2-pills span {
  background: rgba(79,70,229,0.18);
  border: 1px solid rgba(79,70,229,0.3);
  color: rgba(165,180,252,0.9);
  font-size: 0.62rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  white-space: nowrap;
}

/* Expandable content */
.svc2-expand-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.3s;
  opacity: 0;
}
.svc2-card.expanded .svc2-expand-content {
  max-height: 260px;
  opacity: 1;
}
.svc2-feat-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}
.svc2-feat-list div {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 0.72rem;
  color: rgba(224,231,255,0.85);
  line-height: 1.5;
}
.svc2-feat-list i {
  color: var(--green);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.svc2-info-row {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.svc2-info-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(6,182,212,0.12);
  border: 1px solid rgba(6,182,212,0.25);
  color: var(--cyan);
  font-size: 0.66rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}

/* CTA row */
.svc2-cta-row {
  display: flex;
  gap: 8px;
  margin-top: auto;
}
.svc2-expand-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(165,180,252,0.2);
  color: rgba(165,180,252,0.85);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.svc2-expand-btn:hover { background: rgba(255,255,255,0.12); color: var(--white); }
/* .svc2-card.expanded .svc2-expand-btn i { transform: rotate(180deg); } */
.svc2-expand-btn i { transition: transform 0.3s; }
.read-pills-data { display: none; }

.svc2-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #2aa71d;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 8px 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.svc2-book-btn:hover { background: #1EBE59; transform: translateY(-1px); }

/* Progress & hint */
.svc2-progress-wrap {
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  height: 3px;
  margin: 0 0 8px;
  overflow: hidden;
}
.svc2-progress-bar {
  height: 100%;
  background: var(--cyan);
  border-radius: 4px;
  width: 20%;
  transition: width 0.2s;
}
.svc2-swipe-hint {
  text-align: center;
  font-size: 0.7rem;
  color: rgba(165,180,252,0.5);
  font-weight: 600;
}
.svc2-swipe-hint i { color: var(--cyan); margin-right: 4px; }

/* Desktop: show more cards visible */
@media (min-width: 900px) {
  .svc2-track { padding: 4px 0 16px; }
  .svc2-swipe-hint { display: none; }
}
@media (max-width: 640px) {
  .svc2-card { width: 272px; }
  .svc2-card-img-wrap { height: 140px; }
}

/* ── OLD SERVICES BOX (legacy, unused) ── */
.svc-box {
  display: none !important;
  background: var(--white);
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 48px rgba(79,70,229,0.10);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  /* Height shows ~1.4 service panels so partial next is always visible */
  height: 80vh;
  max-height: 740px;
  min-height: 500px;
  position: relative;
}

/* ── STICKY TAB BAR INSIDE BOX ── */
.svc-tabbar-wrap {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--white);
  border-bottom: 1.5px solid var(--gray-100);
  flex-shrink: 0;
}

/* Scroll hint */
.svc-scroll-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--indigo-light);
  padding: 5px 16px 6px;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  letter-spacing: 0.02em;
}
.svc-scroll-hint i { font-size: 0.78rem; }

/* Tab scrollable row */
.svc-tabbar {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 6px;
  padding: 12px 14px 10px;
  scroll-behavior: smooth;
}
.svc-tabbar::-webkit-scrollbar { display: none; }

/* Tab pill — icon on top, label below (matches reference) */
.svc-tab {
  display: inline-flex;
  align-items: center;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-100);
  color: var(--gray-500);
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 600;
  padding: 8px 12px 7px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow 0.15s;
  min-width: 62px;
  text-align: center;
  line-height: 1.2;
}
.svc-tab:hover {
  background: var(--gray-100);
  color: var(--indigo-light);
  border-color: rgba(79,70,229,0.25);
}
.svc-tab.active {
  background: var(--indigo-deep);
  color: var(--white);
  border-color: var(--indigo-deep);
  box-shadow: 0 2px 10px rgba(30,27,75,0.22);
}
.svc-tab-icon { font-size: 1.3rem; line-height: 1; }
.svc-tab-label { font-size: 0.64rem; font-weight: 700; }

/* ── ONE INTERNAL SCROLLABLE AREA ── */
.services-panels {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  /* ONE scrollbar on the right, full height of the box */
  scrollbar-width: thin;
  scrollbar-color: var(--indigo-light) var(--gray-100);
}
.services-panels::-webkit-scrollbar { width: 5px; }
.services-panels::-webkit-scrollbar-track { background: var(--gray-50); }
.services-panels::-webkit-scrollbar-thumb {
  background: var(--indigo-light);
  border-radius: 4px;
}

/* Each service panel */
.svc-panel {
  padding: 36px 32px;
  border-bottom: 1.5px solid var(--gray-100);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  background: var(--white);
}
.svc-panel:nth-child(odd)  { background: var(--white); }
.svc-panel:nth-child(even) { background: var(--gray-50); }
.svc-panel:last-child { border-bottom: none; }

.sp-content {}
.sp-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gray-100);
  color: var(--indigo-light);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 40px;
  margin-bottom: 16px;
}
.sp-icon-big {
  font-size: 2.8rem;
  margin-bottom: 16px;
  line-height: 1;
}
.sp-title {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--indigo-deep);
  margin-bottom: 14px;
  line-height: 1.15;
}
.sp-title span { color: var(--indigo-light); }
.sp-desc {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 22px;
  max-width: 400px;
}
.sp-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 26px;
}
.sp-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  color: var(--gray-700);
  font-weight: 500;
}
.sp-feat-dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  color: var(--indigo-light);
  flex-shrink: 0;
}
.sp-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--indigo-light);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 11px 22px;
  border-radius: 40px;
  border: none;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
}
.sp-cta:hover {
  background: var(--indigo);
  transform: translateY(-1px);
}

.sp-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.sp-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  transition: transform 0.5s;
}
.svc-panel:hover .sp-image { transform: scale(1.04); }
.sp-img-badge {
  position: absolute;
  bottom: 16px; left: 16px;
  background: var(--indigo-deep);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 40px;
  letter-spacing: 0.06em;
  border: 1px solid rgba(165,180,252,0.2);
}

/* Mobile services accordion (fallback) */
.services-mobile {
  display: none;
}

/* TAXI PACKAGES SECTION */
.pkg-section {
  background: var(--bg);
  padding: 96px 0 40px;
}
.pkg-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.pkg-header { margin-bottom: 40px; }
.pkg-header .section-sub { max-width: 600px; margin: 0 auto; }

/* ONE PARENT BOX */
.pkg-module-box {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: clip; /* clip instead of hidden so sticky child (tabs bar) still works */
  position: relative;
}

/* FILTER TABS BAR */
.pkg-tabs-bar {
  background: var(--bg-card);
  border-bottom: 2px solid var(--border);
  overflow: hidden;
  /* -webkit-mask-image: linear-gradient(to right, transparent 0px, #000 12px, #000 calc(100% - 12px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0px, #000 12px, #000 calc(100% - 12px), transparent 100%); */
  position: sticky;
  top: var(--nav-h, 0px);
  z-index: 900;
}
.pkg-tabs-track {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
  padding: 12px 16px;
  scrollbar-width: none;
      background: #fff;
}
.pkg-tabs-track::-webkit-scrollbar { display: none; }
.pkg-tab {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  /* border-radius: 50px; */
  border: 0;
  color: var(--text-body);
  background: var(--bg);
  transition: all 0.2s;
  white-space: nowrap;
}
.pkg-tab:hover { border-color: var(--indigo); color: var(--indigo); }
.pkg-tab.active {
  /* background: var(--indigo);
  color: #fff; */
  /* border-color: var(--indigo);
  box-shadow: 0 2px 10px rgba(79,70,229,0.3); */
  border: 0;
  border-bottom: 2px solid var(--indigo);
}

/* CARDS WRAP */
.pkg-cards-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

/* INDIVIDUAL PACKAGE CARD */
.pkg-card {
  display: flex;
  flex-direction: column;
  border-bottom: 2px solid var(--border);
  transition: box-shadow 0.2s;
}
.pkg-card:last-child { border-bottom: none; }


/* CARD IMAGE */
.pkg-card-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
  flex-shrink: 0;
}
.pkg-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.pkg-card:hover .pkg-card-img-wrap img { transform: scale(1.04); }
.pkg-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--dark);
  font-size: 11px; font-weight: 800;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 8px rgba(245,158,11,0.4);
}
.pkg-badge-saffron { background: #FF6B35; color: #fff; box-shadow: 0 2px 8px rgba(255,107,53,0.4); }
.pkg-badge-pink { background: #EC4899; color: #fff; box-shadow: 0 2px 8px rgba(236,72,153,0.4); }
.pkg-badge-green { background: #10B981; color: #fff; box-shadow: 0 2px 8px rgba(16,185,129,0.4); }
.pkg-meta-overlay {
  position: absolute;
  bottom: 12px; right: 14px;
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end;
}
.pkg-time-chip, .pkg-dist-chip {
  font-size: 11px; font-weight: 700;
  background: rgba(15,23,42,0.82);
  color: #fff;
  padding: 4px 10px;
  border-radius: 50px;
  backdrop-filter: blur(6px);
}

/* CARD BODY */
.pkg-card-body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pkg-title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 800;
  color: var(--text);
  line-height: 1.3;
}
.pkg-desc {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.75;
}

/* FEATURE CHIPS (gold/yellow) */
.pkg-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pkg-feat {
  font-size: 12px; font-weight: 700;
  background: rgba(245,158,11,0.12);
  color: #92400E;
  border: 1px solid rgba(245,158,11,0.35);
  border-radius: 50px;
  padding: 5px 12px;
}

/* INCLUSIONS ICONS ROW */
.pkg-icons-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.pkg-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 52px;
}
.pkg-icon-item span { font-size: 22px; }
.pkg-icon-item small {
  font-size: 10px; font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* DESTINATION CHIPS */
.pkg-destinations {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pkg-dest-chip {
  font-size: 12px; font-weight: 600;
  color: var(--indigo);
  background: rgba(79,70,229,0.08);
  border: 1px solid rgba(79,70,229,0.2);
  border-radius: 50px;
  padding: 5px 14px;
}

/* CAR OPTIONS DROPDOWN */
.pkg-car-dropdown { }
.pkg-car-dropdown.open .pkg-car-toggle{border-bottom: 0; border-radius: 0; }
.pkg-car-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 14px; font-weight: 700;
  color: var(--indigo);
  background: rgba(79,70,229,0.06);
  border: 1.5px solid rgba(79,70,229,0.2);
  border-radius: var(--radius);
  padding: 12px 18px;
  transition: all 0.2s;
}
/* .pkg-car-toggle:hover { background: rgba(79,70,229,0.12); border-color: var(--indigo); } */
.drop-arrow {
  font-size: 11px;
  display: inline-block;
  transition: transform 0.3s ease;
}
.pkg-car-dropdown.open .drop-arrow { transform: rotate(180deg); }
.pkg-car-list {
  display: none;
  flex-direction: column;
  gap: 0;
  border: 1.5px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  overflow: hidden;
}
.pkg-car-dropdown.open .pkg-car-list { display: flex; }
.pkg-car-item {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 4px 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
  transition: background 0.15s;
  cursor: default;
}
.pkg-car-item:last-child { border-bottom: none; }
.pkg-car-item:hover { background: var(--bg); }
.pkg-car-item.featured-car { background: rgba(79,70,229,0.04); }
.pkg-car-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.car-emoji { font-size: 24px; }
.car-img{}
.car-img img{width: 60px;    margin: 0px auto;}
.pkg-car-left strong { font-size: 14px; font-weight: 700; color: var(--text); display: block; line-height: 1.2; }
.pkg-car-left small { font-size: 12px; color: var(--text-muted); }
.pkg-car-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.car-price {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 900;
  color: var(--indigo);
}
.car-tag {
  font-size: 10px; font-weight: 700;
  background: rgba(79,70,229,0.1);
  color: var(--indigo);
  border-radius: 50px;
  padding: 2px 10px;
  white-space: nowrap;
}
.car-tag.gold-tag {
  background: rgba(245,158,11,0.15);
  color: #92400E;
}
.pkg-car-details {
  grid-column: 1 / -1;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  padding-top: 2px;
}
.pkg-car-details span{
      border: 1px solid #ddd;
    padding: 3px 8px;
    font-size: 11px;
    border-radius: 5px;
    margin-right: 3px;
}

/* CTA BAR */
.pkg-cta-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 4px;
}
.pkg-btn {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 13px; font-weight: 700;
  padding: 11px 20px;
  border-radius: 50px;
  transition: all 0.2s;
  white-space: nowrap;
}
.pkg-btn-call {
  background: rgb(32 152 241);
  color: #fff;
}
/* .pkg-btn-call:hover { background: var(--indigo-dark); transform: translateY(-2px); } */
.pkg-btn-wa {
  background: #2aa71d;
  color: #fff;
}
.pkg-btn-wa:hover { background: #1ebe5a; transform: translateY(-2px); }
.pkg-btn-book {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
}
.pkg-btn-book:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(245,158,11,0.4); }

.pkg-cta-bar a img,.pkg-cta-bar button img{width: 20px;}
/* TRUST BAR */
.pkg-trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 2px solid var(--border);
  background: linear-gradient(135deg, rgba(79,70,229,0.04), rgba(245,158,11,0.04));
}
.pkg-trust-item {
  flex: 1 1 200px;
  text-align: center;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-body);
  padding: 14px 12px;
  border-right: 1px solid var(--border);
}
.pkg-trust-item:last-child { border-right: none; }
.pkg-btn-book {
    background: #906be6;
    color: #fff;
        border: 0;
}

/* RESPONSIVE */
@media (min-width: 768px) {
  .pkg-card {
    flex-direction: row;
    align-items: stretch;
  }
  .pkg-card-img-wrap {
    width: 320px;
    height: auto;
    flex-shrink: 0;
  }
  .pkg-card-body { flex: 1; }
}
@media (max-width: 767px) {
  .pkg-card-img-wrap { height: 200px; }
  .pkg-card-body { padding: 18px 18px 22px; }
  .pkg-title { font-size: 18px; }
  .pkg-cta-bar { gap: 8px; }
  .pkg-btn { font-size: 12px; padding: 9px 20px; }
  .pkg-trust-item { font-size: 11px; padding: 12px 8px; }
}
@media (max-width: 480px) {
  .pkg-cta-bar { flex-direction: column; }
  .pkg-btn { justify-content: center; }
  .pkg-trust-bar { flex-direction: column; }
  .pkg-trust-item { border-right: none; border-bottom: 1px solid var(--border); }
  .pkg-trust-item:last-child { border-bottom: none; }
}


/* ═══════════════════════════════════
   WHY CHOOSE US
═══════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.why-visual { position: relative; }
.why-main-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-xl);
}
.why-float-card {
  position: absolute;
  bottom: 24px; right: -24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  min-width: 160px;
  border-left: 4px solid var(--indigo-light);
}
.wfc-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--indigo-light);
  line-height: 1;
}
.wfc-label { font-size: 0.78rem; color: var(--gray-500); margin-top: 3px; }
.why-feats {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.why-feat {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.why-feat:hover {
  border-color: rgba(79,70,229,0.25);
  transform: translateX(4px);
  box-shadow: var(--shadow-card);
}
.wf-icon {
  width: 42px; height: 42px;
  background: var(--gray-100);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--indigo-light);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.wf-title {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--indigo-deep);
  margin-bottom: 3px;
}
.wf-desc { font-size: 0.8rem; color: var(--gray-500); line-height: 1.65; }

/* ═══════════════════════════════════
   FLEET — full vehicle cards
═══════════════════════════════════ */

/* Filter tabs — sticky horizontal scroll */
.fleet-filter-tabs {
  display: flex;
  gap: 8px;
  margin: 32px 0 0;
  padding: 12px 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  position: sticky;
  top: var(--nav-h, 0px);
  z-index: 900;
  background: var(--gray-50);
  border-bottom: 1.5px solid var(--gray-100);
  justify-content: center;
  /* -webkit-mask-image: linear-gradient(to right, transparent 0px, #000 12px, #000 calc(100% - 12px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0px, #000 12px, #000 calc(100% - 12px), transparent 100%); */
}
.fleet-filter-tabs::-webkit-scrollbar { display: none; }
.flt-tab {
  flex-shrink: 0;
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: 30px;
  padding: 8px 22px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gray-700);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.flt-tab:hover { border-color: var(--indigo-light); color: var(--indigo-light); }
.flt-tab.active {
  /* background: var(--indigo-deep); */
  border-color: var(--indigo-light);
  /* color: var(--white); */
}

/* Cards grid — 3 desktop / 2 tablet / 1 mobile */
.fleet-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 32px;
}
@media (max-width: 1024px) {
  .fleet-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .fleet-cards-grid { grid-template-columns: 1fr; }
}
.fv-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.fv-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }

/* Slider */
.fv-slider {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--gray-50);
}
.fv-slides { height: 100%; position: relative; }
.fv-slide {
  position: absolute;
  inset: 0;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.fv-slide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}
.fv-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fv-slide-label {
  position: absolute;
  bottom: 8px;
  left: 10px;
  background: rgba(0,0,0,0.55);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.fv-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 3;
}
.fv-arrow-right { right: 10px; }
.fv-arrow-left  { left: 10px; }
.fv-arrow:hover { background: rgba(0,0,0,0.7); }
.fv-badge-top {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #2C5F2E;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 11px;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  z-index: 3;
}
.fv-badge-premium { background: var(--indigo-light); }

/* Thumbs */
.fv-thumbs {
  display: flex;
  gap: 6px;
  padding: 8px 12px 6px;
  border-bottom: 1px solid var(--gray-100);
  background: var(--off-white);
}
.fv-thumb {
  width: 52px;
  height: 38px;
  object-fit: cover;
  border-radius: 5px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s;
}
.fv-thumb.active { border-color: var(--indigo-light); }

/* Body */
.fv-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.fv-name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.fv-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--indigo-deep);
}
.fv-rate {
  background: var(--amber);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
}

/* Specs grid */
.fv-specs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px 10px;
  margin-bottom: 10px;
}
.fv-specs span {
  font-size: 0.72rem;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 5px;
}
.fv-specs span i { color: #4B5563; font-size: 0.72rem; }

/* Perks */
.fv-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  margin-bottom: 12px;
  border-top: 1px solid var(--gray-100);
  padding-top: 10px;
}
.fv-perks span {
  font-size: 0.7rem;
  color: var(--indigo-deep);
  font-weight: 600;
}

/* CTA */
.fv-cta {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}
.fv-btn-call {
  flex: 1;
  background: var(--indigo-light);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 10px 0;
  border-radius: 8px;
  border: none;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.fv-btn-call:hover { background: var(--indigo-mid); }
.fv-btn-enquire {
  flex: 1;
  background: transparent;
  color: var(--indigo-deep);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 10px 0;
  border-radius: 8px;
  border: 1.5px solid var(--gray-300);
  transition: border-color 0.2s, background 0.2s;
}
.fv-btn-enquire:hover { border-color: var(--indigo-light); background: var(--gray-50); }

.fv-guarantee {
  font-size: 0.71rem;
  color: var(--indigo-deep);
  text-align: center;
  margin-top: 2px;
}
.fv-guarantee strong { color: var(--indigo-deep); }

/* ═══════════════════════════════════
   PROCESS
═══════════════════════════════════ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 52px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--indigo-light), rgba(79,70,229,0.15));
}
.ps-step { text-align: center; position: relative; }
.ps-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo-light), var(--blue));
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 20px rgba(79,70,229,0.4);
}
.ps-title {
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--indigo-deep);
  margin-bottom: 7px;
}
.ps-desc { font-size: 0.8rem; color: var(--gray-500); line-height: 1.65; }

/* ═══════════════════════════════════
   REVIEWS
═══════════════════════════════════ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
@media (hover: hover) {
  .review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: rgba(79,70,229,0.2);
  }
}
.rc-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.rc-star { color: var(--amber); font-size: 0.9rem; }
.rc-text {
  font-size: 0.87rem;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.rc-user { display: flex; align-items: center; gap: 12px; }
.rc-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gray-100);
  flex-shrink: 0;
}
.rc-name {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--indigo-deep);
}
.rc-meta { font-size: 0.73rem; color: var(--gray-500); margin-top: 1px; }

/* ═══════════════════════════════════
   CITIES
═══════════════════════════════════ */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 40px;
}
.city-chip {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  transition: border-color 0.2s, background 0.2s;
}
.city-chip:hover {
  border-color: rgba(79,70,229,0.25);
  background: var(--gray-50);
}
.city-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}
.city-name {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--indigo-deep);
}

/* ═══════════════════════════════════
   CTA BANNER
═══════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--indigo-deep) 0%, var(--indigo-mid) 60%, #1E3A8A 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.cta-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(165,180,252,0.1) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-title span {
  background: linear-gradient(90deg, var(--cyan), #818CF8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-desc { font-size: 0.97rem; color: rgba(165,180,252,0.8); margin-bottom: 32px; }
.cta-actions { display: flex; align-items: center; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cyan);
  color: var(--indigo-deep);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 14px 30px;
  border-radius: 40px;
  border: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-cta-primary:hover { background: #22D3EE; transform: translateY(-2px); }
.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px 30px;
  border-radius: 40px;
  border: 1.5px solid rgba(255,255,255,0.3);
  transition: background 0.2s, border-color 0.2s;
}
.btn-cta-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }
.cta-contacts { display: flex; gap: 28px; justify-content: center; margin-top: 22px; flex-wrap: wrap; }
.cta-contact-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.85rem;
  color: rgba(165,180,252,0.8);
  font-weight: 500;
}

/* ═══════════════════════════════════
   FAQ
═══════════════════════════════════ */
.faq-list {
  margin-top: 40px;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(79,70,229,0.25); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 20px;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--indigo-deep);
  gap: 14px;
  transition: color 0.2s;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}
.faq-item.open .faq-q { color: var(--indigo-light); }
.faq-chevron { flex-shrink: 0; transition: transform 0.3s; color: var(--gray-500); }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--indigo-light); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-size: 0.87rem;
  color: var(--gray-500);
  line-height: 1.8;
  padding: 0 20px;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 20px 17px; }

/* BOOKING */
.booking-section {
  background: linear-gradient(135deg, var(--dark) 0%, #1E1B4B 100%);
  padding: 96px 0; position: relative; overflow: hidden;
}
.booking-section::before {
  content: ''; position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(79,70,229,0.15), transparent 70%);
  pointer-events: none;
}
.booking-inner {
  max-width: 1100px; margin: 0 auto; padding: 0;
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 60px; align-items: center;
}
.booking-contact-cards { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.bcc-card {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px; padding: 16px 20px;
  transition: all 0.2s;
}
.bcc-card:hover { background: rgba(79,70,229,0.15); border-color: rgba(79,70,229,0.4); transform: translateX(4px); }
.bcc-wa:hover { background: rgba(37,211,102,0.12); border-color: rgba(37,211,102,0.35); }
.bcc-icon { font-size: 28px; }
.bcc-icon img {
    width: 30px;
}
.bcc-title { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; }
.bcc-val { font-size: 16px; font-weight: 700; color: #fff; margin-top: 2px; }
.booking-form {
  background: #fff; border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}
.booking-form h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 5px;
}
.booking-form p{font-size: 12px;margin-bottom: 15px;}
.booking-form .p-content,.p-con{font-size: 12px; margin-bottom: 0; margin-top: 15px;    text-align: left;font-weight: 600;}

.bf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.bf-group { display: flex; flex-direction: column; gap: 6px; }
.bf-group label {    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: capitalize;
    letter-spacing: 0.5px;
}
.bf-group input,
.bf-group select,
.bf-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 12px; color: #757575;
  background: var(--bg); outline: none;
  transition: border-color 0.2s;
}
.bf-group input:focus,
.bf-group textarea:focus { border-color: var(--indigo); background: #fff; }
.bf-group select:focus { border-color: var(--indigo); background-color: #fff; }
.bf-group textarea { resize: vertical; min-height: 80px; margin-bottom: 14px; }
.bf-group:has(.location-input) { position: relative; }
.bf-group .location-input { padding-right: 36px; }
.clear-btn {
  position: absolute; right: 10px; bottom: 11px;
  width: 20px; height: 20px;
  display: none; align-items: center; justify-content: center;
  font-size: 16px; line-height: 1; color: var(--text-muted);
  cursor: pointer; border-radius: 50%;
  transition: background 0.15s, color 0.15s;
}
.clear-btn:hover { background: var(--border); color: var(--text); }
.clear-btn.visible { display: flex; }
.bf-submit {
  width: 100%;
  display: flex; align-items: center; justify-content: center;
  gap: 10px; background: var(--indigo); color: #fff;
  font-size: 15px; font-weight: 700;
  padding: 14px; border-radius: 12px;
  transition: all 0.25s; cursor: pointer; border: none;    margin-top: 20px;
}
.bf-group select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 38px;
    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='%236b7280' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px 8px;
}
/* .bf-submit:hover { background: var(--indigo-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(79,70,229,0.4); } */

/* Phone prefix wrapper */
.bf-phone-wrap {
  display: flex;
  align-items: stretch;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
  transition: border-color 0.2s;
}
.bf-phone-wrap:focus-within { border-color: var(--indigo); background: #fff; }
.bf-phone-prefix {
  padding:7px 12px;
  font-size: 14px; font-weight: 700;
  color: var(--text-muted);
  background: var(--gray-50, #f8fafc);
  border-right: 1.5px solid var(--border);
  white-space: nowrap;
  user-select: none;
}
.bf-phone-wrap input {
  border: none !important;
  background: transparent !important;
  border-radius: 0 !important;
  flex: 1;
  min-width: 0;
}
.bf-phone-wrap input:focus { border: none !important; outline: none; }

/* Booking section responsive */
@media (max-width: 900px) {
  .booking-section { padding: 64px 0; }
  .booking-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .booking-left { text-align: center; }
  .booking-contact-cards { flex-direction: row; }
  .bcc-card { flex: 1; }
}
@media (max-width: 600px) {
  .booking-section { padding: 48px 0; }
  .booking-form { padding: 24px 18px; }
  .bf-row { grid-template-columns: 1fr; gap: 12px; }
  .booking-contact-cards { flex-direction: column; }
  .bcc-card { padding: 14px 16px; }
  .bcc-icon { font-size: 22px; }
  .bcc-val { font-size: 14px; }
}


/* REVIEWS  */

.testimonials {
  background: var(--bg-light); padding: 72px 40px; text-align: center;
}
.section-eyebrow { font-size: 12px; font-weight: 700; color: var(--accent-gold); text-transform: uppercase; letter-spacing: 3px; margin-bottom: 8px; }
.section-title { font-family: var(--font-serif); font-size: clamp(28px,4vw,44px); font-weight: 800; color: var(--text-dark); margin-bottom: 12px; }
.section-sub { font-size: 15px; color: var(--text-muted); max-width: 480px; margin: 0 auto 40px; }

/* Rating summary card */
.review-summary-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: grid; grid-template-columns: 220px 1fr;
  max-width: 980px; margin: 0 auto 40px; text-align: left; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.review-summary-left {
  background: var(--bg-light); padding: 28px 24px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  border-right: 1px solid var(--border);
}
.rsl-stars { display: flex; gap: 4px; }
.rsl-stars svg { width: 22px; height: 22px; }
.rsl-score { font-family: var(--font-serif); font-size: 56px; font-weight: 800; color: var(--accent-gold); line-height: 1; }
.rsl-based { font-size: 12px; color: var(--text-muted); text-align: center; }
.rsl-verified { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: #2563eb; }
.rsl-verified svg { width: 14px; height: 14px; }
.review-summary-right { padding: 24px 28px; }
.review-summary-intro { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 18px; }
.rating-bar-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.rating-bar-platform { display: flex; align-items: center; gap: 6px; min-width: 130px; }
.rating-bar-platform svg { width: 16px; height: 16px; }
.rating-bar-platform span { font-size: 12px; color: var(--text-body); }
.rating-bar-track { flex: 1; height: 8px; background: var(--bg-light); border-radius: 4px; overflow: hidden; }
.rating-bar-fill { height: 100%; background: linear-gradient(90deg, #22c55e, #16a34a); border-radius: 4px; transition: width 1s ease; }
.rating-bar-score { display: flex; align-items: center; gap: 4px; min-width: 40px; }
.rating-bar-score svg { width: 12px; height: 12px; }
.rating-bar-score span { font-size: 12px; font-weight: 700; color: var(--text-dark); }

/* Reviews carousel — 2 side by side */
.reviews-carousel-wrap { max-width: 980px; margin: 0 auto; position: relative; }
.reviews-carousel {
  overflow: hidden;
  width: 100%;
}
.reviews-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.reviews-track .review-card {
  flex: 0 0 calc(50% - 10px);
  min-width: 0;
  width: calc(50% - 10px);
}
/* Nav arrows */
.reviews-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-top: 24px;
}
.reviews-arrow {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--white); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s, border-color 0.2s;
  box-shadow: var(--shadow-sm);
}
.reviews-arrow:hover { background: var(--accent-gold); border-color: var(--accent-gold); }
.reviews-arrow:hover svg { stroke: var(--dark-green); }
.reviews-arrow svg { width: 18px; height: 18px; stroke: var(--text-dark); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.reviews-dots { display: flex; gap: 6px; }
.reviews-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.reviews-dot.active { background: var(--accent-gold); transform: scale(1.3); }


/* Individual review card */
.review-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); padding: 20px;
  text-align: left; box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
  box-sizing: border-box;
}
@media (hover: hover) {
  .review-card:hover { box-shadow: var(--shadow-md); }
}
.review-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 10px; }
.review-user { display: flex; align-items: center; gap: 10px; }
.reviewer-avatar-placeholder {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; color: var(--white);
  flex-shrink: 0; border: 2px solid var(--gold-light);
}
.reviewer-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0; border: 2px solid var(--gold-light);
}
.review-user-info { display: flex; flex-direction: column; gap: 2px; }
.reviewer-name { font-size: 13px; font-weight: 700; color: var(--text-dark); display: flex; align-items: center; gap: 4px; }
.reviewer-name svg { width: 13px; height: 13px; }
.reviewer-meta { font-size: 11px; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }
.reviewer-meta svg { width: 11px; height: 11px; }
.review-right { display: flex; flex-direction: column; align-items: flex-end; gap: 3px; }
.review-stars-row { display: flex; gap: 2px; }
.review-stars-row svg { width: 13px; height: 13px; }
.review-rating-label { font-size: 10px; color: var(--text-muted); }
.review-booked { font-size: 11.5px; color: var(--text-body); margin-bottom: 7px; }
.review-booked a { color: var(--accent-gold); font-weight: 600; }
.review-text { font-size: 12.5px; color: var(--text-body); line-height: 1.65; margin-bottom: 12px; }
.review-photos { display: flex; gap: 6px; flex-wrap: wrap; }
.review-photo { width: 64px; height: 56px; border-radius: 7px; object-fit: cover; border: 1px solid var(--border); }
.review-read-more { color: var(--accent-gold); font-size: 12px; font-weight: 600; white-space: nowrap; }
.review-text-extra { display: none; }
.review-text-extra.expanded { display: inline; }

/* ── Testimonials responsive ── */
@media (max-width: 900px) {
  .testimonials { padding: 56px 24px; }

  /* Summary card: collapse to single column */
  .review-summary-card {
    grid-template-columns: 1fr;
  }
  .review-summary-left {
    flex-direction: row;
    justify-content: flex-start;
    gap: 20px;
    padding: 20px 24px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .rsl-score { font-size: 44px; }
  .review-summary-right { padding: 20px 24px; }
  .review-summary-intro { margin-bottom: 14px; }
  .rating-bar-platform { min-width: 110px; }

  /* Carousel: 1 card at a time */
  .reviews-track .review-card { flex: 0 0 100%; width: 100%; }
}

@media (max-width: 600px) {
  .testimonials { padding: 44px 16px; }

  /* Summary card left: back to column */
  .review-summary-left {
    flex-direction: column;
    align-items: center;
    padding: 20px 16px;
    gap: 6px;
  }
  .rsl-score { font-size: 40px; }
  .review-summary-right { padding: 16px; }
  .rating-bar-platform { min-width: 90px; }
  .rating-bar-platform span { font-size: 11px; }
  .review-summary-intro { font-size: 12px; }

  /* Review cards */
  .review-card { padding: 16px; }
  .reviewer-avatar-placeholder, .reviewer-avatar { width: 38px; height: 38px; font-size: 13px; }
}

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
footer {
  background: var(--indigo-deep);
  padding: 60px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 0.84rem;
  color: rgba(165,180,252,0.7);
  line-height: 1.75;
  margin-top: 14px;
  max-width: 260px;
}
.footer-social { display: flex; gap: 8px; margin-top: 18px; }
.fs-link {
  width: 34px; height: 34px;
  background: rgba(99,102,241,0.15);
  border: 1px solid rgba(165,180,252,0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-300);
  font-size: 0.9rem;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.fs-link:hover {
  color: var(--cyan);
  background: rgba(6,182,212,0.1);
  border-color: rgba(6,182,212,0.3);
}
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a {
  font-size: 0.83rem;
  color: rgba(165,180,252,0.65);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--cyan); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 12px;
}
.fci-icon {
  color: var(--cyan);
  font-size: 0.88rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.fci-text { font-size: 0.8rem; color: rgba(165,180,252,0.65); line-height: 1.55; }
.fci-text strong { color: var(--white); display: block; font-size: 0.82rem; }
.footer-bottom {
  border-top: 1px solid rgba(165,180,252,0.1);
  padding: 20px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(165,180,252,0.5); }
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-links a { font-size: 0.76rem; color: rgba(165,180,252,0.5); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--cyan); }

/* ═══════════════════════════════════
   FAB
═══════════════════════════════════ */
.fab-call {
  position: fixed;
  bottom: 22px; right: 22px;
  z-index: 9000;
  background: linear-gradient(135deg, var(--indigo-light), var(--blue));
  color: var(--white);
  border: none;
  border-radius: 100px;
  padding: 13px 20px;
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: 0 8px 32px rgba(79,70,229,0.5);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  width:53px;
  height: 53px;
}
.fab-call:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 44px rgba(79,70,229,0.6);
}
.fab-label{display: none;}
.fab-ring {
  position: absolute;
  inset: -5px;
  border-radius: 100px;
  border: 2px solid rgba(79,70,229,0.35);
  animation: fabPulse 2.4s infinite;
}
@keyframes fabPulse {
  0%   { transform: scale(1); opacity: 1; }
  70%  { transform: scale(1.1); opacity: 0; }
  100% { transform: scale(1.1); opacity: 0; }
}

.fab-wa {
  position: fixed;
  bottom: 22px; left: 22px;
  z-index: 9000;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 13px 20px;
  display: none;
  align-items: center; gap: 9px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  width:53px;
  height:53px;
}
.fab-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 44px rgba(37,211,102,0.6);
}
.fab-wa-ring {
  border-color: rgba(37,211,102,0.35);
}
@media (max-width: 600px) {
  .fab-wa { display: flex; }
  .fab-wa .fab-label { display: none; }
}

/* ═══════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 1100px) {
  .svc-panel { padding: 32px 28px; gap: 28px; }
  .hero-content { grid-template-columns: 1fr 360px; gap: 40px; }
  .why-grid { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 36px; }
  .hero-card { max-width: 480px; }
  .why-grid { grid-template-columns: 1fr; gap: 36px; }
  .why-float-card { right: 10px; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .cities-grid { grid-template-columns: repeat(3, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }

  /* Services box — taller on tablet */
  .svc-box { height: 85vh; max-height: none; }
  .svc-panel { grid-template-columns: 1fr; gap: 20px; padding: 28px 20px; }
  .sp-image { height: 190px; }
}

@media (max-width: 768px) {
  /* Mobile nav: hide desktop links, show scrollable bar */
  .nav-links, .nav-actions { display: none; }
  .mobile-nav-bar { display: block;         margin-top: -1px;}
  /* Section sticky nav sits below mobile nav bar (62px navbar + 40px mobile bar) */
  .section-sticky-nav { top: 102px; }

  .section { padding: 52px 0 56px; }
  .fleet-cards-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 48px 0 40px; }
  .hero-headline { font-size: clamp(2rem, 7vw, 3rem); }
  .hero-stats { gap: 16px; margin-top: 28px; }
  .hero-stat-num { font-size: 1.5rem; }
  .h2-quick-bar{display: none;}

  /* Services box mobile */
  #services { padding: 40px 0 48px; }
  .svc-box { height: 88vh; border-radius: var(--radius-lg); }
  .svc-panel { padding: 24px 18px; gap: 16px; }
  .sp-image { height: 170px; }
  .sp-title { font-size: 1.3rem; }

  /* Fleet mobile */
  .fv-specs { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline-white { width: 100%; justify-content: center; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .process-steps { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .btn-cta-primary, .btn-cta-outline { justify-content: center; }
  .hc-row { grid-template-columns: 1fr; }
  .fab-call .fab-label { display: none; }
  .svc-panel { padding: 22px 16px; }
  .svc-tab { min-width: 56px; padding: 7px 10px 6px; }
  .svc-tab-icon { font-size: 1.15rem; }
  .svc-tab-label { font-size: 0.6rem; }
  .fv-specs { grid-template-columns: 1fr 1fr; }
  .why-main-img { height: 280px; }
  .why-float-card { right: 0; bottom: -16px; }
  .section-title { font-size: clamp(1.4rem, 5.5vw, 2rem); }
}

/* ═══════════════════════════════════
   TOUR LIST BY TAXI SECTION
═══════════════════════════════════ */
#tourlist {
  background: var(--indigo-deep);
}

.tl-header {
  background: linear-gradient(135deg, #0F0E1A 0%, var(--indigo-deep) 60%, #1a1036 100%);
  padding: 56px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.tl-header::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(165,180,252,0.07) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  pointer-events: none;
}
.tl-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  position: relative;
}
.tl-title span {
  background: linear-gradient(90deg, var(--cyan), #818CF8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tl-sub {
  font-size: 0.92rem;
  color: rgba(165,180,252,0.75);
  position: relative;
}

/* Grid of tour cards */
.tl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  padding: 2px 0;
}

/* Individual tour card */
.tl-card {
  background: var(--tl-bg, #1E1B4B);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s;
  position: relative;
}
.tl-card:hover { transform: scale(1.01); z-index: 2; }

/* Card image */
.tl-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.tl-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.tl-card:hover .tl-img { transform: scale(1.06); }
.tl-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%);
}
.tl-tag {
  position: absolute;
  top: 10px; left: 10px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255,255,255,0.2);
}
.tl-dest-badge {
  position: absolute;
  bottom: 10px; left: 0; right: 0;
  text-align: center;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  letter-spacing: 0.01em;
}

/* Card body */
.tl-body {
  padding: 16px 16px 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Meta row: duration, km, days */
.tl-meta-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.tl-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.12);
  color: var(--tl-accent, #fff);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.15);
  white-space: nowrap;
}

/* Stops */
.tl-stops { margin-bottom: 10px; }
.tl-stops-title {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.tl-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.tl-chips span {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.9);
  font-size: 0.67rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.15);
}

/* Also explore */
.tl-explore {
  font-size: 0.72rem;
  color: var(--tl-accent, rgba(255,255,255,0.7));
  margin-bottom: 10px;
  line-height: 1.5;
  padding: 8px 10px;
  background: rgba(0,0,0,0.2);
  border-radius: 8px;
  border-left: 3px solid var(--tl-accent, #fff);
}

/* Tips accordion */
.tl-tips {
  margin-bottom: 12px;
  background: rgba(0,0,0,0.25);
  border-radius: 8px;
  overflow: hidden;
}
.tl-tips summary {
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--tl-accent, #fff);
  padding: 9px 12px;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
  user-select: none;
}
.tl-tips summary::-webkit-details-marker { display: none; }
.tl-tips summary::after {
  content: "▾";
  margin-left: auto;
  font-size: 0.7rem;
  opacity: 0.6;
}
.tl-tips[open] summary::after { content: "▴"; }
.tl-tips summary:hover { background: rgba(255,255,255,0.08); }
.tl-tips ul {
  list-style: none;
  padding: 4px 12px 10px;
}
.tl-tips ul li {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.75);
  padding: 4px 0;
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.tl-tips ul li::before {
  content: "!";
  position: absolute;
  left: 0;
  color: var(--tl-accent, #fff);
  font-weight: 900;
  font-size: 0.65rem;
}

/* CTA */
.tl-cta {
  display: flex;
  gap: 6px;
  margin-top: auto;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.tl-btn-call {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 9px 0;
  border-radius: 7px;
  border: 1px solid rgba(255,255,255,0.2);
  text-decoration: none;
  transition: background 0.2s;
}
.tl-btn-call:hover { background: rgba(255,255,255,0.25); }
.tl-btn-wa {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: #2aa71d;
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 9px 0;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.tl-btn-wa:hover { opacity: 0.88; }

/* Bottom CTA strip */
.tl-bottom-cta {
  background: linear-gradient(90deg, #06B6D4, #4F46E5);
  padding: 20px 0;
      margin-top: 50px;
}
.tl-bottom-cta .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.tl-bottom-cta p {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}
.tl-bottom-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  color: var(--indigo-deep);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.tl-bottom-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
.tl-bottom-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 10px 22px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.tl-bottom-btn-wa:hover { opacity: 0.88; }



/* Responsive tour grid */
@media (max-width: 1024px) {
  .tl-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .tl-grid { grid-template-columns: 1fr; gap: 2px; }
  .tl-img-wrap { height: 180px; }
  .tl-bottom-cta .container { flex-direction: column; gap: 10px; }
  .tl-bottom-btn, .tl-bottom-btn-wa { width: 100%; justify-content: center; }
}



/*  SIGHTSEEING SECTION */
.sight-section {
  background: linear-gradient(180deg, var(--bg) 0%, #EEF2FF 100%);
  padding: 96px 0 60px;
}
.sight-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.sight-header { margin-bottom: 40px; }
.sight-header .section-sub { max-width: 600px; margin: 0 auto; }

/* ONE PARENT BOX */
.sight-module-box {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

/* ITINERARY PLAN BAR */
.sight-plan-bar {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--dark);
  padding: 16px 24px;
  overflow-x: auto;
  scrollbar-width: none;
}
.sight-plan-bar::-webkit-scrollbar { display: none; }
.spb-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.spb-icon { font-size: 22px; }
.spb-item strong { display: block; font-size: 13px; font-weight: 800; color: #fff; line-height: 1.2; }
.spb-item small { font-size: 11px; color: rgba(255,255,255,0.6); white-space: nowrap; }
.spb-arrow {
  font-size: 18px;
  color: var(--gold);
  padding: 0 12px;
  flex-shrink: 0;
}

/* SPOTS GRID */
.sight-spots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-bottom: 2px solid var(--border);
}
.sight-spot {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.sight-spot:nth-child(even) { border-right: none; }
.sight-spot:hover { background: #F8F9FF; }
.sight-spot-img-wrap {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.sight-spot-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.sight-spot:hover .sight-spot-img-wrap img { transform: scale(1.05); }
.sight-spot-num {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--indigo);
  color: #fff;
  font-family: var(--font-display);
  font-size: 13px; font-weight: 900;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.sight-spot-body {
  padding: 16px 20px 20px;
}
.sight-spot-body h4 {
  font-size: 16px; font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}
.sight-spot-body p {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 12px;
}
.sight-spot-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sight-spot-meta span {
  font-size: 11px; font-weight: 600;
  color: var(--text-muted);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 3px 10px;
}

/* MORE SPOTS */
.sight-spot-more {
  grid-column: 1 / -1;
  border-right: none;
  padding: 20px 24px;
  background: rgba(79,70,229,0.03);
}
.sight-more-title {
  font-size: 14px; font-weight: 800;
  color: var(--indigo);
  margin-bottom: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}
.sight-more-arrow {
  font-size: 11px;
  display: inline-block;
  transition: transform 0.3s ease;
}
.sight-spot-more.open .sight-more-arrow { transform: rotate(180deg); }
.sight-more-chips {
  display: none;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.sight-spot-more.open .sight-more-chips { display: flex; }
.sight-more-chips span {
  font-size: 13px; font-weight: 600;
  color: var(--text);
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 6px 14px;
  transition: all 0.2s;
  cursor: default;
}
.sight-more-chips span:hover { border-color: var(--indigo); color: var(--indigo); background: rgba(79,70,229,0.06); }

/* CAR + PRICING ROW */
.sight-car-row {
  padding: 32px 28px;
  border-bottom: 2px solid var(--border);
  background: var(--bg);
}
.sight-car-head { margin-bottom: 24px; }
.sight-car-head h3 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}
.sight-car-head p { font-size: 14px; color: var(--text-body); }
.sight-car-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.sight-car-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: all 0.25s;
  position: relative;
}
.sight-car-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--indigo); }
.scc-popular {
  border-color: var(--indigo);
  background: linear-gradient(160deg, rgba(79,70,229,0.05), #fff);
  box-shadow: 0 4px 16px rgba(79,70,229,0.12);
}
.scc-luxury {
  border-color: var(--gold);
  background: linear-gradient(160deg, rgba(245,158,11,0.05), #fff);
}
.scc-badge {
  position: absolute; top: -1px; right: 12px;
  background: var(--indigo); color: #fff;
  font-size: 10px; font-weight: 800;
  padding: 3px 10px;
  border-radius: 0 0 8px 8px;
  letter-spacing: 0.3px;
}
.scc-badge-gold { background: var(--gold); color: var(--dark); }
.scc-emoji { font-size: 32px; margin-bottom: 8px; }
.scc-name { font-size: 15px; font-weight: 800; color: var(--text); margin-bottom: 2px; }
.scc-seats { font-size: 11.5px; color: var(--text-muted); margin-bottom: 12px; }
.scc-price {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 900;
  color: var(--indigo);
  margin-bottom: 12px;
}
.scc-price span { font-size: 12px; font-weight: 500; color: var(--text-muted); }
.scc-feats {
  list-style: none;
  font-size: 12px; color: var(--text-body);
  text-align: left;
  margin-bottom: 16px;
  display: flex; flex-direction: column; gap: 4px;
}
.scc-btn {
  display: block;
  background: var(--indigo-light);
  color: #fff;
  font-size: 13px; font-weight: 700;
  padding: 9px 16px;
  border-radius: 50px;
  transition: all 0.2s;
}
/* .scc-btn:hover { background: var(--indigo-dark); transform: translateY(-1px); } */
.scc-popular .scc-btn { background: var(--indigo-light); }
.scc-luxury .scc-btn { background: var(--gold); color: var(--dark); }
.scc-luxury .scc-btn:hover { background: var(--gold-dark); }

/* BOTTOM CTA BAR */
.sight-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 28px;
  background: linear-gradient(135deg, rgba(79,70,229,0.05), rgba(245,158,11,0.05));
  flex-wrap: wrap;
}
.scb-text strong {
  display: block;
  font-size: 15px; font-weight: 800;
  color: var(--text);
  margin-bottom: 2px;
}
.scb-text span { font-size: 13px; color: var(--text-body); }
.scb-btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* Sightseeing responsive */
@media (max-width: 900px) {
  .sight-car-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .sight-section { padding: 60px 0 40px; }
  .sight-spots-grid { grid-template-columns: 1fr; }
  .sight-spot:nth-child(even) { border-right: 1px solid var(--border); }
  .sight-spot { border-right: none; }
  .sight-spot-img-wrap { height: 160px; }
  .sight-car-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .sight-plan-bar { padding: 12px 16px; gap: 0; }
  .spb-item strong { font-size: 12px; }
  .sight-cta-bar { flex-direction: column; align-items: flex-start; }
  .scb-btns { width: 100%; }
  .pkg-btn { flex: 1; justify-content: center; }
}
@media (max-width: 400px) {
  .sight-car-grid { grid-template-columns: 1fr; }
}



/*  EXIT INTENT POPUP */
.exit-popup-overlay {
  position: fixed; inset: 0;
  background: rgba(8,15,35,0.68);
  z-index: 12000;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(3px);
}
.exit-popup-overlay.active { opacity: 1; pointer-events: all; touch-action: none; overscroll-behavior: none; }

.exit-popup {
  position: fixed;
  left: 50%; bottom: 0;
  transform: translateX(-50%) translateY(100%);
  z-index: 12001;
  width: min(420px, 100vw);
  background: #fff;
  border-radius: 28px 28px 0 0;
  padding: 0 0 calc(env(safe-area-inset-bottom, 0px) + 8px);
  box-shadow: 0 -12px 48px rgba(8,15,35,0.22);
  transition: transform 0.46s cubic-bezier(0.22,1,0.36,1);
}
.exit-popup.active { transform: translateX(-50%) translateY(0); }

.exit-popup-drag { width: 44px; height: 5px; border-radius: 3px; background: #D1D5E8; margin: 14px auto 0; display:block; }

.ep-close {
  position: absolute; top: 12px; right: 14px;
  width: 44px; height: 44px;
  background: rgba(209,213,232,0.25); border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--text2); font-size:30px;
  transition: background 0.18s, color 0.18s;
  line-height: 1;
}
.ep-close:hover { background: rgba(209,213,232,0.55); color: var(--text); }

.exit-popup-body { padding: 18px 24px 20px; }

.exit-popup-badge {
  display: inline-flex; align-items:center; gap:6px;
  background: #FFF1F1; color: var(--red);
  border: 1.5px solid rgba(232,0,29,0.2);
  border-radius: 30px; padding: 5px 14px;
  font-family: var(--font-head); font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.07em; text-transform: uppercase;
  margin-bottom: 12px;
}
.exit-popup-badge .ep-dot { width:7px;height:7px;border-radius:50%;background:var(--red);animation:blink-dot 1.1s infinite; }

.exit-popup-title {
  font-family: var(--font-head);
  font-size: 1.35rem; font-weight: 900;
  color: var(--navy); line-height: 1.25;
  margin-bottom: 8px;
}
.exit-popup-title span { color: var(--red); }

.exit-popup-desc {
  font-size: 0.88rem; color: var(--text2);
  line-height: 1.65; margin-bottom: 18px;
}

.exit-popup-offer {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy3) 100%);
  border-radius: 16px; padding: 14px 16px;
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 14px;
}
.epo-icon { font-size: 2rem; flex-shrink:0; }
.epo-text strong {
  display: block;
  font-family: var(--font-head); font-size: 0.92rem; font-weight: 800;
  color: var(--yellow); margin-bottom: 3px;
}
.epo-text span { font-size: 0.78rem; color: rgba(255,255,255,0.68); }

.exit-popup-actions { display: flex; flex-direction: column; gap: 9px; }
.ep-call-btn {
  display: flex; align-items:center; justify-content:center; gap:9px;
  padding: 14px;     background: var(--cyan);
    color: var(--indigo-deep);
  border-radius: 14px; text-decoration:none;
  font-family: var(--font-head); font-size: 0.95rem; font-weight: 800;
  box-shadow: 0 6px 22px rgba(232,0,29,0.28);
  transition: background 0.2s, transform 0.2s;
}
/* .ep-call-btn:hover { background: var(--red-dark); transform: translateY(-1px); } */
.ep-wa-btn {
  display: flex; align-items:center; justify-content:center; gap:9px;
  padding: 12px; background: #25D366; color: #fff;
  border-radius: 14px; text-decoration:none;
  font-family: var(--font-head); font-size: 0.88rem; font-weight: 800;
  box-shadow: 0 4px 16px rgba(37,211,102,0.22);
  transition: background 0.2s;
}
.ep-wa-btn:hover { background: #009337; }
.ep-dismiss {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 0.8rem;
  color: var(--muted); text-align: center; padding: 6px;
  transition: color 0.2s;
}
.ep-dismiss:hover { color: var(--text); }

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding: 10px 0px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background:var(--cyan);
  color: var(--indigo-deep);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 14px 26px;
  border-radius: 40px;
  border: none;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 6px 28px rgba(6,182,212,0.4);
}
.btn-primary:hover {
  background: #22D3EE;
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(6,182,212,0.5);
}
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 13px 26px;
  border-radius: 40px;
  border: 1.5px solid rgba(255,255,255,0.3);
  transition: background 0.2s, border-color 0.2s;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}
/* MORE SPOTS */
.sight-spot-more {
 grid-column: 1 / -1;
 border-right: none;
 padding: 10px 24px;
 background: rgba(79,70,229,0.03);
     border: 1px solid #ddd;
    border-radius: 10px;
}
.sight-more-title {
 font-size: 14px; font-weight: 800;
 color: var(--indigo);
 margin-bottom: 0;
 cursor: pointer;
 display: flex;
 align-items: center;
 justify-content: space-between;
 user-select: none;
}
.sight-more-chips {
 display: none;
 flex-wrap: wrap;
 gap: 8px;
 margin-top: 12px;
}
.sight-more-chips span {
 font-size: 13px; font-weight: 600;
 color: var(--text);
 background: var(--bg-card);
 border: 1.5px solid var(--border);
 border-radius: 50px;
 padding: 6px 14px;
 transition: all 0.2s;
 cursor: default;
}
.sight-more-chips span:hover { border-color: var(--indigo); color: var(--indigo); background: rgba(79,70,229,0.06); }

/* OVERLAY */
.itinerary-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.6);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.itinerary-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* CLOSE BUTTON — outside/above the sheet */
.itin-close-btn {
  position: absolute;
  bottom: calc(72vh + 12px);
  left: 50%;
  transform: translateX(-50%);
  width: 44px; height: 44px;
  background: #fff;
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  color: var(--text);
  transition: background 0.2s, transform 0.2s;
  z-index: 10001;
}
.itin-close-btn:hover { background: var(--bg); transform: translateX(-50%) scale(1.1); }

/* THE SHEET */
.itin-sheet {
  width: 100%;
  max-width: 680px;
  height: 72vh;
  background: var(--bg-card);
  border-radius: 24px 24px 0 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
  box-shadow: 0 -12px 60px rgba(0,0,0,0.25);
  position: relative;
  z-index: 10000;
}
.itinerary-overlay.open .itin-sheet {
  transform: translateY(0);
}

/* DRAG HANDLE */
.itin-drag-handle {
  flex-shrink: 0;
  width: 40px; height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin: 12px auto 0;
}

/* SCROLLABLE CONTENT */
.itin-content {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 20px 24px 40px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.itin-content::-webkit-scrollbar { width: 4px; }
.itin-content::-webkit-scrollbar-track { background: transparent; }
.itin-content::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

/* HEADER */
.itin-header { margin-bottom: 20px; }
.itin-title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 900;
  color: var(--text); margin: 0 0 6px;
}
.itin-subtitle { font-size: 13px; color: var(--text-body); }

/* QUICK FACTS */
.itin-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}
.itin-fact {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px; padding: 12px 14px;
}
.itin-fact-icon { font-size: 20px; flex-shrink: 0; }
.itin-fact strong { display: block; font-size: 12px; font-weight: 700; color: var(--text); line-height: 1.2; }
.itin-fact small { font-size: 11px; color: var(--text-muted); }

/* SECTION TITLES */
.itin-section-title {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 800;
  color: var(--text);
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--indigo);
  display: inline-block;
}

/* TIMELINE */
.itin-timeline { display: flex; flex-direction: column; gap: 0; }
.itin-stop {
  display: grid;
  grid-template-columns: 56px 18px 1fr;
  gap: 12px;
  padding-bottom: 20px;
  position: relative;
}
.itin-stop-last { padding-bottom: 0; }
.itin-stop-time {
  font-size: 11px; font-weight: 700;
  color: var(--indigo);
  padding-top: 3px;
  text-align: right;
  white-space: nowrap;
}
.itin-stop-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--border);
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--border);
  flex-shrink: 0;
  margin-top: 3px;
  position: relative;
}
.itin-stop-dot::after {
  content: '';
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% + 20px);
  background: var(--border);
}
.itin-stop-last .itin-stop-dot::after { display: none; }
.itin-dot-indigo { background: var(--indigo); box-shadow: 0 0 0 2px rgba(79,70,229,0.25); border-color: #fff; }
.itin-dot-gold { background: var(--gold); box-shadow: 0 0 0 2px rgba(245,158,11,0.25); border-color: #fff; }
.itin-dot-green { background: #16a34a; box-shadow: 0 0 0 2px rgba(22,163,74,0.25); border-color: #fff; }
.itin-stop-body { padding-top: 1px; }
.itin-stop-body strong { display: block; font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.itin-stop-body p { font-size: 13px; color: var(--text-body); line-height: 1.6; margin: 0 0 6px; }
.itin-chip {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  background: #EEF2FF; color: var(--indigo);
  padding: 2px 10px; border-radius: 50px;
}

/* EXTRA SPOTS */
.itin-extra-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.itin-extra-chips span {
  font-size: 12px; font-weight: 600;
  background: var(--bg); border: 1px solid var(--border);
  color: var(--text-body);
  padding: 5px 12px; border-radius: 50px;
}

/* PACKAGES GRID */
.itin-pkg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.itin-pkg-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
  position: relative;
  transition: all 0.2s;
}
.itin-pkg-card:hover { border-color: var(--indigo); transform: translateY(-2px); }
.ipc-highlight { border-color: var(--indigo); background: #EEF2FF; }
.ipc-luxury { background: linear-gradient(160deg, rgba(245,158,11,0.06), var(--bg)); border-color: #f59e0b66; }
.ipc-label {
  position: absolute; top: -9px; left: 50%; transform: translateX(-50%);
  font-size: 10px; font-weight: 800;
  background: var(--indigo); color: #fff;
  padding: 2px 10px; border-radius: 50px;
  white-space: nowrap;
}
.ipc-label-gold { background: var(--gold); color: var(--dark); }
.ipc-name { font-size: 14px; font-weight: 800; color: var(--text); margin-bottom: 2px; }
.ipc-seats { font-size: 11px; color: var(--text-muted); margin-bottom: 8px; }
.ipc-price {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 900;
  color: var(--indigo); margin-bottom: 10px;
}
.ipc-luxury .ipc-price { color: var(--gold-dark); }
.ipc-btn {
  display: block;
  background: var(--indigo); color: #fff;
  font-size: 12px; font-weight: 700;
  padding: 7px 14px; border-radius: 50px;
  transition: background 0.2s;
}
.ipc-btn:hover { background: var(--indigo-dark); }
.ipc-luxury .ipc-btn { background: var(--gold); color: var(--dark); }
.ipc-luxury .ipc-btn:hover { background: var(--gold-dark); }

/* INCLUSIONS LIST */
.itin-includes {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.itin-inc-item {
  font-size: 13px; color: var(--text-body);
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 8px; padding: 8px 12px;
}

/* BOTTOM CTA */
.itin-bottom-cta {
  display: flex; gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.itin-cta-call, .itin-cta-wa {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
  padding: 13px 16px; border-radius: 50px;
  transition: all 0.2s;
}
.itin-cta-call { background: var(--indigo); color: #fff; }
.itin-cta-call:hover { background: var(--indigo-dark); transform: translateY(-2px); }
.itin-cta-wa { background: #25D366; color: #fff; }
.itin-cta-wa:hover { background: #128C7E; transform: translateY(-2px); }

/* Modal Section Start */
.modal-overlay.slideuppopup { display: none; position: fixed; top: 0;  left: 0; width: 100%; height: 100vh; background-color: rgba(0, 0, 0, 0.7); z-index: 999;}
.modal-content.slideupcontent {background-color: #e1e1e1;height: 100vh !important; width: 70%; padding: 1px;box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); position: fixed; bottom: 0; right: 0;    padding: 0;}
.close-btn {position: absolute;top: 50%; left: -57px; padding: 2px; cursor: pointer; font-size: 26px; color: #fff; border-radius: initial; box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); width: 40px; height: 40px;text-align: center;  margin: 10px auto;  background-color: #000;border-radius: 30px;    line-height: 29px;}
#backgroundOverlay {position: fixed; top: 0;left: 0;width: 100%; height: 98%; background-color: rgba(0, 0, 0, 0.5); display: none;z-index: 9998;}
@keyframes slideIn { from { transform: translateY(100%);  }
to {transform: translateY(0); }  }
@keyframes slideOut {from {transform: translateY(0);  }
to {transform: translateY(100%);} 
}
@keyframes slideleft {from { transform: translateX(+100%); }
to {transform: translateX(0);} 
}
@keyframes slideleftOut {from {transform: translateX(0);}
to {transform: translateX(+100%);}
}
.modeltitle {text-align:center; padding:10px;background: #fff;color: #121212;padding-top: 10px;border-radius: 6px 6px 0px 0px;margin-bottom: 0px;border-bottom: 1px solid #d1cbcb; text-transform: uppercase; font-size: 28px;}
.close-btn.innerbtn{top: 0; right: 30px; left: inherit; background: #aaaaaa; color: #434343;}

.modal-box{padding: 0px 15px; position: relative;background: #f9f9f9;}
.modal-nav{background: #ebf1ff; position: fixed; width: 100%; top: 0;left: 0; z-index: 999;}
.modal-nav ul{display: inline-flex;column-gap:5px;justify-content: center;padding: 10px; white-space: nowrap; overflow-x: scroll;width: 100%;scrollbar-width: none;}
.modal-nav ul li{display: inline-flex;}
.modal-nav ul li a{font-size: 14px;padding: 7px 14px; border: 1px solid #6c6c6c; color: #6c6c6c;font-weight: 500; border-radius: 3px;}
.modal-nav li.active a,.modal-nav li a:hover{background: #146c43; color: #fff; border-color: #146c43;}

.mobal-content-box{padding-top: 67px;background: #f9f9f9;}
.placesvisit img{width: 100%; border-radius: 5px;}
.placesvisit span.placename{display: block; text-align: center; font-weight: 600; padding-top: 5px;}
.placesvisit ul li{list-style: none; padding-bottom: 0 !important;}
.placesvisit ul{padding-left: 0 !important;}
.overview-content{padding: 10px 10px 10px;border: 1px solid #ddd; margin: 15px 0px; background: #fff; border-radius: 9px;box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .1);}
.overview-content p{font-size: 14px;}
.overview-content ul{list-style: inside;}
.overview-content ul li{color: #1c1c1c;font-size: 14px;}
.notetag{color: #993300;border-left: 4px solid #ff5722; padding-left: 20px; margin: 20px 0px;font-weight: 500;}
.itinerary{margin-top: 40px;    margin-bottom: 40px;}
.modal-h2{background: #F6B451; padding: 7px 10px; font-size: 18px;font-style: italic;}
.taxiprice{margin-bottom: 20px;}

.itinerarylist{border: 1px solid #dee2e6; border-radius: 10px 10px 0px 0px;margin-top: 15px;}
#itinerarylist a{background: #fcf3e8;color: #000;font-weight: 500;font-size: 15px; display: flex;align-items: center;padding:16px 20px; border-radius: 10px 10px 0px 0px;}
#itinerarylist .timebox{display: flex; column-gap: 5px; align-items: center;background: #f6b451;font-size: 13px; padding: 5px 10px; border-radius: 40px;color: #141414; margin-right: 10px; font-weight: 500; flex: 0 0 110px;}
#itinerarylist .timebox img{width: 15px;}
#itinerarylist .itinerary-body{padding: 15px;    background: #fff;}
#itinerarylist .itinerary-body ul{list-style: disc; padding-left: 20px;}
#itinerarylist .itinerary-body li,#itinerarylist .itinerary-body p{font-size: 14px;padding-bottom: 10px;}
#itinerarylist .itinerary-body h3{font-weight: 700;font-size: 16px; margin: 10px 0px 15px; color: #ff5722;}
.itinerary-icons{margin-top: 15px;}
.itinerary-icons ul{background: #ffd7ac; border-radius: 10px;padding: 7px;list-style: none;display: flex;align-items: center;column-gap: 12px;}
.itinerary-icons ul li{padding-bottom: 0 !important;font-weight: 600; display: flex; align-items: center; column-gap: 5px;padding: 0px 10px;}
.itinerary-icons ul li img{width: 25px;}

.collapse-toggle {position: relative; display: block;}
.collapse-toggle::after { content: "";position: absolute;right: 20px; top: 50%; width: 10px; height: 10px; border-right: 2px solid #212529; border-bottom: 2px solid #212529; transform: translateY(-70%) rotate(45deg); transition: transform 0.25s ease;}
.collapse-toggle[aria-expanded="true"]::after {transform: translateY(-30%) rotate(-135deg);}

.taxiprice .group-tour-car{padding-top: 10px;}
.inclusion{padding: 10px 10px 20px;border: 1px solid #ddd;margin: 15px 0px; background: #fff;    border-radius: 9px;box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .1);}
.inclusion h4{font-size: 17px; padding-top: 10px; border-bottom: 1px solid #f6b451; padding-bottom: 8px;}
.inclusion ul li{font-size: 14px; padding-bottom: 5px;}

.notes{padding: 20px 10px 20px; border: 1px solid #ddd; margin: 15px 0px; background: #fff;}
.notes ul{padding-left: 20px;}
.notes li{font-size: 14px; list-style: disc; padding-bottom: 10px;}

.modal-form{padding: 40px 0px 40px;}

.version-v2 .modal-h2{background: #4340ac; color: #fff; padding: 8px 15px;}
.version-v2 #itinerarylist .timebox{background:#4340ac; color: #fff;}

.booking-simple{padding: 20px 10px 20px; border: 1px solid #ddd;margin: 15px 0px; background: #fff;    border-radius: 9px;box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .1);}
.booking-simple h2{font-size: 18px; border-bottom: 1px solid #e5e5e5; padding-bottom: 10px;}
.booking-01{background: #ebf1ff; padding: 10px; border-radius: 10px; display: flex; flex-direction: column; justify-content: start; align-items: center; gap: 8px; height: 100%;}
.booking-01 img{width: 50px;}
.booking-01 .book-number{background: #ff5722;color: #fff; width: 25px; height: 25px;line-height: 25px; font-size: 13px;text-align: center;border-radius: 100%; font-weight: 600;}
.booking-01 h5{font-size: 15px; margin-bottom: 0;}
.booking-01 p{margin-bottom: 0;font-size: 11px; text-align: center;}

.additionalinfo a.collapse-toggle{column-gap: 10px;    background: #f9f5ef;}
.additionalinfo a.collapse-toggle img{width: 30px;}
.additionalinfo .htlTaBoxx{width: 100%;}
.additionalinfo .htlTaBoxx th{font-size: 13px; padding: 10px;color: #1a0dab;border: 1px solid #ddd;background: #fcf3e8;}
.additionalinfo .htlTaBoxx td{font-size: 12px; padding: 10px; border: 1px solid #ddd;}

.related-package{padding: 20px 10px 20px; border: 1px solid #ddd;margin: 15px 0px 30px; background: #fff;border-radius: 9px;box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .1);}
.related-package ul li{flex: 0 0 31%;}

.overy{overflow-y: scroll;}
.default-page{background: #fffafa;padding: 10px;}
.default-page img{margin-bottom: 15px;}
.default-page h4{font-size: 16px; border-bottom: 1px solid #ddd; padding-bottom: 10px;    color: #4340ac;}
.default-page p{font-size: 13px;}
.default-page ul{list-style: disc; padding-left: 20px;}
.default-page ul li{font-size: 13px; padding-bottom: 9px;}
.default-page table td,.default-page table th{border: 1px solid #ddd;font-size: 12px;}
.innerlink{color: #4340ac;cursor: pointer;}
.innerlink span{width: 20px; display: inline-block; height: 20px; background: #000; text-align: center;border-radius: 100%;color: #fff;font-weight: 500;}
.heading-one{background: #fff; border-radius: 0;}

.tourlist ul{display: flex; flex-wrap: wrap; list-style: none;}
.tourlist ul li{flex: 0 0 50%;display: flex;align-items: center; column-gap: 10px;    margin-bottom: 10px;}
.tourlist ul li img{width: 32px;}
.tourlist ul li p{margin-bottom: 0;font-size: 11px;}
.tourlist ul li p span{display: block;font-weight: 600;font-size: 12px;}

.tour-overview{margin-bottom: 15px;}
.tour-overview p{margin-bottom: 5px; display: inline;}
.tour-overview a{display: inline-block; font-size: 13px;color: #002dd9;}

.tick-box-ul{list-style: none;}
.tick-box-ul li{display: flex; column-gap: 7px; align-items: start; padding-bottom: 10px;}
.tick-box-ul li img{width: 20px;}
.list-none{list-style: none !important; padding-left: 0 !important;}
/* Modal Section End */

.footer-brand .nav-logo img{width: 190px;    height: auto;}

/* ═══════════════════════════════════
   BOOKING MODAL
═══════════════════════════════════ */
.pac-container { z-index: 10001 !important; }
.flatpickr-calendar { z-index: 10002 !important; }
.bm-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(10,8,30,0.72);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
.bm-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.bm-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 0;
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
  transform: translateY(28px) scale(0.97);
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1);
}
.bm-overlay.active .bm-card {
  transform: translateY(0) scale(1);
}
.bm-body {
  overflow-y: auto;
  padding: 52px 32px 32px;
  flex: 1 1 auto;
}
.bm-close {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 1;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--off-white);
  color: var(--text-muted, #6b7280);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.bm-close:hover {
  background: var(--indigo);
  border-color: var(--indigo);
  color: var(--white);
}
.bm-header { margin-bottom: 24px; }
.bm-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(55,48,163,0.08);
  color: var(--indigo);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.bm-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--indigo-light);
  animation: bmDotPulse 1.8s infinite;
}
@keyframes bmDotPulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.45; transform: scale(0.75); }
}
.bm-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--indigo-deep);
  margin-bottom: 4px;
  line-height: 1.2;
}
.bm-sub {
  font-size: 13px;
  color: var(--text-muted, #6b7280);
}
.bm-form .bf-group { margin-bottom: 0; }
.bm-form .bf-group textarea { min-height: 72px; margin-bottom: 0; }

/* Calendar icon inside date inputs */
.date-input-wrap { position: relative; }
.date-input-wrap .date-picker-input { padding-right: 38px; width: 100%; box-sizing: border-box; }
.date-input-wrap .cal-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text-muted, #6b7280);
  font-size: 16px;
  display: flex;
  align-items: center;
}

/* Notes toggle label */
.notes-opt { color: var(--text-muted, #6b7280); font-weight: 400; text-transform: none; letter-spacing: 0; }
.notes-toggle {
    color: #545454;
    text-decoration: underline;
    cursor: pointer;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    font-size: 11px;
    margin-left: 4px;
}
.notes-toggle:hover { color: var(--indigo-dark, #3730a3); }

@media (max-width: 600px) {
  .bm-card { border-radius: var(--radius-lg); }
  .bm-body { padding: 48px 18px 24px; }
  .bm-title { font-size: 18px; }
  .bm-form .bf-row { grid-template-columns: 1fr; gap: 12px; }
}

@media only screen and (min-width: 600px) {
.modal-content.slideupcontent{height: 80vh;}
.modal-content.slideupcontent{width: 70%;}
}
@media only screen and (max-width: 600px) {
.modal-content.slideupcontent{width: 100%;}
.modal-content.slideupcontent{ height: 80vh !important;}
.modal-content.slideupcontent.modalinner{ height: 85vh !important;}
.close-btn {
          position: absolute !important;
        top: -18px !important;
        left: 50% !important;
        margin: -29px auto !important;
        margin-left: -20px !important;
} 
.close-btn.innerbtn{top: 38px !important; margin: -40px 20px 0 auto !important; box-shadow: none !important;color: #434343; width: 30px;height: 30px; line-height: 30px; background: #aaaaaa;}

}
.flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover{color: rgb(57 57 57 / 41%) !important;}
.topcenter{display: none;}

@media (max-width:575px){
  .h2-badge{font-size: 9px; padding: 2px 9px; margin-bottom: 10px;}
  .h2-headline{font-size: 35px;}
  .h2-sub{margin: 10px 0px;    font-size: 11px;}
  .hero-actions .btn-primary,.hero-actions .btn-outline-white,.h2-btn-call,.h2-btn-wa{font-size: 12px;padding: 8px 6px;border-radius: 4px;}
  .btn-outline-white{    width: 250px;}
  .h2-headline-row{text-align: center;}
  .h2-pick-label{display: none;}
  .hero2{padding-bottom: 15px;}
  .hero-actions{flex-direction: row; flex-wrap: inherit;    padding: 3px 0px;}
  .h2-top { padding: 20px 0 16px; }
  .h2-card-icon{position: absolute; top: -40px; left: 10px;}
  .h2-svc-card{height: 155px;}
  .h2-card-body{padding-bottom: 6px;}
  .h2-stats-row{padding: 8px 10px;}
  .h2-stat-num {font-size: 1rem;}
  .pkg-inner{padding: 0 15px;}
  .pkg-tabs-track{padding: 6px 8px;}
  .pkg-tab{padding: 4px 4px;font-size: 11px;}
  .mob-nav-link{font-size: 0.9rem;    font-weight: 500;color: var(--text-body);}
  .pkg-title {font-size: 16px;}
  .pkg-desc{font-size: 11px;        margin-top: -10px;}
  .pkg-trust-bar{display: block;}
  .pkg-icons-row{column-gap: 6px; flex-wrap: inherit; justify-content: space-between;}
  .pkg-icon-item small{font-size: 8px;}
  .sight-more-chips span,.pkg-dest-chip{font-size: 9px;}
  .sight-spot-more{padding: 10px 4px;}
  .pkg-card-body {padding: 7px 10px 22px;}
  .fleet-filter-tabs{padding: 4px 9px;}
  .flt-tab{      font-weight: 500;  padding: 3px 17px;    font-size: 12px;}
  .popframe {height: 86vh; padding-bottom: 24%;}
  .modeltitle{    font-size: 20px;}
  .mobal-content-box{padding-top: 0;}
  .overview-content p, .overview-content ul li, .notetag {font-size: 12px;}
.modal-h2 {font-size: 14px;}
#itinerarylist a{padding: 10px 38px 10px 10px; font-size: 12px;}
#itinerarylist a .timebox{column-gap: 3px;font-size: 10px;padding: 5px 5px;flex: 0 0 86px;}
#itinerarylist .itinerary-body li, #itinerarylist .itinerary-body p, .inclusion ul li, .notes li {font-size: 12px;}
.itinerary-icons ul{padding-left: 10px !important;    flex-wrap: wrap;}
.itinerary-icons ul li img {width: 20px;    gap: 6px; column-gap: inherit;}
.inclusion ul li{padding-bottom: 10px;}
.modeltitle{font-size: 20px;}
.modal-nav ul li a{font-size: 12px;}
#itinerarylist .itinerary-body ul li,.related-package .review-photo ul li {flex: 0 0 68%;}
.booking-01 {margin: 5px 0px;    padding: 20px 10px; height: auto;}
.additionalinfo a.collapse-toggle img {width: 25px;}
.nav-logo img {width: 90px; height: auto;}
.itin-cta-call, .itin-cta-wa{font-size: 12px;}
.pkg-car-details span{padding: 2px 5px;font-size: 10px; margin: 3px 0px;}
.pkg-car-details{display: flex; flex-wrap: wrap;}
.pkg-cta-bar {flex-direction: row; }
.pkg-section{padding-top: 56px;}
.topcenter{display: block;}
.topcenter a {border-radius: 2rem; box-shadow: inset 0 0 0 1px var(--indigo-deep); padding: 4px 16px 3px 3px; display: flex; column-gap: 10px; align-items: center; position: relative;}
.topcenter a:before{content: ""; display:inline-block; background: url(../images/phone-icon.svg);width: 20px;height: 20px; background-size: cover; position: absolute; bottom: -5px; left: -5px;animation: tilt-shaking 2s linear infinite;}
.topcenter a img{width: 28px; height: 28px;}
.topcenter a p{font-weight: 800; color: var(--indigo-deep);font-size: 13px; margin-bottom: 0;}
.topcenter a p span{color: #1f9823;margin-left: 10px;display: none;}
.navtoggle-mobile{margin-left: 0 !important;}
.nav-inner{justify-content: space-between;padding: 0px 15px;}

@keyframes tilt-shaking {
    0% {transform: rotate(0)}
    5% {transform: rotate(8deg)}
    10% {transform: rotate(-7deg)}
    15% {transform: rotate(8deg)}
    20% {transform: rotate(-7deg)}
    25% {transform: rotate(8deg)}
    30% {transform: rotate(-7deg)}
    35% {transform: rotate(8deg)}
    40% {transform: rotate(-7deg)}
    45% {transform: rotate(8deg)}
    50% {transform: rotate(-7deg)}
    55% {transform: rotate(0deg)}
    60% {transform: rotate(0deg)}
    65% {transform: rotate(0deg)}
    70% {transform: rotate(0deg)}
    75% {transform: rotate(0deg)}
    80% {transform: rotate(0deg)}
    85% {transform: rotate(0deg)}
    90% {transform: rotate(0deg)}
    95% {transform: rotate(0deg)}
    to {transform: rotate(0deg)}
}
.hero-wcu-scroll .wcu-icon{width: 70px;height: 70px;}
.hero-wcu-scroll .wcu-icon i{font-size: 40px;}
.hero-wcu .wcu-eyebrow{    color: rgba(165, 180, 252, 0.55);        margin-bottom: 4px;}
.hero-wcu{margin-left: 0;text-align: center !important;  margin-bottom: 0 !important;}
.hero-wcu-scroll .wcu-icon{width: 70px;height: 70px;}
.hero-wcu-scroll .wcu-icon i{font-size: 40px;}
.hero-wcu .wcu-eyebrow{    color: rgba(165, 180, 252, 0.55);        margin-bottom: 4px;}
.mobile-show{display: flex;}
.desktop-show{display: none;}
.booking-inner{padding: 0px 15px;}
}

/* ═══════════════════════════════════
   HAMBURGER TOGGLE BUTTON
═══════════════════════════════════ */
.navtoggle-mobile {
  display: none;
  margin-left: auto;
  align-items: center;
}
.nav-hamburger {
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--indigo-deep);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════
   DRAWER OVERLAY
═══════════════════════════════════ */
.nav-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30,27,75,0.55);
  z-index: 1100;
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s, visibility 0.3s;
}
.nav-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ═══════════════════════════════════
   SLIDE DRAWER
═══════════════════════════════════ */
.nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  max-width: 85vw;
  height: 100dvh;
  background: var(--white);
  z-index: 1101;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  box-shadow: 4px 0 32px rgba(30,27,75,0.18);
}
.nav-drawer.open { transform: translateX(0); }

.nav-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--gray-100);
  flex-shrink: 0;
}
.nav-drawer-logo img { height:70px; width: auto; }

.nav-drawer-close {
  background: none;
  border: none;
  font-size: 1.25rem;
  color: var(--gray-700);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  line-height: 1;
  transition: background 0.2s;
}
.nav-drawer-close:hover { background: var(--gray-50); }

.nav-drawer-links {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0;
  display: flex;
  flex-direction: column;
}
.nav-drawer-links a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--gray-700);
  padding: 14px 24px;
  border-left: 3px solid transparent;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.nav-drawer-links a:hover,
.nav-drawer-links a.active {
  color: var(--indigo-light);
  background: var(--gray-50);
  border-left-color: var(--indigo-light);
}

.nav-drawer-footer {
  padding: 16px;
  border-top: 1px solid var(--gray-100);
  flex-shrink: 0;
}
.nav-drawer-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

@media (max-width: 768px) {
  .navtoggle-mobile { display: flex; }
}
