/* ============================================================
   GURU JI TRAVELS – style.css
   Fonts: Cormorant Garamond (headings) + Plus Jakarta Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,600;0,700;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* ── DESIGN TOKENS ── */
:root {
  --amber:        #e07b0f;
  --amber-dk:     #b8620a;
  --amber-lt:     #fff4e6;
  --amber-mid:    #f59332;

  --bg:           #ffffff;
  --bg-soft:      #faf8f5;
  --bg-alt:       #f3efe8;
  --bg-card:      #ffffff;
  --bg-nav:       rgba(255,255,255,0.95);
  --text:         #1c1711;
  --text-2:       #4a4137;
  --text-muted:   #8a7e72;
  --border:       #e8e2d9;
  --shadow-sm:    0 2px 12px rgba(28,23,17,0.07);
  --shadow-md:    0 6px 28px rgba(28,23,17,0.10);
  --shadow-lg:    0 16px 56px rgba(28,23,17,0.13);

  /* Footer inverted: dark in light mode */
  --footer-bg:    #13100a;
  --footer-text:  #e8e0d5;
  --footer-muted: #7a7068;
  --footer-border:#2a2520;

  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;

  --r-sm:   10px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-pill: 50px;
  --ease:   0.28s ease;
}

[data-theme="dark"] {
  --bg:           #111009;
  --bg-soft:      #171511;
  --bg-alt:       #1b1812;
  --bg-card:      #1e1b14;
  --bg-nav:       rgba(17,16,9,0.96);
  --text:         #f2ece3;
  --text-2:       #c8bfb2;
  --text-muted:   #9c9286;
  --border:       #2e2920;
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.30);
  --shadow-md:    0 6px 28px rgba(0,0,0,0.40);
  --shadow-lg:    0 16px 56px rgba(0,0,0,0.55);
  --amber-lt:     #261a08;

  /* Footer inverted: light in dark mode */
  --footer-bg:    #f5f1eb;
  --footer-text:  #1c1711;
  --footer-muted: #6e6358;
  --footer-border:#ddd7cc;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100vw;
  transition: background 0.35s, color 0.35s;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; padding: 0; margin: 0; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--amber); border-radius: 3px; }
::selection { background: var(--amber); color: #fff; }

/* ── HIGHLIGHT ── */
.hl {
  color: var(--amber);
  position: relative;
  display: inline-block;
}
.hl::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%; height: 3px;
  background: var(--amber);
  border-radius: 2px;
  opacity: 0.3;
}

/* ============================================================
   REVEAL ANIMATION
   — Elements start visible by default (no opacity:0 in CSS)
   — JS adds .reveal-ready ONLY when observer is confirmed working,
     then toggles .visible. This way content is NEVER stuck hidden.
   ============================================================ */
.reveal-ready {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal-ready.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNav {
  background: var(--bg-nav);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0.65rem 0;
  transition: background 0.35s, box-shadow 0.3s;
  z-index: 1050;
  width: 100%;
}
#mainNav.scrolled { box-shadow: var(--shadow-md); }

.brand-icon {
  width: 36px; height: 36px;
  background: var(--amber);
  color: #fff;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform var(--ease);
}
.brand-icon:hover { transform: scale(1.08); }
.brand-icon.small-icon { width: 28px; height: 28px; font-size: 0.85rem; border-radius: 7px; }

.brand-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1;
  white-space: nowrap;
}
.brand-accent { color: var(--amber); }

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-2) !important;
  padding: 0.4rem 0.8rem !important;
  border-radius: 8px;
  transition: color var(--ease), background var(--ease);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--amber) !important;
  background: var(--amber-lt);
}

.btn-book {
  background: var(--amber);
  color: #fff !important;
  border: none;
  border-radius: var(--r-pill);
  padding: 0.45rem 1.2rem;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}
