/* ============================================================
   I&C RENT MOTORBIKE — Koh Samui
   Design system: charcoal black + volt lime, condensed display
   ============================================================ */

:root {
  --bg: #0b0d0b;
  --bg-2: #10130d;
  --bg-3: #161a10;
  --card: #14170f;
  --card-2: #1a1e13;
  --line: rgba(37, 242, 11, 0.16);
  --line-2: rgba(244, 243, 242, 0.08);
  --lime: #25F20B;
  --lime-2: #25F20B;
  --lime-dim: #158f0a;
  --lime-deep: #0d6808;
  --text: #f4f3f2;
  --muted: #9aa08d;
  --gold: #25F20B;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  --glow: 0 0 0 1px rgba(37, 242, 11, 0.35), 0 20px 50px rgba(37, 242, 11, 0.12);
  --font-display: "Anton", "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }

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

::selection { background: var(--lime); color: #0b0d0b; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #0a0c09; }
::-webkit-scrollbar-thumb { background: #2a2f1a; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--lime-dim); }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Utilities ---------- */

.display { font-family: var(--font-display); font-weight: 400; letter-spacing: 0.02em; text-transform: uppercase; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime);
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--lime); }

.text-center { text-align: center; }
.text-center .eyebrow::after { content: ""; width: 34px; height: 2px; background: var(--lime); }

.section { padding: 96px 0; position: relative; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 16px 0 14px;
}
.section-title .accent { color: var(--lime); }
.section-subtitle { color: var(--muted); max-width: 620px; font-size: 17px; }
.section-subtitle.center { margin: 0 auto; }
.section-head { margin-bottom: 52px; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn svg { flex: none; }
.btn:active { transform: scale(0.97); }

.btn-lime { background: var(--lime); color: #0b0d0b; }
.btn-lime:hover { background: var(--lime-2); transform: translateY(-2px); box-shadow: 0 16px 40px rgba(37, 242, 11, 0.3); }

.btn-outline { border-color: rgba(244, 243, 242, 0.35); color: var(--text); background: transparent; }
.btn-outline:hover { border-color: var(--lime); color: var(--lime); transform: translateY(-2px); }

.btn-ghost { color: var(--text); }
.btn-ghost:hover { color: var(--lime); }

.btn-lg { padding: 18px 40px; font-size: 16px; }
.btn-sm { padding: 10px 22px; font-size: 13px; }

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(11, 13, 11, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 84px;
}

.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  display: block;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(37, 242, 11, 0.35);
}
.logo-mark--footer { width: 64px; height: 64px; flex-basis: 64px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text strong { font-family: var(--font-display); font-size: 19px; letter-spacing: 0.06em; }
.logo-text span { font-size: 10px; letter-spacing: 0.34em; color: var(--lime); text-transform: uppercase; font-weight: 700; }

.desktop-nav { display: flex; gap: 6px; }
.desktop-nav a {
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border-radius: 10px;
  position: relative;
  transition: color 0.25s ease, background 0.25s ease;
}
.desktop-nav a:hover { color: var(--text); }
.desktop-nav a.active { color: var(--lime); background: rgba(37, 242, 11, 0.1); }

.header-actions { display: flex; align-items: center; gap: 14px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 10px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 84px; left: 0; right: 0;
  background: rgba(11, 13, 11, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  padding: 16px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 99;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu a {
  padding: 14px 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 15px;
  border-bottom: 1px solid var(--line-2);
}
.mobile-menu a.active { color: var(--lime); }
.mobile-menu .btn { margin-top: 16px; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 90px;
  overflow: hidden;
  background: var(--bg);
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg picture { display: block; width: 100%; height: 100%; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(11,13,11,0.58) 0%, rgba(11,13,11,0.12) 42%, rgba(11,13,11,0.92) 100%),
    linear-gradient(90deg, rgba(11,13,11,0.9) 0%, rgba(11,13,11,0.62) 34%, rgba(11,13,11,0.08) 72%, rgba(11,13,11,0.25) 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 52px;
  align-items: center;
}

.hero-content { max-width: 720px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(37, 242, 11, 0.08);
  color: var(--lime);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); animation: pulse 2s infinite; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(170,206,1,0.6); }
  50% { box-shadow: 0 0 0 8px rgba(170,206,1,0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 84px);
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}
.hero-title .accent { color: var(--lime); text-shadow: 0 0 60px rgba(37, 242, 11, 0.35); }
.hero-title .outline { color: transparent; -webkit-text-stroke: 1.5px rgba(244,243,242,0.5); }

.hero-desc { color: var(--muted); font-size: 18px; max-width: 540px; margin-bottom: 34px; }
.hero-desc strong { color: var(--text); }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  max-width: 520px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-points li { display: flex; align-items: center; gap: 12px; color: var(--text); font-size: 14.5px; font-weight: 600; }
.hero-points li svg { color: var(--lime); flex: none; }

.hero-stat {
  position: absolute;
  top: 130px; right: 24px;
  z-index: 3;
  background: rgba(20, 23, 15, 0.9);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow);
  animation: float 5s ease-in-out infinite;
}
.hero-stat .num { font-family: var(--font-display); font-size: 34px; color: var(--lime); line-height: 1; }
.hero-stat .stars { color: var(--gold); letter-spacing: 2px; font-size: 13px; }
.hero-stat small { color: var(--muted); font-size: 12px; display: block; margin-top: 2px; }

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

/* ---------- Booking widget ---------- */

.booking-card {
  background: rgba(17, 20, 13, 0.84);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 3;
}
.booking-card::before {
  content: "";
  position: absolute;
  top: -1px; left: 32px; right: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
}
.booking-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 24px; }
.booking-head h3 { font-family: var(--font-display); font-size: 24px; text-transform: uppercase; letter-spacing: 0.04em; }
.booking-head .live { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; color: var(--lime); letter-spacing: 0.1em; text-transform: uppercase; }
.booking-head .live::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--lime); animation: pulse 1.6s infinite; }

.booking-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(132px, 1.15fr); gap: 14px; }
.booking-field { min-width: 0; }
.booking-field label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  white-space: nowrap;
}
.booking-field label svg { color: var(--lime); }
.booking-field input,
.booking-field select {
  width: 100%;
  min-width: 0;
  padding: 14px 16px;
  background: rgba(244, 243, 242, 0.05);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
  appearance: none;
}
.booking-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2325F20B' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
  text-overflow: ellipsis;
}
.booking-field select option { color: #0b0d0b; background: #f4f3f2; }
.booking-field input:focus, .booking-field select:focus { border-color: var(--lime); background: rgba(37, 242, 11, 0.06); }
.booking-field input::-webkit-calendar-picker-indicator { filter: invert(0.8) sepia(1) saturate(4) hue-rotate(35deg); cursor: pointer; }
.booking-scooter-picker {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.booking-scooter-picker-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.booking-scooter-picker-head strong {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.booking-scooter-picker-head span,
.booking-scooter-hint {
  color: var(--muted);
  font-size: 12px;
}
.scooter-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.scooter-choice {
  min-width: 0;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(8, 10, 7, 0.45);
  color: var(--text);
  text-align: left;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.scooter-choice:hover { border-color: var(--lime); transform: translateY(-2px); }
.scooter-choice[aria-pressed="true"] {
  border-color: var(--lime);
  background: rgba(37, 242, 11, 0.1);
  box-shadow: 0 0 0 1px var(--lime), 0 10px 22px rgba(37, 242, 11, 0.14);
}
.scooter-choice img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 6px;
}
.scooter-choice span,
.scooter-choice small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.scooter-choice span { font-size: 12px; font-weight: 800; }
.scooter-choice small { margin-top: 2px; color: var(--muted); font-size: 10px; }
.booking-scooter-hint { margin: 9px 0 0; }
.booking-scooter-hint.is-warning { color: var(--lime); }
.booking-total-prompt { color: var(--muted); font-family: Inter, sans-serif; font-size: 15px; }
.btn.is-disabled { cursor: not-allowed; opacity: 0.55; filter: saturate(0.55); }

.booking-total {
  margin-top: 18px;
  padding: 16px 18px;
  background: rgba(37, 242, 11, 0.08);
  border: 1px dashed var(--line);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.booking-total span { font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.booking-total strong { font-family: var(--font-display); font-size: 26px; color: var(--lime); letter-spacing: 0.02em; }

.booking-note { margin-top: 16px; text-align: center; font-size: 13px; color: var(--muted); }
.booking-note a { color: var(--lime); font-weight: 700; }

/* ---------- Marquee ---------- */

.marquee {
  background: var(--lime);
  color: #0b0d0b;
  overflow: hidden;
  padding: 16px 0;
  position: relative;
  z-index: 5;
  transform: rotate(-1deg) scale(1.02);
}
.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 26s linear infinite;
  width: max-content;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
}
.marquee-item svg { width: 16px; height: 16px; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Feature cards (badges) ---------- */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.feature-card:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: var(--shadow); }
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(37, 242, 11, 0.12);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--lime);
  margin-bottom: 20px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.feature-card:hover .feature-icon { background: var(--lime); color: #0b0d0b; transform: scale(1.05); }

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 21px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.feature-card p { color: var(--muted); font-size: 14.5px; }

.feature-card--photo {
  min-height: 250px;
  background-image: linear-gradient(135deg, rgba(8, 10, 7, 0.93) 0%, rgba(8, 10, 7, 0.68) 58%, rgba(8, 10, 7, 0.35) 100%), var(--feature-image);
  background-position: center;
  background-size: cover;
}
.feature-card--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 10, 7, 0.05), rgba(8, 10, 7, 0.34));
  pointer-events: none;
  z-index: 0;
}
.feature-card--photo::before { z-index: 2; }
.feature-card--photo > * { position: relative; z-index: 1; }
.feature-card--photo:hover { background-position: center 46%; }
.feature-card--helmet { --feature-image: url("../images/freeHelmet.webp"); }
.feature-card--raincoat { --feature-image: url("../images/raincoatIncluded.webp"); }
.feature-card--tank { --feature-image: url("../images/fulllTank.webp"); }
.feature-card--tips { --feature-image: url("../images/mapsTips.webp"); }
.feature-card--delivery { --feature-image: url("../images/freeDelivery.webp"); }
.feature-card--discount { --feature-image: url("../images/longTermRates.webp"); }

/* ---------- Fleet grid ---------- */

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.fleet-card {
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}
.fleet-card:hover { transform: translateY(-8px); border-color: var(--line); box-shadow: var(--glow); }

.fleet-card-img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0e110c;
}
.fleet-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.fleet-card:hover .fleet-card-img img { transform: scale(1.08); }
.fleet-card-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11, 13, 11, 0.85));
}

