@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg: #ececec;
  --ink: #111111;
  --muted: #666666;
  --card: #ffffff;
  --line: #e1e1e1;
  --line-strong: #cbcbcb;
  --radius: 14px;
  --shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
  --ok: #19893e;
  --danger: #c33530;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
}

a {
  color: inherit;
}

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

.container {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-inner {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  color: #fff;
}

.brand-logo {
  width: auto;
  height: 34px;
  max-width: 200px;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
  border: none;
}

.brand-name {
  font-weight: 700;
  font-size: 0.9rem;
}

.main-nav {
  display: none;
  gap: 0.85rem;
}

.main-nav a {
  text-decoration: none;
  color: #efefef;
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.92;
}

.main-nav a:hover {
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.lang-switcher {
  display: inline-flex;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  padding: 0.17rem;
  background: rgba(255, 255, 255, 0.06);
}

.lang-switcher button {
  border: none;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-weight: 700;
  padding: 0.27rem 0.62rem;
  cursor: pointer;
}

.lang-switcher button[aria-pressed='true'] {
  background: #fff;
  color: #111;
}

.btn {
  border: 1px solid #111;
  border-radius: 10px;
  background: #111;
  color: #fff;
  padding: 0.63rem 0.95rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.16);
}

.btn-secondary {
  background: #fff;
  color: #111;
}

.btn-whatsapp {
  background: #25d366;
  color: #0f2a18;
  border-color: #25d366;
}

.btn-header {
  display: none;
  background: #fff;
  color: #111;
  border-color: #fff;
}

.btn-with-icon .btn-icon {
  width: 1.03rem;
  height: 1.03rem;
  display: inline-grid;
  place-items: center;
  transition: transform 0.2s ease;
}

.btn-with-icon .btn-icon svg {
  width: 100%;
  height: 100%;
}

.btn-with-icon:hover .btn-icon {
  transform: scale(1.08);
}

.btn:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(0, 0, 0, 0.25);
  outline-offset: 2px;
}

main section {
  padding: 2.4rem 0;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 2.7rem;
  background: #fff;
}

.hero-bg {
  display: none;
}

.hero-shape {
  position: absolute;
  border-radius: 999px;
}

.shape-1 {
  width: 320px;
  height: 320px;
  left: -120px;
  top: 40px;
  background: radial-gradient(circle at 35% 35%, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0));
}

.shape-2 {
  width: 360px;
  height: 360px;
  right: -120px;
  top: 35px;
  background: radial-gradient(circle at 35% 35%, rgba(90, 90, 90, 0.12), rgba(90, 90, 90, 0));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
}

.hero-copy {
  display: grid;
  gap: 0.75rem;
}

.hero-title .accent-taxi {
  color: #ffd400;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.hero-title .taxi-zentrale {
  white-space: nowrap;
}

h1,
h2,
h3 {
  margin: 0 0 0.68rem;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2rem, 6.5vw, 4.1rem);
  font-weight: 800;
  max-width: 10ch;
}

h2 {
  font-size: clamp(1.18rem, 3vw, 1.6rem);
  font-weight: 700;
}

h3 {
  font-weight: 700;
}

p {
  margin: 0 0 0.7rem;
  color: #5f5f5f;
}

.hero-text {
  max-width: 50ch;
}

.hero-inline-image {
  margin: 1.5rem 0 2.25rem;
  border-radius: 14px;
  overflow: hidden;
}

.hero-inline-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero-actions .btn {
  flex: 1 1 100%;
  width: 100%;
}

.hero-form-panel {
  background: var(--card);
  border: none;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 0.88rem;
}

.hero-booking-head p {
  font-size: 0.92rem;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  position: relative;
  grid-column: 1 / -1;
}

.field.inline-half {
  grid-column: auto;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.83rem;
  font-weight: 600;
  color: #2f2f2f;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 9px;
  padding: 0.58rem 0.64rem;
  background: #efefef;
  font: inherit;
  color: #151515;
}

input::placeholder,
textarea::placeholder {
  color: #7b7b7b;
}

textarea {
  min-height: 68px;
  resize: vertical;
}

small,
.hint {
  font-size: 0.78rem;
  color: #737373;
}

.autocomplete-list {
  list-style: none;
  margin: 0;
  padding: 0.28rem;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
  position: absolute;
  top: calc(100% + 0.2rem);
  left: 0;
  right: 0;
  z-index: 25;
  max-height: 220px;
  overflow-y: auto;
}

.autocomplete-list[hidden] {
  display: none;
}

.autocomplete-list button {
  width: 100%;
  text-align: left;
  border: none;
  background: transparent;
  border-radius: 8px;
  padding: 0.47rem;
  color: #1e1e1e;
  cursor: pointer;
}

.autocomplete-list button:hover,
.autocomplete-list button:focus-visible {
  background: #f1f1f1;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.54rem;
}

.checkbox-row input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.15rem;
}

.checkbox-row label {
  font-size: 0.8rem;
  font-weight: 500;
  color: #4d4d4d;
}

.checkbox-row a {
  color: #111;
}

.status {
  border-radius: 10px;
  padding: 0.55rem 0.68rem;
  font-size: 0.9rem;
  margin-top: 0.58rem;
}

.status[hidden] {
  display: none;
}

.status.ok {
  background: rgba(25, 137, 62, 0.12);
  color: var(--ok);
  border: 1px solid rgba(25, 137, 62, 0.3);
}

.status.error {
  background: rgba(195, 53, 48, 0.12);
  color: var(--danger);
  border: 1px solid rgba(195, 53, 48, 0.3);
}

.estimate-box {
  margin-top: 0.75rem;
}

