@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&display=swap');

:root {
  color-scheme: dark;
  --primary: #d8ad62;
  --primary-hover: #ebc781;
  --primary-soft: rgba(216, 173, 98, 0.14);
  --bg-color: #060908;
  --surface: #0d1211;
  --surface-raised: #131a18;
  --forest: #15231f;
  --sage: #d8e2dd;
  --mint: #eef3f0;
  --ink: #0a100e;
  --text-main: #f5f6f3;
  --text-muted: #9ca5a1;
  --border: rgba(255, 255, 255, 0.13);
  --border-dark: rgba(10, 16, 14, 0.17);
  --glass-bg: rgba(8, 12, 11, 0.72);
  --glass-border: rgba(255, 255, 255, 0.14);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 36px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-smooth: cubic-bezier(0.65, 0, 0.35, 1);
  --page-gutter: clamp(1.2rem, 4vw, 5rem);
}

@view-transition {
  navigation: auto;
}

::view-transition-old(root) {
  animation: 0.45s var(--ease-smooth) both page-fade-out;
}

::view-transition-new(root) {
  animation: 0.65s var(--ease-out) both page-fade-in;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  background: var(--bg-color);
}

body {
  min-width: 320px;
  overflow-x: clip;
  background:
    radial-gradient(circle at 78% 24%, rgba(216, 173, 98, 0.055), transparent 27rem),
    var(--bg-color);
  color: var(--text-main);
  font-family: 'Manrope', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

::selection {
  background: var(--primary);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

ul {
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 10001;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--primary);
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 0.25s var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
}

.glass {
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  backdrop-filter: blur(18px) saturate(120%);
}

/* Shared header */
header {
  position: fixed;
  left: 0;
  right: 0;
  top: 16px;
  z-index: 1000;
  display: grid;
  grid-template-columns: minmax(150px, 1fr) auto minmax(150px, 1fr);
  align-items: center;
  width: min(calc(100% - 32px), 1460px);
  margin-inline: auto;
  padding: 0.8rem 1rem 0.8rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 24px;
  background: rgba(6, 9, 8, 0.16);
  transition:
    top 0.45s var(--ease-out),
    width 0.45s var(--ease-out),
    padding 0.45s var(--ease-out),
    background-color 0.45s ease,
    border-color 0.45s ease,
    backdrop-filter 0.45s ease;
}

header.scrolled {
  top: 10px;
  width: min(calc(100% - 24px), 1320px);
  padding-block: 0.65rem;
  border-color: var(--border);
  background: rgba(7, 11, 10, 0.82);
  -webkit-backdrop-filter: blur(22px) saturate(130%);
  backdrop-filter: blur(22px) saturate(130%);
}

.logo {
  position: relative;
  justify-self: start;
  color: var(--text-main);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.logo::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 20px;
  height: 1px;
  background: var(--primary);
  transition: width 0.45s var(--ease-out);
}

.logo:hover::after {
  width: 100%;
}

.logo span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.15rem, 2.3vw, 2.6rem);
}

.nav-links a {
  position: relative;
  padding: 0.45rem 0;
  color: rgba(245, 246, 243, 0.68);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.065em;
  text-transform: uppercase;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 1px;
  height: 1px;
  background: var(--primary);
  transition: right 0.45s var(--ease-out);
}

.nav-links a:hover,
.nav-links a.active,
.nav-links a[aria-current='page'] {
  color: var(--text-main);
}

.nav-links a:hover::after,
.nav-links a.active::after,
.nav-links a[aria-current='page']::after {
  right: 0;
}

.nav-links a[href='book-now.html'] {
  padding: 0.7rem 1rem;
  border-radius: 13px;
  background: var(--primary);
  color: var(--ink);
}

.nav-links a[href='book-now.html']::after {
  display: none;
}

.nav-links a[href='book-now.html']:hover {
  background: var(--primary-hover);
  color: var(--ink);
}

.header-right {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 0.75rem;
}

.custom-lang-selector {
  position: relative;
  font-size: 0.78rem;
  user-select: none;
}