.fleet-card-badge {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  background: var(--lime);
  color: #0b0d0b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
}

.fleet-card-body { padding: 24px; display: flex; flex-direction: column; gap: 14px; flex: 1; }

.fleet-card-title { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.fleet-card-title h3 { font-family: var(--font-display); font-size: 24px; text-transform: uppercase; letter-spacing: 0.04em; }
.fleet-card-title .cc { color: var(--lime); font-weight: 800; font-size: 13px; letter-spacing: 0.1em; }

.fleet-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.fleet-tags span {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(244, 243, 242, 0.06);
  border: 1px solid var(--line-2);
  padding: 5px 11px;
  border-radius: 999px;
}
.fleet-tags span.on { color: var(--lime); border-color: var(--line); background: rgba(37, 242, 11, 0.08); }

.fleet-card-desc { color: var(--muted); font-size: 14px; flex: 1; }

.fleet-price-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 12px;
  background: rgba(244, 243, 242, 0.04);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
}
.fleet-price-row div { text-align: center; }
.fleet-price-row .pr { font-family: var(--font-display); font-size: 18px; color: var(--text); line-height: 1.1; }
.fleet-price-row .pr small { font-size: 12px; color: var(--lime); }
.fleet-price-row .lb { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

.fleet-card-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 2px; }
.fleet-card-foot .price { font-size: 14px; color: var(--muted); }
.fleet-card-foot .price strong { font-family: var(--font-display); font-size: 26px; color: var(--lime); }

