/* =========================================================
   Star Bike Rental Kolhapur — Primary Stylesheet
   Pure CSS3. No external frameworks.
   ========================================================= */

/* ---------- Color & Layout Tokens ---------- */
:root {
  --navy: #06151D;
  --navy-2: #09232D;
  --cyan: #16D5E8;
  --yellow: #FFD21C;
  --white: #FFFFFF;
  --light: #F5F9FA;
  --text: #10232B;
  --muted: #64777E;
  --wa-green: #25D366;

  --line: #E2EAED;
  --line-dark: rgba(255, 255, 255, 0.12);

  --s1: 8px; --s2: 16px; --s3: 24px; --s4: 32px;
  --s5: 40px; --s6: 48px; --s7: 64px; --s8: 80px;

  --r-sm: 10px; --r-md: 16px; --r-lg: 20px; --r-pill: 999px;

  --shadow-sm: 0 4px 12px rgba(6, 21, 29, 0.05);
  --shadow-md: 0 12px 32px rgba(6, 21, 29, 0.08);
  --shadow-lg: 0 24px 64px rgba(6, 21, 29, 0.18);
  --shadow-yellow: 0 10px 26px rgba(255, 210, 28, 0.35);

  --wrap: 1220px;
  --speed: 280ms;
  --ease: cubic-bezier(0.35, 0.15, 0.25, 1);

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-brush: "Caveat", cursive;
}

html[lang="mr"], html[lang="hi"] {
  --font: "Noto Sans Devanagari", "Inter", sans-serif;
}

/* ---------- CSS Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, picture { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; border: 0; background: none; cursor: pointer; }
h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
ul { padding: 0; list-style: none; }

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Typography ---------- */
h1, h2, h3 { line-height: 1.15; letter-spacing: -0.02em; font-weight: 800; }
h1 { font-size: clamp(38px, 5.2vw, 66px); color: var(--white); }
h2 { font-size: clamp(28px, 3.5vw, 42px); color: var(--text); }
h3 { font-size: clamp(19px, 2vw, 22px); color: var(--text); font-weight: 700; }

.section--dark h2 { color: var(--white); }
.lede { font-size: clamp(16px, 1.5vw, 18.5px); color: var(--muted); max-width: 62ch; }
.section--dark .lede { color: rgba(255, 255, 255, 0.78); }