.lang-selected {
  display: flex;
  align-items: center;
  min-height: 42px;
  gap: 0.45rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  font-weight: 600;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.lang-selected:hover,
.custom-lang-selector.open .lang-selected {
  border-color: rgba(216, 173, 98, 0.58);
  background: rgba(216, 173, 98, 0.1);
}

.lang-selected::after {
  content: '';
  width: 6px;
  height: 6px;
  margin-left: 0.2rem;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.35s var(--ease-out);
}

.custom-lang-selector.open .lang-selected::after {
  transform: translateY(2px) rotate(225deg);
}

.lang-options {
  position: absolute;
  top: calc(100% + 0.6rem);
  right: 0;
  z-index: 2000;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  width: 118px;
  max-height: min(430px, calc(100vh - 100px));
  overflow-y: auto;
  padding: 0.45rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(13, 18, 17, 0.97);
  opacity: 0;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top right;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.35s var(--ease-out), visibility 0.25s;
}

.custom-lang-selector.open .lang-options {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.lang-option {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 0.65rem;
  padding: 0.65rem 0.7rem;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: #fff;
  text-align: left;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.lang-option:hover,
.lang-option:focus-visible {
  background: rgba(255, 255, 255, 0.07);
  color: var(--primary-hover);
}

.lang-selected img,
.lang-option img {
  width: 20px;
  height: 14px;
  border-radius: 2px;
  object-fit: cover;
}

.menu-toggle {
  display: none;
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text-main);
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: '';
  position: absolute;
  left: 12px;
  width: 16px;
  height: 1px;
  background: currentColor;
  transition: transform 0.35s var(--ease-out), opacity 0.25s ease, top 0.35s var(--ease-out);
}

.menu-toggle::before { top: 14px; }
.menu-toggle span { top: 20px; }
.menu-toggle::after { top: 26px; }

.menu-toggle[aria-expanded='true']::before {
  top: 20px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded='true'] span {
  opacity: 0;
}

.menu-toggle[aria-expanded='true']::after {
  top: 20px;
  transform: rotate(-45deg);
}

.scroll-progress {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: -1px;
  height: 1px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  opacity: 0;
  transition: opacity 0.3s ease;
}

header.scrolled .scroll-progress {
  opacity: 1;
}

.scroll-progress::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: var(--primary);
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left;
}

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  gap: 0.65rem;
  overflow: hidden;
  padding: 0.9rem 1.7rem;
  border: 1px solid var(--primary);
  border-radius: 15px;
  background: var(--primary);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1;
  transition:
    transform 0.4s var(--ease-out),
    background-color 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
}

.btn::before {
  content: '';
  position: absolute;
  inset: -20%;
  background: linear-gradient(105deg, transparent 34%, rgba(255, 255, 255, 0.38) 49%, transparent 64%);
  transform: translateX(-120%) rotate(4deg);
  transition: transform 0.75s var(--ease-out);
}

.btn::after {
  content: '↗';
  position: relative;
  font-size: 1rem;
  transition: transform 0.4s var(--ease-out);
}

.btn:hover {
  border-color: var(--primary-hover);
  background: var(--primary-hover);
  transform: translateY(-3px);
}

.btn:hover::before {
  transform: translateX(120%) rotate(4deg);
}

.btn:hover::after {
  transform: translate(2px, -2px);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn:disabled {
  cursor: wait;
  opacity: 0.6;
}

.btn-outline {
  border-color: var(--border);
  background: transparent;
  color: var(--text-main);
}

.btn-outline:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--ink);
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  width: 100%;
  max-width: none;
  min-height: max(820px, 100svh);
  place-items: center;
  overflow: hidden;
  padding: 7.5rem var(--page-gutter) 3rem;
  text-align: left;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at var(--hero-pointer-x, 68%) var(--hero-pointer-y, 38%), rgba(216, 173, 98, 0.2), transparent 28rem),
    linear-gradient(to bottom, transparent 72%, var(--bg-color) 100%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  left: var(--page-gutter);
  bottom: 1.1rem;
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  animation: scroll-cue 2.2s var(--ease-out) infinite;
}

.hero-bg {
  position: absolute;
  inset: -5%;
  z-index: -3;
  width: 110%;
  height: 110%;
  object-fit: cover;
  object-position: center 46%;
  filter: saturate(0.92) contrast(1.06);
  transform: translate3d(0, var(--hero-shift, 0px), 0) scale(1.06);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 7, 6, 0.94) 0%, rgba(3, 7, 6, 0.74) 35%, rgba(3, 7, 6, 0.34) 73%, rgba(3, 7, 6, 0.48) 100%),
    linear-gradient(180deg, rgba(3, 7, 7, 0.3) 0%, rgba(4, 8, 7, 0.42) 58%, rgba(6, 9, 8, 0.92) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(610px, 1.22fr);
  align-items: center;
  width: min(100%, 1360px);
  max-width: 1360px !important;
  gap: clamp(2.5rem, 5vw, 6.5rem);
}

