/* =========================================================
   STAR — Transport persoane România–Turcia
   Design tokens + layout + components
   ========================================================= */

:root {
  /* Brand */
  --navy-900: #061429;
  --navy-800: #0a1f3d;
  --navy-700: #0f2c54;
  --navy-600: #1a3a6a;
  --navy-500: #2c4f86;

  --gold-600: #b8902f;
  --gold-500: #d4af37;
  --gold-400: #e6c361;
  --gold-100: #f6e9c2;

  --red-600: #c00813;
  --red-500: #e30a17;

  --green-500: #25d366;
  --green-600: #1ebe5d;

  /* Surfaces */
  --bg: #ffffff;
  --bg-soft: #f6f8fc;
  --bg-card: #ffffff;
  --line: rgba(10, 31, 61, 0.08);
  --line-strong: rgba(10, 31, 61, 0.14);

  /* Text */
  --text: #0c1730;
  --text-muted: #4a5775;
  --text-soft: #6b7891;
  --text-on-dark: #ffffff;
  --text-on-dark-soft: rgba(255, 255, 255, 0.78);

  /* Type */
  --font-display: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --text-xs: 0.78rem;
  --text-sm: 0.92rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: clamp(1.75rem, 1.4rem + 1.4vw, 2.5rem);
  --text-4xl: clamp(2rem, 1.5rem + 2vw, 3.25rem);
  --text-5xl: clamp(2.4rem, 1.5rem + 3.5vw, 4.5rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-section: clamp(4rem, 2.5rem + 5vw, 7rem);

  /* Radius */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(10, 31, 61, 0.06), 0 1px 1px rgba(10, 31, 61, 0.04);
  --shadow-md: 0 8px 24px -10px rgba(10, 31, 61, 0.18), 0 2px 6px rgba(10, 31, 61, 0.06);
  --shadow-lg: 0 24px 48px -16px rgba(10, 31, 61, 0.28), 0 8px 16px -6px rgba(10, 31, 61, 0.08);
  --shadow-xl: 0 32px 64px -20px rgba(10, 31, 61, 0.32);
  --shadow-glow-gold: 0 0 0 6px rgba(212, 175, 55, 0.18);

  /* Motion */
  --duration-fast: 150ms;
  --duration-normal: 280ms;
  --duration-slow: 600ms;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --container: 1200px;
}

/* =====================
   Reset
   ===================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.01em; line-height: 1.15; margin: 0; color: var(--text); }
p { margin: 0; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--navy-800); color: #fff; padding: 12px 16px; z-index: 999;
}
.skip-link:focus { left: 12px; top: 12px; }

::selection { background: var(--gold-500); color: var(--navy-900); }

/* =====================
   Layout helpers
   ===================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 0.5rem + 1.5vw, 1.75rem);
}

.section {
  padding-top: var(--space-section);
  padding-bottom: var(--space-section);
}
.section--alt { background: var(--bg-soft); }
.section--dark {
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 60%, var(--navy-700) 100%);
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
}
.section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 80% 0%, rgba(212, 175, 55, 0.18), transparent 60%),
    radial-gradient(500px 250px at 10% 100%, rgba(227, 10, 23, 0.12), transparent 60%);
  pointer-events: none;
}
.section--dark > * { position: relative; }

.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-12);
}
.section__head--left { text-align: left; max-width: 520px; margin: 0 0 var(--space-8); }
.section__head--light { color: var(--text-on-dark); }
.section__head--light .section__lead { color: var(--text-on-dark-soft); }
.section__title {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
  color: inherit;
}
.section__lead {
  color: var(--text-muted);
  font-size: var(--text-lg);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-700);
  background: rgba(212, 175, 55, 0.14);
  border: 1px solid rgba(212, 175, 55, 0.32);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-4);
}
.eyebrow--center { margin-left: auto; margin-right: auto; }
.eyebrow--light {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--gold-400);
}
.eyebrow__arrow { color: var(--gold-500); font-weight: 800; }

.text-gradient {
  background: linear-gradient(120deg, var(--gold-500) 0%, var(--gold-400) 50%, var(--red-500) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* =====================
   Buttons
   ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-base);
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  transition: transform var(--duration-fast) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out), background var(--duration-normal) var(--ease-out), color var(--duration-fast) var(--ease-out);
  white-space: nowrap;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--sm { padding: 10px 16px; font-size: var(--text-sm); }
.btn--lg { padding: 16px 26px; font-size: var(--text-lg); }
.btn--block { width: 100%; }

.btn--primary {
  background: linear-gradient(180deg, var(--gold-500), var(--gold-600));
  color: var(--navy-900);
  box-shadow: 0 10px 24px -10px rgba(212, 175, 55, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.btn--primary:hover {
  box-shadow: 0 14px 30px -8px rgba(212, 175, 55, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn--whatsapp {
  background: var(--green-500);
  color: #ffffff;
  box-shadow: 0 8px 20px -8px rgba(37, 211, 102, 0.7);
}
.btn--whatsapp:hover { background: var(--green-600); }
.btn--whatsapp.btn--outline {
  background: transparent;
  border-color: rgba(37, 211, 102, 0.6);
  color: var(--green-600);
  box-shadow: none;
}
.btn--whatsapp.btn--outline:hover { background: rgba(37, 211, 102, 0.08); }

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-on-dark);
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.16); border-color: rgba(255, 255, 255, 0.28); }

/* =====================
   Top bar
   ===================== */
.topbar {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--text-xs);
  letter-spacing: 0.04em;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
  gap: var(--space-6);
}
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.topbar__item .dot {
  width: 7px; height: 7px;
  background: var(--gold-500);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.18);
  animation: pulse 2.4s ease-in-out infinite;
}
.topbar__contacts { display: flex; gap: var(--space-6); }
.topbar__link {
  display: inline-flex; align-items: center; gap: 6px;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--duration-fast) var(--ease-out);
}
.topbar__link:hover { color: var(--gold-400); }
.topbar__link svg { color: var(--gold-500); }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(212, 175, 55, 0); }
}