/* ---------- Layout Utilities ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }
.section { padding: var(--s8) 0; }
.section--light { background: var(--light); }
.section--dark { background: var(--navy); color: var(--white); }
.section--cta { padding: var(--s7) 0 var(--s8); }

.section-head { max-width: 680px; margin-bottom: var(--s5); }
.section-head p { margin-top: var(--s2); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--between {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: var(--s4); max-width: 100%;
}
.desktop-only { display: inline-flex; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 800; color: #0C7E8B;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: var(--s2);
}
.eyebrow::before {
  content: ""; width: 18px; height: 3px; background: var(--cyan); border-radius: 2px;
}
.section--dark .eyebrow { color: var(--cyan); }
.section--dark .eyebrow::before { background: var(--yellow); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 28px;
  font-size: 15.5px; font-weight: 700; letter-spacing: 0.01em;
  border-radius: var(--r-pill);
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease),
              background-color var(--speed) var(--ease), color var(--speed) var(--ease),
              border-color var(--speed) var(--ease);
  text-align: center; border: 2px solid transparent; white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; flex: none; }

.btn--primary {
  background: var(--yellow); color: var(--navy);
  box-shadow: var(--shadow-yellow);
}
.btn--primary:hover {
  background: #FFE052; transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(255, 210, 28, 0.45);
}

.btn--dark { background: var(--navy); color: var(--white); }
.btn--dark:hover { background: var(--navy-2); transform: translateY(-3px); }

.btn--outline { border-color: var(--line); background: var(--white); color: var(--text); }
.btn--outline:hover { border-color: var(--navy); transform: translateY(-3px); }

.btn--ghost { border-color: rgba(255, 255, 255, 0.35); color: var(--white); background: rgba(255, 255, 255, 0.06); }
.btn--ghost:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-3px); }

.btn--sm { min-height: 44px; padding: 0 20px; font-size: 14.5px; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.skip {
  position: absolute; left: 16px; top: -70px; z-index: 120;
  background: var(--yellow); color: var(--navy); font-weight: 800;
  padding: 12px 24px; border-radius: var(--r-sm);
  transition: top 180ms var(--ease);
}
.skip:focus { top: 12px; }

.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(6, 21, 29, 0.92);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: min-height var(--speed) var(--ease), background-color var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  min-height: 80px;
  transition: min-height var(--speed) var(--ease);
}
.header.is-stuck { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45); background: rgba(6, 21, 29, 0.98); }
.header.is-stuck .header__inner { min-height: 66px; }

.logo { display: flex; align-items: center; gap: 12px; flex: none; }
.logo__mark {
  width: 40px; height: 40px; flex: none; border-radius: 10px;
  background: linear-gradient(135deg, var(--yellow), #E5B500);
  display: grid; place-items: center; color: var(--navy);
  box-shadow: 0 4px 14px rgba(255, 210, 28, 0.35);
}
.logo__mark svg { width: 22px; height: 22px; }
.logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.logo__name { font-weight: 800; font-size: 16.5px; color: var(--white); letter-spacing: 0.02em; white-space: nowrap; }
.logo__sub { font-size: 10px; font-weight: 700; color: var(--cyan); letter-spacing: 0.12em; white-space: nowrap; }
html[lang="mr"] .logo__sub, html[lang="hi"] .logo__sub { letter-spacing: 0.02em; font-size: 11.5px; }

.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  padding: 8px 12px; border-radius: var(--r-sm);
  font-size: 14.5px; font-weight: 600; color: #E0EDF2; white-space: nowrap;
  transition: color var(--speed) var(--ease), background-color var(--speed) var(--ease);
}
.nav a:hover { color: var(--white); background: rgba(255, 255, 255, 0.1); }

.langs { display: flex; align-items: center; gap: 2px; padding: 4px; border-radius: var(--r-pill); background: rgba(255, 255, 255, 0.08); flex: none; }
.langs a {
  padding: 6px 12px; border-radius: var(--r-pill); font-size: 13px; font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  transition: background-color var(--speed) var(--ease), color var(--speed) var(--ease);
}
.langs a:hover { color: var(--white); }
.langs a[aria-current="true"] { background: var(--cyan); color: var(--navy); }

.header .btn--primary { min-height: 44px; padding: 0 20px; font-size: 14px; flex: none; }

.burger {
  display: none; width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255, 255, 255, 0.1); place-items: center;
}
.burger span {
  display: block; width: 20px; height: 2px; background: var(--white); border-radius: 2px;
  position: relative; transition: transform var(--speed) var(--ease), background-color 120ms linear;
}
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--white); border-radius: 2px;
  transition: transform var(--speed) var(--ease), top var(--speed) var(--ease);
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.burger[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* ---------- Mobile Menu Drawer ---------- */
.menu {
  position: fixed; inset: 0; z-index: 110;
  background: rgba(4, 12, 17, 0.75);
  opacity: 0; visibility: hidden; transition: opacity var(--speed) var(--ease), visibility var(--speed);
}
.menu.is-open { opacity: 1; visibility: visible; }
.menu__panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(90vw, 360px);
  background: var(--navy-2); color: var(--white);
  padding: 24px 20px calc(24px + env(safe-area-inset-bottom));
  display: flex; flex-direction: column; gap: var(--s3);
  overflow-y: auto;
  transform: translateX(100%); transition: transform var(--speed) var(--ease);
}
.menu.is-open .menu__panel { transform: none; }
.menu__top { display: flex; align-items: center; justify-content: space-between; }
.menu__close { width: 42px; height: 42px; border-radius: 12px; background: rgba(255, 255, 255, 0.1); display: grid; place-items: center; font-size: 22px; }
.menu__links a {
  display: block; padding: 12px 4px; font-size: 16.5px; font-weight: 600;
  border-bottom: 1px solid var(--line-dark); white-space: normal;
}
.menu__links a:hover { color: var(--cyan); }
.menu__label { font-size: 13px; font-weight: 700; color: var(--cyan); margin-top: var(--s1); }
.menu__langs { display: flex; gap: 8px; }
.menu__langs a {
  flex: 1; text-align: center; padding: 10px 6px; border-radius: var(--r-sm);
  border: 1px solid var(--line-dark); font-weight: 700; font-size: 14.5px;
}
.menu__langs a[aria-current="true"] { background: var(--cyan); color: var(--navy); border-color: var(--cyan); }
.menu__foot { margin-top: auto; display: grid; gap: 10px; }

