/* ATAXI — minimal, fast, no dependencies */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #A1A1A1;
  background: #1c1c1c;
}

.wrap { max-width: 960px; margin: 0 auto; padding: 0 1.25rem; }

/* Header — max-width row centered, matches .wrap */
.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(26,26,26,.98);
}
.header .wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 3.5rem;
  gap: 1rem;
  max-width: 960px;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.logo {
  text-decoration: none;
  line-height: 0;
  display: block;
  flex-shrink: 0;
  margin-right: auto;
  margin-left: 0;
  width: fit-content;
  min-width: 0;
  text-align: left;
}
.logo img {
  display: block;
  width: auto;
  height: 40px;
  max-width: 120px;
  object-fit: contain;
  object-position: left center;
  vertical-align: top;
}
.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-left: auto;
}
.nav-link {
  color: #A1A1A1;
  text-decoration: none;
  font-size: 0.9375rem;
  text-transform: uppercase;
  text-align: center;
}
.nav-link:nth-child(1):hover { color: #fff; }
.nav-link:nth-child(2):hover { color: #00966E; }
.nav-link:nth-child(3):hover { color: #B23A3A; }
.lang-btn {
  padding: 0;
  border: none;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  transition: box-shadow .2s;
  outline: none;
}
.lang-btn:hover, .lang-btn:focus {
  box-shadow: 0 0 20px rgba(255,255,255,.35), 0 0 30px rgba(255,255,255,.15);
}
.lang-btn img {
  display: block;
  width: 32px;
  height: 22px;
  border-radius: 2px;
}

/* Mobile nav toggle (visible only at 552px and below) */
.nav-toggle {
  display: none;
  padding: 0.5rem 0.75rem;
  margin: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  line-height: 1;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}
.nav-toggle-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.nav-toggle-inner[hidden] { display: none !important; }
.nav-toggle-img {
  display: block;
  width: 56px;
  height: 28px;
}

/* Mobile dropdown panel */
.nav-dropdown {
  display: none;
  max-height: 0;
  overflow: hidden;
  background: rgba(26, 26, 26, 0.98);
  transition: max-height 0.28s ease-out;
}
.nav-dropdown-link {
  display: block;
  width: 100%;
  padding: 0.875rem 1.25rem;
  color: #A1A1A1;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  font-size: 0.9375rem;
  box-sizing: border-box;
}
.nav-dropdown-link:nth-child(1):hover { color: #fff; background: rgba(255,255,255,.06); }
.nav-dropdown-link:nth-child(2):hover { color: #00966E; background: rgba(0,150,110,.08); }
.nav-dropdown-link:nth-child(3):hover { color: #B23A3A; background: rgba(178,58,58,.08); }

/* Hero */
.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(160deg, rgba(13,13,13,.85) 0%, rgba(26,26,26,.75) 100%), url('images/taxi-bg.png') center / cover no-repeat;
  color: #A1A1A1;
  padding: 1.5rem 1rem 2rem;
  margin-bottom: 0;
}
.hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  background: linear-gradient(to bottom, transparent 0%, #1c1c1c 100%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 640px; }
.hero-title {
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0;
}
.hero-brand {
  display: block;
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  color: #B23A3A;
}
.hero-tagline {
  display: block;
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0;
  color: #fff;
  text-transform: uppercase;
}
.btn-hero {
  display: inline-block;
  padding: 0.15em 0.4em;
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
  color: #00966E;
  background: transparent;
  border: 2px solid #00966E;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
  font-family: inherit;
  line-height: 1.2;
}
.btn-hero:hover, .btn-hero:focus {
  background: #00966E;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,150,110,.4);
  outline: none;
}

/* Drivers page hero — same dimensions as main, show page title + price button + brand */
.hero--drivers {
  min-height: 75vh;
  padding: 1.5rem 1rem 2rem;
}
.hero--drivers::after {
  height: 140px;
}
.hero--drivers .hero-tagline {
  display: none;
}
.hero--drivers .hero-page-title {
  display: block !important;
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.5;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}
.hero--drivers .btn-hero,
.hero--drivers .hero-brand {
  display: block;
  margin: 0;
}
.hero--drivers .hero-brand {
  margin: 0;
}

.btn {
  display: inline-block;
  padding: .75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: #ffc107;
  color: #1a1a1a;
  border-color: #ffc107;
}
.btn-primary:hover { box-shadow: 0 6px 20px rgba(255,193,7,.35); }
.hero-scroll {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.6);
  font-size: 1.5rem;
  text-decoration: none;
}
.hero-scroll:hover { color: #ffc107; }

/* Section — scroll-margin so hash targets aren't under sticky header */
.section { padding: 3.5rem 0; scroll-margin-top: 4rem; }
.section-title {
  margin: 0 0 1.5rem;
  font-size: clamp(1.5rem, 4vw, 1.875rem);
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}
.section-title--about {
  color: #fff;
}
.section-title--download {
  color: #fff;
}

/* About — sits under the hero fade; extra padding so the ABOUT title is visible */
.about {
  padding-top: 5rem;
  margin-top: -80px;
}

/* About cards */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.card {
  padding: 1.25rem;
  background: #303030;
  border-radius: 8px;
  border: 1px solid #333;
}
.card-title {
  margin: 0 0 .5rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #A1A1A1;
  text-transform: uppercase;
  text-align: center;
}
.card-title--white { color: #fff; }
.card-title--green { color: #00966E; }
.card-title--red { color: #B23A3A; }
.card-text {
  margin: 0;
  font-size: 0.9375rem;
  color: #A1A1A1;
  text-align: center;
}

/* Download */
.download { padding-top: 0; background: linear-gradient(160deg, #1c1c1c 0%, #1c1c1c 100%); color: #A1A1A1; }
.download .section-title--download { color: #fff; }
.download-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  margin-top: 1rem;
}
.store-badges {
  display: inline-flex;
  flex-wrap: nowrap;
  gap: 0;
  justify-content: center;
  align-items: center;
  padding: 0;
  border-radius: 12px;
  box-shadow: 0 0 16px rgba(255,255,255,.1), 0 0 32px rgba(255,255,255,.06);
  position: relative;
}
.store-link {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 0;
  background: #000;
  transition: box-shadow .2s;
}
.store-link:first-child {
  border-radius: 12px 0 0 12px;
}
.store-link:last-child {
  border-radius: 0 12px 12px 0;
}
.store-link:hover {
  box-shadow: 0 0 24px rgba(255,255,255,.3), 0 0 48px rgba(255,255,255,.15);
}
.store-link img { display: block; height: 48px; width: auto; }
.store-badges-divider {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 48px;
  margin-left: -24px;
  background: #000;
  z-index: 1;
  pointer-events: none;
}
.qr-block {
  text-align: center;
}
.qr-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
}
.qr-row .qr-box {
  margin: 0;
}
.qr-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .75rem;
  color: #A1A1A1;
}
.qr-box {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  padding: 0;
  border: none;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 24px rgba(255,255,255,.3), 0 0 48px rgba(255,255,255,.15);
  transition: box-shadow .2s;
  cursor: pointer;
}
.qr-box:hover,
.qr-box:focus {
  box-shadow: 0 0 36px rgba(255,255,255,.5), 0 0 72px rgba(255,255,255,.3);
  outline: none;
}
.qr-placeholder {
  font-size: 0.8rem;
  color: #A1A1A1;
  text-align: center;
  border-radius: 0.75rem;
}

/* Footer */
.footer {
  background: #1c1c1c;
  color: #A1A1A1;
  padding: 2rem 0;
  font-size: 0.9375rem;
}
.footer-inner { text-align: center; }
.footer-brand { font-family: 'League Spartan', sans-serif; font-weight: 900; color: #ffc107; }
.footer-inner > .footer-brand { font-size: 1.125rem; margin-bottom: .75rem; }
.footer-copy .footer-brand { font-size: inherit; }
.footer-nav { margin-bottom: .75rem; }
.footer-nav a {
  color: #A1A1A1;
  text-decoration: none;
  margin: 0 .75rem;
}
.footer-nav a:hover { color: #ffc107; }
.footer-contact { margin: 0 0 .5rem; }
.footer-contact a {
  color: #A1A1A1;
  text-decoration: none;
  transition: text-shadow .2s, color .2s;
}
.footer-contact a:hover {
  color: #fff;
  text-shadow: 0 0 20px rgba(255,255,255,.95), 0 0 40px rgba(255,255,255,.7);
}
.footer-copy { margin: 0; font-size: 0.8125rem; color: #A1A1A1; }
.footer-copy .footer-brand { color: #A1A1A1; }

/* QR modal */
.qr-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.qr-modal[hidden] { display: none !important; }
.qr-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
  cursor: pointer;
}
.qr-modal-content {
  position: relative;
  background: rgba(28,28,28,.8);
  border-radius: 12px;
  padding: 3.25rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 1px rgba(255,255,255,.2), 0 0 50px rgba(255,255,255,.4), 0 0 100px rgba(255,255,255,.25);
}
.qr-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  background: #333;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: #A1A1A1;
  opacity: 1;
}
.qr-modal-close:hover { background: #444; color: #A1A1A1; }
.qr-modal-img {
  display: block;
  width: 320px;
  height: 320px;
  border-radius: 12px;
  background: #1c1c1c;
  opacity: 1;
}

/* Hide inactive language */
[data-lang].hidden { display: none !important; }

@media (max-width: 640px) {
  .hero { min-height: 60vh; padding: 2rem 1rem 3rem; }
  .section { padding: 2.5rem 0; }
}

@media (max-width: 552px) {
  .header .wrap {
    position: relative;
  }
  .nav-link {
    display: none !important;
  }
  .nav .lang-btn {
    display: flex !important;
  }
  .nav {
    margin-left: auto;
    flex: none;
  }
  .nav-toggle {
    display: flex;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .nav-dropdown {
    display: block;
  }
  .header.nav-open .nav-dropdown {
    max-height: 18rem;
    transition-timing-function: ease-in;
  }
  .header.nav-open .nav-toggle-down { display: none !important; }
  .header.nav-open .nav-toggle-up[hidden] { display: flex !important; }
}
