/* ============================================================
   SamtMotion - Luxury Design System
   ============================================================ */

/* --- Custom Properties --- */
:root {
  --obsidian: #0A0A0A;
  --charcoal: #111111;
  --smoke: #3D3D3D;
  --gold: #C9A96E;
  --gold-hover: #D4A853;
  --ivory: #F5F0E8;
  --ivory-muted: rgba(245, 240, 232, 0.6);
  --ivory-subtle: rgba(245, 240, 232, 0.3);

  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1200px;
  --container-narrow: 780px;
  --gap: clamp(1.5rem, 4vw, 3.5rem);

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--obsidian);
  color: var(--ivory);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

a:hover {
  color: var(--gold-hover);
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(3.2rem, 8vw, 7rem);
}

h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
}

h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
}

p {
  font-size: clamp(1.02rem, 1.2vw, 1.18rem);
  line-height: 1.85;
  color: var(--ivory-muted);
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gap);
}

.container--narrow {
  max-width: var(--container-narrow);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 2rem 0;
  transition: all 0.5s var(--ease);
}

.nav--scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.06);
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gap);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--gold);
  transition: opacity 0.3s var(--ease);
}

.nav__logo:hover {
  color: var(--gold);
  opacity: 0.8;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.nav__link {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--ivory-muted);
  text-transform: uppercase;
  transition: color 0.3s var(--ease);
}

.nav__link:hover {
  color: var(--ivory);
}

.nav__cta {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--obsidian);
  background: var(--gold);
  padding: 0.75rem 2rem;
  transition: all 0.3s var(--ease);
}

.nav__cta:hover {
  background: var(--gold-hover);
  color: var(--obsidian);
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
  z-index: 110;
}

.nav__toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--ivory);
  position: absolute;
  left: 0;
  transition: all 0.3s var(--ease);
}

.nav__toggle span:first-child { top: 4px; }
.nav__toggle span:last-child { bottom: 4px; }

.nav__toggle.active span:first-child {
  top: 50%;
  transform: rotate(45deg);
}

.nav__toggle.active span:last-child {
  bottom: 50%;
  transform: rotate(-45deg);
}

/* --- Mobile Menu --- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--obsidian);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s var(--ease-out);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.mobile-menu__link {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--ivory);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s var(--ease-out);
}

.mobile-menu.active .mobile-menu__link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.active .mobile-menu__link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-menu__link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-menu__link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-menu__link:nth-child(4) { transition-delay: 0.25s; }

.mobile-menu__cta {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--obsidian);
  background: var(--gold);
  padding: 1.1rem 3rem;
  margin-top: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s var(--ease-out);
  transition-delay: 0.35s;
}

.mobile-menu.active .mobile-menu__cta {
  opacity: 1;
  transform: translateY(0);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--gap);
  max-width: 1000px;
}

.hero__prelude {
  font-family: var(--font-serif);
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3rem;
}

.hero__title {
  color: var(--ivory);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero__subtitle {
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  color: var(--ivory-muted);
  line-height: 2;
  margin-bottom: 4rem;
  font-weight: 300;
}

/* Hero inline form */
.hero__form {
  max-width: 480px;
  margin: 0 auto;
}

.hero__input-group {
  display: flex;
  gap: 12px;
  align-items: center;
}

.hero__input {
  flex: 1;
  padding: 1.1rem 1.8rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 60px;
  color: var(--ivory);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  outline: none;
  min-width: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 0.3s var(--ease);
}

.hero__input:focus {
  border-color: rgba(201, 169, 110, 0.5);
}

.hero__input::placeholder {
  color: var(--ivory-subtle);
}

.hero__submit {
  padding: 1.1rem 2.5rem;
  background: var(--gold);
  color: var(--obsidian);
  border: none;
  border-radius: 60px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.hero__submit:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.3);
}

.hero__note {
  margin-top: 2rem;
  font-size: 0.78rem;
  color: var(--ivory-subtle);
  letter-spacing: 0.06em;
}