/* ---------- Hero Section ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--navy);
  color: var(--white);
  padding: var(--s8) 0 var(--s7);
  min-height: 84vh; display: flex; align-items: center;
}
.hero__bg-img {
  position: absolute; inset: 0; z-index: 1;
}
.hero__bg-img picture, .hero__bg-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.hero__bg-img img {
  filter: brightness(0.9) contrast(1.12);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background:
    radial-gradient(circle at 75% 25%, rgba(22, 213, 232, 0.15), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(255, 210, 28, 0.12), transparent 45%),
    linear-gradient(180deg, rgba(6, 21, 29, 0.3) 0%, rgba(6, 21, 29, 0.7) 100%);
  pointer-events: none;
}
.hero__grid {
  position: relative; z-index: 3;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: var(--s7); align-items: center;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 16px 7px 12px; border-radius: var(--r-pill);
  background: rgba(6, 21, 29, 0.75); border: 1px solid rgba(22, 213, 232, 0.5);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  color: var(--cyan); font-size: 13px; font-weight: 800; letter-spacing: 0.08em;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}
.hero__eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 4px rgba(22, 213, 232, 0.3); }
.hero h1 { margin: var(--s3) 0 var(--s1); line-height: 1.08; text-shadow: 0 4px 20px rgba(0, 0, 0, 0.95), 0 2px 6px rgba(0,0,0,0.9); }
.hero h1 .highlight { color: var(--yellow); display: inline-block; }

.hero__brush {
  display: block; font-family: var(--font-brush); font-size: 34px; color: var(--yellow);
  transform: rotate(-3deg); margin: 4px 0 var(--s3) 4px; text-shadow: 0 3px 14px rgba(0,0,0,0.95);
  font-weight: 700;
}

.hero__text { max-width: 52ch; color: rgba(255, 255, 255, 0.96); font-size: clamp(16.5px, 1.5vw, 19px); line-height: 1.6; text-shadow: 0 2px 12px rgba(0, 0, 0, 0.95); font-weight: 500; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: var(--s4); }

.hero__points {
  display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: var(--s4);
  padding-top: var(--s3); border-top: 1px solid var(--line-dark);
}
.hero__points li { display: flex; align-items: center; gap: 9px; font-size: 15px; font-weight: 600; color: rgba(255, 255, 255, 0.92); white-space: nowrap; }
.hero__points svg { width: 18px; height: 18px; color: var(--yellow); flex: none; }

.hero__visual { position: relative; }
.hero__card {
  position: relative; border-radius: 24px; overflow: hidden;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.03));
  border: 1.5px solid rgba(22, 213, 232, 0.35);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
}
.hero__card img { width: 100%; height: auto; display: block; object-fit: cover; }

.hero__badge {
  position: absolute; top: -14px; right: -8px; z-index: 4;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: var(--r-pill);
  background: var(--yellow); color: var(--navy);
  font-size: 13.5px; font-weight: 900; letter-spacing: 0.05em;
  box-shadow: var(--shadow-lg); white-space: nowrap;
}
.hero__badge svg { width: 16px; height: 16px; color: var(--navy); }

.hero__dest-icons {
  display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; justify-content: center;
}
.hero__dest-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 16px; border-radius: var(--r-pill);
  background: rgba(9, 35, 45, 0.92); border: 1px solid rgba(22, 213, 232, 0.3);
  font-size: 12.5px; font-weight: 800; color: var(--cyan); letter-spacing: 0.05em; white-space: nowrap;
}
.hero__dest-pill svg { width: 15px; height: 15px; }

/* ---------- Vehicle Section & Filter ---------- */
.filters-row { margin-bottom: var(--s4); }
.filters { display: flex; gap: 10px; flex-wrap: wrap; }
.filter {
  min-height: 44px; padding: 0 24px; border-radius: var(--r-pill);
  border: 1.5px solid var(--line); background: var(--white);
  font-size: 15px; font-weight: 700; color: var(--muted);
  transition: all var(--speed) var(--ease);
}
.filter:hover { border-color: var(--navy); color: var(--text); }
.filter[aria-pressed="true"] { background: var(--navy); border-color: var(--navy); color: var(--white); }

