@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

:root {
  --plum:       #FFCB00;        /* Taxi Yellow – primary brand */
  --plum-deep:  #E8A800;        /* Deep Gold – hover/active states */
  --plum-mid:   #F0D060;        /* Golden Mid – accents */
  --plum-light: #F5D878;        /* Soft Yellow – highlights */
  --plum-soft:  #FFF3CC;        /* Pale Amber – light fills */
  --plum-pale:  #FFF8E1;        /* Cream Glow – backgrounds */

  --leaf:       #FF6B00;        /* Alert Orange – CTAs, urgent badges */
  --leaf-dark:  #CC5500;        /* Deep Orange – hover on CTAs */
  --leaf-light: #FF9A3C;        /* Light Orange – icon accents */

  --gold:       #FFCB00;        /* Primary Yellow */
  --gold-light: #FFF3CC;        /* Light Yellow tint */

  --dark:       #0A0A0A;        /* Jet Black – navbar, footer, headings */
  --dark2:      #1C1C1C;        /* Charcoal – card dark bg */
  --text:       #3D2800;        /* Rich Brown – body text on light bg */
  --text-muted: #7A5C00;        /* Muted Gold Brown – secondary text */

  --white:      #FFFFFF;
  --off-white:  #FFF8E1;        /* Cream Glow */
  --cream:      #FFF3CC;        /* Pale Amber */
  --border:     #F5D878;        /* Soft Yellow border */

  --shadow-sm:  0 2px 12px rgba(255, 203, 0, 0.15);
  --shadow:     0 6px 30px rgba(255, 203, 0, 0.22);
  --shadow-md:  0 12px 50px rgba(255, 203, 0, 0.28);
  --shadow-lg:  0 20px 70px rgba(10, 10, 10, 0.35);

  --radius-sm:  8px;
  --radius:     14px;
  --radius-lg:  22px;
  --radius-xl:  32px;

  --font:       'DM Sans', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --spring:     cubic-bezier(0.34, 1.56, 0.64, 1);
  --t:          0.3s;
}

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

/* ── UTILITIES ── */
.section-pad   { padding: 90px 0; }
.bg-cream      { background: var(--cream); }
.bg-off-white  { background: var(--off-white); }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--plum-pale), var(--plum-soft));
  color: #3D2800;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 203, 0, 0.4);
}
.section-tag i, .section-tag svg { font-size: 12px; color: #7A5C00; }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.8vw, 44px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.22;
  margin-bottom: 14px;
}
.section-title em  { font-style: italic; color: var(--plum-deep); }
.section-title span { color: var(--leaf); }

.section-sub {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 580px;
}
.section-sub--center { margin: 0 auto; text-align: center; }
.text-center .section-sub{
  margin-inline: auto;
}
/* ───────────────────────────────────────────
   TOPBAR
─────────────────────────────────────────── */
.topbar {
  background: #0D0D0D;
  position: relative;
  z-index: 1001;
  overflow: hidden;
}

/* Racing stripe on bottom */
.topbar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #FFCB00 20%, #FF6B00 50%, #FFCB00 80%, transparent 100%);
}

/* Subtle diagonal texture overlay */
.topbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 20px,
    rgba(255,203,0,0.018) 20px,
    rgba(255,203,0,0.018) 21px
  );
  pointer-events: none;
}

.topbar-inner {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    padding-block: 6px;
}

/* Left items */
.topbar-left {
  display: flex;
  align-items: stretch;
}

.tb-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 20px;
    color: #fff;
    font-size: 12.5px;
    font-weight: 500;
    border-right: 1px solid rgba(255, 255, 255, 0.4);
    transition: color 0.25s, background 0.25s;
    position: relative;
    white-space: nowrap;
    text-decoration: none;
}
.tb-item:first-child{
  padding-left: 0;
}
.tb-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: #FFCB00;
  transition: width 0.3s ease;
}

.tb-item:hover { color: #FFCB00; background: rgba(255,203,0,0.05); }
.tb-item:hover::before { width: 100%; }

.tb-icon {
    width: 22px;
    height: 22px;
    border-radius: 3px;
    background: rgba(255, 203, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.25s;
    border: 1px solid #ffcb0080;
}
.tb-item:hover .tb-icon { background: rgba(255,203,0,0.2); }

.tb-icon svg {
  width: 11px; height: 11px;
  stroke: #FFCB00;
}

.tb-text { line-height: 1; }

/* Center badge */
.topbar-center {
  display: flex;
  align-items: center;
}

.tb-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 600;
  color: #888;
  letter-spacing: 0.5px;
}

.tb-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.5);
  animation: tbPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes tbPulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  60%  { box-shadow: 0 0 0 7px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

/* Right */
.topbar-right {
  display: flex;
  align-items: stretch;
}

.tb-address {
  border-right: 1px solid rgba(255,255,255,0.4);
  cursor: default;
}
.tb-address:hover { color: #BBBBBB; background: transparent; cursor: default; }
.tb-address:hover::before { width: 0; }

.topbar-socials {
  display: flex;
  align-items: stretch;
  border-left: 1px solid rgba(255,203,0,0.1);
}

.ts-link {
  display: flex; align-items: center; justify-content: center;
  width: 42px;
  color: #fff;
  font-size: 13px;
  border-right: 1px solid rgba(255,255,255,0.4);
  transition: color 0.2s, background 0.2s;
  position: relative;
  overflow: hidden;
}


.ts-link:hover::before { height: 100%; }
.ts-link:hover { color: #FFCB00; }
.ts-link.ts-wa { color: #4CAF50; }
.ts-link.ts-wa:hover { color: #66BB6A; }
.ts-link:last-child { border-right: none; }


/* ───────────────────────────────────────────
   MAIN NAVBAR
─────────────────────────────────────────── */
.main-navbar {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s, background 0.3s;
}

/* Yellow bottom accent line */
.main-navbar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FFCB00 0%, #FF6B00 50%, #FFCB00 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.main-navbar.scrolled::after { transform: scaleX(1); }
.main-navbar.scrolled {
  box-shadow: 0 4px 40px rgba(0,0,0,0.10);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 16px;
}

/* Logo */
.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  position: relative;
}
.nav-logo img { height: 66px; width: auto; }

/* ── Nav links ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.nl-item { position: relative; }

.nl-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 15.5px;
    font-weight: 600;
    color: #222;
    padding: 8px 7px;
    border-radius: 8px;
    white-space: nowrap;
    transition: color 0.2s, background 0.2s;
    position: relative;
    letter-spacing: -0.02em;
}

/* Underline slide-in */
.nl-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 12px; right: 12px;
  height: 2px;
  background: #FFCB00;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.nl-item:hover .nl-link::after,
.nl-item.active .nl-link::after { transform: scaleX(1); }

.nl-link:hover,
.nl-item.active .nl-link { color: #0A0A0A; background: rgba(255,203,0,0.08); }

.nl-arrow {
  width: 10px; height: 10px;
  stroke: #999;
  transition: transform 0.25s, stroke 0.25s;
  flex-shrink: 0;
}
.nl-item.has-dropdown:hover .nl-arrow {
  transform: rotate(180deg);
  stroke: #FFCB00;
}

/* ── Dropdown ── */
.nl-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #fff;
  border-radius: 14px;
  min-width: 300px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.13), 0 0 0 1px rgba(255,203,0,0.15);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s, transform 0.22s, visibility 0.22s;
  z-index: 999;
  overflow: hidden;
}

/* Yellow top accent */
.nl-dropdown::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FFCB00, #FF6B00);
}

/* Arrow pointer */
.nl-dropdown::after {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-bottom-color: #FFCB00;
  border-top: none;
}

.nl-item.has-dropdown:hover .nl-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nld-inner { padding: 10px; }

/* Dropdown link with icon + body */
.nld-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  border-radius: 8px;
  color: #333;
  font-size: 13px;
  transition: background 0.18s, color 0.18s, transform 0.18s;
  position: relative;
  overflow: hidden;
}

.nld-link::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: #FFCB00;
  border-radius: 3px;
  transform: scaleY(0);
  transition: transform 0.2s;
}
.nld-link:hover::before { transform: scaleY(1); }
.nld-link:hover { background: #FFFBEE; color: #0A0A0A; transform: translateX(3px); }

.nld-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(255,203,0,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
  color: #CC9900;
  transition: background 0.18s, color 0.18s;
}
.nld-link:hover .nld-icon { background: #FFCB00; color: #0A0A0A; }

.nld-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nld-body strong {
  font-size: 13px;
  font-weight: 600;
  color: #1A1A1A;
  display: block;
}
.nld-body small {
  font-size: 11px;
  color: #999;
  font-weight: 400;
}

/* Wide dropdown — routes grid */
.nl-dropdown--wide {
  min-width: 480px;
  left: auto;
  right: -20px;
  transform: translateY(8px);
}
.nl-dropdown--wide::after { left: auto; right: 60px; transform: none; }
.nl-item.has-dropdown:hover .nl-dropdown--wide {
  transform: translateY(0);
}

.nld-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  padding: 10px;
}

.nld-link--slim {
  padding: 8px 12px;
  font-size: 12.5px;
  color: #444;
  border-radius: 7px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: background 0.18s, color 0.18s, padding-left 0.18s;
  position: relative;
}
.nld-link--slim::before {
  content: '→';
  font-size: 11px;
  color: #FFCB00;
  opacity: 0;
  transition: opacity 0.18s;
  flex-shrink: 0;
}
.nld-link--slim:hover { background: #FFFBEE; color: #0A0A0A; padding-left: 14px; }
.nld-link--slim:hover::before { opacity: 1; }


/* ── Nav actions ── */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.na-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #25D366;
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background 0.22s, transform 0.22s, box-shadow 0.22s;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.na-whatsapp::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%);
  transition: transform 0.3s;
}
.na-whatsapp:hover::before { transform: translateX(0); }
.na-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
.na-whatsapp .fab { font-size: 15px; }