/* ---------- Split section (ride more / hero-booking) ---------- */

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

.split-img { position: relative; }
.split-img > img { width: 100%; height: auto; border-radius: 24px; border: 1px solid var(--line); box-shadow: var(--shadow); }
.split-img--portrait > img { aspect-ratio: 4 / 5; object-fit: cover; object-position: center 38%; }
.split-img .frame {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(37, 242, 11, 0.7);
  border-radius: 24px;
  z-index: 1;
  pointer-events: none;
}
.split-img .float-chip {
  position: absolute;
  bottom: 24px; right: -18px;
  background: var(--lime);
  color: #0b0d0b;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 18px;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(37, 242, 11, 0.4);
}

.split-points { display: grid; gap: 18px; margin: 30px 0 34px; }
.split-point { display: flex; gap: 16px; align-items: flex-start; }
.split-point .ic {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 13px;
  background: rgba(37, 242, 11, 0.1);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--lime);
}
.split-point h4 { font-size: 16.5px; font-weight: 800; letter-spacing: 0.02em; margin-bottom: 3px; }
.split-point p { color: var(--muted); font-size: 14px; }

/* ---------- Samui photo journal ---------- */

.photo-journal {
  background: var(--bg-2);
  overflow: hidden;
}
.photo-journal::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 320px;
  right: -160px;
  top: 80px;
  background: radial-gradient(closest-side, rgba(37, 242, 11, 0.1), transparent);
  pointer-events: none;
}
.photo-journal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 16px;
}
.photo-journal-tile {
  min-height: 180px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  isolation: isolate;
  transition: transform 0.45s ease, border-color 0.45s ease;
}
.photo-journal-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  z-index: -2;
}
.photo-journal-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 10, 7, 0.02) 24%, rgba(8, 10, 7, 0.88) 100%);
  z-index: -1;
}
.photo-journal-tile::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(244, 243, 242, 0.22);
  border-radius: 18px;
  pointer-events: none;
}
.photo-journal-tile:hover { transform: translateY(-7px); border-color: var(--lime); }
.photo-journal-tile:hover img { transform: scale(1.06); }
.photo-journal-tile--01,
.photo-journal-tile--05,
.photo-journal-tile--09 { grid-column: span 2; grid-row: span 2; }
.photo-journal-copy { position: relative; z-index: 1; display: grid; gap: 7px; max-width: 290px; }
.photo-journal-copy span { color: var(--lime); font-size: 11px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; }
.photo-journal-copy strong { font-family: var(--font-display); font-size: clamp(22px, 2.5vw, 34px); line-height: 0.98; text-transform: uppercase; letter-spacing: 0.02em; }

