:root {
  --black: #070707;
  --ink: #111111;
  --muted: #666666;
  --line: #e7e2d6;
  --paper: #fbfaf7;
  --white: #ffffff;
  --gold: #caa24a;
  --gold-strong: #f3c969;
  --gold-soft: #f7ecd0;
  --success: #128c4a;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, 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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px clamp(16px, 4vw, 58px);
  background: rgba(7, 7, 7, 0.9);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-weight: 800;
}

.brand img {
  width: 66px;
  height: 38px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 3vw, 30px);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--gold-strong);
}

.header-actions {
  display: inline-flex;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 3px;
}

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

.lang-btn.active {
  background: var(--gold);
  color: var(--black);
}

.section,
.trust-strip,
.site-footer {
  padding-inline: clamp(16px, 5vw, 72px);
}

.section {
  padding-block: clamp(56px, 8vw, 104px);
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 86svh;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(280px, 0.45fr);
  align-items: end;
  gap: clamp(24px, 5vw, 68px);
  overflow: hidden;
  padding: clamp(82px, 12vw, 148px) clamp(16px, 5vw, 72px) clamp(54px, 7vw, 92px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.94) 0%, rgba(7, 7, 7, 0.76) 42%, rgba(7, 7, 7, 0.25) 100%),
    linear-gradient(0deg, rgba(7, 7, 7, 0.92), rgba(7, 7, 7, 0.12));
  z-index: 1;
}

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

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

.hero-content,
.hero-card {
  position: relative;
  z-index: 2;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(2.45rem, 6.5vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.18rem;
}

.hero-subtitle {
  max-width: 630px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-offers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 32px;
}

.hero-offers span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.hero-ctas,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 18px;
  cursor: pointer;
  font-weight: 900;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 12px 26px rgba(202, 162, 74, 0.28);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.26);
}

.section:not(.section-dark) .btn-secondary,
.calculator .btn-secondary {
  color: var(--black);
  border-color: var(--line);
  background: var(--white);
}

.hero-card {
  align-self: end;
  width: min(100%, 330px);
  margin-inline-start: auto;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(7, 7, 7, 0.64);
  box-shadow: var(--shadow);
}

.hero-card strong {
  display: block;
  color: var(--gold-strong);
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  line-height: 1;
}

.hero-card span,
.hero-card small {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  min-height: 108px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 24px;
  background: var(--white);
}

.trust-strip strong {
  font-size: 1.02rem;
}

.trust-strip span,
.section-heading p,
.calculator-copy p,
.proof-copy p,
.booking-copy p,
.site-footer p {
  color: var(--muted);
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 34px;
}

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

.car-card,
.review-card,
.calculator,
.booking-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
}

.car-card {
  overflow: hidden;
}

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

.car-body {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.car-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.car-meta span {
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  text-align: center;
}

.price-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
}

.price-row strong {
  color: var(--black);
  font-size: 1.5rem;
  line-height: 1;
}

.car-card .btn {
  width: 100%;
}

.calculator-section,
.proof-section,
.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 1fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: center;
}

.calculator,
.booking-form {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 30px);
}

label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d9d3c6;
  border-radius: 7px;
  background: var(--white);
  color: var(--ink);
  padding: 11px 12px;
  outline: 0;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(202, 162, 74, 0.16);
}

.estimate-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--gold-soft);
}

.estimate-box span {
  color: var(--muted);
  font-weight: 800;
}

.estimate-box strong {
  text-align: end;
  font-size: 1.25rem;
}

.proof-media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-inline-start: 30px;
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.42em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px var(--gold-soft);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.review-card {
  display: grid;
  gap: 14px;
  min-height: 178px;
  padding: 20px;
}

.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--black);
  color: var(--gold-strong);
  font-weight: 900;
}

.stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0;
}

.review-card blockquote {
  margin: 0;
  color: #313131;
  font-weight: 800;
}

.booking-section {
  align-items: start;
}

.booking-section .eyebrow,
.booking-section h2 {
  color: var(--white);
}

.booking-section p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-links a {
  color: var(--gold-strong);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.success-message {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(18, 140, 74, 0.26);
  border-radius: 8px;
  padding: 14px;
  background: #ecfff4;
  color: var(--ink);
}

.success-message[hidden] {
  display: none;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-block: 30px;
  background: #111111;
  color: var(--white);
}

.site-footer p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.66);
}

.sticky-whatsapp {
  position: fixed;
  z-index: 60;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 1px;
  min-width: 205px;
  border-radius: 999px;
  padding: 12px 18px;
  background: var(--success);
  color: var(--white);
  box-shadow: 0 18px 34px rgba(18, 140, 74, 0.34);
  font-weight: 900;
}

.sticky-whatsapp span {
  font-size: 0.76rem;
  opacity: 0.82;
}

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

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 3px;
  }

  .hero,
  .calculator-section,
  .proof-section,
  .booking-section {
    grid-template-columns: 1fr;
  }

  .hero-card {
    margin-inline-start: 0;
  }

  .trust-strip,
  .cars-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 10px 14px;
  }

  .brand span {
    display: none;
  }

  .main-nav {
    font-size: 0.86rem;
  }

  .hero {
    min-height: 88svh;
    padding-top: 94px;
  }

  .hero::before {
    background:
      linear-gradient(0deg, rgba(7, 7, 7, 0.96) 0%, rgba(7, 7, 7, 0.64) 58%, rgba(7, 7, 7, 0.2) 100%),
      linear-gradient(90deg, rgba(7, 7, 7, 0.9), rgba(7, 7, 7, 0.18));
  }

  h1 {
    font-size: clamp(2.2rem, 11vw, 3.8rem);
  }

  .hero-offers span,
  .btn {
    width: 100%;
  }

  .trust-strip,
  .cars-grid,
  .reviews-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    min-height: 88px;
  }

  .site-footer {
    align-items: stretch;
    flex-direction: column;
    padding-bottom: 100px;
  }

  .sticky-whatsapp {
    left: 12px;
    right: 12px;
    bottom: 12px;
    min-width: 0;
    text-align: center;
  }
}