@media (max-width: 720px) {
  .topbar__contacts { display: none; }
  .topbar__inner { justify-content: center; }
}

/* =====================
   Header
   ===================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(140%) blur(18px);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--duration-normal) var(--ease-out);
}
.header.is-scrolled { box-shadow: var(--shadow-md); }
.header__inner {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--navy-800);
  font-size: var(--text-lg);
}
.brand__logo {
  height: 30px;
  width: auto;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}
.brand__divider {
  width: 1px;
  height: 22px;
  background: linear-gradient(to bottom, transparent, rgba(10, 31, 61, 0.25), transparent);
}
.brand__tagline {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-600);
}
.brand--light { color: #ffffff; }
.brand--light .brand__logo { height: 28px; }
.brand--light .brand__divider { background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.25), transparent); }
.brand--light .brand__tagline { color: var(--gold-400); }

.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.nav a {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--text);
  white-space: nowrap;
  line-height: 1;
  transition: color var(--duration-fast) var(--ease-out), background var(--duration-fast) var(--ease-out);
}
.nav a:hover { background: rgba(10, 31, 61, 0.05); color: var(--navy-800); }

.header__cta { display: flex; align-items: center; gap: 10px; }
.header__inner > .header__cta { margin-left: var(--space-3); }

/* Language toggle */
.lang-toggle {
  display: inline-flex;
  background: rgba(10, 31, 61, 0.05);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 3px;
  gap: 2px;
}
.lang-toggle__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--duration-fast) var(--ease-out), background var(--duration-fast) var(--ease-out), transform var(--duration-fast) var(--ease-out);
}
.lang-toggle__btn .flag {
  width: 16px;
  height: 11px;
  border-radius: 2px;
}
.lang-toggle__btn:hover {
  color: var(--navy-800);
  background: rgba(10, 31, 61, 0.06);
}
.lang-toggle__btn.is-active {
  background: var(--navy-800);
  color: #fff;
  box-shadow: 0 2px 6px -2px rgba(10, 31, 61, 0.35);
}
.lang-toggle__btn:active { transform: scale(0.96); }