.hero-content::before {
  content: 'LA';
  position: absolute;
  z-index: -1;
  left: -0.08em;
  bottom: -0.35em;
  color: transparent;
  font-size: clamp(18rem, 31vw, 34rem);
  font-weight: 700;
  letter-spacing: -0.14em;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(216, 173, 98, 0.15);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-tag,
.page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
  padding: 0.48rem 0.82rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .hero-tag {
  margin-bottom: 1.8rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.hero-tag::before,
.page-kicker::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 5px rgba(216, 173, 98, 0.12);
}

.hero h1 {
  max-width: 7.4ch;
  margin: 0 0 1.7rem;
  color: #fff;
  font-size: clamp(5rem, 7.2vw, 7.4rem);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.86;
  text-wrap: balance;
}

.hero p {
  max-width: 38rem;
  margin: 0 0 2rem !important;
  color: rgba(245, 246, 243, 0.76);
  font-size: clamp(0.95rem, 1.15vw, 1.1rem);
  line-height: 1.6;
  text-wrap: pretty;
}

.hero-route-codes {
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 0.75rem;
  padding: 0.72rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.hero-route-codes b {
  width: 26px;
  height: 1px;
  background: var(--primary);
}

.hero .booking-grid,
.hero .booking-grid-full {
  gap: 0.72rem;
  margin-bottom: 0.72rem !important;
}

.route-ticker {
  position: relative;
  z-index: 5;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(10, 16, 14, 0.22);
  border-bottom: 1px solid rgba(10, 16, 14, 0.22);
  background: var(--primary);
  color: var(--ink);
}

.route-ticker-track {
  display: flex;
  width: max-content;
  animation: route-ticker-scroll 28s linear infinite;
}

.route-ticker-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: clamp(1.2rem, 3vw, 3.2rem);
  padding: 1rem clamp(1.2rem, 3vw, 3.2rem);
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.route-ticker-group b {
  font-size: 1.2rem;
  font-weight: 400;
}

/* Booking widget and forms */
.booking-widget {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  padding: clamp(1.1rem, 2vw, 1.5rem);
  border: 1px solid rgba(10, 16, 14, 0.16);
  border-radius: 30px;
  background: rgba(238, 243, 240, 0.96);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.38);
  color: var(--ink);
  color-scheme: light;
  text-align: left;
  -webkit-backdrop-filter: blur(25px) saturate(125%);
  backdrop-filter: blur(25px) saturate(125%);
}

.booking-widget::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.7), transparent 34%);
  pointer-events: none;
}

.booking-widget > * {
  position: relative;
  z-index: 1;
}

.booking-widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border-dark);
}

.trip-type-toggle {
  display: inline-flex;
  gap: 0.35rem;
  padding: 0.3rem;
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  background: rgba(10, 16, 14, 0.045);
}

.trip-type-label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  gap: 0.45rem;
  padding: 0.45rem 0.75rem;
  border-radius: 10px;
  color: rgba(10, 16, 14, 0.62);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 600;
  transition: color 0.25s ease, background-color 0.25s ease;
}

.trip-type-label:has(input:checked) {
  background: var(--primary);
  color: var(--ink);
}

.trip-type-label:has(input:focus-visible) {
  outline: 2px solid var(--primary-hover);
  outline-offset: 3px;
}

.trip-type-label input[type='radio'] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem !important;
}

.booking-grid-full {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem !important;
}

.booking-widget .form-group {
  margin-bottom: 0;
}

.booking-widget .btn {
  width: 100%;
  margin-top: 0.8rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.48rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-control {
  width: 100%;
  min-height: 50px;
  padding: 0.78rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  outline: 0;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  caret-color: var(--primary);
  transition: border-color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.form-control:hover {
  border-color: rgba(255, 255, 255, 0.29);
}

.form-control:focus {
  border-color: var(--primary);
  background: rgba(216, 173, 98, 0.06);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.36);
}

select.form-control {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.6rem;
  background-color: rgba(255, 255, 255, 0.055) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23d8ad62' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 16px;
  color: #fff !important;
}

select.form-control option {
  background: var(--surface-raised) !important;
  color: #fff !important;
}

.booking-widget .form-group label {
  margin-bottom: 0.3rem;
  color: rgba(10, 16, 14, 0.62);
  font-size: 0.62rem;
}

.booking-widget .form-control {
  min-height: 44px;
  padding-block: 0.62rem;
  border-color: rgba(10, 16, 14, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  caret-color: var(--ink);
}

.booking-widget .form-control:hover {
  border-color: rgba(10, 16, 14, 0.34);
}

.booking-widget .form-control:focus {
  border-color: #8a6e3e;
  background: #fff;
}

.booking-widget .form-control::placeholder {
  color: rgba(10, 16, 14, 0.4);
}

.booking-widget select.form-control {
  background-color: rgba(255, 255, 255, 0.72) !important;
  color: var(--ink) !important;
}

.booking-widget select.form-control option {
  background: #fff !important;
  color: var(--ink) !important;
}

.booking-widget .time-separator {
  color: rgba(10, 16, 14, 0.72);
}

.booking-widget .form-message {
  background: rgba(10, 16, 14, 0.04);
}

.time-select-container {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.time-select-container > div {
  min-width: 0;
}

.time-separator {
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 700;
}

.form-message {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid currentColor;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
  font-size: 0.88rem;
}

textarea.form-control {
  min-height: 145px;
  resize: vertical;
}

/* Sections */
section {
  position: relative;
  width: min(100%, 1400px);
  margin: 0 auto;
  padding: clamp(5.5rem, 9vw, 9rem) var(--page-gutter);
}

#services,
#fleet,
#testimonials,
#contact {
  isolation: isolate;
  background: transparent !important;
}

#services::before,
#fleet::before,
#testimonials::before,
#contact::before {
  content: '';
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
}

#services::before {
  background: var(--forest);
}

#fleet::before {
  background: var(--sage);
}

#testimonials::before {
  background: var(--forest);
}

#contact::before {
  background: var(--mint);
}