.btn-book:hover {
  background: var(--amber-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(224,123,15,0.38);
}

.theme-toggle {
  width: 36px; height: 36px;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 0.88rem;
  flex-shrink: 0;
  transition: border-color var(--ease), color var(--ease), background var(--ease);
}
.theme-toggle:hover { border-color: var(--amber); color: var(--amber); }

.toggler-bar {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  margin: 5px 0;
  transition: var(--ease);
}

@media (max-width: 991.98px) {
  #navMenu {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 1rem 1.25rem;
    margin-top: 0.5rem;
    box-shadow: var(--shadow-md);
    width: 100%;
  }
  .nav-link { padding: 0.6rem 1rem !important; }
  .btn-book { display: block; text-align: center; margin-top: 0.5rem; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  width: 100%;
}
.hero-bg-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 60%;
  background-repeat: no-repeat;
  transform: scale(1.04);
  animation: heroZoom 12s ease-in-out infinite alternate;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(15,10,5,0.82) 0%,
    rgba(15,10,5,0.65) 55%,
    rgba(15,10,5,0.25) 100%
  );
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; }
.hero-text-col { padding-top: 100px; padding-bottom: 80px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(224,123,15,0.18);
  border: 1px solid rgba(224,123,15,0.45);
  color: #ffb857;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--r-pill);
  margin-bottom: 1.2rem;
  animation: fadeUp 0.6s ease both;
  backdrop-filter: blur(4px);
  letter-spacing: 0.03em;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
  animation: fadeUp 0.6s 0.08s ease both;
}
.hero-title em { font-style: italic; color: var(--amber-mid); }

.hero-sub {
  font-size: clamp(0.92rem, 1.8vw, 1.08rem);
  color: rgba(255,255,255,0.82);
  max-width: 480px;
  margin-top: 1rem;
  line-height: 1.75;
  animation: fadeUp 0.6s 0.16s ease both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: fadeUp 0.6s 0.24s ease both;
}

.btn-hero-primary {
  background: var(--amber);
  color: #fff;
  border: 2px solid var(--amber);
  border-radius: var(--r-pill);
  padding: 0.75rem 1.75rem;
  font-size: 0.93rem;
  font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
  white-space: nowrap;
}
.btn-hero-primary:hover {
  background: var(--amber-dk);
  border-color: var(--amber-dk);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(224,123,15,0.45);
  color: #fff;
}

.btn-hero-wa {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: var(--r-pill);
  padding: 0.75rem 1.75rem;
  font-size: 0.93rem;
  font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center;
  transition: border-color var(--ease), background var(--ease), transform var(--ease);
  white-space: nowrap;
}
.btn-hero-wa:hover {
  border-color: #25d366;
  background: rgba(37,211,102,0.15);
  color: #fff;
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  margin-top: 2rem;
  animation: fadeUp 0.6s 0.32s ease both;
}
.stat { display: flex; flex-direction: column; }
.stat-row { display: flex; align-items: baseline; }
.stat-num, .stat-suf {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--amber-mid);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  margin-top: 3px;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.stat-div {
  width: 1px;
  background: rgba(255,255,255,0.2);
  height: 38px;
  align-self: center;
}