.mobile-nav__lang {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-top: var(--space-3);
  margin-top: var(--space-2);
  border-top: 1px solid var(--line);
}
.mobile-nav__lang .lang-toggle__btn {
  flex: 1;
  justify-content: center;
  padding: 12px 16px;
  border: 1px solid var(--line);
  font-size: 0.85rem;
}
.mobile-nav__lang .lang-toggle__btn .flag {
  width: 18px;
  height: 12px;
}

.header__cta { display: flex; gap: 10px; }
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  border-radius: 10px;
  margin-left: auto;
}
.header__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy-800);
  border-radius: 2px;
  transition: transform var(--duration-fast) var(--ease-out), opacity var(--duration-fast) var(--ease-out);
}
.header__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.header__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: var(--space-6);
  gap: var(--space-3);
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.mobile-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: var(--text-base);
}
.mobile-nav a:hover { background: var(--bg-soft); }
.mobile-nav__cta { display: flex; gap: 10px; margin-top: var(--space-2); }
.mobile-nav__cta .btn { flex: 1; }

@media (max-width: 980px) {
  .nav, .header__cta { display: none; }
  .header__burger { display: inline-flex; margin-left: auto; }
  .mobile-nav { display: flex; }
  .mobile-nav[hidden] { display: none; }
}

/* =====================
   Hero
   ===================== */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 50%, var(--navy-700) 100%);
  color: var(--text-on-dark);
  overflow: hidden;
  padding: clamp(3.5rem, 2rem + 4vw, 6rem) 0 clamp(4rem, 2rem + 5vw, 7rem);
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 80%);
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}
.hero__glow--gold {
  width: 520px; height: 520px;
  background: radial-gradient(circle, var(--gold-500), transparent 70%);
  top: -120px; right: -120px;
}
.hero__glow--blue {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--red-500), transparent 70%);
  bottom: -160px; left: -160px;
  opacity: 0.28;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 1rem + 3vw, 4rem);
  align-items: center;
}

.hero__content .eyebrow {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
}

.hero__title {
  font-size: var(--text-5xl);
  margin-bottom: var(--space-6);
  color: #ffffff;
}
.hero__lead {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
  margin-bottom: var(--space-8);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: var(--space-8);
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4) var(--space-6);
}
.hero__badges li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}
.hero__badges svg { color: var(--gold-400); }

/* Hero visual (photo + schedule card composition) */
.hero__visual {
  position: relative;
  isolation: isolate;
}
.hero__photo {
  display: block;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255, 255, 255, 0.06);
  aspect-ratio: 3 / 4;
  background: var(--navy-900);
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.02);
  transition: transform 1.2s var(--ease-out-expo);
}
.hero__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 20, 41, 0) 40%, rgba(6, 20, 41, 0.55) 75%, rgba(6, 20, 41, 0.92) 100%),
    linear-gradient(90deg, rgba(6, 20, 41, 0.25) 0%, rgba(6, 20, 41, 0) 40%);
  pointer-events: none;
}
.hero__visual:hover .hero__photo img { transform: scale(1.06); }

.hero__plate {
  position: absolute;
  top: var(--space-5);
  left: var(--space-5);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 6px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 10px;
  font-family: 'Inter', monospace;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--navy-900);
  box-shadow: var(--shadow-md);
  z-index: 2;
  letter-spacing: 0.06em;
}
.hero__plate-flag {
  display: inline-block;
  width: 14px;
  height: 18px;
  background: #003c8f;
  border-radius: 2px;
  position: relative;
}
.hero__plate-flag::after {
  content: 'TR';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.04em;
}

/* Hero card / schedule — overlaps the photo from bottom */
.hero__card {
  position: relative;
  margin-top: calc(var(--space-8) * -1);
  margin-left: var(--space-6);
  margin-right: var(--space-6);
  background: linear-gradient(180deg, rgba(13, 30, 56, 0.92), rgba(8, 20, 40, 0.96));
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow-xl), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  isolation: isolate;
  z-index: 3;
}
.hero__card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.45), rgba(212, 175, 55, 0));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}
.hero__card-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: var(--space-5);
}
.hero__card-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-400);
}
.hero__card-price {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: #fff;
}
.hero__card-price small { color: rgba(255, 255, 255, 0.6); font-size: 0.7em; font-weight: 600; }