.bikes { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s4); }
.bike {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease), border-color var(--speed) var(--ease);
}
.bike:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: #CFE0E4; }
.bike[hidden] { display: none; }

.bike__media {
  position: relative; background: #F6F9FA;
  padding: var(--s3); overflow: hidden; height: 230px;
  display: flex; align-items: center; justify-content: center;
}
.bike__media img {
  max-height: 190px; width: auto; object-fit: contain;
  transition: transform 400ms var(--ease);
}
.bike:hover .bike__media img { transform: scale(1.06); }

.bike__tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  padding: 5px 12px; border-radius: var(--r-pill);
  background: rgba(22, 213, 232, 0.15); border: 1px solid rgba(22, 213, 232, 0.4);
  color: #0C7E8B; font-size: 12px; font-weight: 800; text-transform: uppercase;
}
.bike__body { padding: var(--s3); display: flex; flex-direction: column; gap: 8px; flex: 1; }
.bike__desc { color: var(--muted); font-size: 14.5px; line-height: 1.5; flex: 1; }
.bike__footer {
  margin-top: var(--s2); padding-top: var(--s2); border-top: 1px dashed var(--line);
  display: flex; flex-direction: column; gap: 12px;
}
.bike__price { font-size: 15.5px; font-weight: 800; color: var(--text); }

/* ---------- Why Choose Us ---------- */
.why { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s3); }
.why__item {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: var(--s4) var(--s3); box-shadow: var(--shadow-sm);
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
.why__item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why__icon {
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(22, 213, 232, 0.12); color: #0C7E8B; margin-bottom: var(--s2);
}
.why__icon svg { width: 24px; height: 24px; }
.why__item p { margin-top: 8px; color: var(--muted); font-size: 14.5px; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s4); position: relative; }
.step {
  position: relative; padding: var(--s4) var(--s3);
  border: 1px solid var(--line); border-radius: var(--r-md); background: var(--white);
  box-shadow: var(--shadow-sm);
}
.step__num {
  display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: var(--yellow); font-weight: 800; font-size: 16px;
  margin-bottom: var(--s2); box-shadow: 0 4px 12px rgba(6,21,29,0.2);
}
.step p { margin-top: 8px; color: var(--muted); font-size: 14.5px; }

/* ---------- Explore Kolhapur (Cinematic Dark Section) ---------- */
.destinations-slider {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s3);
}
.dest-card {
  position: relative; height: 260px; border-radius: var(--r-md); overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
}
.dest-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 450ms var(--ease);
}
.dest-card:hover img { transform: scale(1.08); }
.dest-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6, 21, 29, 0.95) 0%, rgba(6, 21, 29, 0.2) 60%, transparent 100%);
  padding: var(--s3); display: flex; align-items: flex-end;
}
.dest-card__overlay h3 { color: var(--white); font-size: 18px; font-weight: 700; white-space: normal; }

