/* ============================================================
   Trench Rentals — Premium Car Rental Website
   Design system: Sora + Inter · dark navy + gold
   ============================================================ */

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --font-head: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;

  --bg: #f6f8fc;
  --bg-2: #ffffff;
  --surface: #ffffff;
  --ink: #0c1526;
  --ink-2: #4a5870;
  --ink-3: #8a96ab;

  --dark: #070d1b;
  --dark-2: #0b1526;
  --dark-3: #111d33;
  --line: #e7ecf4;
  --line-dark: rgba(255, 255, 255, 0.1);

  --gold: #f5b301;
  --gold-2: #ffd24a;
  --gold-3: #f08700;
  --gold-grad: linear-gradient(135deg, #ffd24a 0%, #f5b301 55%, #f08700 100%);

  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 26px;

  --shadow-sm: 0 2px 10px rgba(12, 21, 38, 0.06);
  --shadow-md: 0 12px 34px rgba(12, 21, 38, 0.10);
  --shadow-lg: 0 30px 70px rgba(12, 21, 38, 0.18);
  --shadow-gold: 0 14px 34px rgba(245, 179, 1, 0.35);

  --container: 1200px;
  --nav-h: 78px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; }

::selection { background: var(--gold); color: var(--dark); }

:focus-visible { outline: 2px solid var(--gold-3); outline-offset: 2px; }
input:focus-visible, select:focus-visible, textarea:focus-visible { outline: none; }

::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #c9d2e0; border-radius: 8px; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ---------- Utilities ---------- */
.container { width: min(var(--container), 92%); margin-inline: auto; }

.ic { width: 18px; height: 18px; flex-shrink: 0; }

.grad-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.section { padding: 96px 0; }
.section--dark { background: var(--dark); color: #dfe6f1; }
.section--dark .section__lead { color: #9fb0c9; }

.section__head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section__title { font-family: var(--font-head); font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; color: var(--ink); }
.section--dark .section__title { color: #fff; }
.section__lead { margin-top: 14px; color: var(--ink-2); font-size: 1.05rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-3);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold-grad); border-radius: 2px; }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.98rem;
  padding: 14px 28px; border-radius: 999px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
  white-space: nowrap;
}
.btn .ic { transition: transform 0.3s var(--ease); }
.btn:hover .ic { transform: translateX(4px); }
.btn:active { transform: translateY(1px) scale(0.99); }

.btn--primary {
  background: var(--dark); color: #fff;
  box-shadow: var(--shadow-md);
}
.btn--primary:hover { background: #14203a; transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn--gold {
  background: var(--gold-grad); color: var(--dark);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 20px 44px rgba(245, 179, 1, 0.45); }

.btn--ghost {
  background: transparent; color: var(--ink);
  border: 1.5px solid #d7deea;
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-3); transform: translateY(-2px); }

.hero .btn--ghost, .section--dark .btn--ghost { color: #fff; border-color: rgba(255, 255, 255, 0.35); }
.hero .btn--ghost:hover, .section--dark .btn--ghost:hover { border-color: var(--gold); color: var(--gold-2); }

.btn--lg { padding: 17px 34px; font-size: 1.02rem; }
.btn--sm { padding: 10px 20px; font-size: 0.9rem; }
.btn--block { width: 100%; }
.btn--nav { padding: 11px 22px; }

.btn__spinner {
  display: none; width: 18px; height: 18px; border-radius: 50%;
  border: 2.5px solid rgba(255, 255, 255, 0.35); border-top-color: #fff;
  animation: spin 0.7s linear infinite;
}
.btn.is-loading .btn__spinner { display: inline-block; }
.btn--gold .btn__spinner { border-color: rgba(12, 21, 38, 0.3); border-top-color: var(--dark); }
@keyframes spin { to { transform: rotate(360deg); } }

.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--ink); transition: color 0.3s, gap 0.3s var(--ease); }
.link-arrow .ic { width: 16px; height: 16px; }
.link-arrow:hover { color: var(--gold-3); gap: 12px; }