.schedule__row {
  padding: var(--space-4) 0;
}
.schedule__route {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 6px;
}
.schedule__time {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--gold-400);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.schedule__days {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.78);
}
.schedule__off {
  font-size: var(--text-xs);
  color: var(--red-500);
  font-weight: 600;
  margin-top: 4px;
  letter-spacing: 0.04em;
}
.schedule__divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  margin: var(--space-2) 0;
}

.hero__card .btn--primary { margin-top: var(--space-5); }
.hero__card-foot {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  margin-top: var(--space-3);
}

/* Flag chips */
.flag {
  display: inline-block;
  width: 18px;
  height: 12px;
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  vertical-align: middle;
  background-size: cover;
  background-position: center;
}
.flag--ro {
  background: linear-gradient(90deg, #002B7F 33.33%, #FCD116 33.33% 66.66%, #CE1126 66.66%);
}
.flag--tr {
  background-color: #E30A17;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 24'><circle cx='14' cy='12' r='5' fill='%23ffffff'/><circle cx='15.5' cy='12' r='4' fill='%23E30A17'/><polygon fill='%23ffffff' points='22.5,10.2 22.91,11.43 24.21,11.44 23.17,12.22 23.56,13.46 22.5,12.7 21.44,13.46 21.83,12.22 20.79,11.44 22.09,11.43'/></svg>");
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { order: 2; }
  .hero__photo { aspect-ratio: 4 / 3; }
  .hero__card {
    margin-top: calc(var(--space-6) * -1);
    margin-left: var(--space-4);
    margin-right: var(--space-4);
  }
}
@media (max-width: 560px) {
  .hero__photo { aspect-ratio: 1 / 1; }
  .hero__card { margin-left: 0; margin-right: 0; }
  .bus-gallery { grid-template-columns: repeat(3, 1fr); gap: var(--space-2); }
  .bus-gallery__item figcaption { font-size: 0.65rem; }
}

/* =====================
   Trust strip
   ===================== */
.trust {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.trust__inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-4);
  padding: var(--space-5) 0;
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.78);
}
.trust__item svg { color: var(--gold-500); flex-shrink: 0; }
.trust__item strong { color: #fff; display: block; font-family: var(--font-display); font-weight: 700; }
.trust__item span { line-height: 1.3; }

@media (max-width: 900px) {
  .trust__inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .trust__inner { grid-template-columns: 1fr; }
}

/* =====================
   Routes
   ===================== */
.routes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-5);
}

.route-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition: transform var(--duration-normal) var(--ease-out-expo), box-shadow var(--duration-normal) var(--ease-out), border-color var(--duration-normal) var(--ease-out);
  overflow: hidden;
}
.route-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--red-500));
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out);
}
.route-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 175, 55, 0.4);
}
.route-card:hover::before { opacity: 1; }

.route-card--featured {
  background: linear-gradient(180deg, #ffffff, #fcfaf3);
  border-color: rgba(212, 175, 55, 0.4);
}
.route-card--featured::before { opacity: 1; }

.route-card__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: var(--space-2);
}
.route-card__pin {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: linear-gradient(140deg, var(--navy-800), var(--navy-700));
  color: var(--gold-500);
}
.badge {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
}
.badge--gold {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-900);
}

.route-card__title {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-1);
}
.route-card__desc {
  color: var(--text-muted);
  font-size: var(--text-sm);
  line-height: 1.55;
}
.route-card__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: var(--space-4) 0;
  border-top: 1px dashed var(--line-strong);
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-top: auto;
}
.route-card__meta strong { color: var(--text); font-weight: 600; margin-right: 6px; }

.route-card__cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy-800);
  font-size: var(--text-sm);
  align-self: flex-start;
  padding: 10px 0;
  position: relative;
}
.route-card__cta::after {
  content: '';
  position: absolute;
  left: 0; bottom: 6px;
  width: 100%;
  height: 1.5px;
  background: var(--gold-500);
  transform: scaleX(0.4);
  transform-origin: left;
  transition: transform var(--duration-normal) var(--ease-out);
}
.route-card:hover .route-card__cta::after { transform: scaleX(1); }