.na-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #FFF8E1;
  color: #3D2800;
  font-size: 12.5px;
  font-weight: 700;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1.5px solid #F5D878;
  transition: border-color 0.22s, background 0.22s, transform 0.22s;
  white-space: nowrap;
}
.na-phone svg { width: 14px; height: 14px; stroke: #CC9900; }
.na-phone:hover { border-color: #FFCB00; background: #FFF3CC; transform: translateY(-2px); color: #3D2800; }

.na-book {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0A0A0A;
  color: #FFCB00;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 10px;
  border-radius: 8px;
  transition: background 0.22s, transform 0.22s, box-shadow 0.22s;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  z-index: 1;
  letter-spacing: 0.2px;
}
.na-book::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #FFCB00;
  transform: translateX(-101%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
.na-book:hover::before { transform: translateX(0); }
.na-book:hover { color: #0A0A0A; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,203,0,0.4); }
.na-book span,
.na-book .fas { position: relative; z-index: 1; }


/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 9px;
  border-radius: 8px;
  background: transparent;
  transition: background 0.2s;
  cursor: pointer;
}
.hamburger:hover { background: #FFF8E1; }
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: #0A0A0A;
  border-radius: 2px;
  transition: transform 0.32s, opacity 0.25s, width 0.25s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }


/* ───────────────────────────────────────────
   MOBILE MENU
─────────────────────────────────────────── */
.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 1099;
  opacity: 0; visibility: hidden;
  transition: opacity 0.32s, visibility 0.32s;
}
.mobile-overlay.active { opacity: 1; visibility: visible; }

.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 320px; max-width: 92vw;
  height: 100dvh;
  background: #0A0A0A;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

/* Left accent stripe */
.mobile-menu::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #FFCB00 0%, #FF6B00 50%, #FFCB00 100%);
}

.mobile-menu.active { transform: translateX(0); }

.mm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 18px 26px;
  background: #111;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255,203,0,0.12);
  position: relative;
}
.mm-header::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 26px;
  width: 40px; height: 2px;
  background: #FFCB00;
}

.mm-logo { 
    height: 120px;
    /* filter: brightness(0) invert(1); */
    background: #fff;
    border-radius: 10px;
    padding: 4px;
  }

.mm-close {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,203,0,0.1);
  color: #FFCB00;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
  cursor: pointer;
}
.mm-close:hover { background: rgba(255,203,0,0.22); transform: rotate(90deg); }

.mm-body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0;
}
.mm-body::-webkit-scrollbar { width: 3px; }
.mm-body::-webkit-scrollbar-track { background: transparent; }
.mm-body::-webkit-scrollbar-thumb { background: rgba(255,203,0,0.3); border-radius: 3px; }

.mm-nav { padding: 4px 0; }

.mm-item + .mm-item { border-top: 1px solid rgba(255,255,255,0.04); }

/* Links & toggle buttons */
.mm-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 13px 20px 13px 26px;
  color: #CCC;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: color 0.2s, background 0.2s;
  position: relative;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  background: transparent;
  border: none;
  font-family: var(--font, 'DM Sans', sans-serif);
  justify-content: start;
}

.mm-link::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 3px; height: 60%;
  background: #FFCB00;
  border-radius: 3px;
  transition: transform 0.25s;
}
.mm-link:hover::before,
.mm-has-sub.open > .mm-link::before { transform: translateY(-50%) scaleY(1); }
.mm-link:hover { color: #FFCB00; background: rgba(255,203,0,0.05); }

.mm-link-icon {
  color: #FFCB00;
  font-size: 13px;
  margin-right: 10px;
  width: 16px;
  text-align: center;
}

.mm-chev {
  font-size: 10px;
  color: #fff;
  transition: transform 0.3s, color 0.2s;
  flex-shrink: 0;
  margin-left: auto;
}
.mm-has-sub.open > .mm-toggle .mm-chev {
  transform: rotate(180deg);
  color: #FFCB00;
}

/* Sub menu */
.mm-sub {
  display: none;
  background: #0F0F0F;
  border-left: 3px solid rgba(255,203,0,0.3);
  margin: 0 0 4px 20px;
  border-radius: 0 0 8px 8px;
}
.mm-sub.open { display: block; }

.mm-sub li a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  color: #888;
  font-size: 13px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.2s, padding-left 0.2s;
  text-decoration: none;
  position: relative;
}
.mm-sub li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: rgba(255,203,0,0.2);
  transition: width 0.25s;
}
.mm-sub li a:hover::after { width: 100%; }
.mm-sub li a:hover { color: #FFCB00; padding-left: 22px; }
.mm-sub li a .fas { font-size: 11px; color: rgba(255,203,0,0.5); width: 14px; text-align: center; flex-shrink: 0; }

.mm-sub--routes li a { font-size: 12.5px; gap: 6px; }
.mm-sub--routes li a::before {
  content: '→';
  font-size: 11px;
  color: rgba(255,203,0,0.4);
  flex-shrink: 0;
}

/* Mobile footer */
.mm-footer {
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #111;
  border-top: 1px solid rgba(255,203,0,0.12);
  flex-shrink: 0;
}

.mm-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: transparent;
  border: 1.5px solid rgba(255,203,0,0.3);
  color: #FFCB00;
  font-size: 13.5px;
  font-weight: 700;
  padding: 12px;
  border-radius: 10px;
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
}
.mm-call-btn svg { width: 16px; height: 16px; stroke: #FFCB00; }
.mm-call-btn:hover { background: rgba(255,203,0,0.1); border-color: #FFCB00; color: #FFCB00; }

.mm-book-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: #FFCB00;
  color: #0A0A0A;
  font-size: 13.5px;
  font-weight: 700;
  padding: 12px;
  border-radius: 10px;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
  font-family: var(--font, 'DM Sans', sans-serif);
}
.mm-book-btn:hover { background: #E8A800; transform: translateY(-1px); color: #0A0A0A; }


/* ───────────────────────────────────────────
   CTA SECTION
─────────────────────────────────────────── */
.cta-section {
  background: #0A0A0A;
  position: relative;
  overflow: hidden;
  padding: 50px 0;
}

/* Diagonal yellow stripe BG */
.cta-section::before {
  content: '';
  position: absolute;
  top: -30px; right: -60px;
  width: 400px; height: calc(100% + 60px);
  background: rgba(255,203,0,0.04);
  transform: skewX(-12deg);
  pointer-events: none;
}

/* Decorative large circle */
.cta-section::after {
  content: '';
  position: absolute;
  top: 50%; right: 80px;
  transform: translateY(-50%);
  width: 280px; height: 280px;
  border-radius: 50%;
  border: 45px solid rgba(255,203,0,0.04);
  pointer-events: none;
}

.cta-bg-stripe {
  position: absolute;
  top: 0; left: 0;
  width: 6px; height: 100%;
  background: linear-gradient(180deg, #FFCB00 0%, #FF6B00 50%, #FFCB00 100%);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-left { max-width: 460px; }

.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FFCB00;
  margin-bottom: 12px;
}

.cta-pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.5);
  animation: tbPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

.cta-title {
  font-family: var(--font-serif, 'Playfair Display', serif);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 10px;
}
.cta-title em {
  font-style: italic;
  color: #FFCB00;
  position: relative;
}
/* Underline on em */
.cta-title em::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 2px;
  background: #FF6B00;
  border-radius: 2px;
  opacity: 0.6;
}

.cta-sub {
  color: #777;
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

/* CTA Buttons */
.cta-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
  min-width: 160px;
  cursor: pointer;
}
.cta-btn:hover { transform: translateY(-3px); }

.cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  transform: translateY(101%);
  transition: transform 0.3s;
}
.cta-btn:hover::before { transform: translateY(0); }

.cta-btn-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  transition: transform 0.25s;
}
.cta-btn:hover .cta-btn-icon { transform: scale(1.1); }