/* Scroll Indicator */
.hero__scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  opacity: 0.4;
  transition: opacity 0.3s var(--ease);
}

.hero__scroll:hover {
  opacity: 1;
}

.hero__scroll-text {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-muted);
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* --- Sections --- */
.section {
  padding: clamp(8rem, 18vh, 16rem) 0;
  position: relative;
}

.section__title {
  color: var(--ivory);
  margin-bottom: 3rem;
}

.section__title--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section__subtitle {
  text-align: center;
  font-size: clamp(1.02rem, 1.2vw, 1.18rem);
  color: var(--ivory-muted);
  max-width: 600px;
  margin: 0 auto 5rem;
}

/* --- Map Section (the star) --- */
.section--map {
  padding: clamp(5rem, 12vh, 10rem) 0 clamp(7rem, 16vh, 14rem);
  background: var(--obsidian);
}

.map-header {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gap);
  margin-bottom: clamp(3rem, 6vh, 5rem);
}

.map-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
}

.dubai-map {
  width: 100%;
  height: auto;
}

.map__coast {
  fill: none;
  stroke: rgba(201, 169, 110, 0.18);
  stroke-width: 2.5;
}

.map__palm-crescent {
  fill: none;
  stroke: rgba(201, 169, 110, 0.14);
  stroke-width: 1.5;
}

.map__palm-trunk,
.map__palm-frond {
  stroke: rgba(201, 169, 110, 0.1);
  stroke-width: 1;
}

.map__road {
  fill: none;
  stroke: rgba(201, 169, 110, 0.1);
  stroke-width: 1.5;
  stroke-dasharray: 6 4;
}

.map__road--main {
  stroke: rgba(201, 169, 110, 0.22);
  stroke-width: 2;
  stroke-dasharray: none;
}

.map__path-hidden {
  fill: none;
  stroke: none;
}

/* Landmark dots */
.map__landmark-dot {
  fill: var(--gold);
  opacity: 0.8;
}

.map__landmark-pulse {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1;
  opacity: 0;
  animation: landmarkPulse 3s ease-out infinite;
}

.map__landmark:nth-child(odd) .map__landmark-pulse {
  animation-delay: 0.5s;
}

.map__landmark:nth-child(even) .map__landmark-pulse {
  animation-delay: 1.5s;
}

@keyframes landmarkPulse {
  0% {
    r: 6;
    opacity: 0.6;
  }
  100% {
    r: 20;
    opacity: 0;
  }
}

.map__label {
  fill: var(--ivory-muted);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-anchor: middle;
}

/* Car dots */
.map__car-dot {
  fill: var(--gold);
}

.map__car-glow {
  fill: var(--gold);
  opacity: 0.15;
  animation: carGlow 2s ease-in-out infinite;
}

.map__car--1 .map__car-glow { animation-delay: 0s; }
.map__car--2 .map__car-glow { animation-delay: 0.4s; }
.map__car--3 .map__car-glow { animation-delay: 0.8s; }
.map__car--4 .map__car-glow { animation-delay: 1.2s; }
.map__car--5 .map__car-glow { animation-delay: 1.6s; }
.map__car--6 .map__car-glow { animation-delay: 2.0s; }
.map__car--7 .map__car-glow { animation-delay: 2.4s; }
.map__car--8 .map__car-glow { animation-delay: 2.8s; }

/* City-level landmarks (Abu Dhabi, Sharjah, Ajman, RAK) */
.map__landmark-dot--city {
  fill: var(--gold);
  opacity: 0.9;
}

.map__landmark-pulse--outer {
  fill: none;
  stroke: var(--gold);
  stroke-width: 0.5;
  opacity: 0;
  animation: landmarkPulseOuter 4s ease-out infinite;
}

@keyframes landmarkPulseOuter {
  0% {
    r: 8;
    opacity: 0.4;
  }
  100% {
    r: 28;
    opacity: 0;
  }
}