.route-strip {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-8);
  padding: var(--space-4) var(--space-5);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-size: var(--text-sm);
}
.route-strip svg { color: var(--gold-600); flex-shrink: 0; }
.route-strip p { margin: 0; }

/* Info grid (under routes) */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-8);
}
.info-box {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-5);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform var(--duration-normal) var(--ease-out-expo), box-shadow var(--duration-normal) var(--ease-out), border-color var(--duration-normal) var(--ease-out);
}
.info-box:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.info-box__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg, var(--navy-800), var(--navy-700));
  color: var(--gold-400);
}
.info-box h3 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--navy-800);
}
.info-box p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}
.info-box--gold {
  background: linear-gradient(180deg, #fffdf6, #fbf6e6);
  border-color: rgba(212, 175, 55, 0.4);
}
.info-box--gold:hover { border-color: rgba(212, 175, 55, 0.7); }
.info-box--gold .info-box__icon {
  background: linear-gradient(140deg, var(--gold-500), var(--gold-600));
  color: var(--navy-900);
}
.info-box--red {
  background: linear-gradient(180deg, #fff7f7, #fdeded);
  border-color: rgba(227, 10, 23, 0.25);
}
.info-box--red:hover { border-color: rgba(227, 10, 23, 0.45); }
.info-box--red .info-box__icon {
  background: linear-gradient(140deg, var(--red-600), var(--red-500));
  color: #ffffff;
}

/* =====================
   Benefits
   ===================== */
.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-5);
}
.benefit {
  background: #fff;
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: transform var(--duration-normal) var(--ease-out-expo), box-shadow var(--duration-normal) var(--ease-out);
}
.benefit:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.benefit__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(140deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.04));
  color: var(--navy-800);
  margin-bottom: var(--space-4);
  border: 1px solid rgba(212, 175, 55, 0.28);
}
.benefit h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}
.benefit p {
  color: var(--text-muted);
  font-size: var(--text-sm);
  line-height: 1.6;
}

/* =====================
   Steps
   ===================== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-5);
  counter-reset: step;
  position: relative;
}
.step {
  position: relative;
  background: #fff;
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.step__num {
  position: absolute;
  top: -14px; left: var(--space-6);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--navy-900);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 14px -4px rgba(212, 175, 55, 0.5);
}
.step__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--navy-800);
  color: var(--gold-500);
  margin: var(--space-4) 0 var(--space-4);
  box-shadow: var(--shadow-md);
}
.step h3 { font-size: var(--text-lg); margin-bottom: var(--space-2); }
.step p { color: var(--text-muted); font-size: var(--text-sm); line-height: 1.6; }

.cta-bar {
  margin-top: var(--space-12);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-6);
  align-items: center;
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-bar::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18), transparent 60%);
  top: -100px; right: -100px;
  pointer-events: none;
}
.cta-bar h3 { color: #fff; font-size: var(--text-2xl); margin-bottom: 6px; }
.cta-bar p { color: rgba(255, 255, 255, 0.78); font-size: var(--text-base); }
.cta-bar__actions { display: flex; gap: 10px; flex-wrap: wrap; }

@media (max-width: 720px) {
  .cta-bar { grid-template-columns: 1fr; }
}

/* =====================
   About
   ===================== */
.about {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 1rem + 3vw, 4rem);
  align-items: center;
}
.about__content p {
  color: var(--text-muted);
  font-size: var(--text-lg);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}
.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin: var(--space-8) 0;
  padding: var(--space-6);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.about__stats > div {
  text-align: center;
  padding: 0 var(--space-2);
  border-right: 1px solid var(--line);
}
.about__stats > div:last-child { border-right: 0; }
.about__stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-600), var(--gold-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 4px;
}
.about__stats span {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1.4;
  display: block;
}