.cta-btn-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}
.cta-btn-body small {
  font-size: 10px;
  opacity: 0.7;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.cta-btn-body > :last-child {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

/* Call btn */
.cta-btn--call {
  background: #FFCB00;
  color: #0A0A0A;
}
.cta-btn--call .cta-btn-icon { background: rgba(0,0,0,0.12); }
.cta-btn--call .cta-btn-icon svg { width: 18px; height: 18px; stroke: #0A0A0A; }
.cta-btn--call:hover { box-shadow: 0 10px 32px rgba(255,203,0,0.45); color: #0A0A0A; }

/* WhatsApp btn */
.cta-btn--wa {
  background: #1B5E20;
  color: #fff;
  border: 1px solid rgba(37,211,102,0.25);
}
.cta-btn--wa .cta-btn-icon { background: rgba(37,211,102,0.15); color: #4CAF50; }
.cta-btn--wa:hover { box-shadow: 0 10px 32px rgba(37,211,102,0.3); color: #fff; }

/* Book form btn */
.cta-btn--form {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.12);
}
.cta-btn--form .cta-btn-icon { background: rgba(255,203,0,0.12); color: #FFCB00; }
.cta-btn--form:hover { border-color: #FFCB00; box-shadow: 0 10px 32px rgba(255,203,0,0.2); color: #fff; }


/* ───────────────────────────────────────────
   FOOTER
─────────────────────────────────────────── */
.site-footer {
  background: #0A0A0A;
  position: relative;
  overflow: hidden;
}

/* Decorative road lines BG */
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FFCB00 0%, #FF6B00 40%, #FFCB00 70%, #FF6B00 100%);
  background-size: 200% 100%;
  animation: footerStripe 4s linear infinite;
}

@keyframes footerStripe {
  0%   { background-position: 200% 0; }
  100% { background-position: 0% 0; }
}

/* Large yellow circle decorative */
.site-footer::after {
  content: '';
  position: absolute;
  bottom: -120px; right: -120px;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 60px solid rgba(255,203,0,0.03);
  pointer-events: none;
}

/* ── Footer Topbar ── */
.footer-topbar {
  background: #111;
  border-bottom: 1px solid rgba(255,203,0,0.1);
  padding: 14px 0;
  position: relative;
}
.footer-topbar::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: #FFCB00;
}

.ftb-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.ftb-tagline {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #888;
}
.ftb-tagline .fas {
  color: #FFCB00;
  font-size: 12px;
}

.ftb-book {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFCB00;
  color: #0A0A0A;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.ftb-book::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  transform: skewX(-20deg);
  transition: left 0.4s;
}
.ftb-book:hover::after { left: 120%; }
.ftb-book:hover { background: #E8A800; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,203,0,0.4); color: #0A0A0A; }


/* ── Footer Main ── */
.footer-main {
  padding: 60px 0 50px;
  position: relative;
  z-index: 1;
}

/* Brand */
.fc-brand {}
.fc-logo {
  height: 100px;
  margin-bottom: 18px;
}

.fc-desc {
  font-size: 13.5px;
  line-height: 1.75;
  color: #fff;
  max-width: 300px;
  margin-bottom: 20px;
}

/* Stats row */
.fc-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: #111;
  border: 1px solid rgba(255,203,0,0.1);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.fc-stat {
  flex: 1;
  text-align: center;
  padding: 12px 10px;
  position: relative;
}
.fc-stat strong {
  display: block;
  font-size: 17px;
  font-weight: 800;
  color: #FFCB00;
  line-height: 1.1;
}
.fc-stat span {
  display: block;
  font-size: 10px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

.fc-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,203,0,0.12);
  flex-shrink: 0;
}

/* Social */
.fc-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fc-social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,203,0,0.15);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 13px;
  transition: background 0.22s, border-color 0.22s, color 0.22s, transform 0.22s;
  position: relative;
  overflow: hidden;
}
.fc-social a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #FFCB00;
  transform: scale(0);
  border-radius: 50%;
  transition: transform 0.3s;
}
.fc-social a:hover::before { transform: scale(1.6); border-radius: 0; }
.fc-social a .fab { position: relative; z-index: 1; }
.fc-social a:hover { color: #0A0A0A; border-color: #FFCB00; transform: translateY(-3px); }
.fc-social a .fa-whatsapp { color: #25D366; }
.fc-social a:hover .fa-whatsapp { color: #0A0A0A; }

/* Footer columns */
.fc-col {}

.fc-heading {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #FFCB00;
  margin-bottom: 20px;
  padding-bottom: 12px;
  position: relative;
}
.fc-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 2px;
  background: #FF6B00;
  border-radius: 2px;
}

/* Footer links */
.fc-list {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.fc-list li a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 6px 0;
  font-size: 13.5px;
  color: #fff;
  font-weight: 500;
  transition: color 0.2s, gap 0.2s;
  text-decoration: none;
  position: relative;
}

.fc-list li a::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,203,0,0.4);
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}
.fc-list li a:hover { color: #FFCB00; gap: 12px; }
.fc-list li a:hover::before { background: #FFCB00; transform: scale(1.4); }

/* Footer contact */
.fc-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fc-contact > li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.fcc-icon {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: rgba(255,203,0,0.08);
  border: 1px solid rgba(255,203,0,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}
.fcc-icon::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0;
  background: rgba(255,203,0,0.12);
  transition: height 0.25s;
}
.fc-contact > li:hover .fcc-icon::after { height: 100%; }
.fc-contact > li:hover .fcc-icon { border-color: rgba(255,203,0,0.25); }

.fcc-icon svg { width: 16px; height: 16px; stroke: #FFCB00; position: relative; z-index: 1; }

.fcc-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.fcc-body small {
  font-size: 10px;
  color: #b1b1b1;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.fcc-body a,
.fcc-body span {
  font-size: 13.5px;
  color: #fff;
  font-weight: 500;
  line-height: 1.5;
  transition: color 0.2s;
  text-decoration: none;
}
.fcc-body a:hover { color: #FFCB00; }

/* Footer bottom */
.footer-bottom {
  background: #060606;
  border-top: 1px solid rgba(255,255,255,0.5);
  padding: 16px 0;
  position: relative;
  z-index: 1;
}
.fb-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.fb-inner p {
  font-size: 12.5px;
  color: #ffffffec;
  margin: 0;
}
.fb-inner a {
  color: #FFCB00;
  font-weight: 600;
  transition: color 0.2s;
}
.fb-inner a:hover { color: #E8A800; }


/* ───────────────────────────────────────────
   FLOATING BUTTONS
─────────────────────────────────────────── */
.float-cluster {
  position: fixed;
  bottom: 28px; right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 900;
}

.float-btn {
  position: relative;
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.28s;
  text-decoration: none;
}

/* Ring before pseudo */
.float-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: border-color 0.3s, inset 0.3s;
}
.float-btn:hover::before {
  inset: -7px;
  border-color: currentColor;
  opacity: 0.25;
}

.float-btn svg { width: 22px; height: 22px; position: relative; z-index: 1; }

.float-wa {
  background: #25D366;
  color: #fff;
  animation: floatWaPulse 2.5s ease-in-out infinite;
}
.float-wa svg { fill: #fff; }
.float-wa:hover { transform: scale(1.15); animation: none; box-shadow: 0 8px 28px rgba(37,211,102,0.55); }

@keyframes floatWaPulse {
  0%   { box-shadow: 0 4px 18px rgba(37,211,102,0.35), 0 0 0 0 rgba(37,211,102,0.45); }
  60%  { box-shadow: 0 4px 18px rgba(37,211,102,0.35), 0 0 0 12px rgba(37,211,102,0); }
  100% { box-shadow: 0 4px 18px rgba(37,211,102,0.35), 0 0 0 0 rgba(37,211,102,0); }
}

.float-call {
  background: #FFCB00;
  color: #0A0A0A;
  animation: floatCallPulse 2.5s ease-in-out infinite 1.25s;
}
.float-call svg { stroke: #0A0A0A; fill: none; }
.float-call:hover { transform: scale(1.15); animation: none; box-shadow: 0 8px 28px rgba(255,203,0,0.6); }
.float-call i{
  
    font-size: 22px;
    color: #000;
}
@keyframes floatCallPulse {
  0%   { box-shadow: 0 4px 18px rgba(255,203,0,0.4), 0 0 0 0 rgba(255,203,0,0.5); }
  60%  { box-shadow: 0 4px 18px rgba(255,203,0,0.4), 0 0 0 12px rgba(255,203,0,0); }
  100% { box-shadow: 0 4px 18px rgba(255,203,0,0.4), 0 0 0 0 rgba(255,203,0,0); }
}

/* Tooltip */
.float-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: #0A0A0A;
  color: #FFCB00;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 7px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s, transform 0.22s;
  border: 1px solid rgba(255,203,0,0.2);
  letter-spacing: 0.3px;
}
.float-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%; transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: #0A0A0A;
}
.float-btn:hover .float-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}


/* ───────────────────────────────────────────
   POPUP FORM
─────────────────────────────────────────── */
.popup-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.32s, visibility 0.32s;
}
.popup-overlay.active { opacity: 1; visibility: visible; }

.popup-box {
  display: flex;
  width: 100%;
  max-width: 820px;
  border-radius: 20px;
  overflow: hidden;
  transform: scale(0.9) translateY(24px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
  max-height: 92vh;
}
.popup-overlay.active .popup-box { transform: scale(1) translateY(0); }

/* Left panel */
.popup-left {
  width: 260px;
  flex-shrink: 0;
  background: #0A0A0A;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

/* Diagonal stripe on left panel */
.popup-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 22px,
    rgba(255,203,0,0.025) 22px,
    rgba(255,203,0,0.025) 23px
  );
}

/* Yellow right border */
.popup-left::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #FFCB00 0%, #FF6B00 50%, #FFCB00 100%);
}

.popup-left-inner {
  padding: 36px 28px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.pl-logo {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: #FFCB00;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  position: relative;
}
.pl-logo::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 18px;
  border: 1.5px solid rgba(255,203,0,0.25);
}

.pl-car-icon { font-size: 22px; color: #0A0A0A; }

.pl-title {
  font-family: var(--font-serif, 'Playfair Display', serif);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 8px;
}
.pl-sub {
  font-size: 12.5px;
  color: #fff;
  line-height: 1.65;
  margin-bottom: 24px;
}

.pl-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.pl-perks li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  color: #888;
  font-weight: 500;
}
.pl-perks li .fas {
  color: #FFCB00;
  font-size: 12px;
  flex-shrink: 0;
}

.pl-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}
.pl-contact a {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
  transition: color 0.2s;
  text-decoration: none;
}
.pl-contact a .fas,
.pl-contact a .fab { color: #FFCB00; font-size: 13px; width: 16px; text-align: center; }
.pl-contact a:hover { color: #FFCB00; }

/* Right panel — form */
.popup-right {
  flex: 1;
  background: #fff;
  padding: 36px 32px 32px;
  overflow-y: auto;
  position: relative;
}
.popup-right::-webkit-scrollbar { width: 4px; }
.popup-right::-webkit-scrollbar-track { background: #f5f5f5; }
.popup-right::-webkit-scrollbar-thumb { background: #FFCB00; border-radius: 4px; }

/* Close btn */
.popup-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 34px; height: 34px;
  border-radius: 8px;
  background: #F5F5F5;
  display: flex; align-items: center; justify-content: center;
  color: red;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  cursor: pointer;
  border: none;
}
.popup-close svg { width: 15px; height: 15px; }
.popup-close:hover { background: #FFCB00; color: #0A0A0A; transform: rotate(90deg); }

.popup-form-title {
  font-family: var(--font-serif, 'Playfair Display', serif);
  font-size: 22px;
  font-weight: 700;
  color: #0A0A0A;
  margin-bottom: 4px;
  position: relative;
  padding-bottom: 14px;
}
.popup-form-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 36px; height: 3px;
  background: #FFCB00;
  border-radius: 3px;
}

.popup-form-sub {
  font-size: 13px;
  color: #999;
  margin-bottom: 24px;
}

.popup-form { display: flex; flex-direction: column; gap: 0; }

.pf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.pf-group { display: flex; flex-direction: column; gap: 5px; }
.pf-group--full { margin-bottom: 14px; }

.pf-label {
  font-size: 11px;
  font-weight: 700;
  color: #3D2800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.pf-optional { color: #BBB; font-weight: 400; text-transform: none; letter-spacing: 0; }

.pf-field {
  position: relative;
  display: flex;
  align-items: flex-start;
}

.pf-icon {
  position: absolute;
  left: 12px; top: 12px;
  color: #FFCB00;
  font-size: 13px;
  pointer-events: none;
  transition: color 0.2s;
  z-index: 1;
}
.pf-icon--top { top: 13px; }

/* Fields */
.pf-field input,
.pf-field textarea,
.pf-field select {
  width: 100%;
  padding: 11px 13px 11px 38px;
  border: 1.5px solid #EEE;
  border-radius: 10px;
  font-size: 13.5px;
  color: #1A1A1A;
  background: #FAFAFA;
  outline: none;
  transition: border-color 0.22s, background 0.22s, box-shadow 0.22s;
  resize: none;
  font-family: var(--font, 'DM Sans', sans-serif);
  appearance: none;
  -webkit-appearance: none;
}
.pf-field input::placeholder,
.pf-field textarea::placeholder { color: #CCC; font-size: 13px; }
.pf-field input:focus,
.pf-field textarea:focus,
.pf-field select:focus {
  border-color: #FFCB00;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255,203,0,0.15);
}
.pf-field input:focus ~ .pf-icon,
.pf-field textarea:focus ~ .pf-icon { color: #CC9900; }

/* Select arrow */
.pf-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23FFCB00' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
  cursor: pointer;
}

.pf-field textarea { min-height: 85px; padding-top: 11px; }

/* Submit */
.pf-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: #0A0A0A;
  color: #FFCB00;
  font-size: 14px;
  font-weight: 700;
  padding: 14px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
  font-family: var(--font, 'DM Sans', sans-serif);
  margin-top: 4px;
}
.pf-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #FFCB00;
  transform: translateX(-101%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.pf-submit:hover::before { transform: translateX(0); }
.pf-submit:hover { color: #0A0A0A; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,203,0,0.35); }
.pf-submit .fas,
.pf-submit span { position: relative; z-index: 1; }


/* ───────────────────────────────────────────
   RESPONSIVE
─────────────────────────────────────────── */
@media (max-width: 1199.98px) {
  .nl-link { font-size: 13px; padding: 7px 10px; }
  .na-phone { display: none; }
}

@media (max-width: 991.98px) {
  .nav-links { display: none; }
  .na-whatsapp span { display: none; }
  .na-whatsapp { padding: 9px 12px; }
  .hamburger { display: flex; }
  .d-none.d-lg-block { display: none !important; }
  .d-none.d-lg-flex { display: none !important; }
  .popup-box { max-width: 520px; }
  .popup-left { display: none; }
}

@media (max-width: 767.98px) {
  .cta-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .cta-right { width: 100%; flex-direction: column; }
  .cta-btn { min-width: unset; width: 100%; }
  .pf-row { grid-template-columns: 1fr; }
  .footer-main { padding: 40px 0 36px; }
  .ftb-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .fb-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 575.98px) {
  .mobile-menu { width: 100%; max-width: 100vw; }
  .popup-right { padding: 28px 20px 24px; }
  .float-cluster { bottom: 18px; right: 14px; }
  .float-btn { width: 48px; height: 48px; }
  .float-btn svg { width: 20px; height: 20px; }
}
/* ═══════════════════════════════════════════════
   HERO SECTION — hs-* namespace
═══════════════════════════════════════════════ */

.hs-root {
  position: relative;
  background: #0A0A0A;
}

/* ── Swiper wrapper ── */
.hs-swiper {
  width: 100%;
  height: 70vh;
}

/* ── Individual slide ── */
.hs-slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
}

.heroo_inner{
    background: #00000099;
    padding: 15px;
    border-left: 2px solid var(--gold);
    border-radius: 0 15px 15px 0;
    max-width: 567px;
}
/* ── Content block ── */
.hs-swiper .container { height: 100%; }

.hs-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 60px 0 60px;      /* bottom pad leaves room for booking card */
  max-width: 680px;
  position: relative;
  z-index: 2;
}

/* ── Eyebrow ── */
.hs-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #FFCB00;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}
.hs-eyebrow svg { width: 14px; height: 14px; stroke: #FFCB00; flex-shrink: 0; }

/* ── Title ── */
.hs-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin: 0 0 22px;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease 0.22s, transform 0.65s ease 0.22s;
}

/* italic word = yellow */
.hs-title em {
  font-style: italic;
  color: #FFCB00;
}

/* highlighted word = orange underline treatment */
.hs-title mark {
  background: none;
  color: #fff;
  position: relative;
  display: inline-block;
}
.hs-title mark::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 4px;
  height: 4px;
  background: linear-gradient(90deg, #FFCB00, #FF6B00);
  border-radius: 4px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1) 0.8s;
}

/* ── Sub text ── */
.hs-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 0 34px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.35s, transform 0.6s ease 0.35s;
}

/* ── Actions ── */
.hs-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.48s, transform 0.6s ease 0.48s;
}

/* Primary button */
.hs-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s, color 0.25s;
  white-space: nowrap;
  letter-spacing: 0.2px;
}
.hs-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.hs-btn--primary {
  background: #FFCB00;
  color: #0A0A0A;
  box-shadow: 0 6px 24px rgba(255,203,0,0.35);
}
.hs-btn--primary:hover {
  background: #E8A800;
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(255,203,0,0.5);
  color: #0A0A0A;
}

.hs-btn--ghost {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}
.hs-btn--ghost:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.55);
  transform: translateY(-3px);
  color: #fff;
}

/* ── Animate-in when swiper marks slide active ── */
.swiper-slide-active .hs-eyebrow,
.swiper-slide-active .hs-title,
.swiper-slide-active .hs-sub,
.swiper-slide-active .hs-actions {
  opacity: 1;
  transform: translateY(0);
}
.swiper-slide-active .hs-title mark::after {
  transform: scaleX(1);
}

/* ── Slide counter ── */
.hs-counter {
  position: absolute;
  right: 48px;
  bottom: 20px;                /* above booking card */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 10;
}
.hs-counter-cur {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: #FFCB00;
  line-height: 1;
}
.hs-counter-sep {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.25);
}
.hs-counter-total {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
}