.map__label--city {
  fill: var(--gold);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-anchor: middle;
}

/* Abu Dhabi island outline */
.map__island {
  fill: rgba(201, 169, 110, 0.04);
  stroke: rgba(201, 169, 110, 0.14);
  stroke-width: 1.5;
}

@keyframes carGlow {
  0%, 100% { opacity: 0.1; r: 8; }
  50% { opacity: 0.3; r: 14; }
}

/* --- Promise Section --- */
.section--promise {
  text-align: center;
}

.promise__body {
  max-width: 640px;
  margin: 0 auto;
}

.promise__body p {
  margin-bottom: 2.2rem;
}

.promise__accent {
  color: var(--gold) !important;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.2vw, 1.7rem) !important;
  font-style: normal;
  line-height: 1.55 !important;
  margin-top: 4rem !important;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Steps Section --- */
.section--steps {
  background: var(--charcoal);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem;
  margin-top: 5rem;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.step {
  text-align: center;
}

.step__number {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
}

.step__title {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 1.4rem;
}

.step__text {
  font-size: 0.95rem;
  color: var(--ivory-muted);
  line-height: 1.8;
}

/* --- Fleet Section --- */
.section--fleet {
  background: var(--obsidian);
}

.fleet__list {
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fleet__item {
  padding: 3.5rem 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.08);
  text-align: center;
}

.fleet__item:first-child {
  border-top: 1px solid rgba(201, 169, 110, 0.08);
}

.fleet__name {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}

.fleet__detail {
  font-size: 0.95rem;
  color: var(--ivory-muted);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto;
}

.fleet__note {
  margin-top: 5rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--ivory-subtle);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Fleet Badge --- */
.fleet__badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 169, 110, 0.3);
  padding: 0.35rem 1rem;
  margin-bottom: 1.2rem;
}

/* --- Roadmap Section --- */
.section--roadmap {
  background: var(--charcoal);
  padding: clamp(5rem, 10vh, 8rem) 0;
}

.roadmap {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 4rem;
}

.roadmap__item {
  display: flex;
  align-items: baseline;
  gap: 3rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.08);
}

.roadmap__item:first-child {
  border-top: 1px solid rgba(201, 169, 110, 0.08);
}

.roadmap__year {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--gold);
  min-width: 100px;
  letter-spacing: 0.02em;
}

.roadmap__text {
  font-size: 1rem;
  color: var(--ivory-muted);
  line-height: 1.7;
  flex: 1;
}

/* --- AV Partners Section --- */
.section--av-partners {
  background: var(--obsidian);
  position: relative;
}

.section--av-partners::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 169, 110, 0.15), transparent);
}

.av-partners__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.av-partners__card {
  padding: 3rem;
  border: 1px solid rgba(201, 169, 110, 0.08);
  transition: border-color 0.4s var(--ease);
}

.av-partners__card:hover {
  border-color: rgba(201, 169, 110, 0.2);
}

.av-partners__card h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 1.5rem;
}

.av-partners__card p {
  font-size: 0.95rem;
  line-height: 1.8;
}

.av-partners__cta {
  text-align: center;
  margin-top: 5rem;
}

.av-partners__closing {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.5rem) !important;
  color: var(--ivory) !important;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.av-partners__link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gold);
  border-bottom: 1px solid rgba(201, 169, 110, 0.3);
  padding-bottom: 0.3rem;
  transition: border-color 0.3s var(--ease);
}

.av-partners__link:hover {
  border-color: var(--gold);
}

/* --- Statement Section --- */
.section--statement {
  padding: clamp(10rem, 22vh, 20rem) 0;
  text-align: center;
  background: var(--charcoal);
}

.statement__text {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.25;
  max-width: 900px;
  margin: 0 auto;
}

/* --- Membership Section --- */
.section--membership {
  background: var(--obsidian);
}