.section-header {
  max-width: 970px;
  margin: 0 auto clamp(3rem, 6vw, 5.5rem);
  text-align: center;
}

.section-header > span {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--primary);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.section-header > span::before,
.section-header > span::after {
  content: '';
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.section-header h2 {
  margin-top: 0.9rem;
  font-size: clamp(2.7rem, 6.5vw, 6.25rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1;
  text-wrap: balance;
}

.section-header p {
  max-width: 700px;
  margin: 1.5rem auto 0;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.75;
}

.section-cta {
  margin-top: 3rem;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.service-card,
.testimonial-card,
.step-card,
.contact-info,
.contact-form-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.service-card {
  min-height: 280px;
  padding: clamp(1.6rem, 3vw, 2.5rem);
  border: 1px solid var(--border) !important;
  background: rgba(255, 255, 255, 0.025) !important;
  transition: transform 0.55s var(--ease-out), border-color 0.35s ease, background-color 0.35s ease;
}

.service-card::after,
.testimonial-card::after,
.step-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(360px circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(216, 173, 98, 0.16), transparent 48%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.service-card:hover,
.testimonial-card:hover,
.step-card:hover {
  border-color: rgba(216, 173, 98, 0.48) !important;
  transform: translateY(-7px);
}

.service-card:hover::after,
.testimonial-card:hover::after,
.step-card:hover::after {
  opacity: 1;
}

.service-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: clamp(2.5rem, 5vw, 5.5rem);
  place-items: center;
  border: 1px solid rgba(216, 173, 98, 0.35);
  border-radius: 17px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.service-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 0.85rem;
  color: var(--text-main) !important;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.service-card p {
  position: relative;
  z-index: 1;
  max-width: 38ch;
  color: var(--text-muted);
  font-size: 0.94rem;
}

#about .section-header,
#services .section-header {
  margin-left: 0;
  text-align: left;
}

#about .section-header p,
#services .section-header p {
  margin-left: 0;
}

#about .section-header > span::before,
#services .section-header > span::before {
  display: none;
}

#about .service-card::before {
  content: '0' counter(about-card);
  position: absolute;
  top: 1.55rem;
  right: 1.7rem;
  color: rgba(255, 255, 255, 0.22);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

#about .services-grid {
  counter-reset: about-card;
}

#about .service-card {
  counter-increment: about-card;
}

#services .services-grid {
  display: block;
  counter-reset: service-row;
}

#services .service-card {
  display: grid;
  grid-template-columns: 90px minmax(240px, 0.7fr) minmax(320px, 1.3fr);
  align-items: center;
  gap: clamp(1.2rem, 3vw, 4rem);
  min-height: 0;
  padding: clamp(1.7rem, 3vw, 2.6rem) 0;
  border: 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.17) !important;
  border-radius: 0;
  background: transparent !important;
  counter-increment: service-row;
}

#services .service-card:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.17) !important;
}

#services .service-card::before {
  content: '0' counter(service-row);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

#services .service-card::after {
  display: none;
}

#services .service-card:hover {
  border-color: rgba(216, 173, 98, 0.55) !important;
  transform: translateX(10px);
}

#services .service-card h3 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.7rem);
  font-weight: 500;
}

#services .service-card p {
  max-width: 60ch;
  font-size: clamp(0.92rem, 1.25vw, 1.05rem);
}

/* Fleet showroom */
#fleet {
  color: var(--ink);
}

#fleet .section-header > span {
  color: #6d654e;
}

#fleet .section-header h2 {
  color: var(--ink);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.fleet-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  background: #f8faf8;
  color: var(--ink);
  transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transform-style: preserve-3d;
  transition: transform 0.5s var(--ease-out), border-color 0.35s ease;
}

.fleet-card:hover {
  border-color: rgba(10, 16, 14, 0.34);
  transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-6px);
}

.fleet-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  background: radial-gradient(420px circle at var(--pointer-x, 50%) var(--pointer-y, 30%), rgba(216, 173, 98, 0.2), transparent 46%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.fleet-card:hover::before {
  opacity: 1;
}

.fleet-img-container {
  position: relative;
  height: clamp(250px, 24vw, 340px);
  overflow: hidden;
  background: linear-gradient(180deg, #fff, #f3f6f3);
}

.fleet-img-container::after {
  content: '';
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 12%;
  height: 18px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  filter: blur(12px);
  transform: scaleX(0.7);
  transition: transform 0.65s var(--ease-out), opacity 0.65s ease;
}

.fleet-img-container img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(0.92) translateY(3%);
  transition: transform 0.8s var(--ease-out);
}

.fleet-card:hover .fleet-img-container img {
  transform: scale(1.02) translateY(-1%);
}

.fleet-card:hover .fleet-img-container::after {
  opacity: 0.65;
  transform: scaleX(0.95);
}

.fleet-info {
  position: relative;
  z-index: 3;
  padding: 1.65rem;
  border-top: 1px solid var(--border-dark);
}

.fleet-info h3 {
  margin-bottom: 0.6rem;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.fleet-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.15rem;
  margin-bottom: 1.4rem;
  color: rgba(10, 16, 14, 0.62);
  font-size: 0.8rem;
}

.fleet-specs > span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.spec-icon {
  display: inline-grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border: 1px solid rgba(10, 16, 14, 0.18);
  border-radius: 50%;
  color: rgba(10, 16, 14, 0.74);
  font-size: 0.58rem;
  font-weight: 700;
}

.fleet-info .btn {
  width: 100%;
}

#fleet .btn-outline {
  border-color: rgba(10, 16, 14, 0.22);
  color: var(--ink);
}