/* ── Pagination dots ── */
.hs-pagination {
  position: absolute;
  left: 0; right: 0;
  bottom: 168px;                /* sits just above booking card */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.hs-pagination .swiper-pagination-bullet {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  opacity: 1;
  transition: width 0.3s, background 0.3s, border-radius 0.3s;
  cursor: pointer;
}
.hs-pagination .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 4px;
  background: #FFCB00;
}

/* ── Nav arrows ── */
.hs-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.hs-nav svg { width: 20px; height: 20px; }
.hs-nav--prev { left: 28px; }
.hs-nav--next { right: 28px; }
.hs-nav:hover {
  background: #FFCB00;
  border-color: #FFCB00;
  color: #0A0A0A;
}
.hs-nav:hover svg { stroke: #0A0A0A; }

/* ── Decorative yellow left stripe ── */
.hs-root::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, #FFCB00 0%, #FF6B00 50%, #FFCB00 100%);
  z-index: 20;
  pointer-events: none;
}


/* ═══════════════════════════════════════════════
   BOOKING CARD — bk-* namespace
   Overlaps hero bottom edge
═══════════════════════════════════════════════ */

.bk-wrap {
    position: absolute;
    z-index: 30;
    transform: translateY(-50%);
    top: 50%;
    right: 10%;
    max-width: 420px;
}

.bk-card {
    background: #fff;
    border-radius: 0px 10px 10px 0;
    padding: 15px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(255, 203, 0, 0.12);
    position: relative;
    overflow: hidden;
}

/* Yellow top accent bar */
.bk-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(90deg, #FFCB00 0%, #FF6B00 40%, #FFCB00 100%);
  background-size: 200% 100%;
  animation: bkStripe 3s linear infinite;
}

@keyframes bkStripe {
  0%   { background-position: 200% 0; }
  100% { background-position: 0% 0; }
}

/* Label pill */
.bk-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #0A0A0A;
  color: #FFCB00;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.bk-label svg { width: 13px; height: 13px; stroke: #FFCB00; }

/* Fields row */
.bk-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.bk-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
    width: calc(50% - 6px);
}
.bk-field.full__width{
  width: 100%;
}

.bk-field-label {
  font-size: 10.5px;
  font-weight: 700;
  color: #7A5C00;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.bk-input-wrap {
  position: relative;
}

.bk-ico {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px; height: 15px;
  stroke: #FFCB00;
  pointer-events: none;
  flex-shrink: 0;
  z-index: 1;
}

/* Drop location icon — orange tint */
.bk-ico--drop { stroke: #FF6B00; }

.bk-input-wrap input {
    width: 100%;
    padding: 11px 12px 11px 36px;
    border: 1.5px solid #2c2c2c;
    border-radius: 6px;
    font-size: 13px;
    color: #1A1A1A;
    background: #ededed75;
    outline: none;
    font-family: 'DM Sans', sans-serif;
    transition: border-color 0.22s, background 0.22s, box-shadow 0.22s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.bk-input-wrap input::placeholder { color: #5f5f5f; font-size: 12.5px; }
.bk-input-wrap input:focus {
  border-color: #FFCB00;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255,203,0,0.14);
}

/* Divider between pickup/drop — visual arrow */
.bk-field + .bk-field .bk-ico--drop::before {
  content: none;
}

/* Submit button */
.bk-field--submit { min-width: 0; }

.bk-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: #0A0A0A;
  color: #FFCB00;
  font-size: 13.5px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, color 0.3s;
  width: 100%;
}
.bk-submit svg { width: 16px; height: 16px; flex-shrink: 0; position: relative; z-index: 1; }
.bk-submit span { position: relative; z-index: 1; }

.bk-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #FFCB00;
  transform: translateX(-101%);
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
}
.bk-submit:hover::before { transform: translateX(0); }
.bk-submit:hover {
  color: #0A0A0A;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255,203,0,0.38);
}

/* Error state */
.bk-input-wrap input.bk-error { border-color: #FF4444 !important; }

/* ── Hero bottom spacing to account for card overhang ── */


/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */

/* Large: 5 cols + button */
@media (max-width: 1199.98px) {
  .bk-field--submit {
    grid-column: 1 / -1;
  }
}

@media (max-width: 991.98px) {
  .hs-nav { display: none; }
  .hs-counter { display: none; }
  .hs-pagination { bottom: 190px; }
  .bk-card { padding: 22px 20px 24px; }
  .bk-field--submit { grid-column: 1 / -1; }
}

@media (max-width: 767.98px) {
  .hs-title { font-size: clamp(30px, 8vw, 48px); }
  .bk-field--submit { grid-column: auto; }
  .hs-pagination { bottom: 210px; }
}

@media (max-width: 575.98px) {
  .bk-card { border-radius: 14px; padding: 18px 16px 20px; }
}
/* ═══════════════════════════════════
   ABOUT SECTION V2
═══════════════════════════════════ */
.about2-section {
  padding: 35px 0;
  background: var(--off-white);
}

.about2-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ── LEFT CONTENT ── */
.about2-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #CC9900;
}

.about2-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #FFCB00;
  flex-shrink: 0;
}

.about2-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.22;
  margin: 0;
}

.about2-title em {
  font-style: italic;
  color: #FFCB00;
}

.about2-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

/* Feature cards */
.about2-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about2-feat {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
}

.about2-feat::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 14px 14px 0 0;
}

.about2-feat--yellow::before { background: #FFCB00; }
.about2-feat--orange::before { background: #FF6B00; }
.about2-feat--green::before  { background: #22C55E; }
.about2-feat--blue::before   { background: #3B82F6; }

.about2-feat:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.about2-feat-ico {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.about2-feat--yellow .about2-feat-ico { background: rgba(255,203,0,0.15); color: #CC9900; }
.about2-feat--orange .about2-feat-ico { background: rgba(255,107,0,0.12); color: #FF6B00; }
.about2-feat--green  .about2-feat-ico { background: rgba(34,197,94,0.12);  color: #16A34A; }
.about2-feat--blue   .about2-feat-ico { background: rgba(59,130,246,0.12); color: #2563EB; }

.about2-feat strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
}

.about2-feat p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* Stats */
.about2-stats {
  display: flex;
  align-items: center;
  background: #0A0A0A;
  border-radius: 12px;
  overflow: hidden;
}

.about2-stat {
  flex: 1;
  padding: 16px 14px;
  text-align: center;
}

.about2-stat strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #FFCB00;
  line-height: 1;
  margin-bottom: 4px;
}

.about2-stat span {
  display: block;
  font-size: 10px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.about2-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,203,0,0.15);
  flex-shrink: 0;
}

/* CTA Row */
.about2-cta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.about2-btn-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFCB00;
  color: #0A0A0A;
  font-size: 13px;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: 8px;
  text-decoration: none;
  transition: background var(--t), transform var(--t);
}

.about2-btn-main:hover {
  background: #E8A800;
  transform: translateY(-2px);
  color: #0A0A0A;
}

.about2-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--dark);
  font-size: 13px;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  text-decoration: none;
  transition: border-color var(--t), background var(--t), transform var(--t);
}

.about2-btn-ghost:hover {
  border-color: var(--dark);
  transform: translateY(-2px);
  color: var(--dark);
}

/* ── RIGHT IMAGE GRID ── */
.about2-right {
  position: relative;
}

.about2-img-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 12px;
  align-items: stretch;
}

.about2-img-main {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 440px;
}

.about2-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about2-img-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.about2-img-sm {
  border-radius: 14px;
  overflow: hidden;
  flex: 1;
}

.about2-img-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Floating badges */
.about2-img-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  z-index: 2;
  min-width: 160px;
}

.about2-img-badge--tl {
  bottom: 16px;
  left: 16px;
}

.about2-img-badge--br {
  bottom: 0;
  left: -20px;
}

.about2-img-badge i {
  font-size: 18px;
  color: #FFCB00;
  flex-shrink: 0;
}

.about2-img-badge strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 2px;
}

