:root {
  --bg: #0b0b0d;
  --bg-soft: #121216;
  --ink: #f7f4ee;
  --muted: #b8b2a8;
  --line: rgba(255, 255, 255, 0.12);
  --gold: #d6aa46;
  --gold-2: #f2d27b;
  --white: #ffffff;
  --dark-text: #171717;
  --whatsapp: #25d366;
  --radius: 8px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body[dir="rtl"] {
  font-family: Tahoma, Arial, sans-serif;
}

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

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

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 12px clamp(16px, 4vw, 42px);
  background: rgba(8, 8, 10, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.header-actions,
.main-nav,
.offer-list,
.hero-actions,
.calc-controls,
.form-actions,
.lead-form {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(214, 170, 70, 0.6);
  border-radius: 50%;
  background: linear-gradient(145deg, #171717, #050505);
  color: var(--gold-2);
  font-weight: 900;
}

.brand strong {
  display: block;
  letter-spacing: 0.08em;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
}

.main-nav {
  gap: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.93rem;
  font-weight: 700;
}

.main-nav a:hover {
  color: var(--gold-2);
}

.header-actions {
  gap: 10px;
}

.lang-switch {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.lang-btn {
  min-width: 42px;
  min-height: 34px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
}

.lang-btn.is-active {
  background: var(--gold);
  color: #111;
}

.btn {
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-small {
  min-height: 38px;
  padding: 8px 14px;
}

.btn-large {
  min-height: 54px;
  padding-inline: 22px;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #111;
  box-shadow: 0 14px 34px rgba(214, 170, 70, 0.25);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border-color: var(--line);
}

.section-band,
.hero {
  position: relative;
}

.hero {
  min-height: 92svh;
  display: grid;
  align-items: center;
  padding: 128px 0 92px;
  overflow: hidden;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 5, 6, 0.94), rgba(5, 5, 6, 0.72) 44%, rgba(5, 5, 6, 0.2)),
    linear-gradient(0deg, var(--bg), rgba(11, 11, 13, 0.08) 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-inline-start: max(calc((100vw - 1120px) / 2), 16px);
  margin-inline-end: auto;
  animation: rise 700ms ease both;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.55rem, 7vw, 5.8rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.hero-subtitle {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.offer-list {
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.offer-list span,
.mini-benefits span {
  border: 1px solid rgba(214, 170, 70, 0.34);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(214, 170, 70, 0.1);
  color: var(--gold-2);
  font-weight: 800;
  font-size: 0.9rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
}

.price-calculator {
  position: sticky;
  top: 72px;
  z-index: 20;
  display: grid;
  grid-template-columns: 1.05fr auto auto;
  gap: 18px;
  align-items: center;
  padding: 14px clamp(16px, 4vw, 42px);
  background: rgba(15, 15, 18, 0.94);
  border-block: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.price-calculator strong {
  display: block;
}

.price-calculator span,
.price-calculator label span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.calc-controls {
  gap: 10px;
}

.price-calculator label {
  display: grid;
  gap: 4px;
}

.price-calculator select,
.price-calculator input,
.booking-form input,
.booking-form select,
.booking-form textarea,
.lead-form input {
  min-height: 44px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: var(--ink);
  padding: 10px 12px;
  outline: none;
}

select option {
  color: #111;
}

.calc-total {
  min-width: 126px;
  color: var(--gold-2);
  font-size: 1.45rem;
  font-weight: 900;
  text-align: end;
}

.trust-strip {
  background: var(--white);
  color: var(--dark-text);
  padding: 22px 0;
}

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

.trust-grid div {
  text-align: center;
}

.trust-grid strong {
  display: block;
  color: #111;
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  line-height: 1;
}

.trust-grid span {
  color: #5a544b;
  font-weight: 800;
}

.section {
  padding: 86px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.cars-grid,
.features-grid,
.reviews-grid {
  display: grid;
  gap: 20px;
}

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

.car-card,
.review-card,
.features-grid article,
.booking-form,
.contact-card,
.map-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.22);
}

.car-card {
  overflow: hidden;
}

.car-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.car-body {
  padding: 18px;
}

.car-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 14px 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.car-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 14px;
}

.car-price strong {
  color: var(--gold-2);
  font-size: 1.6rem;
}

.section-dark,
.reviews-section {
  background: var(--bg-soft);
}

.booking-layout,
.contact-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: start;
}

.booking-copy {
  position: sticky;
  top: 160px;
}

.mini-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.booking-form {
  padding: clamp(18px, 4vw, 30px);
}

.form-progress {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
}

.progress-dot {
  height: 6px;
  flex: 1;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.14);
}

.progress-dot.is-active {
  background: var(--gold);
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.form-step {
  display: none;
}

.form-step.is-active {
  display: grid;
  gap: 16px;
}

legend {
  margin-bottom: 18px;
  color: var(--gold-2);
  font-weight: 900;
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.summary-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(214, 170, 70, 0.28);
  border-radius: var(--radius);
  background: rgba(214, 170, 70, 0.1);
}

.summary-box strong {
  color: var(--gold-2);
  font-size: 1.6rem;
}

.form-actions {
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
}

.is-hidden,
.form-success {
  display: none;
}

.form-success.is-visible {
  display: block;
  margin: 18px 0 0;
  color: var(--gold-2);
  font-weight: 800;
}

.features-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.features-grid article {
  padding: 22px;
}

.features-grid span {
  display: block;
  margin-bottom: 30px;
  color: var(--gold-2);
  font-weight: 900;
}

.features-grid p,
.review-card p {
  color: var(--muted);
}

.reviews-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.review-card {
  padding: 22px;
}

.avatar {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #111;
  font-weight: 900;
}

.lead-capture {
  padding: 42px 0;
  background: var(--white);
  color: var(--dark-text);
}

.lead-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.lead-inner h2 {
  margin: 0;
}

.lead-form {
  width: min(520px, 100%);
  gap: 10px;
}

.lead-form input {
  background: #f3f0e8;
  border-color: #ddd3bf;
  color: #111;
}

.contact-card {
  padding: clamp(22px, 4vw, 34px);
}

.contact-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 22px 0;
  list-style: none;
}

.contact-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.contact-list a {
  color: var(--gold-2);
  font-weight: 800;
  word-break: break-word;
}

.map-card {
  overflow: hidden;
  min-height: 430px;
}

.map-card iframe {
  width: 100%;
  min-height: 380px;
  border: 0;
  filter: grayscale(0.8) contrast(1.08);
}

.map-card a {
  display: block;
  padding: 14px 18px;
  color: var(--gold-2);
  font-weight: 900;
}

.seo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 46px;
}

.seo-links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer {
  padding: 28px 0;
  background: #050506;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

.footer-inner strong {
  color: var(--ink);
}

.sticky-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 31;
  display: grid;
  place-items: center;
  min-width: 108px;
  min-height: 54px;
  border-radius: 999px;
  background: var(--whatsapp);
  color: #06140b;
  font-weight: 900;
  box-shadow: 0 18px 48px rgba(37, 211, 102, 0.32);
}

body[dir="rtl"] .sticky-whatsapp {
  right: auto;
  left: 18px;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 920px) {
  .main-nav {
    display: none;
  }

  .price-calculator {
    grid-template-columns: 1fr;
    top: 70px;
  }

  .calc-controls {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .calc-total {
    text-align: start;
  }

  .cars-grid,
  .features-grid,
  .reviews-grid,
  .booking-layout,
  .contact-section {
    grid-template-columns: 1fr 1fr;
  }

  .booking-copy {
    position: static;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 66px;
  }

  .brand small,
  .header-actions .btn {
    display: none;
  }

  .hero {
    min-height: 86svh;
    padding-top: 108px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, var(--bg), rgba(11, 11, 13, 0.1) 52%),
      rgba(5, 5, 6, 0.54);
  }

  .price-calculator {
    position: fixed;
    inset: auto 10px 10px;
    top: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px;
  }

  .calc-controls {
    grid-template-columns: 1fr 1fr;
  }

  .calc-controls label:first-child {
    grid-column: 1 / -1;
  }

  .trust-grid,
  .cars-grid,
  .features-grid,
  .reviews-grid,
  .booking-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .two-col,
  .lead-inner,
  .footer-inner,
  .contact-list li {
    display: grid;
    grid-template-columns: 1fr;
  }

  .lead-form {
    display: grid;
  }

  .sticky-whatsapp {
    bottom: 154px;
  }
}