/* ---------- Price table (fleet page) ---------- */

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.price-card {
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.price-card:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: var(--glow); }
.price-card.featured { border-color: var(--lime); box-shadow: var(--glow); }
.price-card.featured .price-card-head { background: linear-gradient(135deg, rgba(170,206,1,0.16), rgba(170,206,1,0.03)); }
.price-card-head { padding: 24px 24px 18px; border-bottom: 1px solid var(--line-2); }
.price-card-head h3 { font-family: var(--font-display); font-size: 24px; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 6px; }
.price-card-head p { color: var(--muted); font-size: 13px; }
.price-card-img { aspect-ratio: 16 / 9; overflow: hidden; }
.price-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.price-card:hover .price-card-img img { transform: scale(1.06); }
.price-card-body { padding: 22px 24px; display: flex; flex-direction: column; gap: 16px; flex: 1; }
.price-list { display: grid; gap: 10px; }
.price-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--line-2);
  font-size: 14px;
}
.price-list li:last-child { border-bottom: none; padding-bottom: 0; }
.price-list .k { color: var(--muted); }
.price-list .v { font-weight: 800; color: var(--text); }
.price-list .v em { font-style: normal; color: var(--lime); }

/* ---------- Reviews ---------- */

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.review-card {
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s ease, border-color 0.3s ease;
  position: relative;
}
.review-card:hover { transform: translateY(-5px); border-color: var(--line); }
.review-card::before {
  content: "“";
  position: absolute;
  top: 10px; right: 22px;
  font-family: var(--font-display);
  font-size: 70px;
  color: rgba(37, 242, 11, 0.18);
  line-height: 1;
}
.review-stars { color: var(--gold); letter-spacing: 3px; font-size: 15px; }
.review-text { color: var(--text); font-size: 15.5px; font-style: italic; flex: 1; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-author-details { min-width: 0; flex: 1; }
.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--lime-dim);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 15px;
  color: var(--lime);
}
.review-author strong { font-size: 14px; display: block; }
.review-author span { font-size: 12px; color: var(--muted); }
.review-source { margin-left: auto; color: var(--lime); font-size: 12px; font-weight: 800; white-space: nowrap; text-decoration: none; }
.review-source:hover { text-decoration: underline; }