.about2-img-badge span {
  font-size: 10px;
  color: var(--text-muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 991.98px) {
  .about2-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about2-img-main { height: 320px; }
}

@media (max-width: 575.98px) {
  .about2-features { grid-template-columns: 1fr; }
  .about2-img-grid { grid-template-columns: 1fr; }
  .about2-img-side { flex-direction: row; height: 160px; }
  .about2-img-badge--br { display: none; }
}
/* ═══════════════════════════════════
   SERVICES SECTION V2
═══════════════════════════════════ */
.svc2-section {
  background: var(--cream);
}



.svc2-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--dark);
  border-bottom: 2px solid #FFCB00;
  padding-bottom: 2px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color var(--t), gap var(--t);
}
.svc2-all-link:hover { color: var(--plum-deep); gap: 12px; }

/* ── GRID LAYOUT ── */
.svc2-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

/* Large cards span 2 cols */
.svc2-card--lg {
  grid-column: span 2;
}

/* Small cards span 1 col */
.svc2-card--sm {
  grid-column: span 1;
}

/* ── CARD BASE ── */
.svc2-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
  background: #0A0A0A;
}

.svc2-card--lg { height: 380px; }
.svc2-card--sm { height: 280px; }

/* ── IMAGE ── */
.svc2-img-wrap {
  position: absolute;
  inset: 0;
}

.svc2-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.svc2-card:hover .svc2-img-wrap img {
  transform: scale(1.07);
}

/* ── OVERLAY ── */
.svc2-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.45) 45%,
    rgba(0,0,0,0.08) 100%
  );
  transition: background 0.35s;
}

.svc2-card:hover .svc2-overlay {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.55) 50%,
    rgba(0,0,0,0.15) 100%
  );
}

/* ── CONTENT ── */
.svc2-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 22px;
  z-index: 2;
  transform: translateY(0);
  transition: transform 0.35s var(--ease);
}

.svc2-card:hover .svc2-content {
  transform: translateY(-4px);
}

.svc2-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFCB00;
  color: #0A0A0A;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.svc2-badge i { font-size: 11px; }

.svc2-content h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin: 0 0 7px;
}

.svc2-card--sm .svc2-content h3 {
  font-size: 17px;
}

.svc2-content p {
  font-size: 13px;
  color: rgb(255, 255, 255);
  line-height: 1;
  margin: 0 0 14px;
  max-width: 360px;
}

.svc2-card--sm .svc2-content p {
  font-size: 12.5px;
}

.svc2-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 700;
  color: #FFCB00;
  letter-spacing: 0.3px;
  transition: gap 0.25s;
}
.svc2-card:hover .svc2-cta { gap: 12px; }

/* ── LEFT ACCENT STRIPE on large cards ── */
.svc2-card--lg::after {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #FFCB00, #FF6B00);
  z-index: 3;
  border-radius: 16px 0 0 16px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1199.98px) {
  .svc2-grid { grid-template-columns: repeat(3, 1fr); }
  .svc2-card--lg { grid-column: span 3; height: 340px; }
  .svc2-card--sm { grid-column: span 1; }
}

@media (max-width: 767.98px) {
  .svc2-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .svc2-card--lg { grid-column: span 2; height: 300px; }
  .svc2-card--sm { grid-column: span 1; height: 240px; }
}

@media (max-width: 575.98px) {
  .svc2-grid { grid-template-columns: 1fr; }
  .svc2-card--lg,
  .svc2-card--sm { grid-column: span 1; height: 260px; }
}
/* ════════════════════════════════════════════════════════════
   FLEET SECTION — "Trip Ticket" redesign
   Append this to your main stylesheet (after the :root block).
   Built entirely on your existing tokens: --plum, --leaf, --dark,
   --font, --font-serif, --radius*, --shadow*, --t, --ease, --spring.
   Signature idea: every cab card reads like a printed trip ticket —
   a perforated stub separates the photo from a fare-meter panel
   that displays the per-KM / per-day rate the way an actual taxi
   meter shows fare, in glowing LED-style digits.
════════════════════════════════════════════════════════════ */

.fleet {
  position: relative;
  background: var(--off-white);
  padding: 96px 0 90px;
  overflow: hidden;
}

/* Checker strip at the very top — a nod to classic taxi livery,
   echoes the racing-stripe accent already used on your topbar/navbar */
.fleet__checker {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 7px;
  background-image: repeating-linear-gradient(
    135deg,
    var(--dark) 0 9px,
    var(--plum) 9px 18px
  );
}

.fleet .container { position: relative; }

/* ── Header ───────────────────────────────────────────────── */
.fleet__head { text-align: center; max-width: 640px; margin: 0 auto 56px; }

.fleet__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--plum-pale), var(--plum-soft));
  border: 1px solid rgba(255, 203, 0, 0.4);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.fleet__eyebrow i, .fleet__eyebrow svg { font-size: 12px; color: var(--text-muted); stroke: var(--text-muted); }

.fleet__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 14px;
}
.fleet__title em { font-style: italic; color: var(--plum-deep); }

.fleet__sub { color: var(--text-muted); font-size: 15px; line-height: 1.65; }

/* ── Grid ─────────────────────────────────────────────────── */
.fleet__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* ── Card shell ───────────────────────────────────────────── */
.cab {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
    border: 1px solid #a3a3a3;
}
.cab:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }

.cab--featured { box-shadow: 0 0 0 2px var(--plum), var(--shadow-sm); }
.cab--featured:hover { box-shadow: 0 0 0 2px var(--plum), var(--shadow-md); }

/* Seat tag — a clipped "luggage tag" sitting on the photo corner */
.cab__badge {
  position: absolute;
  top: 16px; left: 3px;
  z-index: 3;
  background: var(--dark);
  color: var(--plum);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3px;
  padding: 6px 14px 6px 20px;
  clip-path: polygon(0 50%, 12px 0, 100% 0, 100% 100%, 12px 100%);
}
.cab__badge::after {
  content: '';
  position: absolute;
  left: 8px; top: 50%;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--plum);
  transform: translateY(-50%);
}

/* "Most Booked" ink-stamp for the featured cab */
.cab__stamp {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 3;
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 2px dashed var(--leaf);
  background: rgba(255, 107, 0, 0.08);
  color: var(--leaf-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .4px;
  line-height: 1.25;
  transform: rotate(-13deg);
}

/* Photo */
.cab__photo {
  position: relative;
  aspect-ratio: 4 / 3;
  padding: 22px 22px 14px;
  background: linear-gradient(160deg, var(--plum-soft), var(--plum-pale));
  overflow: hidden;
}
.cab__photo::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 16px;
  width: 60%; height: 14px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.18), transparent 70%);
  filter: blur(2px);
}
.cab__photo img {
  position: relative;
  z-index: 1;
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center 68%;
  transition: transform .5s var(--ease);
}
.cab:hover .cab__photo img { transform: scale(1.06); }

/* Ticket-stub perforation between photo & details */
.cab__perf {
  position: relative;
  height: 1px;
  margin: 0 18px;
  background-image: repeating-linear-gradient(to right, var(--border) 0 6px, transparent 6px 13px);
}
.cab__perf::before,
.cab__perf::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--off-white);
  transform: translateY(-50%);
}
.cab__perf::before { left: -27px; }
.cab__perf::after  { right: -27px; }

/* Body */
.cab__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  padding: 22px 22px 24px;
}

.cab__name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-style: italic;
  font-size: 21px;
  color: var(--dark);
}

.cab__specs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .3px;
  color: var(--text-muted);
}
.cab__specs li { display: flex; align-items: center; gap: 5px; }
.cab__specs li svg { width: 12px; height: 12px; stroke: var(--leaf-dark); flex-shrink: 0; }
.cab__specs li + li { padding-left: 10px; border-left: 1px solid var(--border); }

/* Fare-meter panel — the signature element */
.cab__meter {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--dark);
  border-radius: var(--radius);
  padding: 14px 16px;
  overflow: hidden;
}
.cab__meter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.06) 0%, transparent 38%);
}
.cab__meter-row { position: relative; flex: 1; display: flex; flex-direction: column; gap: 4px; }
.cab__meter-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.842);
}
.cab__meter-digit {
  font-family: var(--font);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: .5px;
  font-variant-numeric: tabular-nums;
  color: var(--leaf);
  text-shadow: 0 0 10px rgba(255, 107, 0, 0.55);
}
.cab__meter-div { width: 1px; align-self: stretch; margin: 0 14px; background: rgba(255, 255, 255, 0.12); }

/* Actions */
.cab__actions { display: flex; align-items: center; gap: 10px; margin-top: auto; }

.cab__btn {
  flex: 1;
  text-align: center;
  background: linear-gradient(135deg, var(--leaf), var(--leaf-dark));
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 11px 14px;
  border-radius: 999px;
  transition: transform var(--t) var(--spring), box-shadow var(--t) var(--ease);
}
.cab__btn:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(255, 107, 0, 0.35); }
.cab__btn:focus-visible { outline: 2px solid var(--dark); outline-offset: 2px; }