/* ---------- Local SEO & Prose ---------- */
.prose-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: var(--s6); box-shadow: var(--shadow-sm);
}
.prose-lead { font-size: 17.5px; color: #33484F; margin: var(--s2) 0 var(--s4); max-width: 80ch; line-height: 1.65; }
.prose-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4); margin-top: var(--s3); }
.prose-note { margin-top: var(--s4); padding-top: var(--s4); border-top: 1px solid var(--line); }
.prose-col h3 { font-size: 17px; margin-bottom: 8px; }
.prose-col p { font-size: 15px; color: var(--muted); }

/* ---------- Google Reviews ---------- */
.reviews-card {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s4);
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: var(--s5); box-shadow: var(--shadow-sm); flex-wrap: wrap;
}
.reviews-card__content h2 { margin-bottom: 8px; }
.reviews-card__content p { color: var(--muted); }
.reviews-stars { display: flex; gap: 4px; color: var(--yellow); margin-bottom: 12px; }
.reviews-stars svg { width: 22px; height: 22px; fill: currentColor; }

/* ---------- Location Section ---------- */
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s5); align-items: stretch; }
.location-info {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: var(--s5); box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.contact-details { display: grid; gap: var(--s3); margin: var(--s3) 0 var(--s4); }
.contact-details li { display: flex; gap: 14px; align-items: flex-start; }
.contact-details svg { width: 22px; height: 22px; color: var(--cyan); flex: none; margin-top: 3px; }
.contact-details strong { display: block; font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }
.contact-details p, .contact-details a { font-size: 16px; font-weight: 600; color: var(--text); }
.contact-details a:hover { color: #0C7E8B; }
.location-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-top: auto; }

.map-card {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  background: linear-gradient(150deg, #09232D 0%, #06151D 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex; flex-direction: column;
  color: var(--white); text-align: center;
}
.map-card__iframe { width: 100%; height: 280px; border: 0; display: block; }
.map-card__preview {
  position: relative; height: 280px; width: 100%;
  background:
    linear-gradient(180deg, rgba(6,21,29,0.15), rgba(6,21,29,0.55)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 26px);
  display: grid; place-items: center;
}
.map-card__load-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--yellow); color: var(--navy); font-weight: 800; font-size: 14.5px;
  border: 0; border-radius: var(--r-pill); padding: 12px 22px; cursor: pointer;
  box-shadow: var(--shadow-yellow); transition: transform var(--speed) var(--ease);
}
.map-card__load-btn:hover { transform: translateY(-2px); }
.map-card__load-btn svg { width: 18px; height: 18px; }
.map-card__content { display: flex; flex-direction: column; align-items: center; gap: 10px; max-width: 320px; margin: 0 auto; padding: var(--s4); }
.map-card__icon {
  width: 60px; height: 60px; border-radius: 50%; display: grid; place-items: center;
  background: var(--yellow); color: var(--navy); margin-bottom: 8px;
  box-shadow: 0 0 0 10px rgba(255, 210, 28, 0.2);
}
.map-card__icon svg { width: 28px; height: 28px; }
.map-card h4 { font-size: 20px; font-weight: 800; }
.map-card p { font-size: 14.5px; color: rgba(255, 255, 255, 0.7); }
.map-card__tag {
  display: inline-block; padding: 4px 12px; border-radius: var(--r-pill);
  background: rgba(22, 213, 232, 0.15); color: var(--cyan); font-size: 12px; font-weight: 700;
}
.map-card .btn { margin-top: 12px; }