#fleet .btn-outline:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

@media (min-width: 1101px) {
  #fleet .fleet-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(300px, auto));
    align-items: stretch;
  }

  #fleet .fleet-card:first-child {
    grid-column: 1 / 8;
    grid-row: 1 / 3;
  }

  #fleet .fleet-card:nth-child(2),
  #fleet .fleet-card:nth-child(3) {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(220px, 0.92fr);
    grid-column: 8 / -1;
  }

  #fleet .fleet-card:nth-child(2) { grid-row: 1; }
  #fleet .fleet-card:nth-child(3) { grid-row: 2; }

  #fleet .fleet-card:first-child .fleet-img-container {
    height: 540px;
  }

  #fleet .fleet-card:nth-child(2) .fleet-img-container,
  #fleet .fleet-card:nth-child(3) .fleet-img-container {
    height: 100%;
    min-height: 300px;
  }

  #fleet .fleet-card:nth-child(2) .fleet-info,
  #fleet .fleet-card:nth-child(3) .fleet-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 0;
    border-left: 1px solid var(--border-dark);
  }

  #fleet .fleet-card:nth-child(2) .fleet-info .btn,
  #fleet .fleet-card:nth-child(3) .fleet-info .btn {
    margin-top: auto;
  }
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

.testimonial-card {
  min-height: 330px;
  padding: clamp(1.8rem, 4vw, 3.4rem);
  border: 1px solid var(--border-dark);
  background: var(--mint);
  color: var(--ink);
  transition: transform 0.55s var(--ease-out), border-color 0.35s ease;
}

.quote-icon {
  position: absolute;
  top: 1.1rem;
  right: 2rem;
  color: rgba(122, 92, 41, 0.2);
  font-family: Georgia, serif;
  font-size: 7rem;
  line-height: 1;
}

.testimonial-text {
  position: relative;
  z-index: 1;
  max-width: 40ch;
  margin-bottom: 3.5rem;
  font-size: clamp(1.15rem, 2.2vw, 1.7rem);
  font-style: normal;
  letter-spacing: -0.025em;
  line-height: 1.45;
}

.testimonial-author {
  position: absolute;
  left: clamp(1.8rem, 4vw, 3.4rem);
  bottom: clamp(1.8rem, 4vw, 3rem);
  z-index: 1;
}

.author-info h4 {
  font-size: 0.9rem;
  font-weight: 700;
}

.author-info span {
  color: #806538;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Home CTA */
#contact {
  max-width: 1400px;
  color: var(--ink);
  text-align: center;
}

#contact h2 {
  margin-bottom: 1.5rem;
  color: var(--ink);
  font-size: clamp(3.2rem, 7.5vw, 7rem) !important;
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

#contact p {
  max-width: 600px;
  margin: 0 auto 2.5rem;
  color: rgba(10, 16, 14, 0.62) !important;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

#contact .btn {
  padding: 1.1rem 2.6rem;
  font-size: 1rem;
}

/* Inner page hero */
.page-header {
  position: relative;
  display: grid;
  width: 100%;
  max-width: none;
  min-height: clamp(520px, 66vh, 720px);
  place-items: center start;
  overflow: hidden;
  padding: 9rem var(--page-gutter) 5rem !important;
  background: var(--sage) !important;
  color: var(--ink);
  text-align: left;
}

.page-header::before {
  content: 'SKYRIDE';
  position: absolute;
  left: -0.04em;
  bottom: -0.28em;
  color: transparent;
  font-size: clamp(9rem, 20vw, 20rem);
  font-weight: 700;
  letter-spacing: -0.09em;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(10, 16, 14, 0.1);
  pointer-events: none;
  white-space: nowrap;
}

.page-header::after {
  content: '';
  position: absolute;
  top: 5.6rem;
  right: var(--page-gutter);
  bottom: 2rem;
  width: min(46vw, 700px);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(4, 8, 7, 0.16), rgba(6, 9, 8, 0.42)),
    url('images/hero_bg_1777685806605.png') center 47% / cover;
  box-shadow: 0 24px 70px rgba(10, 16, 14, 0.17);
  pointer-events: none;
}

.page-header > * {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  max-width: 47%;
  margin: 0 !important;
  color: var(--ink);
  font-size: clamp(3.9rem, 8vw, 7.5rem) !important;
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.95;
  text-wrap: balance;
}

.inner-page header:not(.scrolled) {
  border-color: var(--border);
  background: rgba(7, 11, 10, 0.84);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
  backdrop-filter: blur(20px) saturate(120%);
}