.membership__tiers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 5rem;
}

.membership__tier-card {
  padding: 4rem 3.5rem;
  border: 1px solid rgba(201, 169, 110, 0.1);
  transition: border-color 0.4s var(--ease);
  text-align: center;
}

.membership__tier-card:hover {
  border-color: rgba(201, 169, 110, 0.25);
}

.membership__tier-card--featured {
  border-color: rgba(201, 169, 110, 0.25);
  position: relative;
}

.membership__tier-card--featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
}

.membership__tier-name {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}

.membership__tier-desc {
  font-size: 0.95rem;
  color: var(--ivory-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.membership__apply {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 169, 110, 0.3);
  padding: 0.9rem 2.2rem;
  transition: all 0.3s var(--ease);
}

.membership__apply:hover {
  background: var(--gold);
  color: var(--obsidian);
}

/* --- Partners Section --- */
.section--partners {
  background: var(--charcoal);
}

.partners__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.partners__item {
  padding: 3rem;
  border: 1px solid rgba(201, 169, 110, 0.08);
  transition: border-color 0.4s var(--ease);
}

.partners__item:hover {
  border-color: rgba(201, 169, 110, 0.2);
}

.partners__item h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 1.5rem;
}

.partners__item p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.partners__link {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(201, 169, 110, 0.3);
  padding-bottom: 0.3rem;
  transition: border-color 0.3s var(--ease);
}

.partners__link:hover {
  border-color: var(--gold);
}

/* --- CTA Section --- */
.section--cta {
  padding: clamp(10rem, 22vh, 20rem) 0;
  text-align: center;
  background: var(--obsidian);
  position: relative;
}

.section--cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 169, 110, 0.15), transparent);
}

.cta__title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 1rem;
}

.cta__subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  color: var(--gold);
  margin-bottom: 4.5rem;
}

.cta__form {
  max-width: 480px;
  margin: 0 auto;
}

.cta__input-group {
  display: flex;
  gap: 12px;
  align-items: center;
}

.cta__input {
  flex: 1;
  padding: 1.1rem 1.8rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 60px;
  color: var(--ivory);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  outline: none;
  min-width: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 0.3s var(--ease);
}

.cta__input:focus {
  border-color: rgba(201, 169, 110, 0.5);
}

.cta__input::placeholder {
  color: var(--ivory-subtle);
}

.cta__submit {
  padding: 1.1rem 2.5rem;
  background: var(--gold);
  color: var(--obsidian);
  border: none;
  border-radius: 60px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.cta__submit:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.3);
}

.cta__fine {
  margin-top: 1.5rem;
  font-size: 0.78rem;
  color: var(--ivory-subtle);
}

/* --- Floating CTA --- */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  padding: 0.8rem var(--gap);
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.5s var(--ease-out);
}

.floating-cta.visible {
  transform: translateY(0);
  opacity: 1;
}

.floating-cta__form {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
  align-items: center;
}

.floating-cta__input {
  flex: 1;
  padding: 0.8rem 1.4rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 60px;
  color: var(--ivory);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  min-width: 0;
  transition: border-color 0.3s var(--ease);
}

.floating-cta__input:focus {
  border-color: rgba(201, 169, 110, 0.5);
}

.floating-cta__input::placeholder {
  color: var(--ivory-subtle);
}