/* ---------- FAQ Accordion ---------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 0 var(--s3);
}
.faq-item summary {
  cursor: pointer; list-style: none; padding: 18px 0; font-weight: 700; font-size: 16px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; color: var(--navy);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 24px; font-weight: 400; color: var(--cyan); flex: none;
  transition: transform var(--speed) var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 0 18px; margin: -4px 0 0; color: var(--muted); font-size: 15px; line-height: 1.65; }

/* ---------- Privacy & Terms (Legal) ---------- */
.legal-section { padding: var(--s5) 0; border-top: 1px solid var(--line); background: var(--light); }
.legal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4); }
.legal-grid h3 { font-size: 15px; margin-bottom: 8px; color: var(--navy); }
.legal-grid p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }
@media (max-width: 780px) {
  .legal-grid { grid-template-columns: 1fr; gap: var(--s3); }
}

/* ---------- Google Form & Quick Booking ---------- */
.booking-card {
  max-width: 860px; margin-inline: auto;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: var(--s5); box-shadow: var(--shadow-sm);
}
.booking-form { display: flex; flex-direction: column; gap: var(--s3); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s3); }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group--full { grid-column: span 2; }
.form-group label { font-size: 13.5px; font-weight: 700; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; min-height: 50px; padding: 0 16px;
  border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: var(--white); color: var(--text); font-family: var(--font); font-size: 15px;
  transition: border-color var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
.form-group textarea { padding: 12px 16px; min-height: auto; resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--cyan); outline: none;
  box-shadow: 0 0 0 4px rgba(22, 213, 232, 0.18);
}
.form-actions { margin-top: var(--s1); }

@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-group--full { grid-column: span 1; }
  .booking-card { padding: var(--s4); }
  .form-group input, .form-group select, .form-group textarea { font-size: 16px; } /* Prevents auto-zoom on iOS Safari */
}

/* ---------- Final CTA Banner ---------- */
.cta-banner {
  position: relative; border-radius: 28px; overflow: hidden; color: var(--white);
  padding: var(--s7) var(--s5); text-align: center;
  background: var(--navy);
  border: 1.5px solid rgba(22, 213, 232, 0.4);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.45);
}
.cta-banner__bg { position: absolute; inset: 0; z-index: 1; }
.cta-banner__bg picture, .cta-banner__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner__bg img { filter: brightness(1.0) contrast(1.12); }
.cta-banner::after {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(180deg, rgba(6, 21, 29, 0.32) 0%, rgba(6, 21, 29, 0.65) 100%),
    radial-gradient(circle at 50% 30%, rgba(22, 213, 232, 0.15), transparent 70%);
}
.cta-banner__content { position: relative; z-index: 3; max-width: 680px; margin-inline: auto; }
.logo--center { justify-content: center; margin-bottom: var(--s3); }
.cta-banner h2 { font-size: clamp(34px, 4.5vw, 52px); color: var(--white); text-shadow: 0 4px 22px rgba(0, 0, 0, 0.95), 0 2px 6px rgba(0,0,0,0.9); }
.cta-banner p { margin: var(--s2) 0 var(--s4); color: rgba(255, 255, 255, 0.98); font-size: 19px; font-weight: 600; text-shadow: 0 2px 14px rgba(0, 0, 0, 0.95); }
.cta-banner__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-banner__subnote { font-size: 14.5px; color: rgba(255, 255, 255, 0.88); margin-top: var(--s3); text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95); font-weight: 500; }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: rgba(255, 255, 255, 0.7); padding: var(--s7) 0 var(--s4); border-top: 1px solid rgba(255,255,255,0.08); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--s5) var(--s4); }
.footer h3 { font-size: 14px; letter-spacing: 0.06em; color: var(--white); margin-bottom: var(--s2); font-weight: 800; text-transform: uppercase; }
.footer p { font-size: 14.5px; line-height: 1.6; }
.footer__brand .logo { margin-bottom: var(--s2); }
.footer__links { display: grid; gap: 10px; font-size: 15px; }
.footer__links a:hover, .footer a:hover { color: var(--cyan); }
.footer__langs { display: flex; gap: 8px; flex-wrap: wrap; }
.footer__langs a {
  padding: 8px 16px; border-radius: var(--r-pill); border: 1px solid var(--line-dark);
  font-size: 13.5px; font-weight: 700;
}
.footer__langs a[aria-current="true"] { background: var(--cyan); color: var(--navy); border-color: var(--cyan); }
.footer__address { margin-bottom: 8px; }
.footer__phone a { font-weight: 700; color: var(--white); }
.footer__bottom {
  margin-top: var(--s6); padding-top: var(--s3); border-top: 1px solid var(--line-dark);
  display: flex; justify-content: space-between; gap: var(--s2); flex-wrap: wrap; font-size: 14px;
}
.footer__legal { display: flex; gap: 16px; }