.cab__icon-btn {
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  color: var(--dark);
  transition: background var(--t), border-color var(--t), transform var(--t), color var(--t);
}
.cab__icon-btn svg { width: 15px; height: 15px; }
.cab__icon-btn:hover { background: var(--plum); border-color: var(--plum); transform: translateY(-2px); }
.cab__icon-btn--wa { color: #25D366; border-color: rgba(37, 211, 102, .4); font-size: 15px; }
.cab__icon-btn--wa:hover { background: #25D366; border-color: #25D366; color: var(--white); }
.cab__icon-btn:focus-visible { outline: 2px solid var(--dark); outline-offset: 2px; }

/* Footnote */
.fleet__footnote {
  margin-top: 40px;
  text-align: center;
  font-size: 12.5px;
  font-style: italic;
  color: var(--text-muted);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 992px) {
  .fleet { padding: 76px 0 70px; }
  .fleet__grid { gap: 24px; }
}

@media (max-width: 560px) {
  .fleet__grid { grid-template-columns: 1fr; }
  .cab__meter { align-items: stretch; gap: 12px; }
  .cab__meter-div { display: none; }
  .cab__actions { flex-wrap: wrap; }
  .cab__btn { order: 3; flex-basis: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .cab, .cab__photo img, .cab__btn, .cab__icon-btn { transition: none !important; }
  .cab:hover { transform: none; }
}
/* ════════════════════════════════════════════════════════════
   CHARDHAM PACKAGES SECTION
   Signature: a Dehradun → shrine route strip on every card —
   the dot count and order is literally the package contents.
   Built on the existing tokens: --plum, --leaf, --dark, --font*,
   --radius*, --shadow*, --t, --ease, --spring, --border.
════════════════════════════════════════════════════════════ */

.packages {
  position: relative;
  background: var(--off-white);
  padding: 96px 0 90px;
  overflow: hidden;
}

/* Himalayan ridge silhouette behind the header — pure CSS, no image */
.packages__skyline {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 130px;
    background: #ffc300;
  opacity: .55;
  clip-path: polygon(
    0% 100%, 0% 62%, 8% 42%, 16% 64%, 25% 22%, 34% 56%,
    42% 12%, 50% 50%, 58% 26%, 67% 60%, 76% 16%, 85% 52%,
    93% 30%, 100% 60%, 100% 100%
  );
}

.packages .container { position: relative; z-index: 1; }

/* ── Header ───────────────────────────────────────────────── */
.packages__head { text-align: center; max-width: 660px; margin: 0 auto 56px; }

.packages__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--plum-pale), var(--plum-soft));
  border: 1px solid rgba(255, 203, 0, 0.4);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.packages__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 14px;
}
.packages__title em { font-style: italic; color: var(--plum-deep); }

.packages__sub { color: var(--text-muted); font-size: 15px; line-height: 1.65; }

/* ── Grid ─────────────────────────────────────────────────── */
.packages__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* ── Card shell ───────────────────────────────────────────── */
.pkg {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
    box-shadow: 5px 5px 8px 0px #0000007d, var(--shadow-sm);
    border: 1px solid #c3c3c3;

}
.pkg:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }

/* Dhams-count tag — clipped "luggage tag", shared language with the fleet cards */
.pkg__stops-badge {
  position: absolute;
  top: 16px; left: 3px;
  z-index: 3;
  background: var(--dark);
  color: var(--plum);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3px;
  padding: 6px 14px 6px 20px;
  clip-path: polygon(0 50%, 12px 0, 100% 0, 100% 100%, 12px 100%);
}
.pkg__stops-badge::after {
  content: '';
  position: absolute;
  left: 8px; top: 50%;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--plum);
  transform: translateY(-50%);
}

/* Flagship ink-stamp */
.pkg__stamp {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 3;
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 2px dashed var(--leaf);
  background: rgb(255, 255, 255);
  color: var(--leaf-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .4px;
  line-height: 1.25;
  transform: rotate(-13deg);
}

/* Media */
.pkg__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.pkg__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.pkg:hover .pkg__media img { transform: scale(1.08); }


.pkg__category {
  position: absolute;
  bottom: 14px; left: 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.pkg__category::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, .3);
}

/* Body */
.pkg__body { display: flex; flex-direction: column; gap: 0px; flex: 1; padding: 10px; }

.pkg__name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-style: italic;
  font-size: 20px;
  color: var(--dark);
}

.pkg__desc { font-size: 13.5px; line-height: 1.6; color: var(--text-muted); margin-bottom: 0;}

/* Route strip — the signature element */
.pkg__route {
    display: flex;
    align-items: flex-start;
    gap: 15px 0;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
    margin-bottom: 15px;
    padding-top: 10px;
}
.pkg__route::-webkit-scrollbar { display: none; }

.pkg__stop {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  min-width: 46px;
}
.pkg__dot {
  width: 16px; height: 16px;
  margin-bottom: 6px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--leaf), var(--leaf-dark));
  color: var(--white);
  box-shadow: 0 0 0 3px var(--white), 0 2px 6px rgba(0, 0, 0, .15);
}
.pkg__dot svg { width: 8px; height: 8px; }
.pkg__stop--origin .pkg__dot { background: var(--white); border: 2px solid var(--border); }
.pkg__stop--final .pkg__dot { box-shadow: 0 0 0 3px var(--white), 0 0 0 5px rgba(255, 107, 0, .22); }

.pkg__stop-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .2px;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.pkg__route-line {
  flex: 1;
  min-width: 14px;
  height: 2px;
  margin-top: 7px;
  background-image: repeating-linear-gradient(to right, var(--border) 0 5px, transparent 5px 9px);
}

/* Meta (duration / distance) */
.pkg__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .3px;
  color: var(--text-muted);
  justify-content: center;
  margin-bottom: 12px;
}
.pkg__meta li { display: flex; align-items: center; gap: 5px; }
.pkg__meta li svg { width: 12px; height: 12px; stroke: var(--leaf-dark); flex-shrink: 0; }
.pkg__meta li + li { padding-left: 10px; border-left: 1px solid var(--border); }

/* Actions */
.pkg__actions { display: flex; align-items: center; gap: 10px; margin-top: auto; }

.pkg__btn {
  flex: 1;
  text-align: center;
  background: linear-gradient(135deg, var(--leaf), var(--leaf-dark));
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 11px 14px;
  border-radius: 999px;
  transition: transform var(--t) var(--spring), box-shadow var(--t) var(--ease);
}
.pkg__btn:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(255, 107, 0, 0.35); }
.pkg__btn:focus-visible { outline: 2px solid var(--dark); outline-offset: 2px; }

.pkg__icon-btn {
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1.5px solid rgba(37, 211, 102, .4);
  color: #25D366;
  font-size: 15px;
  transition: background var(--t), border-color var(--t), transform var(--t), color var(--t);
}
.pkg__icon-btn:hover { background: #25D366; border-color: #25D366; color: var(--white); transform: translateY(-2px); }
.pkg__icon-btn:focus-visible { outline: 2px solid var(--dark); outline-offset: 2px; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 992px) {
  .packages { padding: 76px 0 70px; }
  .packages__grid { gap: 24px; }
}

@media (max-width: 560px) {
  .packages__grid { grid-template-columns: 1fr; }
  .pkg__actions { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  .pkg, .pkg__media img, .pkg__btn, .pkg__icon-btn { transition: none !important; }
  .pkg:hover { transform: none; }
}
/* ════════════════════════════════════════════════════════════
   CHARDHAM SPECIAL BANNER — light version
   White background, no rotating ring. Image is a clean shadowed
   card, floating info cards get a light border for definition.
════════════════════════════════════════════════════════════ */

.chardham-banner {
  position: relative;
  background: var(--white);
  padding: 110px 0;
  overflow: hidden;
}

/* top accent line, consistent with the navbar/topbar gradient */
.chardham-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--plum) 0%, var(--leaf) 50%, var(--plum) 100%);
}

/* soft ambient corner blob, tuned for a light surface */
.chardham-banner::after {
  content: '';
  position: absolute;
  top: -200px; right: -150px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, var(--plum-soft), transparent 70%);
  opacity: 0.7;
  pointer-events: none;
}

.chardham-banner .container,
.chardham-content { position: relative; z-index: 1; }

/* fix the eyebrow badge's inline gold-on-dark styling for a light backdrop */
.chardham-banner .section-tag {
  background: linear-gradient(135deg, var(--plum-pale), var(--plum-soft)) !important;
  color: var(--text-muted) !important;
  border-color: rgba(255, 203, 0, 0.4) !important;
}
.chardham-banner .section-tag svg { stroke: var(--text-muted) !important; }

/* ── Text column ──────────────────────────────────────────── */
.chardham-heading {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.22;
  color: var(--dark);
  margin: 18px 0;
}
.chardham-heading .om-accent {
  font-style: italic;
  color: var(--plum-deep);
}

.chardham-desc {
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 28px;
}

.chardham-dhams {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}
.dham-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--plum-pale);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .2px;
  transition: background var(--t) var(--ease), border-color var(--t) var(--ease), transform var(--t) var(--ease);
}
.dham-pill svg { stroke: var(--leaf-dark); flex-shrink: 0; }
.dham-pill:hover {
  background: var(--plum-soft);
  border-color: var(--plum);
  transform: translateY(-2px);
}

.chardham-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

.btn-gold-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--plum), var(--plum-deep));
  color: var(--dark);
  font-weight: 700;
  font-size: 14.5px;
  box-shadow: 0 10px 30px rgba(255, 203, 0, 0.3);
  transition: transform var(--t) var(--spring), box-shadow var(--t) var(--ease);
}
.btn-gold-pill svg { transition: transform var(--t) var(--ease); }
.btn-gold-pill:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(255, 203, 0, 0.42); }
.btn-gold-pill:hover svg { transform: translateX(3px); }
.btn-gold-pill:focus-visible { outline: 2px solid var(--dark); outline-offset: 2px; }

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  color: var(--dark);
  font-weight: 600;
  font-size: 14.5px;
  background: transparent;
  transition: background var(--t) var(--ease), border-color var(--t) var(--ease), transform var(--t) var(--ease);
}
.btn-outline-light:hover { background: var(--plum-pale); border-color: var(--plum); transform: translateY(-3px); }
.btn-outline-light:focus-visible { outline: 2px solid var(--plum-deep); outline-offset: 2px; }

/* ── Image column ─────────────────────────────────────────── */
.chardham-image-col { position: relative; display: flex; justify-content: center; }

.chardham-img-ring {
  position: relative;
  width: 100%;
  max-width: 460px;
}

.chardham-main-img {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 8px solid var(--white);
  outline: 1px solid var(--border);
}
.chardham-main-img img { width: 100%; height: 100%; object-fit: cover; }

/* floating info cards */
.char-float-1, .char-float-2 {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  animation: charFloat 4s ease-in-out infinite;
}
.char-float-1 { top: 28px; left: -8px; animation-delay: 0s; }
.char-float-2 { bottom: 28px; right: -8px; animation-delay: -2s; }

.char-float-1 strong, .char-float-2 strong {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--dark);
}

.f-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--plum), var(--leaf));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

@keyframes charFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 991px) {
  .chardham-banner { padding: 80px 0; }
  .chardham-desc { max-width: 100%; }
  .chardham-image-col { margin-top: 50px; }
  .chardham-img-ring { max-width: 420px; margin: 0 auto; }
  .char-float-1, .char-float-2 { position: static; margin: 14px 0 0; animation: none; }
}