.floating-cta__submit {
  padding: 0.8rem 1.8rem;
  background: var(--gold);
  color: var(--obsidian);
  border: none;
  border-radius: 60px;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.floating-cta__submit:hover {
  background: var(--gold-hover);
}

/* --- Footer --- */
.footer {
  padding: 6rem 0 3rem;
  border-top: 1px solid rgba(201, 169, 110, 0.04);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.04);
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

.footer__tagline {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--ivory-subtle);
  font-style: normal;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer__links a {
  font-size: 0.8rem;
  color: var(--ivory-muted);
  letter-spacing: 0.02em;
  transition: color 0.3s var(--ease);
}

.footer__links a:hover {
  color: var(--ivory);
}

.footer__social {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  text-align: right;
}

.footer__social a {
  font-size: 0.8rem;
  color: var(--ivory-muted);
  letter-spacing: 0.02em;
  transition: color 0.3s var(--ease);
}

.footer__social a:hover {
  color: var(--ivory);
}

.footer__bottom {
  padding-top: 2.5rem;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.7rem;
  color: var(--smoke);
  letter-spacing: 0.04em;
}

/* --- Scroll Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.reveal--delay-1 {
  transition-delay: 0.2s;
}

.reveal--delay-2 {
  transition-delay: 0.4s;
}

.reveal--delay-3 {
  transition-delay: 0.6s;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */

/* Tablet */
@media (max-width: 1024px) {
  .steps {
    gap: 3rem;
  }

  .membership__tiers {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .partners__list {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .av-partners__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .nav__toggle {
    display: block;
  }

  .hero__content {
    padding: 0 1.5rem;
  }

  .hero__scroll {
    display: none;
  }

  h1 {
    font-size: clamp(2.6rem, 10vw, 4rem);
  }

  h2 {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
  }

  .section {
    padding: clamp(5.5rem, 14vh, 10rem) 0;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    max-width: 400px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }

  .footer__social {
    text-align: center;
  }

  .hero__input-group {
    flex-direction: column;
    gap: 10px;
  }

  .hero__submit {
    padding: 1.1rem;
    width: 100%;
  }

  .cta__input-group {
    flex-direction: column;
    gap: 10px;
  }

  .cta__submit {
    padding: 1.2rem;
    width: 100%;
  }

  .floating-cta__form {
    flex-direction: column;
    gap: 8px;
  }

  .floating-cta__submit {
    padding: 0.9rem;
    width: 100%;
  }

  .fleet__item {
    padding: 2.5rem 0;
  }

  .membership__tier-card {
    padding: 2.5rem 2rem;
  }

  .partners__item {
    padding: 2.5rem 2rem;
  }

  .av-partners__card {
    padding: 2.5rem 2rem;
  }

  .roadmap__item {
    flex-direction: column;
    gap: 0.8rem;
  }

  .roadmap__year {
    min-width: auto;
  }

  .map-container {
    padding: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .dubai-map {
    min-width: 900px;
  }

  .map__label {
    font-size: 10px;
  }

  .map__label--city {
    font-size: 11px;
  }

  .section--statement {
    padding: clamp(7rem, 16vh, 14rem) 0;
  }

  .statement__text {
    font-size: clamp(1.7rem, 6vw, 2.5rem);
    padding: 0 0.5rem;
  }
}

/* Small mobile (390px) */
@media (max-width: 480px) {
  :root {
    --gap: 1.25rem;
  }

  .hero__prelude {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero__subtitle {
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 3rem;
  }

  .section__subtitle {
    margin-bottom: 3.5rem;
  }

  .floating-cta {
    padding: 0.6rem var(--gap);
  }
}

/* --- Print --- */
@media print {
  body {
    background: white;
    color: black;
  }

  .nav,
  .hero__canvas,
  .hero__scroll,
  .section--map,
  .floating-cta {
    display: none;
  }
}

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

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .floating-cta {
    transition: none;
  }
}

/* --- Focus Styles --- */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

/* ============================================================
   Language Switcher & RTL Foundation
   ============================================================ */

/* --- Language Switcher (Nav) --- */
.nav__lang {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1.5rem;
}

.nav__lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--ivory-subtle);
  text-transform: uppercase;
  padding: 0.3rem 0.4rem;
  transition: color 0.3s var(--ease);
}

.nav__lang-btn:hover {
  color: var(--gold-hover);
}

.nav__lang-btn--active {
  color: var(--gold);
  font-weight: 500;
}

.nav__lang-sep {
  color: rgba(201, 169, 110, 0.25);
  font-size: 0.7rem;
  font-weight: 300;
  user-select: none;
}

/* Mobile menu language switcher */
.mobile-menu__lang {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s var(--ease-out);
  transition-delay: 0.4s;
}

.mobile-menu.active .mobile-menu__lang {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu__lang .nav__lang-btn {
  font-size: 0.85rem;
  padding: 0.4rem 0.6rem;
}

.mobile-menu__lang .nav__lang-sep {
  font-size: 0.85rem;
}

/* --- Arabic Detection Banner --- */
.ar-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(201, 169, 110, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
  padding: 0.7rem var(--gap);
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.5s var(--ease-out);
}

.ar-banner.visible {
  transform: translateY(0);
  opacity: 1;
}

.ar-banner__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.ar-banner__text {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--gold);
  letter-spacing: 0.02em;
  text-align: center;
  direction: rtl;
}

.ar-banner__close {
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 0 0.3rem;
  line-height: 1;
  opacity: 0.6;
  transition: opacity 0.3s var(--ease);
}

.ar-banner__close:hover {
  opacity: 1;
}

/* --- Language Toast --- */
.lang-toast {
  position: fixed;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 200;
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 60px;
  padding: 0.8rem 2rem;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s var(--ease-out);
}

.lang-toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.lang-toast__text {
  font-size: 0.82rem;
  color: var(--gold);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

/* ============================================================
   RTL Foundation (activated via dir="rtl" on <html>)
   ============================================================ */
[dir="rtl"] {
  direction: rtl;
  text-align: right;
}

[dir="rtl"] .nav__inner {
  flex-direction: row-reverse;
}

[dir="rtl"] .nav__links {
  flex-direction: row-reverse;
}

[dir="rtl"] .nav__lang {
  margin-left: 0;
  margin-right: 1.5rem;
}

[dir="rtl"] .hero__input-group {
  flex-direction: row-reverse;
}

[dir="rtl"] .cta__input-group {
  flex-direction: row-reverse;
}

[dir="rtl"] .floating-cta__form {
  flex-direction: row-reverse;
}

[dir="rtl"] .steps {
  direction: rtl;
}

[dir="rtl"] .roadmap__item {
  flex-direction: row-reverse;
  text-align: right;
}

[dir="rtl"] .roadmap__year {
  text-align: left;
}

[dir="rtl"] .footer__inner {
  direction: rtl;
}

[dir="rtl"] .footer__social {
  text-align: left;
}

[dir="rtl"] .footer__links {
  text-align: right;
}

[dir="rtl"] .partners__item,
[dir="rtl"] .av-partners__card {
  text-align: right;
}

[dir="rtl"] .section__title--center,
[dir="rtl"] .section__subtitle,
[dir="rtl"] .promise__accent,
[dir="rtl"] .statement__text,
[dir="rtl"] .cta__title,
[dir="rtl"] .cta__subtitle,
[dir="rtl"] .cta__fine,
[dir="rtl"] .step,
[dir="rtl"] .fleet__item,
[dir="rtl"] .membership__tier-card,
[dir="rtl"] .av-partners__cta {
  text-align: center;
}

[dir="rtl"] .hero__content {
  text-align: center;
}

[dir="rtl"] .hero__note {
  text-align: center;
}

/* RTL mobile overrides */
@media (max-width: 768px) {
  [dir="rtl"] .hero__input-group {
    flex-direction: column;
  }

  [dir="rtl"] .cta__input-group {
    flex-direction: column;
  }

  [dir="rtl"] .floating-cta__form {
    flex-direction: column;
  }

  [dir="rtl"] .footer__inner {
    text-align: center;
  }

  [dir="rtl"] .footer__social {
    text-align: center;
  }

  [dir="rtl"] .footer__links {
    text-align: center;
  }

  [dir="rtl"] .roadmap__item {
    flex-direction: column;
    text-align: center;
  }
}
