:root {
  --bg: #111111;
  --bg-soft: #181818;
  --panel: rgba(246, 240, 230, 0.06);
  --panel-strong: rgba(246, 240, 230, 0.1);
  --text: #f4ede2;
  --muted: #c9bda9;
  --line: rgba(244, 237, 226, 0.12);
  --accent: #d8b36a;
  --accent-strong: #ebc988;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, "Times New Roman", serif;
  --sans: "Avenir Next", "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --radius: 24px;
  --container: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--sans);
  background:
    radial-gradient(circle at top left, rgba(216, 179, 106, 0.14), transparent 26%),
    radial-gradient(circle at 80% 20%, rgba(244, 237, 226, 0.1), transparent 18%),
    linear-gradient(180deg, #0f0f0f 0%, #151515 40%, #0c0c0c 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65), transparent 90%);
}

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

img {
  max-width: 100%;
}

.page-shell {
  width: var(--container);
  margin: 0 auto;
  padding-bottom: 40px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--accent-strong);
  font-family: var(--serif);
  letter-spacing: 0.12em;
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  font-size: 0.98rem;
  font-weight: 600;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.96rem;
}

.site-nav a {
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.lang-switch {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 999px;
  font: inherit;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
  min-height: calc(100vh - 120px);
  padding: 56px 0 40px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent-strong);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.04;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 6vw, 5.8rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  max-width: 13ch;
}

h3 {
  font-size: 1.55rem;
}

.lead,
.section-heading p,
.split-copy p,
.service-card p,
.fleet-card li,
.feature-list p,
.coverage-card p,
.contact-panel p,
.site-footer p,
.stats-strip p {
  color: var(--muted);
  line-height: 1.75;
}

.lead {
  max-width: 60ch;
  font-size: 1.05rem;
  margin: 24px 0 0;
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  color: #111111;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
  box-shadow: none;
}

.button-small {
  min-height: 42px;
  padding: 0 18px;
}

.site-nav .button {
  color: #111111;
}

.button-full {
  width: 100%;
}

.hero-points {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
}

.hero-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 20px var(--accent);
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 50px 30px 0 70px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(19, 19, 19, 0.15), rgba(19, 19, 19, 0.6)),
    linear-gradient(150deg, rgba(216, 179, 106, 0.3), rgba(255, 255, 255, 0.04) 55%, rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.hero-visual-img {
  position: absolute;
  inset: 50px 30px 0 70px;
  border-radius: 32px;
  object-fit: cover;
  width: calc(100% - 100px);
  height: calc(100% - 50px);
  opacity: 0.75;
}

.fleet-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 6px;
}

.visual-card {
  position: absolute;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(246, 240, 230, 0.09), rgba(246, 240, 230, 0.03));
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.visual-primary {
  top: 0;
  right: 0;
  width: min(340px, 90%);
}

.visual-secondary {
  bottom: 34px;
  left: 0;
  width: min(280px, 82%);
}

.visual-card span,
.fleet-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent-strong);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.visual-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.9rem;
  margin-bottom: 10px;
}

.visual-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.stats-strip,
.card-grid,
.fleet-grid,
.coverage-layout,
.contact-layout,
.split-section {
  display: grid;
  gap: 20px;
}

.stats-strip {
  grid-template-columns: repeat(3, 1fr);
  margin: 16px 0 80px;
}

.stats-strip article,
.service-card,
.fleet-card,
.coverage-card,
.contact-panel,
.booking-form,
.feature-list article {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.section {
  padding: 60px 0;
}

.section-alt {
  position: relative;
}

.section-alt::before {
  content: "";
  position: absolute;
  inset: 18px -18px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent);
  z-index: -1;
}

.section-heading {
  display: grid;
  gap: 16px;
  margin-bottom: 30px;
}

.section-heading p {
  max-width: 68ch;
  margin: 0;
}

.card-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card h3,
.feature-list h3,
.coverage-card h3,
.contact-panel h3 {
  margin-bottom: 12px;
}

.fleet-grid {
  grid-template-columns: repeat(3, 1fr);
}

.fleet-card ul {
  margin: 18px 0 22px;
  padding-left: 18px;
}

.fleet-card li + li {
  margin-top: 10px;
}

.fleet-card a {
  color: var(--accent-strong);
}