#booking-section {
  min-height: 55vh !important;
  padding-top: 0 !important;
}

#booking-section .booking-widget {
  z-index: 10;
  margin-top: clamp(-6rem, -7vw, -4rem) !important;
}

/* How to book */
.steps-container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1180px !important;
  margin: 0 auto;
}

.steps-container::before {
  display: none;
}

#how-to-book .step-card {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 2.2rem;
  min-height: 270px;
  margin-bottom: 0;
  padding: clamp(1.7rem, 3vw, 2.5rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.025);
  transition: transform 0.55s var(--ease-out), border-color 0.35s ease;
}

.step-number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 48px;
  height: 48px;
  margin-left: -4px;
  place-items: center;
  border: 1px solid rgba(216, 173, 98, 0.45);
  border-radius: 16px;
  background: var(--bg-color);
  color: var(--primary) !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
}

.step-content {
  position: relative;
  z-index: 1;
}

.step-content h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.35rem, 2.4vw, 2rem) !important;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.step-content p {
  max-width: 58ch;
  color: var(--text-muted);
}

#how-to-book .step-card:nth-child(even) {
  border-color: var(--border-dark);
  background: var(--sage);
  color: var(--ink);
}

#how-to-book .step-card:nth-child(even) .step-number {
  border-color: rgba(10, 16, 14, 0.2);
  background: #fff;
  color: #806538 !important;
}

#how-to-book .step-card:nth-child(even) .step-content p {
  color: rgba(10, 16, 14, 0.62);
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.15rem;
  max-width: 1080px !important;
  margin: 0 auto;
}

#contact-page {
  isolation: isolate;
  color: var(--ink);
}

#contact-page::before {
  content: '';
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  background: var(--sage);
}

.contact-info,
.contact-form-container {
  padding: clamp(1.6rem, 4vw, 2.7rem) !important;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg) !important;
  background: rgba(255, 255, 255, 0.025);
}

.contact-info {
  background: var(--forest);
  color: #fff;
}

.contact-form-container {
  border-color: var(--border-dark);
  background: #fff;
  color: var(--ink);
}

.contact-info h3,
.contact-form-container h3 {
  margin-bottom: 2rem !important;
  color: var(--text-main) !important;
  font-size: clamp(1.5rem, 2.4vw, 2rem) !important;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.contact-form-container h3 {
  color: var(--ink) !important;
}

.contact-form-container .form-group label {
  color: rgba(10, 16, 14, 0.62);
}

.contact-form-container .form-control {
  border-color: rgba(10, 16, 14, 0.18);
  background: var(--mint);
  color: var(--ink);
  caret-color: var(--ink);
}

.contact-form-container .form-control:focus {
  border-color: #8a6e3e;
  background: #fff;
}

.contact-detail {
  margin-bottom: 1.6rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid var(--border);
}

.contact-detail strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--primary) !important;
  font-size: 0.67rem !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-detail p,
.contact-detail a {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  transition: color 0.25s ease;
}

.contact-detail a:hover {
  color: var(--primary);
}

.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.48rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(245, 246, 243, 0.78);
  font-size: 0.72rem;
  font-weight: 600;
}

.contact-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.contact-badge.inclusive-note::before {
  background: linear-gradient(135deg, #e06f7e, #e5bd63, #77bf9b, #7ca8e8);
}

.contact-form-container .btn {
  width: 100%;
  margin-top: 1rem;
}

/* Footer */
footer {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 7rem) var(--page-gutter) 2rem;
  border-top: 1px solid var(--border);
  background: #030505;
}

footer::before {
  content: 'SKYRIDE';
  position: absolute;
  left: 50%;
  bottom: -0.24em;
  color: rgba(255, 255, 255, 0.025);
  font-size: clamp(7rem, 21vw, 22rem);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.75;
  transform: translateX(-50%);
  pointer-events: none;
  white-space: nowrap;
}

.footer-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 1fr;
  gap: clamp(2.5rem, 7vw, 7rem);
  max-width: 1320px;
  margin: 0 auto clamp(4rem, 8vw, 7rem);
}