@media (max-width: 480px) {
  .chardham-ctas { flex-direction: column; align-items: stretch; }
  .btn-gold-pill, .btn-outline-light { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .char-float-1, .char-float-2 { animation: none; }
}
/* ════════════════════════════════════════════════════════════
   POPULAR ROUTES SECTION — "Highway Milestone" redesign
   Signature: a yellow-on-black km-stone badge (the real Indian
   highway milestone marker) plus a dashed road strip between the
   from/to cities, with a car icon that drives toward the
   destination on hover.
════════════════════════════════════════════════════════════ */

.routes {
  position: relative;
  background: var(--white);
  padding: 96px 0 90px;
}

/* asphalt + dashed lane-marking strip at the top of the section */
.routes__roadline {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 10px;
  background: var(--dark);
}
.routes__roadline::after {
  content: '';
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 3px;
  transform: translateY(-50%);
  background-image: repeating-linear-gradient(to right, var(--plum) 0 26px, transparent 26px 46px);
}

/* ── Header ───────────────────────────────────────────────── */
.routes__head { text-align: center; max-width: 640px; margin: 0 auto 56px; }

.routes__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--plum-pale), var(--plum-soft));
  border: 1px solid rgba(255, 203, 0, 0.4);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.routes__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 14px;
}
.routes__title em { font-style: italic; color: var(--plum-deep); }

.routes__sub { color: var(--text-muted); font-size: 15px; line-height: 1.65; }

/* ── Grid ─────────────────────────────────────────────────── */
.routes__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* ── Card ─────────────────────────────────────────────────── */
.route {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.route:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }

/* Media */
.route__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.route__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.route:hover .route__media img { transform: scale(1.08); }
.route__media::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 70px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, .38), transparent);
  pointer-events: none;
}

.route__time-pill {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(3px);
  color: var(--white);
  font-size: 11.5px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
}
.route__time-pill svg { width: 11px; height: 11px; flex-shrink: 0; }

/* Highway km-stone badge */
.route__km-stone {
  position: absolute;
  top: 12px; left: 16px;
  z-index: 2;
  width: 52px; height: 58px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--plum);
  color: var(--dark);
  border: 2px solid var(--dark);
  border-radius: 50% 50% 6px 6px;
  font-family: var(--font);
  font-weight: 800;
  font-size: 17px;
  line-height: 1;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}
.route__km-stone small {
  margin-top: 2px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .5px;
}

/* Body */
.route__body { 
  
  
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
    padding: 14px 10px 15px;
    border: 1px solid #c3c3c3;
    border-top: 0;
    border-radius: 0 0 21px 21px;
}

.route__cities { display: flex; align-items: center; gap: 12px; }
.route__cities a{
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.02em;
    word-spacing: -1px;
}
.route__city { white-space: nowrap; }


.route__road { position: relative; flex: 1; height: 18px; min-width: 40px; }
.route__road-line {
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 2px;
  transform: translateY(-50%);
  background-image: repeating-linear-gradient(to right, var(--plum-deep) 0 6px, transparent 6px 11px);
}
.route__car {
  position: absolute;
  top: 50%; left: 12%;
  width: 20px; height: 20px;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 50%;
  color: var(--leaf-dark);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
  transition: left .6s var(--ease);
}
.route__car svg { width: 11px; height: 11px; }
.route:hover .route__car { left: 88%; }

.route__desc { font-size: 13.5px; line-height: 1.6; color: var(--text-muted); margin-bottom: 0; }

/* Footer */
.route__foot { display: flex; align-items: center; gap: 6px; margin-top: auto; }

.route__btn {
  flex: 1;
  text-align: center;
  background: linear-gradient(135deg, var(--leaf), var(--leaf-dark));
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 11px 14px;
  border-radius: 999px;
  transition: transform var(--t) var(--spring), box-shadow var(--t) var(--ease);
}
.route__btn.whatsapp{
  background:#25D366;
}
.route__btn.call{
  background:#FFCB00;
}
.route__btn:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(255, 107, 0, 0.35); }
.route__btn:focus-visible { outline: 2px solid var(--dark); outline-offset: 2px; }

.route__icon-btn {
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1.5px solid rgba(37, 211, 102, .4);
  color: #25D366;
  font-size: 15px;
  transition: background var(--t), border-color var(--t), transform var(--t), color var(--t);
}
.route__icon-btn:hover { background: #25D366; border-color: #25D366; color: var(--white); transform: translateY(-2px); }
.route__icon-btn:focus-visible { outline: 2px solid var(--dark); outline-offset: 2px; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 992px) {
  .routes { padding: 76px 0 70px; }
  .routes__grid { gap: 24px; }
}

@media (max-width: 560px) {
  .routes__grid { grid-template-columns: 1fr; }
  .route__foot { flex-wrap: wrap; }
  .route__btn { order: 2; }
}

@media (prefers-reduced-motion: reduce) {
  .route, .route__media img, .route__car, .route__btn, .route__icon-btn { transition: none !important; }
  .route:hover { transform: none; }
  .route:hover .route__car { left: 12%; }
}
/* ════════════════════════════════════════════════════════════
   WHY CHOOSE US — "Trust Seal" redesign
   Dark panel on the left for the CTAs, a 3×2 grid of cards on the
   right where every icon sits inside a dashed trust-seal badge.
════════════════════════════════════════════════════════════ */

.why {
  position: relative;
  background: var(--off-white);
  padding: 96px 0;
}

.why__layout {
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  gap: 40px;
  align-items: stretch;
}

/* ── Left dark trust panel ───────────────────────────────────── */
.why__panel {
  position: relative;
  background: var(--dark);
  border-radius: var(--radius-xl);
  padding: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.why__glow {
  position: absolute;
  top: -120px; left: -100px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255, 203, 0, 0.18), transparent 70%);
  pointer-events: none;
}

.why__eyebrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 203, 0, 0.1);
  border: 1px solid rgba(255, 203, 0, 0.3);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.why__title {
  position: relative;
  z-index: 1;
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.28;
  color: var(--white);
  margin-bottom: 16px;
}
.why__title em { font-style: italic; color: var(--plum); }

.why__lead {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.why__ctas { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 12px; }

.why__btn-solid {
  display: inline-flex;
  align-items: center;
  padding: 13px 26px;
  border-radius: 999px;
  background: var(--white);
  color: var(--dark);
  font-weight: 700;
  font-size: 13.5px;
  transition: transform var(--t) var(--spring), box-shadow var(--t) var(--ease);
}
.why__btn-solid:hover { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(255, 255, 255, 0.18); }
.why__btn-solid:focus-visible { outline: 2px solid var(--plum); outline-offset: 2px; }

.why__btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-weight: 600;
  font-size: 13.5px;
  transition: background var(--t), border-color var(--t), transform var(--t);
}
.why__btn-outline svg { width: 15px; height: 15px; flex-shrink: 0; }
.why__btn-outline:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.55); transform: translateY(-3px); }
.why__btn-outline:focus-visible { outline: 2px solid var(--plum); outline-offset: 2px; }

/* ── Right grid of cards ──────────────────────────────────── */
.why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 24px;
}

.why__card {
    background: var(--white);
    border-radius: 12px;
    padding: 12px 10px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
    border: 1px solid #c3c3c3;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}
.why__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

/* Trust-seal icon badge */
.why__icon {
  position: relative;
  width: 50px; height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--plum), var(--leaf));
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}
.why__icon::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 107, 0, 0.35);
}
.why__icon img { width: 30px; height: 30px; object-fit: contain; }

/* Alternate badge tone for rhythm across the grid */
.why__card:nth-child(even) .why__icon {
  background: linear-gradient(135deg, var(--leaf), var(--leaf-dark));
}
.why__card:nth-child(even) .why__icon::before {
  border-color: rgba(255, 203, 0, 0.4);
}

.why__card-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 14px;
  color: var(--dark);
  margin-bottom: 8px;
}

.why__card-desc { 
    font-size: 12.5px;
    line-height: 1.65;
    color: #222;
    margin-bottom: 0;
    line-height: 1.3;
   }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 991px) {
  .why { padding: 76px 0; }
  .why__layout { grid-template-columns: 1fr; }
  .why__panel { padding: 38px 30px; }
}

@media (max-width: 560px) {
  .why__grid { grid-template-columns: 1fr; }
  .why__ctas { flex-direction: column; align-items: stretch; }
  .why__btn-solid, .why__btn-outline { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .why__card, .why__btn-solid, .why__btn-outline { transition: none !important; }
  .why__card:hover { transform: none; }
}
/* ══ SERVICES + TESTIMONIALS SECTION ══ */
.services-testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-testimonials__head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 48px;
}

.services-testimonials__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #FF6B00;
    margin-bottom: 12px;
}

.services-testimonials__title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: #1a2332;
    line-height: 1.25;
    margin-bottom: 14px;
}

.services-testimonials__title em {
    font-style: normal;
    color: #FF6B00;
}

.services-testimonials__sub {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

/* ── Services grid ── */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.svc-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e8ecf0;
    padding: 28px 24px;
    transition: transform 0.25s, box-shadow 0.25s;
    position: relative;
    overflow: hidden;
}

.svc-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF6B00, #00AAA0);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.svc-card:hover::before {
    transform: scaleX(1);
}

.svc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.svc-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(255,107,0,0.08);
    color: #FF6B00;
    font-size: 22px;
    margin-bottom: 18px;
}

.svc-card__title {
    font-size: 16px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 10px;
    line-height: 1.3;
}

.svc-card__text {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.svc-card__text a {
    color: #FF6B00;
    text-decoration: none;
    font-weight: 500;
}

.svc-card__text a:hover {
    text-decoration: underline;
}

/* ── Trust strip ── */
.trust-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    background: #1a2332;
    border-radius: 14px;
    padding: 24px 32px;
    margin-bottom: 64px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 28px;
    flex: 1;
    min-width: 180px;
}

.trust-item__icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255,107,0,0.15);
    color: #FF6B00;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-item__copy strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
}

.trust-item__copy span {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
}

.trust-item__divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}

/* ── Divider between services and testimonials ── */
.services-testimonials__divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #FF6B00, #00AAA0);
    border-radius: 2px;
    margin: 0 auto 64px;
}

/* ── Testimonials Swiper ── */
.testi-swiper {
    padding-bottom: 44px !important;
}

.testi-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e8ecf0;
    padding: 32px 28px 28px;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: box-shadow 0.25s, transform 0.25s;
}

.testi-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    transform: translateY(-3px);
}

.testi-card__quote {
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 72px;
    line-height: 1;
    color: rgba(255,107,0,0.1);
    font-family: Georgia, serif;
    pointer-events: none;
}

.testi-card__text {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.75;
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testi-card__stars {
    display: flex;
    gap: 3px;
    color: #f59e0b;
    font-size: 13px;
}

.testi-card__user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid #f0f2f5;
}

