:root {
  --bg: #090b0f;
  --bg-soft: #11151c;
  --panel: rgba(255,255,255,0.08);
  --panel-strong: rgba(255,255,255,0.12);
  --text: #ffffff;
  --muted: #c8ccd2;
  --muted-dark: #6e737c;
  --gold: #c79f61;
  --gold-soft: #e5c899;
  --white-section: #f6f4f0;
  --white-card: #ffffff;
  --line: rgba(255,255,255,0.1);
  --line-dark: rgba(16,19,22,0.12);
  --shadow: 0 18px 45px rgba(4, 10, 17, 0.22);
  --header-h: 86px;
  --container: min(1300px, calc(100% - 64px));
  --ease: cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: absolute; left: 14px; top: -50px; z-index: 4000;
  background: #fff; color: #000; padding: 8px 12px; border-radius: 10px;
}
.skip-link:focus { top: 14px; }

.site-header {
  position: fixed; inset: 0 0 auto 0; height: var(--header-h);
  display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  gap: 24px; padding: 0 max(20px, calc((100vw - 1320px) / 2 + 20px));
  z-index: 2000; transition: background .25s ease, backdrop-filter .25s ease, border-color .25s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(8, 11, 15, .8);
  backdrop-filter: blur(16px);
  border-color: rgba(255,255,255,.08);
}
.brand { display: inline-flex; align-items: center; min-height: 44px; }
.logo-filters { position: absolute; pointer-events: none; }
.brand-logo { filter: url(#logo-alpha); display: block; width: 166px; height: 50px; object-fit: contain; object-position: left center; }

.desktop-nav { display: inline-flex; justify-self: center; align-items: center; gap: clamp(20px, 3vw, 42px); }
.desktop-nav a {
  font-size: 14px; color: rgba(255,255,255,.78); padding: 6px 0; position: relative;
}
.desktop-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: center; transition: transform .2s ease;
}
.desktop-nav a.active, .desktop-nav a:hover { color: #fff; }
.desktop-nav a.active::after, .desktop-nav a:hover::after { transform: scaleX(1); }

.header-actions { grid-column: 3; justify-self: end; display: inline-flex; align-items: center; gap: 14px; }
.lang-switch {
  display: inline-flex; align-items: center; height: 44px;
  border: 0; background: transparent; padding: 0;
}
.lang-switch select {
  appearance: none; -webkit-appearance: none;
  border: 0; border-radius: 0; background: transparent; color: #fff;
  cursor: pointer; font-size: 14px; font-weight: 700;
  min-width: 62px; min-height: 44px; padding: 8px 2px;
  direction: ltr; text-align: center;
}
.lang-switch select:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.lang-switch select option { color: #111; background: #fff; }

.menu-toggle {
  border: 0; background: transparent; color: #fff; display: inline-flex;
  align-items: center; justify-content: center; gap: 8px; cursor: pointer;
  min-width: 44px; min-height: 44px; padding: 0 4px;
}
.menu-lines { position: relative; display: block; width: 18px; height: 12px; flex: 0 0 18px; }
.menu-lines i { position: absolute; left: 0; top: 5px; display: block; width: 18px; height: 1.5px; border-radius: 1px; background: currentColor; transition: transform .22s ease; }
.menu-lines i:first-child { transform: translateY(-3px); }
.menu-lines i:last-child { transform: translateY(3px); }
.menu-toggle[aria-expanded="true"] .menu-lines i:first-child { transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-lines i:last-child { transform: rotate(-45deg); }
.menu-toggle:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.menu-label { font-size: 12px; font-weight: 500; }

.mobile-menu {
  position: fixed; top: var(--header-h); right: 20px; z-index: 1800; width: min(360px, calc(100vw - 40px));
  opacity: 0; pointer-events: none; transform: translateY(-10px) scale(.98);
  transition: opacity .22s ease, transform .22s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
.mobile-menu-inner {
  background: rgba(9, 12, 16, .94); border: 1px solid rgba(255,255,255,.08); backdrop-filter: blur(16px);
  border-radius: 24px; box-shadow: var(--shadow); padding: 22px;
  display: grid; gap: 14px;
}
.mobile-menu-inner a { color: rgba(255,255,255,.88); font-size: 15px; }
.mobile-menu-phones { display: grid; gap: 10px; padding-top: 10px; border-top: 1px solid rgba(255,255,255,.08); }
.mobile-menu-phones a { font-weight: 700; }

main { position: relative; }
.section-pad { padding: 96px max(24px, calc((100vw - 1320px) / 2 + 24px)); }

.hero {
  position: relative; height: 100svh; min-height: 600px; max-height: 1100px;
  overflow: clip; background: #080d11; isolation: isolate;
}
.hero-media { position: absolute; inset: 0; display: block; }
.hero-image {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5, 20, 29, .26), transparent 25%, transparent 55%, rgba(0, 0, 0, .7) 78%, #000 100%);
}
.hero-title-wrap {
  position: absolute; left: 3%; right: 3%; bottom: 4%; z-index: 1;
  direction: ltr;
}
.hero-title {
  margin: 0; font-family: Arial, Helvetica, sans-serif;
  font-size: 18.4vw; line-height: .84; font-weight: 900; letter-spacing: -.065em;
  white-space: nowrap; text-align: center; color: #fff;
  background: linear-gradient(180deg, #fff 0%, #f5f5f5 28%, #b1b1b1 55%, #525252 79%, #101010 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.gold-line { display: block; width: 42px; height: 2px; background: var(--gold); border-radius: 99px; }

.about { background: #fafaf8; color: #101316; }
.section-number { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #777c82; letter-spacing: .04em; text-transform: uppercase; }
.section-number.light { color: rgba(255,255,255,.66); }
.section-number strong { font-weight: 600; color: inherit; }
.about-grid {
  display: grid; grid-template-columns: minmax(170px, 1fr) minmax(0, 2.5fr);
  gap: clamp(32px, 6vw, 96px); padding-bottom: 64px; border-bottom: 1px solid #dcdedc;
}
.about-label { display: flex; flex-direction: column; justify-content: space-between; gap: 40px; padding-top: 8px; }
.about-signature { font-size: 24px; font-weight: 800; letter-spacing: -.06em; direction: ltr; }
.about-signature > span { display: block; margin-top: 7px; font-size: 12px; font-weight: 500; letter-spacing: .2em; color: #7b7e82; }
.about-main { min-width: 0; }
.about-main h2 {
  margin: 0; font-size: clamp(28px, 3vw, 44px); line-height: 1.3;
  font-weight: 500; letter-spacing: -.035em; text-wrap: pretty;
}
.about-detail { display: grid; grid-template-columns: 40px minmax(0, 1fr); gap: 24px; margin-top: 32px; }
.about-detail-line { height: 1px; background: #979d9f; margin-top: 14px; }
.about-main p { margin: 0; font-size: 16px; color: #696f74; max-width: 660px; line-height: 1.8; }

.fleet { background: #fafaf8; color: #101316; padding-top: 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 30px; }
.section-head > a, .section-note { font-size: 14px; color: #6f7480; }
.section-head > a span { color: #101316; font-size: 18px; position: relative; top: 1px; }
.fleet-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.fleet-card { min-width: 0; background: transparent; }
.fleet-image-wrap { aspect-ratio: 3 / 2; overflow: hidden; background: #e7ecee; border-radius: 3px; }
.fleet-image-wrap img { width: 100%; height: 100%; object-fit: contain; }
.fleet-card-copy { padding: 22px 0; display: flex; align-items: start; justify-content: space-between; gap: 14px; border-bottom: 1px solid #dcdedc; }
.fleet-card-copy > div { min-width: 0; }
.fleet-card-copy h3 { margin: 0; font-size: clamp(20px, 1.7vw, 26px); font-weight: 500; letter-spacing: -.035em; }
.fleet-card-copy p { margin: 9px 0 0; font-size: 14px; color: #747983; line-height: 1.65; }
.round-action { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 50%; border: 1px solid #cdd0d0; background: transparent; cursor: pointer; color: #0f1418; font-size: 20px; transition: background .2s, color .2s; }
.round-action:hover { background: #101316; color: #fff; }
.round-action:focus-visible { outline: 2px solid #101316; outline-offset: 4px; }

.showcase {
  background: linear-gradient(180deg, #0a0d10 0%, #0d1014 100%);
  color: #fff;
}
.showcase-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; margin-top: 30px; }
.showcase-card { min-width: 0; overflow: hidden; background: #10151a; border: 1px solid rgba(255,255,255,.08); border-radius: 3px; cursor: pointer; }
.showcase-image { aspect-ratio: 4 / 5; overflow: hidden; background: #0b0e12; }
.showcase-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 52%; }
.showcase-copy { padding: 22px; }
.showcase-copy h3 { margin: 0; font-size: 24px; font-weight: 500; letter-spacing: -.03em; }
.showcase-copy p { margin: 10px 0 0; font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.65); }

.experiences { background: #fafaf8; color: #101316; }
.experience-heading { display: grid; grid-template-columns: minmax(170px, 1fr) minmax(0, 2.5fr); gap: clamp(32px, 6vw, 96px); align-items: start; margin-bottom: 56px; }
.experience-heading .section-number { padding-top: 8px; }
.experience-intro h2 { margin: 0; max-width: 22ch; font-size: clamp(30px, 3.5vw, 50px); line-height: 1.15; font-weight: 500; letter-spacing: -.04em; text-wrap: pretty; }
.experience-intro p { margin: 22px 0 0; max-width: 580px; color: #696f74; font-size: 16px; line-height: 1.8; }
.experience-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 44px 28px; }
.experience-card { min-width: 0; position: relative; padding: 0 0 28px; border-bottom: 1px solid #cfd3d3; }
.experience-image { aspect-ratio: 16 / 10; margin-bottom: 24px; overflow: hidden; border-radius: 3px; background: #e5eaec; }
.experience-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
@media (hover: hover) { .experience-card:hover .experience-image img { transform: scale(1.025); } }
.experience-number { float: inline-end; margin: 5px 0 0 16px; color: #858c91; font-size: 13px; font-variant-numeric: tabular-nums; }
.experience-card h3 { margin: 0 0 12px; font-size: 23px; font-weight: 500; letter-spacing: -.025em; line-height: 1.3; text-wrap: pretty; }
.experience-card p { margin: 0; color: #696f74; font-size: 16px; line-height: 1.8; }
.experience-footer { display: flex; align-items: center; justify-content: space-between; gap: 32px; margin-top: 32px; padding-top: 0; }
.experience-support { display: flex; align-items: center; gap: 24px; }
.support-mark { font-size: 30px; letter-spacing: -.05em; font-weight: 500; white-space: nowrap; direction: ltr; }
.experience-support h3 { margin: 0; font-size: 16px; font-weight: 600; }
.experience-support p { margin: 7px 0 0; max-width: 560px; font-size: 14px; line-height: 1.7; color: #696f74; }
.experience-link { display: inline-flex; flex-shrink: 0; gap: 24px; align-items: center; padding: 14px 0; border-bottom: 1px solid #101316; font-size: 14px; font-weight: 600; }
.experience-link > span:last-child { font-size: 22px; }
.experience-link:hover { color: #526b78; border-color: currentColor; }
.experience-link:focus-visible { outline: 2px solid #101316; outline-offset: 6px; }

.booking {
  display: grid; grid-template-columns: 1.03fr .97fr; gap: clamp(28px, 5vw, 80px);
  align-items: start; background: #0a0d10;
}
.booking-copy h2 { margin: 20px 0 20px; font-size: clamp(34px, 5vw, 72px); line-height: .98; letter-spacing: -.05em; max-width: 9ch; }
.booking-copy h2 span { color: rgba(255,255,255,.56); }
.booking-copy > p { color: rgba(255,255,255,.66); max-width: 580px; line-height: 1.8; font-size: 18px; }
.contact-list { margin-top: 40px; display: grid; gap: 14px; }
.contact-list a { width: fit-content; display: flex; align-items: center; gap: 12px; font-size: 17px; color: #fff; }
.contact-list span { width: 34px; height: 24px; border: 1px solid rgba(255,255,255,.22); display: grid; place-items: center; border-radius: 999px; font-size: 9px; color: #d3d4d6; }
.booking-form {
  background: #111419; padding: clamp(26px, 4vw, 48px); border-radius: 30px;
  border: 1px solid rgba(255,255,255,.08); box-shadow: var(--shadow);
}
.booking-form label { display: grid; gap: 9px; margin-bottom: 20px; }
.booking-form label > span { color: #9fa4ab; font-size: 10px; text-transform: uppercase; letter-spacing: .18em; }
.booking-form input, .booking-form select, .booking-form textarea {
  width: 100%; border: 0; border-bottom: 1px solid rgba(255,255,255,.18); background: transparent; color: #fff; padding: 12px 2px 13px; outline: none; border-radius: 0;
}
.booking-form select { color-scheme: dark; }
.booking-form textarea { resize: vertical; }
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus { border-bottom-color: var(--gold); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.primary-button {
  width: 100%; display: flex; align-items: center; justify-content: space-between; border: 0; border-radius: 999px; padding: 17px 20px 17px 24px;
  background: linear-gradient(90deg, #e6c488, #c99f57); color: #111; font-weight: 800; cursor: pointer; margin-top: 14px;
}
.primary-button span:last-child { font-size: 20px; }
.form-note { color: #737984 !important; font-size: 11px; margin: 14px 0 0 !important; }

.agreement { background: #f2eee6; color: #101316; }
.agreement-heading {
  display: grid; grid-template-columns: minmax(170px, 1fr) minmax(0, 2.5fr); gap: clamp(32px, 6vw, 96px); align-items: start;
}
.agreement-intro h2 { margin: 0; max-width: 18ch; font-size: clamp(34px, 4vw, 58px); line-height: 1.04; font-weight: 500; letter-spacing: -.045em; }
.agreement-intro p { margin: 22px 0 0; max-width: 640px; color: #656a6e; font-size: 16px; line-height: 1.8; }
.agreement-card {
  margin-top: 54px; padding: clamp(22px, 3vw, 36px); display: flex; align-items: center; justify-content: space-between; gap: 28px;
  background: #fff; border: 1px solid rgba(16,19,22,.12); box-shadow: 0 24px 70px rgba(36,31,22,.09);
}
.agreement-file { display: flex; align-items: center; gap: 20px; min-width: 0; }
.agreement-file > div { display: grid; gap: 5px; }
.agreement-file strong { font-size: 18px; letter-spacing: -.02em; }
.agreement-file div > span { color: #6e7377; font-size: 14px; }
.agreement-format {
  flex: 0 0 auto; width: 64px; aspect-ratio: 1; display: grid; place-items: center; background: #0a0d10; color: var(--gold);
  font-size: 13px; font-weight: 800; letter-spacing: .14em;
}
.agreement-actions { display: flex; align-items: center; gap: 10px; }
.agreement-link { display: inline-flex; align-items: center; justify-content: space-between; gap: 28px; min-width: 168px; padding: 15px 18px; font-size: 13px; font-weight: 700; }
.agreement-link-secondary { border: 1px solid rgba(16,19,22,.2); }
.agreement-link-primary { background: #0a0d10; color: #fff; }
.agreement-link:hover { transform: translateY(-1px); }
.agreement-link:focus-visible { outline: 2px solid #101316; outline-offset: 4px; }

footer {
  background: #060809; color: rgba(255,255,255,.58); padding: 30px max(24px, calc((100vw - 1320px) / 2 + 24px));
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px; align-items: center; font-size: 12px; border-top: 1px solid rgba(255,255,255,.08);
}
.footer-brand { display: grid; gap: 4px; color: #fff; font-weight: 800; letter-spacing: .08em; }
.footer-brand small { color: rgba(255,255,255,.38); font-weight: 500; letter-spacing: .22em; font-size: 8px; text-transform: uppercase; }
footer > p { text-align: center; }
footer > a { justify-self: end; }

.fixed-socials {
  position: fixed; right: 18px; bottom: 18px; z-index: 1700; display: grid; gap: 10px; justify-items: end;
}
.floating-button {
  width: 56px; height: 56px; border-radius: 50%; color: #fff; display: grid; place-items: center;
  box-shadow: 0 16px 34px rgba(0,0,0,.28); transition: transform .2s ease, box-shadow .2s ease;
}
.floating-button:hover { transform: translateY(-2px); box-shadow: 0 20px 40px rgba(0,0,0,.35); }
.floating-button svg { width: 24px; height: 24px; fill: currentColor; }
.whatsapp { background: #22c55e; }
.instagram { background: radial-gradient(circle at 30% 110%, #ffd56b 0 10%, #ff7a38 27%, #f0337e 47%, #8b35cc 70%, #4c64d5 100%); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

html[dir="rtl"] body { text-align: right; }
html[dir="rtl"] .site-header { grid-template-columns: auto 1fr auto; }
html[dir="rtl"] .desktop-nav { direction: rtl; }

html[dir="rtl"] .section-head,
html[dir="rtl"] .fleet-card-copy,
html[dir="rtl"] .contact-list a,
html[dir="rtl"] footer { direction: rtl; }
html[dir="rtl"] .round-action { transform: scaleX(-1); }
html[dir="rtl"] .fixed-socials { left: 18px; right: auto; }

@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: auto 1fr auto; }
  .fleet-grid, .showcase-grid { gap: 18px; }

  .experience-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .booking { grid-template-columns: 1fr; }
  .agreement-heading { grid-template-columns: 1fr; gap: 28px; }
  .agreement-card { align-items: flex-start; flex-direction: column; }
  footer { grid-template-columns: 1fr; text-align: center; }
  footer > a { justify-self: center; }
  .footer-brand { justify-items: center; }
}

@media (max-width: 760px) {
  :root { --header-h: 76px; }
  .site-header { gap: 10px; padding: 0 18px; }
  .brand-logo { width: 140px; height: 44px; }
  .lang-switch { padding: 0; }
  .lang-switch select { font-size: 14px; }
  .menu-label { display: none; }
  .menu-toggle { gap: 0; padding: 0; }
  .hero {
    height: 100vh;
    height: 100svh;
    min-height: 0;
    max-height: none;
  }
  .hero-image { object-position: center center; }
  .contact-icon { width: 24px; height: 24px; font-size: 12px; }
  .hero-title-wrap { left: 3%; right: 3%; bottom: 28px; }
  .hero-title { font-size: 18.4vw; }
  .section-pad { padding: 72px 20px; }
  .about-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 40px; }
  .about-label { padding: 0; }
  .about-signature { display: none; }
  .about-detail { grid-template-columns: 24px minmax(0, 1fr); gap: 16px; margin-top: 24px; }
  .fleet-grid, .showcase-grid { grid-template-columns: 1fr; gap: 32px; }
  .fleet.section-pad { padding-top: 0; }

  .about-main h2 { font-size: clamp(26px, 6vw, 34px); line-height: 1.35; }
  .about-main p, .booking-copy > p { font-size: 16px; }
  .section-head { align-items: start; flex-direction: column; }

  .fleet-card-copy h3 { font-size: 23px; }


  .showcase-copy h3 { font-size: 26px; }
  .experience-heading { grid-template-columns: 1fr; gap: 28px; margin-bottom: 36px; }
  .experience-heading .section-number { padding-top: 0; }
  .experience-intro h2 { font-size: clamp(30px, 8vw, 40px); }
  .experience-grid { grid-template-columns: 1fr; gap: 32px; }
  .experience-card { padding: 0 0 24px; }
  .experience-image { margin-bottom: 20px; }
  .experience-card h3 { margin-top: 0; }
  .experience-footer { flex-direction: column; align-items: stretch; gap: 20px; }
  .experience-support { gap: 20px; align-items: start; }
  .experience-link { align-self: flex-start; }
  .booking-copy h2 { font-size: 50px; }
  .booking-form { padding: 26px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .agreement-card { margin-top: 36px; }
  .agreement-actions { width: 100%; flex-direction: column; align-items: stretch; }
  .agreement-link { width: 100%; }
  .fixed-socials { right: 12px; bottom: 12px; }
  .floating-button { width: 52px; height: 52px; }
}

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