.split-section {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

.feature-list {
  display: grid;
  gap: 18px;
}

.coverage-layout {
  grid-template-columns: repeat(3, 1fr);
}

.contact-layout {
  grid-template-columns: 0.42fr 0.58fr;
  align-items: stretch;
}

.contact-panel {
  display: flex;
  flex-direction: column;
}

.contact-panel .map-embed-standalone {
  flex: 1;
  min-height: 160px;
  margin-top: 20px;
}

.contact-details {
  display: grid;
  gap: 18px;
  margin: 28px 0 0;
}

.contact-details dt {
  color: var(--accent-strong);
  margin-bottom: 6px;
}

.contact-details dd {
  margin: 0;
  color: var(--muted);
}

.booking-form {
  background: var(--panel-strong);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-grid label {
  display: grid;
  gap: 10px;
  color: var(--text);
  font-size: 0.95rem;
}

.form-message {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 14px 16px;
  font: inherit;
}

input::placeholder,
textarea::placeholder {
  color: #a89d8e;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(216, 179, 106, 0.35);
  outline-offset: 2px;
  border-color: rgba(216, 179, 106, 0.45);
}

.form-feedback {
  min-height: 24px;
  margin: 18px 0 0;
  color: var(--muted);
}

.form-feedback.is-error {
  color: #ffb4a8;
}

.form-feedback.is-success {
  color: #cce8b0;
}

.text-link {
  align-self: center;
  color: var(--muted);
}

/* ── RTL (Arabic) ────────────────────────────────────────── */
[dir="rtl"] .hero-visual::before {
  inset: 50px 70px 0 30px;
}

[dir="rtl"] .hero-visual-img {
  inset: 50px 70px 0 30px;
  width: calc(100% - 100px);
  height: calc(100% - 50px);
}

[dir="rtl"] .visual-primary {
  right: auto;
  left: 0;
}

[dir="rtl"] .visual-secondary {
  left: auto;
  right: 0;
}

[dir="rtl"] .fleet-card ul {
  padding-left: 0;
  padding-right: 18px;
}

[dir="rtl"] .site-nav .lang-switch + .lang-switch {
  margin-right: 0;
}

@media (max-width: 760px) {
  [dir="rtl"] .hero-visual::before {
    inset: 36px 36px 0 0;
  }

  [dir="rtl"] .hero-visual-img {
    inset: 36px 36px 0 0;
    width: calc(100% - 36px);
    height: calc(100% - 36px);
  }
}
/* ── End RTL ─────────────────────────────────────────────── */

/* ── Reviews ─────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 10px;
}

.review-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
}

.review-stars {
  color: var(--accent-strong);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.review-text {
  color: var(--muted);
  line-height: 1.75;
  font-style: italic;
  margin: 0;
}

.review-author {
  color: var(--text);
  font-weight: 600;
  font-size: 0.92rem;
}

.review-cta {
  margin-top: 36px;
  text-align: center;
}

.review-cta p {
  color: var(--muted);
  margin: 0 0 18px;
}

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

/* ── End Reviews ──────────────────────────────────────────── */

/* ── Fleet & Coverage section tops with photo ────────────── */
.fleet-section-top,
.coverage-section-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 30px;
}

.fleet-section-top .section-heading,
.coverage-section-top .section-heading {
  margin-bottom: 0;
}

.fleet-section-img,
.coverage-section-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}


/* ── Google Map embed ─────────────────────────────────────── */
.map-embed-standalone {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  height: 260px;
}

.map-embed-standalone iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(60%) invert(0.9) hue-rotate(190deg) contrast(0.85);
}

@media (max-width: 1080px) {
  .fleet-section-top,
  .coverage-section-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .contact-panel .map-embed-standalone {
    flex: none;
    height: 200px;
  }
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 0 12px;
  border-top: 1px solid var(--line);
  margin-top: 30px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
}

@media (max-width: 1080px) {
  .hero,
  .split-section,
  .contact-layout,
  .card-grid,
  .fleet-grid,
  .coverage-layout,
  .stats-strip {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 32px;
  }

  h1,
  h2 {
    max-width: none;
  }

  .hero-visual {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100vw - 28px, 100%);
  }

  .site-header {
    align-items: flex-start;
    padding-top: 16px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% - 6px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(13, 13, 13, 0.96);
  }

  .site-nav.is-open {
    display: flex;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 460px;
  }

  .hero-visual::before {
    inset: 36px 0 0 36px;
  }

  .visual-primary {
    top: 16px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    padding: 14px 16px;
  }

  .visual-secondary {
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    padding: 14px 16px;
  }

  .visual-card strong {
    font-size: 1.25rem;
    margin-bottom: 6px;
  }

  .visual-card p {
    font-size: 0.82rem;
  }

  .site-footer {
    flex-direction: column;
  }
}