.about__visual { display: flex; justify-content: center; }
.photo-card {
  position: relative;
  margin: 0;
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--navy-900);
  aspect-ratio: 4 / 5;
  isolation: isolate;
}
.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s var(--ease-out-expo);
}
.photo-card:hover img { transform: scale(1.04); }
.photo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 20, 41, 0) 40%, rgba(6, 20, 41, 0.92) 100%);
  pointer-events: none;
}
.photo-card__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: var(--space-6);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.photo-card__line {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.photo-card__line:last-child {
  background: linear-gradient(120deg, var(--gold-500), var(--gold-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: var(--text-xl);
}
.photo-card__arrow {
  font-size: 1.25rem;
  color: var(--gold-500);
  font-weight: 300;
  line-height: 1;
}

@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; }
}

/* =====================
   Fleet
   ===================== */
.fleet {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 1rem + 3vw, 4rem);
  align-items: center;
}
.fleet__visual {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.bus-card {
  position: relative;
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--navy-900);
  aspect-ratio: 4 / 5;
  isolation: isolate;
  cursor: zoom-in;
  font: inherit;
  color: inherit;
  text-align: left;
}
.bus-card:focus-visible,
.bus-gallery__item:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 3px;
}
.bus-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s var(--ease-out-expo);
}
.bus-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 20, 41, 0) 60%, rgba(6, 20, 41, 0.45) 100%);
  pointer-events: none;
}
.bus-card:hover img { transform: scale(1.04); }
.bus-card__badge {
  position: absolute;
  top: var(--space-4); left: var(--space-4);
  background: rgba(10, 31, 61, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold-400);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  z-index: 2;
}

.bus-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
.bus-gallery__item {
  position: relative;
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  color: inherit;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow-sm);
  cursor: zoom-in;
  background: var(--navy-900);
  display: block;
}
.bus-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out-expo);
}
.bus-gallery__item:hover img { transform: scale(1.08); }
.bus-gallery__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px 12px 8px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(6, 20, 41, 0.85));
  pointer-events: none;
}

/* Zoom hint badge on main bus card */
.lightbox-trigger__hint {
  position: absolute;
  top: var(--space-4); right: var(--space-4);
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(10, 31, 61, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--gold-400);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity var(--duration-normal) var(--ease-out), transform var(--duration-normal) var(--ease-out);
  pointer-events: none;
}
.bus-card:hover .lightbox-trigger__hint,
.bus-card:focus-visible .lightbox-trigger__hint {
  opacity: 1;
  transform: translateY(0);
}
@media (hover: none) {
  .lightbox-trigger__hint { opacity: 1; transform: none; }
}

.fleet__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.fleet__features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-4);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: border-color var(--duration-fast) var(--ease-out), transform var(--duration-fast) var(--ease-out);
}
.fleet__features li:hover { border-color: rgba(212, 175, 55, 0.4); transform: translateX(2px); }
.fleet__features svg {
  width: 36px; height: 36px;
  padding: 7px;
  border-radius: 10px;
  background: linear-gradient(140deg, var(--navy-800), var(--navy-700));
  color: var(--gold-500);
  flex-shrink: 0;
  box-sizing: border-box;
}
.fleet__features strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 2px;
}
.fleet__features span {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .fleet { grid-template-columns: 1fr; }
}

/* =====================
   Testimonials
   ===================== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-5);
}
.testimonial {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  backdrop-filter: blur(8px);
  transition: transform var(--duration-normal) var(--ease-out), border-color var(--duration-normal) var(--ease-out);
}
.testimonial:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.4);
}
.testimonial__stars {
  color: var(--gold-400);
  letter-spacing: 0.18em;
  font-size: var(--text-base);
  margin-bottom: var(--space-3);
}
.testimonial p {
  color: rgba(255, 255, 255, 0.92);
  font-size: var(--text-base);
  line-height: 1.7;
  margin-bottom: var(--space-5);
}
.testimonial__author {
  display: flex; align-items: center; gap: 12px;
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--navy-900);
}
.testimonial__author strong { display: block; color: #fff; font-family: var(--font-display); }
.testimonial__author span { font-size: var(--text-xs); color: rgba(255, 255, 255, 0.65); }

/* =====================
   FAQ
   ===================== */