.scroll-arrow {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 1.3rem;
  z-index: 3;
  animation: arrowBounce 2.2s ease-in-out infinite;
  transition: color var(--ease);
}
.scroll-arrow:hover { color: var(--amber-mid); }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-strip {
  background: var(--amber);
  padding: 0.6rem 0;
  width: 100%;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  width: 100%;
  overflow: hidden;
}
.marquee-inner {
  display: flex;
  flex-shrink: 0;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee-inner span {
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  display: inline-flex; align-items: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.marquee-inner .bi { font-size: 0.5rem; }
.marquee-strip:hover .marquee-inner { animation-play-state: paused; }

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section-pad { padding: 88px 0; }

.section-tag {
  display: inline-block;
  background: var(--amber-lt);
  color: var(--amber);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(224,123,15,0.2);
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-top: 0.5rem;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 500px;
  margin: 0.6rem auto 0;
  line-height: 1.7;
}

/* ============================================================
   SERVICES
   ============================================================ */
.svc-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 2rem 1.75rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.svc-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.svc-icon {
  width: 52px; height: 52px;
  background: var(--amber-lt);
  color: var(--amber);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  transition: background var(--ease), color var(--ease);
}
.svc-card:hover .svc-icon { background: var(--amber); color: #fff; }
.svc-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.svc-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.65; }

.chip {
  display: inline-block;
  margin-top: 1rem;
  background: var(--amber);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.chip-warm { background: #e34b4b; }

/* ============================================================
   FLEET
   ============================================================ */
.fleet-section { background: var(--bg-soft); }

.fleet-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--ease), box-shadow var(--ease);
}
.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.fleet-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.fleet-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}
.fleet-card:hover .fleet-img img { transform: scale(1.05); }

.fleet-badge {
  position: absolute;
  bottom: 10px; left: 12px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  backdrop-filter: blur(6px);
  letter-spacing: 0.03em;
}
.fleet-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.fleet-body h4 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.fleet-body p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }

.fleet-list {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}
.fleet-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-2);
}
.fleet-list .bi { color: var(--amber); font-size: 1rem; flex-shrink: 0; }

.fleet-btns {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}
.fleet-btns .btn { min-width: 0; flex: 1 1 100px; font-size: 0.87rem; padding: 0.6rem 1rem; }