.reviews-banner {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(135deg, rgba(170,206,1,0.12), rgba(170,206,1,0.03));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 32px;
}
.reviews-banner .big { font-family: var(--font-display); font-size: 44px; color: var(--lime); line-height: 1; }
.reviews-banner .meta { color: var(--muted); font-size: 14px; }

/* ---------- CTA band ---------- */

.cta-band {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  padding: 72px 56px;
  text-align: center;
  background:
    radial-gradient(600px 300px at 80% 20%, rgba(170,206,1,0.18), transparent 60%),
    radial-gradient(500px 300px at 15% 90%, rgba(170,206,1,0.1), transparent 60%),
    var(--bg-2);
  border: 1px solid var(--line);
}
.cta-band--photo {
  background-image: linear-gradient(90deg, rgba(8, 10, 7, 0.94) 0%, rgba(8, 10, 7, 0.72) 52%, rgba(8, 10, 7, 0.38) 100%), url("../shop_photo.webp");
  background-position: center;
  background-size: cover;
}
.cta-band--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 10, 7, 0.08), rgba(8, 10, 7, 0.28));
  pointer-events: none;
}
.cta-band--photo > * { z-index: 1; }
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(170,206,1,0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.5;
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { font-family: var(--font-display); font-size: clamp(36px, 5vw, 58px); text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 14px; }
.cta-band h2 .accent { color: var(--lime); }
.cta-band p, .cta-band address { color: var(--muted); max-width: 520px; margin: 0 auto 32px; font-size: 17px; font-style: normal; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ---------- Contact / info ---------- */

.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.info-card {
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.info-card:hover { transform: translateY(-5px); border-color: var(--line); }
.info-card .ic {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: rgba(37, 242, 11, 0.12);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--lime);
  margin-bottom: 18px;
}
.info-card h3 { font-family: var(--font-display); font-size: 19px; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; }
.info-card p { color: var(--muted); font-size: 14.5px; }
.info-card a:hover { color: var(--lime); }
.info-card .hrs { display: grid; gap: 6px; margin-top: 4px; }
.info-card .hrs div { display: flex; justify-content: space-between; font-size: 14px; color: var(--muted); }
.info-card .hrs strong { color: var(--text); }
.info-card--photo {
  min-height: 230px;
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(135deg, rgba(8, 10, 7, 0.94) 0%, rgba(8, 10, 7, 0.7) 62%, rgba(8, 10, 7, 0.42) 100%), var(--info-image);
  background-position: center;
  background-size: cover;
}
.info-card--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 10, 7, 0.02), rgba(8, 10, 7, 0.34));
  pointer-events: none;
}
.info-card--photo > * { position: relative; z-index: 1; }
.info-card--whatsapp { --info-image: url("../images/use_this_in_website_6.webp"); }
.info-card--call { --info-image: url("../images/use_this_in_website_9.webp"); }
.info-card--address { --info-image: url("../shop_photo_3.webp"); }
.info-card address { font-style: normal; }

/* ---------- Map ---------- */