/* ---------- Mobile Action Bar ---------- */
.mobile-actionbar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  height: 60px; background: var(--navy-2);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}
.actionbar__btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 800; font-size: 14.5px; letter-spacing: 0.04em; height: 100%;
}
.actionbar__btn svg { width: 18px; height: 18px; }
.actionbar__btn--call { background: var(--navy); color: var(--white); }
.actionbar__btn--call svg { color: var(--cyan); }
.actionbar__btn--wa { background: var(--yellow); color: var(--navy); }

/* ---------- Scroll Reveal Animations ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 450ms var(--ease), transform 450ms var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Responsive Breakpoints ---------- */
@media (max-width: 1140px) {
  .nav { gap: 0; }
  .nav a { padding: 6px 10px; font-size: 14px; }
  .header__inner { gap: 12px; }
}

@media (max-width: 1024px) {
  .hero__grid { gap: var(--s5); }
  .bikes { grid-template-columns: repeat(2, 1fr); }
  .why { grid-template-columns: repeat(2, 1fr); }
  .destinations-slider { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 920px) {
  .nav, .header .langs, .header .btn--primary { display: none; }
  .burger { display: grid; }
  .hero__grid { grid-template-columns: 1fr; gap: var(--s5); }
  .hero__visual { order: 2; }
  .prose-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .section-head--between { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 767px) {
  body { padding-bottom: 60px; }
  .mobile-actionbar { display: flex; }
  .desktop-only { display: none; }
  .section { padding: var(--s6) 0; }
  .hero { padding: var(--s6) 0; min-height: auto; }
  .hero__cta { flex-direction: column; width: 100%; }
  .hero__cta .btn { width: 100%; }
  .destinations-slider {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    gap: 14px; padding-bottom: 12px; margin-inline: -24px; padding-inline: 24px;
    scrollbar-width: none;
  }
  .destinations-slider::-webkit-scrollbar { display: none; }
  .dest-card { flex: 0 0 280px; scroll-snap-align: start; }
  .reviews-card { flex-direction: column; align-items: flex-start; }
  .reviews-card .btn { width: 100%; }
}

@media (max-width: 540px) {
  .bikes { grid-template-columns: 1fr; }
  .why { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: var(--s4); }
  .hero__dest-icons { justify-content: flex-start; }
}

@media (max-width: 480px) {
  .wrap { padding-inline: 16px; }
  .destinations-slider { margin-inline: -16px; padding-inline: 16px; }
  .hero__points li { white-space: normal; }
  .filters { width: 100%; }
  .filter { flex: 1 1 auto; text-align: center; }
  .booking-card, .prose-card, .reviews-card, .location-info, .map-card { padding: 20px 16px; }
  .cta-banner { padding: 40px 18px; border-radius: 20px; }
  .cta-banner h2 { font-size: 27px; }
  .contact-details p, .contact-details a { font-size: 14.5px; word-break: break-word; }
  .btn { width: 100%; justify-content: center; text-align: center; white-space: normal; }
  .hero__cta { width: 100%; }
  .location-buttons { width: 100%; flex-direction: column; }
  .location-buttons .btn { width: 100%; }
}

/* ---------- Prefers Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important; transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