/* ---------- Pill ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em;
}
.pill--glass {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #cdd8ea;
  backdrop-filter: blur(8px);
}
.pill__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-2); box-shadow: 0 0 0 4px rgba(245, 179, 1, 0.25); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 3px rgba(245,179,1,.25);} 50% { box-shadow: 0 0 0 7px rgba(245,179,1,.08);} }
.pill--gold { background: rgba(245, 179, 1, 0.12); border: 1px solid rgba(245, 179, 1, 0.4); color: var(--gold-2); }

/* ---------- Topbar ---------- */
.topbar { background: var(--dark); color: #aebad0; font-size: 0.82rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; min-height: 40px; gap: 12px; }
.topbar__left { display: flex; align-items: center; gap: 20px; }
.topbar__item { display: inline-flex; align-items: center; gap: 7px; }
.topbar__item .ic { width: 14px; height: 14px; color: var(--gold); }
.topbar__item a { color: #cdd8ea; transition: color 0.3s; }
.topbar__item a:hover { color: var(--gold-2); }
.topbar__badge { display: inline-flex; align-items: center; gap: 6px; color: var(--gold-2); font-weight: 600; letter-spacing: 0.04em; }

/* ---------- Navbar ---------- */
.navbar {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.navbar.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 10px 30px rgba(12, 21, 38, 0.07); }
.navbar__inner { display: flex; align-items: center; justify-content: space-between; min-height: var(--nav-h); gap: 16px; }

.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__mark {
  width: 42px; height: 42px; border-radius: 13px;
  display: grid; place-items: center;
  background: var(--gold-grad); color: var(--dark);
  box-shadow: 0 6px 18px rgba(245, 179, 1, 0.4);
  transition: transform 0.35s var(--ease);
}
.brand:hover .brand__mark { transform: rotate(-6deg) scale(1.05); }
.brand__mark .ic { width: 24px; height: 24px; }
.brand__text { font-family: var(--font-head); font-weight: 800; font-size: 1.28rem; letter-spacing: -0.03em; white-space: nowrap; color: var(--ink); }
.brand__text em { font-style: normal; color: var(--gold-3); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav__link {
  position: relative; padding: 10px 15px; border-radius: 10px;
  font-weight: 600; font-size: 0.94rem; color: var(--ink-2);
  transition: color 0.3s, background 0.3s;
}
.nav__link::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 4px; height: 2px;
  background: var(--gold-grad); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease);
}
.nav__link:hover { color: var(--ink); }
.nav__link.is-active { color: var(--ink); }
.nav__link.is-active::after, .nav__link:hover::after { transform: scaleX(1); }

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

.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; background: var(--bg); flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(1200px 600px at 85% -10%, #12213c 0%, var(--dark) 55%);
  color: #eef2f9;
  overflow: hidden;
  padding: 80px 0 110px;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
}
.hero__glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5; }
.hero__glow--1 { width: 520px; height: 520px; right: -120px; top: -140px; background: radial-gradient(circle, rgba(245,179,1,0.32), transparent 65%); }
.hero__glow--2 { width: 460px; height: 460px; left: -160px; bottom: -180px; background: radial-gradient(circle, rgba(60,110,255,0.25), transparent 65%); }
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.38;
}
.hero__shade {
  position: absolute; inset: 0;
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(18, 33, 60, 0.30) 0%, rgba(7, 13, 27, 0.90) 62%),
    linear-gradient(180deg, rgba(7, 13, 27, 0.32), rgba(7, 13, 27, 0.82));
}

.hero__inner { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }

.hero__content { max-width: 560px; }
.hero__title { font-family: var(--font-head); font-size: clamp(2.4rem, 5.4vw, 3.7rem); font-weight: 800; line-height: 1.08; letter-spacing: -0.03em; margin: 22px 0 18px; }
.hero__sub { font-size: 1.06rem; color: #b6c2d8; max-width: 470px; }
.hero__tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 32px; }
.hero__tag {
  padding: 7px 14px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.82rem; font-weight: 500; color: #cdd8ea;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero .btn--ghost { backdrop-filter: blur(6px); }

.hero__stats { display: flex; gap: 44px; margin-top: 44px; padding-top: 28px; border-top: 1px solid rgba(255, 255, 255, 0.12); }
.stat { display: grid; grid-template-columns: auto auto; grid-template-rows: auto auto; column-gap: 4px; }
.stat__num { grid-column: 1; grid-row: 1; font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; color: #fff; line-height: 1; }
.stat__plus { grid-column: 2; grid-row: 1; align-self: center; color: var(--gold-2); font-weight: 700; font-size: 0.95rem; }
.stat__label { grid-column: 1 / -1; grid-row: 2; font-size: 0.82rem; color: #9fb0c9; margin-top: 4px; }

/* ---------- Booking card ---------- */
.booking {
  position: relative;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45);
}
.booking::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(135deg, rgba(255, 210, 74, 0.5), rgba(255,255,255,0.06) 40%, rgba(240, 135, 0, 0.35));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.booking__head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 20px; }
.booking__title { font-family: var(--font-head); font-size: 1.35rem; font-weight: 700; color: #fff; }
.booking__note { font-size: 0.85rem; color: #9fb0c9; }

.seg {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
  background: rgba(0, 0, 0, 0.3); border-radius: 999px; padding: 4px;
  margin-bottom: 20px;
}
.seg__btn {
  padding: 10px 12px; border-radius: 999px;
  font-weight: 600; font-size: 0.9rem; color: #9fb0c9;
  transition: all 0.3s var(--ease);
}
.seg__btn.is-active { background: var(--gold-grad); color: var(--dark); box-shadow: 0 6px 16px rgba(245, 179, 1, 0.35); }

.booking__form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.field--wide { grid-column: 1 / -1; }
.field__label { font-size: 0.8rem; font-weight: 600; color: #cdd8ea; letter-spacing: 0.03em; }

.select-wrap { position: relative; display: flex; align-items: center; }
.field__ic { position: absolute; left: 14px; width: 17px; height: 17px; color: var(--gold-2); pointer-events: none; }

.field__control {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: #fff;
  border-radius: 12px;
  padding: 12px 12px 12px 42px;
  font-size: 0.92rem;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
  appearance: none; -webkit-appearance: none;
}
.field__control::placeholder { color: #7e8ca6; }
.field__control:hover { border-color: rgba(255, 255, 255, 0.25); }
.field__control:focus {
  outline: none; border-color: var(--gold);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 0 3px rgba(245, 179, 1, 0.18);
}
select.field__control {
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ffd24a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 36px;
}
select.field__control option { color: var(--ink); background: #fff; }

input[type="date"].field__control::-webkit-calendar-picker-indicator,
input[type="time"].field__control::-webkit-calendar-picker-indicator { filter: invert(0.8) sepia(1) saturate(4) hue-rotate(5deg); cursor: pointer; }
input[type="datetime-local"].field__control::-webkit-calendar-picker-indicator { filter: invert(0.6); cursor: pointer; }

textarea.field__control { padding: 12px 14px; resize: vertical; min-height: 84px; line-height: 1.5; }

.err { font-size: 0.84rem; font-weight: 600; color: #ff8a8a; }
.err:empty { display: none; }
.booking .err { color: #ffb4b4; }

.booking__submit { margin-top: 4px; }
.booking__fineprint { grid-column: 1 / -1; text-align: center; font-size: 0.78rem; color: #8b99b3; }

/* ---------- Marquee ---------- */
.marquee { background: var(--dark); border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); overflow: hidden; padding: 18px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track { display: flex; width: max-content; animation: marquee 70s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group { display: flex; align-items: center; gap: 40px; padding-right: 40px; }
.marquee__group span { font-family: var(--font-head); font-size: 0.95rem; font-weight: 600; color: #66748f; white-space: nowrap; display: inline-flex; align-items: center; gap: 40px; }
.marquee__group span::after { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); opacity: 0.5; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- About ---------- */
.about__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: center; }
.about__media { position: relative; }
.about__img-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about__img-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(7,13,27,0.5)); }
.about__img-wrap img { width: 100%; height: 480px; object-fit: cover; transition: transform 0.8s var(--ease); }
.about__img-wrap:hover img { transform: scale(1.05); }
.about__badge {
  position: absolute; z-index: 2; bottom: 26px; left: 26px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
  padding: 18px 22px; border-radius: 16px;
  background: rgba(7, 13, 27, 0.72); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.14); color: #fff;
}
.about__badge-num { font-family: var(--font-head); font-size: 1.9rem; font-weight: 800; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.about__badge-label { font-size: 0.78rem; color: #b6c2d8; line-height: 1.4; }
.about__card {
  position: absolute; top: -22px; right: -14px; z-index: 3;
  display: flex; align-items: center; gap: 12px;
  background: var(--surface); border-radius: 16px; padding: 16px 20px;
  box-shadow: var(--shadow-md); border: 1px solid var(--line);
  font-size: 0.9rem; max-width: 250px;
}
.about__card .ic { width: 30px; height: 30px; color: var(--gold-3); }
.about__card strong { color: var(--ink); display: block; font-weight: 700; }

.about__content .section__title { margin: 10px 0 18px; }
.about__content > p { color: var(--ink-2); margin-bottom: 24px; }
.about__list { display: grid; gap: 14px; margin-bottom: 32px; }
.about__list li { display: flex; align-items: flex-start; gap: 12px; font-weight: 500; color: var(--ink); }
.check {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center; font-size: 0.72rem; font-weight: 800;
  background: rgba(245, 179, 1, 0.15); color: var(--gold-3);
  border: 1px solid rgba(245, 179, 1, 0.4);
}
.about__cta { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }

/* ---------- Grid ---------- */
.grid { display: grid; gap: 26px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Service cards ---------- */
.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s;
  position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: var(--gold-grad); transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(245, 179, 1, 0.35); }
.card:hover::before { transform: scaleX(1); }

.card--service { display: flex; flex-direction: column; align-items: flex-start; }
.card__icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: grid; place-items: center; margin-bottom: 20px;
  background: rgba(245, 179, 1, 0.12); color: var(--gold-3);
  border: 1px solid rgba(245, 179, 1, 0.25);
  transition: background 0.4s, color 0.4s, transform 0.4s var(--ease);
}
.card__icon .ic { width: 27px; height: 27px; }
.card:hover .card__icon { background: var(--gold-grad); color: var(--dark); transform: rotate(-6deg) scale(1.06); }
.card__title { font-family: var(--font-head); font-size: 1.18rem; font-weight: 700; margin-bottom: 10px; }
.card__text { color: var(--ink-2); font-size: 0.94rem; margin-bottom: 16px; }
.card__list { display: grid; gap: 9px; margin-bottom: 22px; }
.card__list li { display: flex; align-items: center; gap: 9px; font-size: 0.9rem; color: var(--ink-2); }
.card__list li::before { content: "✓"; color: var(--gold-3); font-weight: 800; }
.card__link {
  margin-top: auto; display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 0.94rem; color: var(--ink);
  padding: 0; text-align: left;
  transition: color 0.3s, gap 0.3s var(--ease);
}
.card__link .ic { width: 16px; height: 16px; }
.card__link:hover { color: var(--gold-3); gap: 12px; }

/* ---------- Fleet ---------- */
.fleet__tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.fleet__tab {
  padding: 10px 22px; border-radius: 999px;
  background: var(--surface); border: 1.5px solid var(--line);
  font-weight: 600; font-size: 0.92rem; color: var(--ink-2);
  transition: all 0.3s var(--ease);
}
.fleet__tab:hover { border-color: var(--gold); color: var(--ink); transform: translateY(-2px); }
.fleet__tab.is-active { background: var(--dark); color: #fff; border-color: var(--dark); box-shadow: var(--shadow-md); }

.fleet__card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
  animation: fadeUp 0.5s var(--ease) both;
}
.fleet__card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px);} to { opacity: 1; transform: translateY(0);} }

.fleet__img-wrap { position: relative; height: 210px; overflow: hidden; background: linear-gradient(135deg, #0c1526, #1c2b4a); }
.fleet__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.fleet__card:hover .fleet__img-wrap img { transform: scale(1.07); }
.fleet__img-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(7,13,27,0.65)); }
.fleet__tag {
  position: absolute; z-index: 2; top: 14px; left: 14px;
  padding: 6px 12px; border-radius: 999px;
  background: var(--gold-grad); color: var(--dark);
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase;
}
.fleet__specs {
  position: absolute; z-index: 2; bottom: 14px; left: 16px; right: 16px;
  display: flex; gap: 18px; color: #fff; font-size: 0.8rem;
}
.fleet__specs span { display: inline-flex; align-items: center; gap: 6px; }
.fleet__specs .ic { width: 15px; height: 15px; color: var(--gold-2); }

.fleet__body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.fleet__name { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; margin-bottom: 6px; }
.fleet__desc { font-size: 0.88rem; color: var(--ink-2); margin-bottom: 18px; }
.fleet__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.fleet__price { display: flex; flex-direction: column; line-height: 1.2; }
.fleet__price em { font-style: normal; font-family: var(--font-head); font-size: 1.25rem; font-weight: 800; color: var(--ink); }
.fleet__price span { font-size: 0.74rem; color: var(--ink-3); }

/* ---------- Why ---------- */
.why__item { text-align: center; padding: 26px 18px; border-radius: var(--radius); background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); transition: transform 0.4s var(--ease), border-color 0.4s, background 0.4s; }
.why__item:hover { transform: translateY(-6px); border-color: rgba(245,179,1,0.35); background: rgba(245,179,1,0.05); }
.why__icon {
  width: 62px; height: 62px; margin: 0 auto 18px; border-radius: 18px;
  display: grid; place-items: center;
  background: rgba(245, 179, 1, 0.12); border: 1px solid rgba(245, 179, 1, 0.3);
  color: var(--gold-2);
}
.why__icon .ic { width: 28px; height: 28px; }
.why__title { font-family: var(--font-head); font-size: 1.08rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.why__text { font-size: 0.9rem; color: #9fb0c9; }

/* ---------- Steps ---------- */
.steps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step {
  position: relative; padding: 34px 30px 34px 46px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--gold-grad); }
.step__num {
  font-family: var(--font-head); font-size: 2.6rem; font-weight: 800; line-height: 1;
  background: linear-gradient(180deg, #ffe08a, #e9a200);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  opacity: 0.85;
}
.step__title { font-family: var(--font-head); font-size: 1.12rem; font-weight: 700; margin: 14px 0 8px; }
.step__text { color: var(--ink-2); font-size: 0.94rem; }

/* ---------- Offer ---------- */
.offer { background: linear-gradient(180deg, var(--bg) 0%, #fdf3d8 100%); }
.offer__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.offer__content .pill { margin-bottom: 18px; }
.offer__content .section__title { margin-bottom: 14px; }
.offer__content .section__lead { color: var(--ink-2); margin-bottom: 28px; }
.offer__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.offer__included { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.offer__included span { display: inline-flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: 600; color: var(--ink-2); }
.offer__included .ic { width: 16px; height: 16px; color: var(--gold-3); }

.card--form { padding: 34px; position: relative; box-shadow: var(--shadow-lg); }
.card--form::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 5px; background: var(--gold-grad); border-radius: var(--radius) var(--radius) 0 0; }
.card--form:hover { transform: none; }
.card--form__title { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; margin-bottom: 4px; }
.card--form__sub { color: var(--ink-2); font-size: 0.92rem; margin-bottom: 22px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .field__label { color: var(--ink-2); }
.form-grid .field__control { background: var(--bg); border-color: var(--line); color: var(--ink); }
.form-grid .field__control::placeholder { color: var(--ink-3); }
.form-grid .field__control:hover { border-color: #cbd5e4; }
.form-grid .field__control:focus { border-color: var(--gold); background: #fff; box-shadow: 0 0 0 3px rgba(245, 179, 1, 0.15); }
.form-grid .field__ic { color: var(--gold-3); }
.form-grid select.field__control { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23f08700' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>"); }

/* ---------- Routes ---------- */
.routes__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.route {
  padding: 28px; border-radius: var(--radius);
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.4s var(--ease), border-color 0.4s, background 0.4s;
}
.route:hover { transform: translateY(-6px); border-color: rgba(245,179,1,0.35); background: rgba(245,179,1,0.04); }
.route__icon { font-size: 1.7rem; }
.route__title { font-family: var(--font-head); font-size: 1.08rem; font-weight: 700; color: #fff; margin: 12px 0 14px; }
.route__list { display: grid; gap: 9px; }
.route__list li {
  display: flex; align-items: center; gap: 9px;
  font-size: 0.88rem; color: #a9b7cd;
}
.route__list li::before { content: "→"; color: var(--gold); font-weight: 700; }

/* ---------- Testimonials ---------- */
.tst { max-width: 820px; margin: 0 auto; position: relative; }
.tst__track { display: flex; overflow: hidden; border-radius: var(--radius-lg); transition: transform 0.55s var(--ease); }
.tst__slide {
  width: 100%; flex: 0 0 100%; min-width: 100%;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 44px 48px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.tst__stars { color: var(--gold); font-size: 1.15rem; letter-spacing: 3px; margin-bottom: 18px; }
.tst__quote { font-family: var(--font-head); font-size: 1.12rem; font-weight: 500; line-height: 1.65; color: var(--ink); margin-bottom: 26px; }
.tst__person { display: flex; align-items: center; justify-content: center; gap: 14px; }
.tst__avatar {
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--gold-grad); color: var(--dark);
  font-family: var(--font-head); font-weight: 800; font-size: 0.95rem;
  box-shadow: var(--shadow-gold);
}
.tst__person strong { display: block; font-size: 0.98rem; }
.tst__person small { color: var(--ink-2); font-size: 0.84rem; }
.tst__nav { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 28px; }
.tst__btn {
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--surface); border: 1.5px solid var(--line); color: var(--ink);
  transition: all 0.3s var(--ease);
}
.tst__btn:hover { background: var(--dark); color: var(--gold-2); border-color: var(--dark); transform: translateY(-2px); }
.tst__dots { display: flex; gap: 8px; }
.tst__dot { width: 8px; height: 8px; border-radius: 50%; background: #ccd4e2; transition: all 0.3s var(--ease); padding: 0; }
.tst__dot.is-active { width: 26px; border-radius: 999px; background: var(--gold-grad); }

/* ---------- FAQ ---------- */
.faq__inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: start; }
.faq__side .section__title { margin: 10px 0 14px; }
.faq__side .btn { margin-top: 22px; }
.faq__list { display: grid; gap: 14px; }
.faq__item {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px; overflow: hidden;
  transition: border-color 0.3s;
}
.faq__item.is-open { border-color: rgba(245,179,1,0.45); }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 22px; text-align: left;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem; color: #fff;
}
.faq__chev {
  flex-shrink: 0; width: 18px; height: 18px; position: relative;
  transition: transform 0.35s var(--ease);
}
.faq__chev::before, .faq__chev::after { content: ""; position: absolute; top: 50%; left: 50%; background: var(--gold-2); border-radius: 2px; }
.faq__chev::before { width: 16px; height: 2px; transform: translate(-50%, -50%); }
.faq__chev::after { width: 2px; height: 16px; transform: translate(-50%, -50%); transition: opacity 0.25s, transform 0.35s var(--ease); }
.faq__item.is-open .faq__chev { transform: rotate(180deg); }
.faq__item.is-open .faq__chev::after { opacity: 0; }
.faq__a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.faq__a p { padding: 0 22px 20px; color: #a9b7cd; font-size: 0.93rem; }

/* ---------- Contact ---------- */
.contact__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.contact__card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 34px 22px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
}
.contact__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(245,179,1,0.35); }
.contact__icon {
  width: 60px; height: 60px; border-radius: 18px; margin-bottom: 18px;
  display: grid; place-items: center;
  background: rgba(245, 179, 1, 0.12); color: var(--gold-3);
  border: 1px solid rgba(245, 179, 1, 0.25);
  transition: background 0.4s, color 0.4s;
}
.contact__card:hover .contact__icon { background: var(--gold-grad); color: var(--dark); }
.contact__icon .ic { width: 27px; height: 27px; }
.contact__title { font-family: var(--font-head); font-size: 1.08rem; font-weight: 700; margin-bottom: 6px; }
.contact__text { font-size: 0.86rem; color: var(--ink-2); margin-bottom: 10px; }
.contact__value { font-weight: 700; color: var(--ink); font-size: 0.92rem; }

/* ---------- Footer ---------- */
.footer { background: var(--dark); color: #9fb0c9; padding: 80px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 52px; }
.brand--footer .brand__text { color: #fff; }
.footer__brand > p { margin: 18px 0 22px; font-size: 0.94rem; max-width: 300px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09);
  color: #cdd8ea; transition: all 0.3s var(--ease);
}
.footer__social a svg { width: 17px; height: 17px; }
.footer__social a:hover { background: var(--gold-grad); color: var(--dark); border-color: transparent; transform: translateY(-3px); }
.footer__col h4 { font-family: var(--font-head); color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 18px; }
.footer__col ul { display: grid; gap: 12px; font-size: 0.92rem; }
.footer__col a { transition: color 0.3s, padding-left 0.3s var(--ease); }
.footer__col a:hover { color: var(--gold-2); padding-left: 5px; }
.footer__contact li { line-height: 1.6; }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.84rem;
}
.footer__credits {
  padding: 0 0 24px; margin: 0; text-align: center;
  font-size: 0.76rem; color: #56647f;
}

/* ---------- Floating buttons ---------- */
.fab {
  position: fixed; right: 26px; z-index: 150;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: var(--shadow-lg);
  transition: transform 0.35s var(--ease), opacity 0.35s, visibility 0.35s;
}
.fab .ic { width: 24px; height: 24px; }
.fab--call {
  bottom: calc(26px + env(safe-area-inset-bottom, 0px));
  background: var(--gold-grad); color: var(--dark);
  animation: fabPulse 2.4s infinite;
}
@keyframes fabPulse { 0%,100% { box-shadow: 0 8px 24px rgba(245,179,1,0.5);} 50% { box-shadow: 0 8px 34px rgba(245,179,1,0.85);} }
.fab--call:hover { transform: translateY(-4px) scale(1.05); }
.fab--top {
  bottom: calc(96px + env(safe-area-inset-bottom, 0px)); background: var(--dark); color: #fff;
  opacity: 0; visibility: hidden; transform: translateY(12px);
}
.fab--top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.fab--top:hover { background: #14203a; }

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 500; display: grid; place-items: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(7, 13, 27, 0.7); backdrop-filter: blur(6px); animation: fadeIn 0.3s both; }
.modal__panel {
  position: relative; width: min(460px, 100%);
  max-height: calc(100vh - 40px); overflow-y: auto;
  background: var(--surface); border-radius: var(--radius-lg);
  padding: 38px 34px; text-align: center;
  box-shadow: var(--shadow-lg);
  animation: popIn 0.4s var(--ease) both;
}
@keyframes popIn { from { opacity: 0; transform: translateY(26px) scale(0.96);} to { opacity: 1; transform: translateY(0) scale(1);} }
@keyframes fadeIn { from { opacity: 0;} to { opacity: 1;} }
.modal__close {
  position: absolute; top: 16px; right: 16px;
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center; background: var(--bg); color: var(--ink-2);
  transition: all 0.3s;
}
.modal__close:hover { background: #ffe6b3; color: var(--dark); }
.modal__icon {
  width: 72px; height: 72px; margin: 0 auto 18px; border-radius: 50%;
  display: grid; place-items: center; font-size: 2rem;
  background: rgba(245, 179, 1, 0.12); color: var(--gold-3);
}
.modal__title { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; }
.modal__sub { color: var(--ink-2); font-size: 0.95rem; margin-bottom: 20px; }
.modal__body { background: var(--bg); border: 1px solid var(--line); border-radius: 14px; padding: 18px; margin-bottom: 24px; text-align: left; }
.modal__body-row { display: flex; justify-content: space-between; gap: 12px; padding: 7px 0; font-size: 0.9rem; }
.modal__body-row span:first-child { color: var(--ink-2); }
.modal__body-row strong { font-weight: 700; color: var(--ink); }
.modal__body-row--total { border-top: 1px dashed var(--line); margin-top: 6px; padding-top: 14px; }
.modal__body-row--total strong { font-size: 1.15rem; color: var(--gold-3); }
.modal__body-row--note { border-top: 1px dashed var(--line); margin-top: 6px; padding-top: 10px; }
.modal__body-row--note strong { font-size: 0.82rem; color: var(--gold-3); }

.modal__contact {
  margin: 0 auto 18px; padding: 16px 18px; text-align: left;
  background: linear-gradient(135deg, rgba(245, 179, 1, 0.10), rgba(240, 135, 0, 0.06));
  border: 1px solid rgba(245, 179, 1, 0.30);
  border-radius: 14px;
}
.modal__phone {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-size: 1.3rem; font-weight: 800;
  color: var(--dark);
}
.modal__phone .ic { width: 20px; height: 20px; color: var(--gold-3); }
.modal__phone:hover { color: var(--gold-3); }
.modal__phone-note { font-size: 0.8rem; color: var(--ink-2); padding-left: 30px; margin: 2px 0 10px; }
.modal__email { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.92rem; color: var(--ink); }
.modal__email .ic { width: 15px; height: 15px; color: var(--gold-3); }
.modal__email:hover { color: var(--gold-3); }
.modal__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.modal__call, .modal__mail { display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.modal__actions .ic { width: 17px; height: 17px; }
.modal__close-link {
  display: block; margin: 16px auto 0; background: none; border: none;
  color: var(--ink-2); font-weight: 600; font-size: 0.88rem; cursor: pointer;
  text-decoration: underline; text-underline-offset: 3px;
}
.modal__close-link:hover { color: var(--gold-3); }
.modal__service-msg {
  font-size: 0.92rem; color: var(--ink); line-height: 1.55;
  background: rgba(245, 179, 1, 0.08); border: 1px dashed rgba(245, 179, 1, 0.4);
  border-radius: 10px; padding: 12px 14px; margin-bottom: 10px;
}

/* ---------- Image fallback ---------- */
.img-fallback {
  background:
    radial-gradient(circle at 50% 55%, rgba(245, 179, 1, 0.22) 0%, transparent 45%),
    linear-gradient(135deg, #0c1526, #1c2b4a);
  display: grid; place-items: center;
}
.img-fallback::before {
  content: ""; width: 120px; height: 120px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 24 24' fill='none' stroke='%23f5b301' stroke-width='1' stroke-linecap='round' stroke-linejoin='round' opacity='0.7'><path d='M5 11l1.5-4.5A2 2 0 0 1 8.4 5h7.2a2 2 0 0 1 1.9 1.5L19 11'/><path d='M3 16v-3a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v3'/><circle cx='7' cy='16.5' r='1.8'/><circle cx='17' cy='16.5' r='1.8'/><path d='M5 16.5h2M17 16.5h2'/></svg>") center / contain no-repeat;
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-in { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .marquee__track { animation-duration: 70s !important; }
  .tst__track { transition-duration: 0.55s !important; }
  .hero__video { display: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__content { max-width: 100%; }
  .about__grid { grid-template-columns: 1fr; gap: 56px; }
  .offer__inner { grid-template-columns: 1fr; gap: 48px; }
  .faq__inner { grid-template-columns: 1fr; gap: 40px; }
  .routes__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 68px 0; }
  .topbar__item--hide { display: none; }
  .nav-toggle { display: flex; }

  .nav {
    position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0; z-index: 190;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: rgba(255, 255, 255, 0.98);
    padding: 24px 5%;
    transform: translateY(-12px); opacity: 0; visibility: hidden;
    transition: all 0.4s var(--ease);
  }
  .nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav__link { padding: 16px 10px; font-size: 1.1rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav__link::after { display: none; }
  .nav__link.is-active { color: var(--gold-3); }

  .booking { padding: 24px; }
  .booking__form { grid-template-columns: 1fr; }
  .hero__video, .hero__shade { display: none; }
  .hero__stats { gap: 28px; }
  .steps__grid { grid-template-columns: 1fr; }
  .tst__slide { padding: 34px 26px; }
  .modal__actions { grid-template-columns: 1fr; }
  .modal__phone-note { padding-left: 0; }
}

@media (max-width: 560px) {
  .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .routes__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hero { padding: 56px 0 80px; }
  .hero__stats { flex-wrap: wrap; gap: 22px; }
  .about__img-wrap img { height: 340px; }
  .about__card { top: -14px; right: -6px; padding: 12px 14px; font-size: 0.82rem; }
  .fab { right: 18px; width: 50px; height: 50px; }
  .fab--call { bottom: 18px; }
  .fab--top { bottom: 82px; }
  .btn--nav { display: none; }
  .footer__bottom { justify-content: center; text-align: center; }
}