.map-wrap {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
}
.map-wrap iframe { display: block; width: 100%; height: 420px; border: 0; filter: grayscale(1) invert(0.92) contrast(0.85) hue-rotate(160deg) saturate(1.6); }
.map-pin {
  position: absolute;
  top: 24px; left: 24px;
  z-index: 2;
  background: rgba(11, 13, 11, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 18px;
  max-width: 260px;
  box-shadow: var(--shadow);
}
.map-pin strong { display: block; font-size: 14px; margin-bottom: 2px; }
.map-pin span { font-size: 12.5px; color: var(--muted); }

/* ---------- Stats ---------- */

.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat {
  text-align: center;
  padding: 30px 16px;
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.stat:hover { border-color: var(--line); transform: translateY(-4px); }
.stat .num { font-family: var(--font-display); font-size: 44px; color: var(--lime); line-height: 1; }
.stat .lb { margin-top: 8px; font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

/* ---------- Page hero (inner pages) ---------- */

.page-hero {
  position: relative;
  padding: 180px 0 80px;
  text-align: center;
  overflow: hidden;
  background: var(--bg);
}
.page-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(closest-side, rgba(37, 242, 11, 0.12), transparent);
  pointer-events: none;
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero--about {
  background-image: linear-gradient(90deg, rgba(8, 10, 7, 0.9), rgba(8, 10, 7, 0.58)), url("../shop_photo.webp");
  background-position: center 42%;
  background-size: cover;
}
.page-hero--contact {
  background-image: linear-gradient(90deg, rgba(8, 10, 7, 0.9), rgba(8, 10, 7, 0.58)), url("../images/use_this_in_website_8.webp");
  background-position: center 58%;
  background-size: cover;
}
.page-hero--fleet {
  background-image: linear-gradient(90deg, rgba(8, 10, 7, 0.9), rgba(8, 10, 7, 0.58)), url("../images/use_this_in_website_10.webp");
  background-position: center 55%;
  background-size: cover;
}
.page-hero h1 { font-family: var(--font-display); font-size: clamp(44px, 7vw, 78px); text-transform: uppercase; letter-spacing: 0.02em; margin: 18px 0 14px; }
.page-hero h1 .accent { color: var(--lime); }
.page-hero p { color: var(--muted); max-width: 640px; margin: 0 auto; font-size: 17px; }

/* ---------- About ---------- */

.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.about-copy h2 { font-family: var(--font-display); font-size: clamp(32px, 4vw, 48px); text-transform: uppercase; margin: 14px 0 18px; }
.about-copy p { color: var(--muted); margin-bottom: 16px; font-size: 16px; }
.about-copy p strong { color: var(--text); }

/* ---------- Footer ---------- */

.site-footer {
  background: #080a07;
  border-top: 1px solid var(--line-2);
  padding: 72px 0 0;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 56px;
}
.footer-about .logo { margin-bottom: 18px; }
.footer-about p { color: var(--muted); font-size: 14.5px; max-width: 320px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 12px;
  border: 1px solid var(--line-2);
  display: grid;
  place-items: center;
  color: var(--muted);
  transition: all 0.25s ease;
}
.footer-social a:hover { background: var(--lime); color: #0b0d0b; border-color: var(--lime); transform: translateY(-3px); }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text);
  margin-bottom: 20px;
}
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { color: var(--muted); font-size: 14.5px; transition: color 0.2s ease, padding-left 0.2s ease; }
.footer-col a:hover { color: var(--lime); padding-left: 4px; }
.footer-col p { color: var(--muted); font-size: 14.5px; margin-bottom: 10px; }
.footer-col address { font-style: normal; }
.footer-col p strong { color: var(--text); display: block; }

.footer-bottom {
  border-top: 1px solid var(--line-2);
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
}
.footer-bottom .lime { color: var(--lime); font-weight: 700; }

/* ---------- Reveal animations ---------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].revealed { opacity: 1; transform: none; }

[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="left"].revealed, [data-reveal="right"].revealed { transform: none; }

[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal-stagger].revealed > * { opacity: 1; transform: none; }
[data-reveal-stagger].revealed > *:nth-child(1) { transition-delay: 0.05s; }
[data-reveal-stagger].revealed > *:nth-child(2) { transition-delay: 0.12s; }
[data-reveal-stagger].revealed > *:nth-child(3) { transition-delay: 0.19s; }
[data-reveal-stagger].revealed > *:nth-child(4) { transition-delay: 0.26s; }
[data-reveal-stagger].revealed > *:nth-child(5) { transition-delay: 0.33s; }
[data-reveal-stagger].revealed > *:nth-child(6) { transition-delay: 0.4s; }
[data-reveal-stagger].revealed > *:nth-child(7) { transition-delay: 0.47s; }
[data-reveal-stagger].revealed > *:nth-child(8) { transition-delay: 0.54s; }
[data-reveal-stagger].revealed > *:nth-child(9) { transition-delay: 0.61s; }

/* ---------- Scroll progress ---------- */

.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lime), var(--lime-2));
  width: 0;
  z-index: 200;
  box-shadow: 0 0 12px rgba(37, 242, 11, 0.6);
}

/* ---------- Back to top ---------- */