.faq-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 1rem + 3vw, 4rem);
  align-items: start;
}
.faq { display: flex; flex-direction: column; gap: var(--space-3); }
.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-2) var(--space-5);
  transition: border-color var(--duration-fast) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out);
}
.faq__item[open] {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: var(--shadow-md);
}
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--navy-800);
  padding: var(--space-3) 0;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.16);
  color: var(--gold-600);
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform var(--duration-fast) var(--ease-out), background var(--duration-fast) var(--ease-out);
}
.faq__item[open] summary::after {
  content: '−';
  background: var(--gold-500);
  color: var(--navy-900);
  transform: rotate(0deg);
}
.faq__item p {
  color: var(--text-muted);
  font-size: var(--text-base);
  line-height: 1.65;
  padding: 0 0 var(--space-4);
}

@media (max-width: 900px) {
  .faq-wrap { grid-template-columns: 1fr; }
}

/* =====================
   Booking
   ===================== */
.section--booking {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-800));
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section--booking::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 280px at 90% 0%, rgba(212, 175, 55, 0.18), transparent 60%),
    radial-gradient(500px 280px at 0% 100%, rgba(227, 10, 23, 0.12), transparent 60%);
}
.booking {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 1rem + 3vw, 4rem);
  align-items: start;
}
.booking__intro .section__title { color: #fff; }
.booking__intro .section__lead { color: rgba(255, 255, 255, 0.78); }
.booking__points {
  margin-top: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.booking__points li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-base);
}
.booking__points svg {
  flex-shrink: 0;
  width: 30px; height: 30px;
  padding: 6px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.18);
  color: var(--gold-400);
}

.booking__form {
  background: #fff;
  color: var(--text);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 1rem + 1.5vw, 2.5rem);
  box-shadow: var(--shadow-xl);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--space-4);
}
.form-row .field { margin-bottom: 0; }
.field span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--navy-800);
}
.field span small { font-weight: 500; color: var(--text-soft); margin-left: 4px; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-soft);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: var(--text-base);
  transition: border-color var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out), background var(--duration-fast) var(--ease-out);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.18);
}
.field textarea { resize: vertical; min-height: 100px; }
.field input:invalid:not(:placeholder-shown),
.field select:invalid:not(:focus) { border-color: rgba(227, 10, 23, 0.35); }

.form-note {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-top: var(--space-3);
}
.form-success {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  margin-top: var(--space-4);
  padding: var(--space-4);
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.32);
  border-radius: var(--radius-md);
  color: var(--navy-800);
}
.form-success svg {
  flex-shrink: 0;
  color: var(--green-600);
  background: rgba(37, 211, 102, 0.18);
  border-radius: 50%;
  padding: 4px;
  width: 32px; height: 32px;
  box-sizing: border-box;
}
.form-success div { display: flex; flex-direction: column; gap: 6px; }
.form-success strong { font-family: var(--font-display); font-weight: 700; }
.form-success span { font-size: var(--text-sm); color: var(--text-muted); }
.form-success .btn { align-self: flex-start; margin-top: var(--space-2); }

@media (max-width: 900px) {
  .booking { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

/* =====================
   Contact
   ===================== */
.contacts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-5);
  max-width: 920px;
  margin: 0 auto;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: transform var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out);
}
.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.contact-card__flag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-2);
}
.contact-card h3 { font-size: var(--text-2xl); margin-bottom: var(--space-4); }
.contact-card ul { display: flex; flex-direction: column; gap: var(--space-3); margin-bottom: var(--space-5); }
.contact-card li {
  display: flex; align-items: center; gap: 10px;
  color: var(--text-muted);
  font-size: var(--text-sm);
}
.contact-card li svg { color: var(--navy-700); flex-shrink: 0; }
.contact-card li a:hover { color: var(--navy-800); text-decoration: underline; }
.contact-card__cta { display: flex; gap: 10px; flex-wrap: wrap; }

/* =====================
   Footer
   ===================== */
.footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.72);
  padding-top: var(--space-16);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-8);
  padding-bottom: var(--space-12);
}
.footer__brand p {
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  line-height: 1.6;
  max-width: 360px;
}
.footer__col h4 {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: var(--space-4);
}
.footer__col ul { display: flex; flex-direction: column; gap: var(--space-2); }
.footer__col a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--duration-fast) var(--ease-out);
}
.footer__col a:hover { color: var(--gold-400); }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--space-5) 0;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-3);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.5);
}
.footer__slogan { color: var(--gold-400); font-family: var(--font-display); font-weight: 600; }