.estimate-box h3 {
  margin-bottom: 0.48rem;
  font-size: 1rem;
}

.estimate-ride-card {
  border: 3px solid #f1f1f1;
  border-radius: 18px;
  background: #0f1216;
  color: #fff;
  padding: 0.52rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.62rem;
  align-items: center;
}

.estimate-vehicle {
  width: 88px;
  height: 88px;
  border-radius: 999px;
  background: #2a2f36;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.estimate-vehicle img {
  width: 88%;
  height: auto;
}

.estimate-head-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.42rem;
}

.estimate-ride-label {
  font-size: 1.3rem;
  font-weight: 800;
  color: #f3f3f3;
}

.estimate-time {
  font-size: 0.95rem;
  color: #ececec;
  margin-bottom: 0.2rem;
}

.estimate-note {
  font-size: 0.82rem;
  color: #b8bcc2;
  margin-bottom: 0;
}

.estimate-price {
  font-size: 1.55rem;
  font-weight: 800;
  color: #f6f6f6;
  white-space: nowrap;
}

.disclaimer {
  margin-top: 0.55rem;
  font-size: 0.75rem;
  color: #6f6f6f;
}

.tarife-section {
  background: #111;
  color: #fff;
}

.tarife-section h2,
.tarife-section h3 {
  color: #fff;
}

.tarife-section p {
  color: #d6d6d6;
}

.tarife-grid {
  margin-top: 0.95rem;
  display: grid;
  gap: 0.7rem;
}

.tarife-payment {
  margin-top: 1rem;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0.45rem;
}

.tarife-payment span {
  color: #f1f1f1;
  font-size: 0.92rem;
  font-weight: 600;
}

.tarife-pay-card {
  background: #fff;
  border-radius: 10px;
  padding: 0.35rem 0.5rem;
  max-width: 100%;
}

.tarife-pay-card img {
  width: 300px;
  max-width: 100%;
  height: auto;
}

.tarif-card {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.82rem;
}

.tarif-icon {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  margin-bottom: 0.5rem;
}

.tarif-icon svg {
  width: 1.08rem;
  height: 1.08rem;
  color: #fff;
}

.tarif-value {
  font-weight: 600;
  color: #fff;
}

.services-grid {
  display: grid;
  gap: 0.72rem;
}

#services {
  background: #fff;
}

.service-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.9rem;
}

.service-media {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.service-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.service-copy {
  display: grid;
  gap: 0.25rem;
}

.service-card h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.site-footer {
  margin-top: 2rem;
  background: #111;
  color: #ececec;
  padding: 1.25rem 0 5.45rem;
}

.footer-simple {
  display: grid;
  gap: 1rem;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.92rem;
  align-items: center;
  justify-content: center;
}

.footer-menu a {
  text-decoration: none;
  color: #ececec;
  opacity: 0.92;
  font-size: 0.9rem;
}

.footer-menu a:hover {
  opacity: 1;
}

.footer-powered-wrap {
  display: flex;
  align-items: center;
  gap: 0.56rem;
  color: #e7e7e7;
  font-size: 0.9rem;
  justify-content: center;
}

.powered-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #d6d6d6;
  border-radius: 10px;
  padding: 0.33rem 0.44rem;
}

.powered-link img {
  width: 100px;
  height: auto;
}

.footer-copy {
  margin: 0;
  font-size: 0.82rem;
  color: #c5c5c5;
  text-align: center;
}

.legal-main {
  padding: 2rem 0 5.6rem;
}

.legal-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.legal-card h1 {
  margin-bottom: 1rem;
}

.legal-card h2 {
  margin-top: 1.3rem;
  font-size: 1.08rem;
}

.legal-card p,
.legal-card li {
  color: #353535;
}

.legal-card ul {
  padding-left: 1rem;
}

.mobile-call {
  position: fixed;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.65rem;
  z-index: 70;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-weight: 800;
  color: #fff;
  background: #111;
  border-radius: 999px;
  padding: 0.8rem 1rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.mobile-call .accent-taxi {
  color: #ffd400;
  font-weight: 900;
  font-size: 1.12em;
  margin-inline: 0.24em;
  display: inline-block;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 759px) {
  .brand-logo {
    height: 42px;
    max-width: 240px;
  }

  .hero-actions {
    margin-top: 1rem;
    margin-bottom: 1.1rem;
    gap: 0.7rem;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-text {
    margin-inline: auto;
  }

  .hero-copy h1 {
    font-size: clamp(2.4rem, 10vw, 3.6rem);
    line-height: 1.02;
    max-width: 100%;
  }

  .mobile-call {
    word-spacing: 0.08em;
  }

  /* Fix form layout on mobile */
  .hero-form-panel {
    padding: 0.65rem;
  }

  .booking-form {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .field.inline-half {
    grid-column: 1 / -1;
  }
}

@media (min-width: 760px) {
  .main-nav {
    display: inline-flex;
  }

  .btn-header {
    display: inline-flex;
  }

  .booking-form {
    gap: 0.68rem;
  }

  .field {
    grid-column: auto;
  }

  .field.full {
    grid-column: 1 / -1;
  }

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

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

  .service-card {
    grid-template-columns: 180px 1fr;
    align-items: center;
  }

  .hero-actions .btn {
    flex: 0 0 auto;
    width: auto;
  }
}

@media (min-width: 1020px) {
  main section {
    padding: 3rem 0;
  }

  .hero {
    padding-top: 3.4rem;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 1.2rem;
  }

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

  .site-footer,
  .legal-main {
    padding-bottom: 2rem;
  }

  .mobile-call {
    display: none;
  }
}