.testi-card__avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #f0f2f5;
}

.testi-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testi-card__meta strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #1a2332;
}

.testi-card__meta span {
    font-size: 12px;
    color: #9ca3af;
}

/* Pagination dots */
.testi-pagination.swiper-pagination {
    bottom: 0 !important;
}

.testi-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #d1d5db;
    opacity: 1;
    transition: all 0.3s;
}

.testi-pagination .swiper-pagination-bullet-active {
    width: 24px;
    border-radius: 4px;
    background: #FF6B00;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
    .svc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .trust-item__divider {
        display: none;
    }
    .trust-strip {
        gap: 16px;
    }
    .trust-item {
        padding: 8px 12px;
    }
}

@media (max-width: 576px) {
    .services-testimonials {
        padding: 50px 0;
    }
    .svc-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .trust-strip {
        padding: 20px 16px;
    }
    .trust-item {
        min-width: 140px;
        flex: none;
        width: 48%;
    }
    .testi-card {
        padding: 24px 20px 20px;
    }
}
/* ══ FAQ SECTION ══ */
.tt-faq {
    padding: 80px 0;
    background: #fff;
}

.tt-faq__grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    align-items: start;
}

/* ── LEFT ── */
.tt-faq__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #FF6B00;
    margin-bottom: 14px;
    background: rgba(255,107,0,0.08);
    padding: 5px 12px;
    border-radius: 20px;
}

.tt-faq__title {
    font-size: clamp(24px, 2.8vw, 34px);
    font-weight: 700;
    color: #1a2332;
    line-height: 1.25;
    margin-bottom: 14px;
}

.tt-faq__title em {
    font-style: normal;
    color: #FF6B00;
}

.tt-faq__sub {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 28px;
}

/* Contact card */
.tt-faq__contact-card {
    background: #1a2332;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.tt-faq__contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255,107,0,0.15);
    color: #FF6B00;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tt-faq__contact-body h5 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
}

.tt-faq__contact-body p {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    margin: 0 0 14px;
    line-height: 1.6;
}

.tt-faq__call-btn,
.tt-faq__wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
    margin-right: 8px;
    margin-bottom: 4px;
}

.tt-faq__call-btn {
    background: #FF6B00;
    color: #fff;
}

.tt-faq__call-btn:hover {
    background: #be4f00;
    color: #fff;
}

.tt-faq__wa-btn {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.15);
}

.tt-faq__wa-btn:hover {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
}

/* Stats strip */
.tt-faq__stats {
    display: flex;
    gap: 0;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e8ecf0;
    overflow: hidden;
}

.tt-faq__stat {
    flex: 1;
    padding: 16px 12px;
    text-align: center;
    border-right: 1px solid #e8ecf0;
}

.tt-faq__stat:last-child {
    border-right: none;
}

.tt-faq__stat strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: #FF6B00;
    line-height: 1;
    margin-bottom: 4px;
}

.tt-faq__stat span {
    font-size: 11px;
    color: #9ca3af;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ── RIGHT — Accordion ── */
.tt-faq__right {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tt-faq__item {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e8ecf0;
    overflow: hidden;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.tt-faq__item.is-open {
    border-color: #FF6B00;
    box-shadow: 0 4px 20px rgba(255,107,0,0.08);
}

.tt-faq__btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s;
}

.tt-faq__btn:hover {
    background: #fafafa;
}

.tt-faq__item.is-open .tt-faq__btn {
    background: rgba(255,107,0,0.04);
}

.tt-faq__num {
    font-size: 12px;
    font-weight: 700;
    color: #FF6B00;
    background: rgba(255,107,0,0.1);
    width: 28px;
    height: 28px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 1;
}

.tt-faq__q {
    flex: 1;
    font-size: 15px;
    font-weight: 600;
    color: #1a2332;
    line-height: 1.4;
}

.tt-faq__item.is-open .tt-faq__q {
    color: #FF6B00;
}

.tt-faq__chevron {
    flex-shrink: 0;
    color: #9ca3af;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, color 0.2s;
}

.tt-faq__item.is-open .tt-faq__chevron {
    transform: rotate(180deg);
    color: #FF6B00;
}

/* Answer panel */
.tt-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease;
    padding: 0 20px 0 62px;
}

.tt-faq__item.is-open .tt-faq__answer {
    max-height: 400px;
    padding: 0 20px 20px 62px;
}

.tt-faq__answer p {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.75;
    margin: 0;
    padding-top: 4px;
    border-top: 1px solid #f0f2f5;
    padding-top: 14px;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
    .tt-faq__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .tt-faq__contact-card {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .tt-faq {
        padding: 50px 0;
    }
    .tt-faq__btn {
        padding: 16px;
    }
    .tt-faq__answer {
        padding: 0 16px 0 16px;
    }
    .tt-faq__item.is-open .tt-faq__answer {
        padding: 0 16px 16px 16px;
    }
    .tt-faq__q {
        font-size: 14px;
    }
}
@media(max-width:768px){
  .bk-wrap{
    position:relative;
    transform: none;
    top:auto;
    right: auto;
    background-color: transparent;
    margin-top: -20px;
  }
  .hs-root{
    background: transparent;
    padding-bottom: 15px;
  }
  .hs-swiper{
    height: auto;
  }
  .hs-pagination{
    bottom:37px !important;
  }
  .hs-sub{
    line-height: 1.2;
    margin-bottom: 15px;
  }
  .hs-title{
    font-size: 23px;
  }
  .popup-close{
    
    padding: 7px 12px;
  }
  .hs-sub{
    font-size: 14px;
    color: #fff;
  }
  .about2-left::after{
    display: none;
  }
  .chardham-main-img{
    aspect-ratio: auto;
  }
  .trust-item{
    width: 100%;
  }
  .trust-strip, .services-testimonials__divider{
    margin-bottom: 15px;
  }
  .popup-right{
    padding: 15px;
    line-height: 1;
  }
  .popup-form-sub{
    display: none;
  }
  .popup-form-title{
    margin-bottom: 15px;
  }
  .pf-group{
    gap: 3px;
  }
  .pf-field input, .pf-field textarea, .pf-field select{
    padding-block: 9px;
    border-radius: 5px;
  }
}
/* ══ CONTACT PAGE ══ */

/* Page Header */
.page-header {
    position: relative;
    padding: 100px 0 60px;
    overflow: hidden;
}

.page-header__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.page-header__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,20,40,0.82) 0%, rgba(5,35,55,0.70) 100%);
}

.page-header__inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-header__inner h2 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.thm-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.thm-breadcrumb li {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
}

.thm-breadcrumb li a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.2s;
}

.thm-breadcrumb li a:hover {
    color: #FF6B00;
}

.thm-breadcrumb li span {
    font-size: 12px;
    color: #FF6B00;
}

/* ── Section header ── */
.contacts-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #FF6B00;
    background: rgba(255,107,0,0.08);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: #1a2332;
    line-height: 1.25;
    margin-bottom: 14px;
}

.section-title em {
    font-style: normal;
    color: #FF6B00;
}

.section-sub {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}

/* ── Contact Info Boxes ── */
.contact-info-box {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e8ecf0;
    padding: 28px 22px;
    height: 100%;
    transition: transform 0.25s, box-shadow 0.25s;
    position: relative;
    overflow: hidden;
}

.contact-info-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF6B00, #1a2332);
    border-radius: 14px 14px 0 0;
}

.contact-info-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.contact-info-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(255,107,0,0.08);
    color: #FF6B00;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.contact-info-box h5 {
    font-size: 16px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 14px;
}

.contact-info-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.contact-email,
.contact-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #4b5563;
    text-decoration: none;
    transition: color 0.2s;
    word-break: break-all;
}

.contact-email i,
.contact-phone i {
    color: #FF6B00;
    font-size: 14px;
    flex-shrink: 0;
}

.contact-email:hover,
.contact-phone:hover {
    color: #FF6B00;
}

.contact-address {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

.contact-address i {
    color: #FF6B00;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-support-hours {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16,185,129,0.08);
    color: #059669;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
}

.contact-support-hours span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.contact-social-links {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

.contact-social-links a {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: #f0f2f5;
    color: #4b5563;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s;
}

.contact-social-links a:hover {
    background: #FF6B00;
    color: #fff;
}

/* ── Map Box ── */
.contact-info-iframe {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e8ecf0;
    overflow: hidden;
}

.contact-info-iframe iframe {
    width: 100%;
    height: 240px;
    display: block;
    border: none;
    filter: grayscale(20%);
}

.call-info {
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    border-top: 1px solid #f0f2f5;
}

.call-info h6 {
    font-size: 14px;
    font-weight: 700;
    color: #1a2332;
    margin: 0 0 2px;
}

.call-info p {
    font-size: 12px;
    color: #9ca3af;
    margin: 0;
    flex: 1;
    min-width: 140px;
}

.call-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #FF6B00;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
}

.contact-btn:hover {
    background: #be4f00;
    color: #fff;
}

.contact-number {
    font-size: 13px;
    font-weight: 600;
    color: #1a2332;
    text-decoration: none;
    white-space: nowrap;
}

.contact-number:hover {
    color: #FF6B00;
}

/* ── Form Wrapper ── */
.form-wrapper {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e8ecf0;
    padding: 36px 32px;
    height: 100%;
}

.form-header {
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f2f5;
}

.form-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 6px;
}

.form-header p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

/* ── Form Controls ── */
.input-group-custom {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-label-custom {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
}

.form-label-custom i {
    color: #FF6B00;
    font-size: 13px;
}

.required {
    color: #ef4444;
    font-size: 12px;
}

.form-control-custom {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    color: #1a2332;
    background: #f9fafb;
    outline: none;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    font-family: inherit;
}

.form-control-custom:focus {
    border-color: #FF6B00;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255,107,0,0.1);
}

.form-control-custom::placeholder {
    color: #a0aec0;
    font-size: 13px;
}

textarea.form-control-custom {
    height: auto;
    padding: 12px 16px;
    resize: vertical;
    min-height: 130px;
}

/* ── Form Footer ── */
.form-footer {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-round-two {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #FF6B00;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
    white-space: nowrap;
}

.btn-round-two:hover {
    background: #be4f00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,107,0,0.35);
    color: #fff;
}

.btn-round-two i {
    font-size: 13px;
    transition: transform 0.2s;
}

.btn-round-two:hover i {
    transform: translateX(3px);
}

.form-note {
    font-size: 12px;
    color: #9ca3af;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.form-note i {
    color: #10b981;
    font-size: 13px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .contacts-section {
        padding: 50px 0;
    }
    .form-wrapper {
        padding: 24px 18px;
    }
    .call-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .form-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    .hs-btn{
    font-size: 11.5px;
    padding: 8px 15px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 70px 0 40px;
    }
    .contact-info-box {
        padding: 20px 16px;
    }
}