@media (max-width: 900px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer__inner { grid-template-columns: 1fr; }
}

/* =====================
   Sticky CTAs (mobile)
   ===================== */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 12px;
  left: 12px;
  right: 12px;
  z-index: 90;
  gap: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-lg);
}
.sticky-cta__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 8px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  transition: transform var(--duration-fast) var(--ease-out);
}
.sticky-cta__btn:active { transform: scale(0.96); }
.sticky-cta__btn--call {
  background: var(--navy-800);
  color: #fff;
}
.sticky-cta__btn--book {
  background: linear-gradient(180deg, var(--gold-500), var(--gold-600));
  color: var(--navy-900);
}
.sticky-cta__btn--wa {
  background: var(--green-500);
  color: #fff;
}

@media (max-width: 980px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 80px; }
  .float-wa { display: none !important; }
}

/* =====================
   Floating WhatsApp (desktop)
   ===================== */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--green-500);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px -8px rgba(37, 211, 102, 0.6), 0 0 0 0 rgba(37, 211, 102, 0.5);
  z-index: 90;
  transition: transform var(--duration-normal) var(--ease-out);
  animation: wa-pulse 2.4s ease-in-out infinite;
}
.float-wa:hover { transform: scale(1.06); }
@keyframes wa-pulse {
  0% { box-shadow: 0 14px 30px -8px rgba(37, 211, 102, 0.6), 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 14px 30px -8px rgba(37, 211, 102, 0.6), 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 14px 30px -8px rgba(37, 211, 102, 0.6), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* =====================
   Reveal animation
   ===================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* =====================
   Lightbox
   ===================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 14, 30, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: clamp(1rem, 2vw, 3rem);
  animation: lb-fade-in 0.25s var(--ease-out);
}
.lightbox[hidden] { display: none; }

@keyframes lb-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes lb-pop-in {
  from { opacity: 0; transform: scale(0.94); }
  to { opacity: 1; transform: scale(1); }
}

.lightbox__content {
  margin: 0;
  max-width: min(1200px, 92vw);
  max-height: 84vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  animation: lb-pop-in 0.3s var(--ease-out-expo);
}
.lightbox__content picture {
  display: block;
  max-height: 78vh;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.7);
  background: var(--navy-900);
}
.lightbox__image {
  display: block;
  max-width: min(1200px, 92vw);
  max-height: 78vh;
  width: auto;
  height: auto;
  object-fit: contain;
}
.lightbox__caption {
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: center;
  max-width: 600px;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  border-radius: 50%;
  transition: background var(--duration-fast) var(--ease-out), transform var(--duration-fast) var(--ease-out), border-color var(--duration-fast) var(--ease-out);
  z-index: 2;
  -webkit-tap-highlight-color: transparent;
}
.lightbox__close:hover,
.lightbox__nav:hover {
  background: rgba(212, 175, 55, 0.22);
  border-color: rgba(212, 175, 55, 0.55);
  color: var(--gold-400);
}
.lightbox__close:active,
.lightbox__nav:active { transform: scale(0.94); }

.lightbox__close {
  top: clamp(12px, 2vw, 28px);
  right: clamp(12px, 2vw, 28px);
  width: 46px; height: 46px;
}

.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
}
.lightbox__nav:active { transform: translateY(-50%) scale(0.94); }
.lightbox__nav--prev { left: clamp(12px, 2vw, 28px); }
.lightbox__nav--next { right: clamp(12px, 2vw, 28px); }

.lightbox__counter {
  position: absolute;
  bottom: clamp(16px, 3vw, 32px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

/* Body scroll lock when lightbox is open */
body.is-lightbox-open {
  overflow: hidden;
}

@media (max-width: 600px) {
  .lightbox__nav { width: 42px; height: 42px; }
  .lightbox__close { width: 40px; height: 40px; top: 12px; right: 12px; }
  .lightbox__content { gap: var(--space-2); }
  .lightbox__counter { bottom: 14px; }
}