.footer-col h4 {
  margin-bottom: 1.35rem;
  color: var(--text-main);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.footer-location {
  margin-top: 0.8rem;
}

.footer-col p {
  max-width: 39ch;
  margin-bottom: 0.85rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-col .safety-note,
.footer-col .inclusive-note {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 0.5rem;
  margin-top: 0.55rem;
  padding: 0.38rem 0.62rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(245, 246, 243, 0.76);
  font-size: 0.68rem;
  letter-spacing: 0.035em;
}

.footer-col .safety-note::before,
.footer-col .inclusive-note::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.footer-col .inclusive-note::before {
  background: linear-gradient(135deg, #e06f7e, #e5bd63, #77bf9b, #7ca8e8);
}

.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-links a {
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color 0.25s ease, padding-left 0.35s var(--ease-out);
}

.footer-links a:hover {
  padding-left: 0.35rem;
  color: var(--primary);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding-top: 1.6rem;
  border-top: 1px solid var(--border);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Motion system */
.motion-ready header {
  animation: header-enter 0.8s 0.1s var(--ease-out) both;
}

.motion-ready .hero-tag {
  animation: hero-enter 0.75s 0.18s var(--ease-out) both;
}

.motion-ready .hero h1 {
  animation: hero-mask-enter 1s 0.28s var(--ease-out) both;
}

.motion-ready .hero p {
  animation: hero-enter 0.85s 0.44s var(--ease-out) both;
}

.motion-ready .hero .booking-widget {
  animation: widget-enter 1s 0.55s var(--ease-out) both;
}

.motion-ready .hero-bg {
  animation: hero-image-reveal 1.45s var(--ease-out) both;
}

.motion-ready .hero-content::before {
  animation: hero-mark-enter 1.35s 0.12s var(--ease-out) both;
}

.motion-ready #booking-section .booking-widget {
  animation: widget-enter 1s 0.35s var(--ease-out) both;
}

.motion-ready .page-header h1 {
  animation: hero-mask-enter 1s 0.2s var(--ease-out) both;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(46px);
  transition: opacity 0.85s ease, transform 1s var(--ease-out);
}

.motion-ready .reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready .services-grid.reveal > *,
.motion-ready .fleet-grid.reveal > *,
.motion-ready .testimonials-grid.reveal > *,
.motion-ready .steps-container.reveal > *,
.motion-ready .contact-grid.reveal > * {
  opacity: 0;
  translate: 0 34px;
  scale: 0.985;
  transition:
    opacity 0.65s ease calc(0.08s * var(--item-index, 0) + 0.12s),
    translate 0.85s var(--ease-out) calc(0.08s * var(--item-index, 0) + 0.12s),
    scale 0.85s var(--ease-out) calc(0.08s * var(--item-index, 0) + 0.12s),
    border-color 0.35s ease;
}

.motion-ready .services-grid.reveal.active > *,
.motion-ready .fleet-grid.reveal.active > *,
.motion-ready .testimonials-grid.reveal.active > *,
.motion-ready .steps-container.reveal.active > *,
.motion-ready .contact-grid.reveal.active > * {
  opacity: 1;
  translate: 0 0;
  scale: 1;
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: var(--ink);
  transform: translateY(100%);
  pointer-events: none;
  transition: transform 0.7s var(--ease-smooth);
}

.transition-mark {
  display: flex;
  align-items: baseline;
  gap: 0.25em;
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.transition-mark span {
  padding: 0.18em 0.26em;
  border: 1px solid currentColor;
  border-radius: 0.34em;
  font-size: 0.36em;
  letter-spacing: 0.03em;
}

.is-page-leaving .page-transition {
  transform: translateY(0);
  pointer-events: auto;
}

.is-page-entering .page-transition {
  transform: translateY(0);
  transition: none;
}

.is-page-entering.page-transition-out .page-transition {
  transform: translateY(-100%);
  transition: transform 0.75s var(--ease-smooth);
}

@keyframes header-enter {
  from { opacity: 0; transform: translateY(-18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-enter {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-mask-enter {
  from { opacity: 0; clip-path: inset(0 0 100% 0); transform: translateY(35px); }
  to { opacity: 1; clip-path: inset(0 0 0 0); transform: translateY(0); }
}

@keyframes widget-enter {
  from { opacity: 0; transform: translateY(45px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes hero-image-reveal {
  from {
    opacity: 0.25;
    clip-path: inset(0 0 0 42%);
    filter: saturate(0.25) contrast(0.82);
  }
  to {
    opacity: 1;
    clip-path: inset(0);
    filter: saturate(0.92) contrast(1.06);
  }
}

@keyframes hero-mark-enter {
  from { opacity: 0; transform: translateX(-7vw); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes route-ticker-scroll {
  to { transform: translateX(-50%); }
}

@keyframes scroll-cue {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  35% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  70% { opacity: 1; transform: scaleY(1); transform-origin: bottom; }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

@keyframes page-fade-out {
  to { opacity: 0; transform: scale(0.992); }
}

@keyframes page-fade-in {
  from { opacity: 0; transform: translateY(12px); }
}

/* Responsive */
@media (max-width: 1100px) {
  header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    z-index: -1;
    display: flex;
    visibility: hidden;
    width: min(430px, 100vw);
    height: 100dvh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    padding: 8rem 2rem 3rem;
    border-left: 1px solid var(--border);
    background: rgba(8, 12, 11, 0.98);
    opacity: 0;
    transform: translateX(100%);
    transition: visibility 0.5s, opacity 0.35s ease, transform 0.6s var(--ease-out);
  }

  .nav-links.active {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }

  .nav-links a {
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    font-size: clamp(1.4rem, 5vw, 2.5rem);
    font-weight: 500;
    letter-spacing: -0.04em;
    text-transform: none;
  }

  .nav-links a[href='book-now.html'] {
    padding: 1rem 0;
    border-radius: 0;
    background: transparent;
    color: var(--text-main);
  }

  .nav-links a::after {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    display: block;
    min-height: auto;
    padding: 6.5rem var(--page-gutter) 3rem;
    background: var(--bg-color);
  }

  .hero-bg {
    inset: 0;
    width: 100%;
    height: 80svh;
    object-position: 50% 46%;
    transform: none;
  }

  .hero-overlay {
    height: 80svh;
    background: linear-gradient(180deg, rgba(3, 6, 5, 0.28) 0%, rgba(3, 6, 5, 0.5) 40%, rgba(6, 9, 8, 0.98) 100%);
  }

  .hero-content {
    display: block;
    width: min(100%, 820px);
    margin: 0 auto;
  }

  .hero-copy {
    display: flex;
    min-height: calc(72svh - 6.5rem);
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 1.5rem;
  }

  .hero-content::before {
    top: 15svh;
    bottom: auto;
    font-size: min(58vw, 30rem);
  }

  .hero h1 {
    max-width: 8ch;
    font-size: clamp(4.6rem, 12vw, 7rem);
  }

  .hero .booking-widget {
    margin-top: 1.25rem;
  }

  .services-grid,
  .fleet-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid .service-card:last-child,
  .fleet-grid .fleet-card:last-child {
    grid-column: 1 / -1;
  }

  .fleet-grid .fleet-card:last-child .fleet-img-container {
    height: 390px;
  }
}

@media (max-width: 760px) {
  :root {
    --radius-lg: 28px;
  }

  html {
    scroll-padding-top: 90px;
  }

  header,
  header.scrolled {
    top: 8px;
    width: calc(100% - 16px);
    padding: 0.62rem 0.65rem 0.62rem 0.85rem;
    border-radius: 19px;
  }

  .logo::after,
  .scroll-progress {
    display: none;
  }

  .lang-selected {
    min-height: 40px;
    padding-inline: 0.65rem;
  }

  .hero {
    min-height: auto;
    padding: 6.5rem 1rem 3rem;
  }

  .hero h1 {
    font-size: clamp(3.75rem, 17vw, 5.8rem);
    line-height: 0.88;
  }

  .hero::after {
    display: none;
  }

  .hero-bg {
    inset: 0;
    width: 100%;
    height: 82svh;
    object-position: 50% 46%;
    transform: none !important;
  }

  .booking-widget {
    margin-top: 1.25rem;
    border-radius: 26px;
  }

  .booking-grid,
  .booking-grid-full {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
  }

  .booking-grid > .form-group {
    grid-column: 1 / -1;
  }

  .services-grid,
  .fleet-grid,
  .testimonials-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  #services .service-card {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 1rem;
  }

  #services .service-card p {
    grid-column: 2;
  }

  .services-grid .service-card:last-child,
  .fleet-grid .fleet-card:last-child {
    grid-column: auto;
  }

  .service-card {
    min-height: 240px;
  }

  .service-icon {
    margin-bottom: 3rem;
  }

  .fleet-grid .fleet-card:last-child .fleet-img-container,
  .fleet-img-container {
    height: min(78vw, 340px);
  }

  .testimonial-card {
    min-height: 300px;
  }

  .page-header {
    min-height: 650px;
    align-items: start;
    padding: 8.5rem 1rem 2rem !important;
  }

  .page-header h1 {
    max-width: 100%;
    font-size: clamp(3.6rem, 16vw, 6rem) !important;
  }

  .page-header::after {
    top: auto;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    width: auto;
    height: 46%;
    border-radius: 28px;
  }

  #booking-section .booking-widget {
    margin-top: -4.5rem !important;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .steps-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .header-right {
    gap: 0.45rem;
  }

  .lang-selected span {
    display: none;
  }

  .lang-selected::after {
    margin-left: 0.05rem;
  }

  .booking-grid-full {
    grid-template-columns: 1fr;
  }

  .booking-grid-full .form-group,
  .booking-grid-full .time-select-container {
    min-width: 0;
  }

  .trip-type-toggle {
    width: 100%;
  }

  .trip-type-label {
    flex: 1;
  }

  #how-to-book .step-card {
    grid-template-columns: 1fr;
    gap: 1.1rem;
    padding: 1.5rem;
  }

  .steps-container::before {
    display: none;
  }

  .step-number {
    margin-left: 0;
  }

  .contact-info,
  .contact-form-container {
    padding: 1.45rem !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .motion-ready .reveal,
  .motion-ready .services-grid.reveal > *,
  .motion-ready .fleet-grid.reveal > *,
  .motion-ready .testimonials-grid.reveal > *,
  .motion-ready .steps-container.reveal > *,
  .motion-ready .contact-grid.reveal > * {
    opacity: 1 !important;
    transform: none !important;
    translate: none !important;
    scale: none !important;
  }

  .hero-bg,
  .fleet-card,
  .fleet-card:hover {
    transform: none !important;
  }

  .page-transition {
    display: none;
  }

  .route-ticker-track {
    animation: none;
    transform: none;
  }

  .route-ticker-group:nth-child(2) {
    display: none;
  }
}