.to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--lime);
  color: #0b0d0b;
  border: none;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 32px rgba(37, 242, 11, 0.35);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 150;
}
.to-top.show { opacity: 1; pointer-events: auto; transform: none; }
.to-top:hover { background: var(--lime-2); }

/* ---------- Responsive ---------- */

.hero-bg img.hero-scenic { opacity: 1; filter: saturate(1.05) contrast(1.03); }

@media (max-width: 1280px) {
  .container { padding-inline: clamp(18px, 3vw, 24px); }
}

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-stat { top: 100px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid, .price-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .info-grid { grid-template-columns: 1fr 1fr; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .split, .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .photo-journal-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 185px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .desktop-nav { display: none; }
  .hamburger { display: flex; }
  .header-actions .btn { display: none; }
}

@media (max-width: 768px) {
  .section { padding-block: clamp(56px, 9vw, 72px); }
  .section-head { margin-bottom: 36px; }
  .hero-desc { font-size: 16px; }
  .booking-row { grid-template-columns: 1fr; }
  .hero {
    min-height: 0;
    display: block;
    padding: 84px 0 56px;
    background: var(--bg);
  }
  .hero-bg,
  .hero-overlay {
    top: 84px;
    right: 0;
    bottom: auto;
    left: 0;
    height: clamp(410px, 108vw, 460px);
    display: block;
  }
  .hero-overlay { display: none; }
  .hero-bg img {
    object-position: 50% 100%;
    filter: saturate(1.08) contrast(1.04) brightness(1.48);
  }
  .hero-grid { gap: 32px; align-items: start; }
  .hero-content {
    max-width: 332px;
    padding-top: clamp(420px, 58vw, 460px);
  }
  .hero-eyebrow,
  .hero-title,
  .hero-desc,
  .hero-ctas,
  .hero-points { max-width: 320px; }
  .hero-title { margin-bottom: 18px; }
  .hero-desc { margin-bottom: 26px; }
  .hero-ctas { margin-bottom: 28px; }
  .hero-points { padding-top: 20px; }
  .booking-card {
    display: flex;
    flex-direction: column;
    background: rgba(11, 13, 11, 0.96);
    backdrop-filter: blur(12px);
  }
  .booking-head { order: 0; }
  .booking-scooter-picker { order: 1; margin-top: 0; }
  .booking-row { order: 2; margin-top: 18px; }
  .booking-total { order: 3; }
  #booking-submit { order: 4; }
  .booking-note { order: 5; }
}

@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .container { padding: 0 18px; }
  .features-grid, .fleet-grid, .price-grid { grid-template-columns: 1fr; }
  .reviews-grid, .info-grid { grid-template-columns: 1fr; }
  .photo-journal-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .photo-journal-tile { min-height: 170px; padding: 20px; border-radius: 20px; }
  .photo-journal-tile--01,
  .photo-journal-tile--05,
  .photo-journal-tile--09 { grid-column: span 2; grid-row: span 2; }
  .photo-journal-copy strong { font-size: clamp(20px, 5vw, 28px); }
  .hero { padding-top: 84px; }
  .hero-stat {
    top: 94px;
    right: 14px;
    padding: 12px 14px;
    gap: 10px;
    transform: scale(0.88);
    transform-origin: top right;
  }
  .hero-title { font-size: clamp(40px, 11.5vw, 56px); }
  .hero-points { grid-template-columns: 1fr; }
  .booking-card { padding: 24px; }
  .cta-band { padding: 48px 24px; }
  .split-img .float-chip { right: 8px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .marquee { transform: none; }
  .hero-scenic { opacity: 1; }
}

@media (max-width: 420px) {
  html { font-size: 14.5px; }
  .container { padding-inline: 14px; }
  .hero { padding-top: 84px; }
  .hero-title { font-size: clamp(34px, 10.8vw, 46px); letter-spacing: 0.01em; }
  .hero-ctas .btn { width: 100%; }
  .btn { padding: 13px 22px; font-size: 14px; }
  .booking-card { padding: 20px; }
  .booking-total { flex-wrap: wrap; gap: 6px; }
  .header-actions .btn { display: none; }
  .hamburger { width: 42px; height: 42px; }
  .to-top { bottom: 18px; right: 18px; width: 44px; height: 44px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .page-hero h1 { font-size: clamp(34px, 11vw, 44px); }
}