/* Owner card */
.owner-card .fleet-img { aspect-ratio: 4/3; }
.owner-img-wrap { position: relative; }
.owner-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 15%;
}
.owner-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 55%);
}
.owner-name-tag {
  position: absolute;
  bottom: 12px; left: 12px; right: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
.owner-name-tag .bi-person-fill {
  font-size: 1.1rem;
  background: var(--amber);
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.owner-name-tag strong {
  display: block;
  font-size: 0.97rem;
  font-weight: 700;
  line-height: 1.2;
  font-family: var(--font-head);
}
.owner-name-tag span {
  display: block;
  font-size: 0.72rem;
  opacity: 0.8;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ============================================================
   WHY US
   ============================================================ */
.why-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.why-body {
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 420px;
}
.why-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.5rem 1.25rem;
  height: 100%;
  transition: transform var(--ease), box-shadow var(--ease);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.why-card-fill {
  background: var(--amber);
  border-color: var(--amber);
}
.why-card-fill h5,
.why-card-fill p,
.why-card-fill .why-ico { color: #fff !important; }
.why-ico {
  font-size: 1.7rem;
  color: var(--amber);
  display: block;
  margin-bottom: 0.75rem;
}
.why-card h5 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.35rem;
}
.why-card p { font-size: 0.87rem; color: var(--text-muted); }

/* ============================================================
   DESTINATIONS
   ============================================================ */
.dest {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 0.9rem 1.1rem;
  display: flex; align-items: center; gap: 0.85rem;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.dest:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--amber);
}
.dest-hot {
  background: var(--amber-lt);
  border-color: rgba(224,123,15,0.3);
}
.dest-ico {
  width: 36px; height: 36px;
  background: var(--amber);
  color: #fff;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.dest-name {
  display: block;
  font-weight: 700;
  font-size: 0.93rem;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dest-km { display: block; font-size: 0.76rem; color: var(--text-muted); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-section { background: var(--bg-soft); }

.review {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.75rem;
  height: 100%;
  position: relative;
  transition: transform var(--ease), box-shadow var(--ease);
}
.review:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.review-hero { background: var(--amber); border-color: var(--amber); }
.review-hero p,
.review-hero .stars,
.review-hero strong,
.review-hero small { color: #fff !important; }
.big-quote {
  font-family: var(--font-head);
  font-size: 5rem;
  line-height: 0.8;
  color: rgba(255,255,255,0.3);
  margin-bottom: 0.5rem;
}
.stars { color: #f59e0b; font-size: 0.85rem; margin-bottom: 0.75rem; }
.review-hero .stars { color: rgba(255,255,255,0.9) !important; }
.review p { color: var(--text-2); font-size: 0.93rem; font-style: italic; line-height: 1.7; }
.reviewer { display: flex; align-items: center; gap: 0.75rem; margin-top: 1.25rem; }
.rev-av {
  width: 38px; height: 38px;
  background: var(--amber-lt);
  color: var(--amber);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.review-hero .rev-av { background: rgba(255,255,255,0.25); color: #fff; }
.reviewer strong { font-size: 0.9rem; display: block; line-height: 1.2; }
.reviewer small { font-size: 0.76rem; color: var(--text-muted); }
.review-hero small { color: rgba(255,255,255,0.75) !important; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-box {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.citem {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
}
.citem-last { border-bottom: none !important; }
.cico {
  width: 40px; height: 40px;
  background: var(--amber-lt);
  color: var(--amber);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.cico-star { background: #fef3c7; color: #d97706; }
.clabel {
  display: block;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 3px;
}
.cval { display: block; font-size: 0.95rem; font-weight: 500; color: var(--text); line-height: 1.5; }
a.cval:hover { color: var(--amber); }

.contact-btns {
  display: flex; gap: 0.6rem; margin-top: 1.5rem; flex-wrap: wrap;
}
.contact-btns .btn { flex: 1 1 100px; justify-content: center; font-size: 0.9rem; }

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border: 2px solid #25d366;
  border-radius: var(--r-pill);
  padding: 0.75rem 1.5rem;
  font-size: 0.93rem; font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
  white-space: nowrap;
}
.btn-whatsapp:hover {
  background: #1ebe5a; border-color: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.38);
  color: #fff;
}

.map-box {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1.5px solid var(--border);
  min-height: 360px; height: 100%;
}

/* ============================================================
   FOOTER — inverted theme
   ============================================================ */
.site-footer {
  background: var(--footer-bg);
  border-top: 1px solid var(--footer-border);
  padding: 3.5rem 0 0;
  transition: background 0.35s, color 0.35s;
}
.footer-brand {
  font-family: var(--font-head);
  font-size: 1.25rem; font-weight: 700;
  color: var(--footer-text);
}
.site-footer .brand-accent { color: var(--amber); }
.site-footer .brand-icon { background: var(--amber); }

.footer-sub { color: var(--footer-muted); font-size: 0.88rem; max-width: 300px; line-height: 1.65; }

.footer-heading {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--footer-muted); margin-bottom: 0.85rem;
}
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a,
.footer-links span {
  color: var(--footer-muted); font-size: 0.9rem;
  display: inline-flex; align-items: center;
  transition: color var(--ease);
}
.footer-links a:hover { color: var(--amber); }

.footer-hr { border-color: var(--footer-border); margin: 2rem 0 0; }

.footer-bottom {
  display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: center;
  gap: 0.5rem; padding: 1rem 0;
}
.footer-copy { color: var(--footer-muted); font-size: 0.8rem; }
.footer-credit {
  color: var(--footer-muted);
  font-size: 0.88rem;
  display: flex; align-items: center; gap: 5px; flex-wrap: wrap;
}
.footer-credit a {
  color: var(--amber);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-bottom: 2px solid var(--amber);
  padding-bottom: 1px;
  transition: opacity var(--ease), color var(--ease);
}
.footer-credit a:hover { opacity: 0.75; }
.footer-credit .bi-heart-fill { font-size: 0.78rem; color: #e34b4b; }

/* ============================================================
   FLOATING CALL BUTTON
   ============================================================ */
.float-call {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  width: 56px; height: 56px;
  background: var(--amber);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 6px 24px rgba(224,123,15,0.5);
  z-index: 999;
  animation: callPulse 2.5s ease-in-out infinite;
  transition: background var(--ease), transform var(--ease), opacity 0.3s;
}
.float-call:hover {
  background: var(--amber-dk); color: #fff;
  animation: none; transform: scale(1.1);
}

/* ============================================================
   ROUTE CARDS (Destinations – image thumbnails)
   ============================================================ */
.route-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.route-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.route-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-alt);
}
.route-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.route-card:hover .route-img { transform: scale(1.06); }

.route-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--amber);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-pill);
}

.route-body {
  padding: 1.25rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.route-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.route-name {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.route-km {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.02em;
}
.route-desc {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}

.btn-route {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--amber);
  color: #fff !important;
  border: none;
  border-radius: var(--r-pill);
  padding: 0.6rem 1.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
  margin-top: auto;
  width: 100%;
}
.btn-route:hover {
  background: var(--amber-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(224,123,15,0.38);
  color: #fff !important;
}

/* Mini destination row (no image) */
.dest-mini {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 0.95rem 1.1rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease);
}
.dest-mini:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.dest-mini-ico {
  width: 40px; height: 40px;
  background: var(--amber-lt);
  color: var(--amber);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.dest-mini-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.dest-mini-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dest-mini-km {
  font-size: 0.76rem;
  color: var(--text-muted);
}
.btn-route-sm {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--amber);
  color: #fff !important;
  border: none;
  border-radius: var(--r-pill);
  padding: 0.42rem 0.95rem;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background var(--ease), transform var(--ease);
  flex-shrink: 0;
}
.btn-route-sm:hover {
  background: var(--amber-dk);
  transform: translateY(-2px);
  color: #fff !important;
}

/* Responsive tweaks for route cards */
@media (max-width: 575.98px) {
  .route-body { padding: 1rem 1.1rem 1.25rem; }
  .route-name { font-size: 1.15rem; }
  .dest-mini { padding: 0.8rem 0.9rem; gap: 0.65rem; }
  .dest-mini-name { font-size: 0.88rem; }
  .btn-route-sm { padding: 0.38rem 0.8rem; font-size: 0.76rem; }
}

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(22px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.10); }
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes arrowBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%     { transform: translateX(-50%) translateY(9px); }
}
@keyframes callPulse {
  0%,100% { box-shadow: 0 6px 24px rgba(224,123,15,0.5); }
  50%     { box-shadow: 0 6px 40px rgba(224,123,15,0.8); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
  .section-pad { padding: 64px 0; }
}
@media (max-width: 767.98px) {
  .section-pad { padding: 52px 0; }
  .hero-text-col { padding-top: 90px; padding-bottom: 60px; }
  .hero-title { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-hero-primary,
  .hero-actions .btn-hero-wa { width: 100%; }
  .hero-stats { gap: 0.75rem 1.5rem; }
  .stat-div { display: none; }
  .map-box { min-height: 280px; }
  .section-title { font-size: 1.85rem; }
  .why-body { max-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 575.98px) {
  .hero-title { font-size: 2rem; }
  .hero-sub   { font-size: 0.91rem; }
  .dest { padding: 0.75rem 0.9rem; }
  .dest-name { font-size: 0.85rem; }
  .dest-ico { width: 30px; height: 30px; font-size: 0.78rem; border-radius: 7px; }
  .svc-card { padding: 1.5rem 1.25rem; }
  .contact-box { padding: 1.5rem; }
  .fleet-btns { flex-direction: column; }
  .fleet-btns .btn { flex: none; width: 100%; }
}





/* ============================================================
   MULTI-PAGE UPGRADE – Floating Buttons
   ============================================================ */

.float-call {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 58px;
  height: 58px;
  background: var(--amber);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 8px 25px rgba(224, 123, 15, 0.45);
  z-index: 9999;
  transition: all 0.3s ease;
}

.float-wa {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  z-index: 9999;
  transition: all 0.3s ease;
}

.float-call:hover, .float-wa:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

@media (max-width: 576px) {
  .float-call, .float-wa {
    width: 52px;
    height: 52px;
    font-size: 1.25rem;
    bottom: 15px;
  }
  .float-call { left: 15px; }
  .float-wa { right: 15px; }
}