:root {
  --ink: #111827;
  --muted: #667085;
  --line: #e6e8ee;
  --paper: #ffffff;
  --soft: #f5f7fb;
  --gold: #d8a944;
  --gold-dark: #9b7124;
  --charcoal: #171b22;
  --rose: #d94d7b;
  --green: #147d64;
  --shadow: 0 22px 70px rgba(17, 24, 39, 0.14);
  font-family: Inter, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(17, 24, 39, 0.94);
  color: #fff;
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid var(--gold);
  border-radius: 8px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: #d6d9df;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  color: #e8ebf0;
  font-size: 0.95rem;
}

.main-nav a:hover,
.header-call:hover,
.language-switcher button:hover {
  color: var(--gold);
}

.language-switcher {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.language-switcher button {
  min-height: 34px;
  border: 0;
  border-radius: 6px;
  padding: 7px 10px;
  background: transparent;
  box-shadow: none;
  color: #e8ebf0;
  font-size: 0.82rem;
  font-weight: 800;
}

.language-switcher button[aria-pressed="true"] {
  background: var(--gold);
  color: #17120a;
}

.header-call {
  min-width: max-content;
  border: 1px solid rgba(216, 169, 68, 0.45);
  border-radius: 8px;
  padding: 10px 14px;
  color: #fff3d1;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 5vw, 70px);
  min-height: calc(100vh - 72px);
  padding: clamp(48px, 7vw, 96px) clamp(18px, 5vw, 76px);
  background:
    linear-gradient(115deg, rgba(17, 24, 39, 0.96) 0%, rgba(23, 27, 34, 0.9) 48%, rgba(216, 169, 68, 0.2) 100%),
    url("assets/taxi-hero.png") center / cover;
  color: #fff;
}

.hero-copy {
  align-self: center;
  max-width: 760px;
}

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

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

h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: 0;
}

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

h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.lead {
  max-width: 620px;
  margin: 26px 0 0;
  color: #eff2f7;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

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

.button,
button {
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  padding: 13px 18px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button.primary,
button.primary {
  background: var(--gold);
  color: #17120a;
  box-shadow: 0 12px 24px rgba(216, 169, 68, 0.28);
}

.button.secondary,
button.secondary {
  border: 1px solid rgba(216, 169, 68, 0.6);
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
}

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

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 680px;
  margin: 46px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.trust-strip div {
  padding: 18px 14px 18px 0;
}

.trust-strip dt {
  color: var(--gold);
  font-size: 1.35rem;
  font-weight: 800;
}

.trust-strip dd {
  margin: 2px 0 0;
  color: #e3e7ee;
}

.hero-panel,
.request-form {
  align-self: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.hero-panel h2 {
  font-size: clamp(1.55rem, 3vw, 2.3rem);
}

.hero-panel p {
  margin: 8px 0 18px;
  color: var(--muted);
}

form {
  display: grid;
  gap: 14px;
}

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

.fare-estimate {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(16, 137, 111, 0.24);
  border-radius: 8px;
  background: #f0faf6;
}

.fare-estimate strong {
  color: var(--ink);
  font-size: 0.98rem;
}

.fare-estimate span {
  color: var(--green-dark);
  font-size: 1.15rem;
  font-weight: 800;
}

.fare-estimate small {
  color: var(--muted);
  line-height: 1.45;
}

.fare-estimate.is-muted {
  border-color: var(--line);
  background: #f8fafc;
}

.fare-estimate.is-muted span {
  color: var(--muted);
  font-size: 1rem;
}

label {
  display: grid;
  gap: 7px;
  color: #344054;
  font-size: 0.92rem;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid #d8dde8;
  border-radius: 8px;
  padding: 12px 13px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(216, 169, 68, 0.25);
  border-color: var(--gold);
}

.section {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 5vw, 76px);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 420px);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  background: var(--soft);
}

.intro-band p,
.section-heading p,
.request-copy p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.06rem;
}

.intro-band img,
.contact-section img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

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

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

.service-card {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: #fff;
}

.service-icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  margin-bottom: 32px;
  place-items: center;
  border-radius: 8px;
  background: #181c24;
  color: var(--gold);
  font-weight: 800;
}

.service-card p,
.price-note span {
  color: var(--muted);
}

.prices-section {
  background: #171b22;
  color: #fff;
}

.prices-section .section-heading p {
  color: #d8dde8;
}

.price-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #fff;
}

.price-table {
  width: 100%;
  min-width: 660px;
  border-collapse: collapse;
  color: var(--ink);
}

.price-table th,
.price-table td {
  padding: 17px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.price-table th {
  background: #f0f2f6;
  color: #344054;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.price-table tbody tr:nth-child(even) {
  background: #fafbfe;
}

.price-table tbody tr:hover {
  background: #fff7df;
}

.price-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}

.price-note .button {
  margin-left: auto;
}

.request-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 74px);
  background: var(--soft);
}

.request-copy {
  align-self: center;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #344054;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: var(--green);
}

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

[dir="rtl"] .price-table th,
[dir="rtl"] .price-table td {
  text-align: right;
}

[dir="rtl"] .trust-strip div {
  padding: 18px 0 18px 14px;
}

[dir="rtl"] .check-list li {
  padding-right: 28px;
  padding-left: 0;
}

[dir="rtl"] .check-list li::before {
  right: 0;
  left: auto;
}

[dir="rtl"] .price-note .button {
  margin-right: auto;
  margin-left: 0;
}

.request-form {
  border-color: var(--line);
  background: #fff;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-weight: 700;
}

.form-status:not(:empty) {
  padding: 12px 14px;
  border: 1px solid rgba(16, 137, 111, 0.26);
  border-radius: 8px;
  background: #eefaf4;
}

.form-status.is-error {
  color: #b42318;
  border-color: rgba(180, 35, 24, 0.28);
  background: #fff2f1;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 800;
}

.contact-list a {
  color: var(--gold-dark);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 26px clamp(18px, 5vw, 76px);
  background: #111827;
  color: #d8dde8;
}

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

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

  .language-switcher {
    order: 4;
  }

  .hero,
  .intro-band,
  .request-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

@media (max-width: 620px) {
  .site-header {
    padding: 12px 16px;
  }

  .header-call {
    width: 100%;
    text-align: center;
  }

  .main-nav,
  .language-switcher {
    width: 100%;
  }

  .language-switcher {
    justify-content: center;
  }

  .language-switcher button {
    flex: 1;
  }

  .hero {
    padding: 42px 16px;
  }

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

  .trust-strip div {
    padding: 14px 0;
  }

  .hero-panel,
  .request-form,
  .service-card {
    padding: 20px;
  }

  .form-actions .button,
  .form-actions button,
  .hero-actions .button {
    width: 100%;
    text-align: center;
  }

  .price-note .button {
    width: 100%;
    margin-left: 0;
    text-align: center;
  }

  [dir="rtl"] .price-note .button {
    margin-right: 0;
  }
}
