/* ============================================================
   TAXI DUBEŇ — hlavný štýl (všetky stránky)
   ============================================================ */

:root {
  --yellow: #f0c21e;
  --yellow-dark: #d9ac0f;
  --ink: #14161a;
  --ink-soft: #1e2127;
  --text: #2a2d33;
  --muted: #6b6f76;
  --bg: #ffffff;
  --bg-soft: #f6f6f3;
  --border: #e7e7e3;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(20, 22, 26, 0.08);
  --header-h: 72px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Poppins", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 700;
}

.section { padding: 96px 0; }
.section.soft { background: var(--bg-soft); }
.section.dark { background: var(--ink); }
.section.dark h2 { color: #fff; }

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 12px; }
.section-head p { color: var(--muted); font-size: 17px; }
.section.dark .section-head p { color: rgba(255, 255, 255, 0.65); }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow-dark);
  margin-bottom: 14px;
}
.section.dark .eyebrow { color: var(--yellow); }

.icon { width: 1em; height: 1em; fill: currentColor; flex: none; }

/* ---------- tlačidlá ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  font: 600 16px/1.2 "Poppins", sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.2s, color 0.2s, border-color 0.2s;
}
.btn:active { transform: scale(0.97); }
.btn .icon { font-size: 18px; }

.btn-primary { background: var(--yellow); color: var(--ink); }
.btn-primary:hover { background: var(--yellow-dark); }

.btn-outline { border-color: rgba(255, 255, 255, 0.35); color: #fff; background: transparent; }
.btn-outline:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); }

.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #2c2f36; }

.btn-lg { padding: 18px 34px; font-size: 17px; }

/* ---------- hlavička ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(20, 22, 26, 0.55);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background-color 0.25s;
}
.site-header.scrolled { background: rgba(20, 22, 26, 0.92); }

.header-inner {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand { display: flex; align-items: center; flex: none; }
.brand img { height: 40px; width: auto; }

.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: 6px; list-style: none; }
.main-nav a {
  display: block;
  padding: 9px 16px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}
.main-nav a:hover { color: #fff; background: rgba(255, 255, 255, 0.1); }
.main-nav a[aria-current="page"] { color: var(--yellow); }

.header-call {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: background-color 0.2s;
}
.header-call:hover { background: var(--yellow-dark); }
.header-call .icon { font-size: 15px; }

.header-actions { display: flex; align-items: center; gap: 14px; }

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  flex: none;
}
.lang-switch a {
  display: block;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}
.lang-switch a:hover { color: #fff; }
.lang-switch a.active { background: var(--yellow); color: var(--ink); }

/* cookie lišta */
.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 2000;
  max-width: 400px;
  padding: 20px 22px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
}
.cookie-banner.show { opacity: 1; visibility: visible; transform: none; }
.cookie-banner p { font-size: 14px; line-height: 1.55; margin-bottom: 16px; }
.cookie-actions { display: flex; gap: 10px; }
.cookie-actions button {
  flex: 1;
  padding: 11px 16px;
  border-radius: 999px;
  border: 0;
  font: 600 14px "Poppins", sans-serif;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s;
}
.cookie-accept { background: var(--yellow); color: var(--ink); }
.cookie-accept:hover { background: var(--yellow-dark); }
.cookie-reject { background: transparent; color: #fff; border: 1px solid rgba(255, 255, 255, 0.25); }
.cookie-reject:hover { border-color: rgba(255, 255, 255, 0.5); }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: background-color 0.25s, border-color 0.25s;
}
.nav-toggle:hover { background: rgba(255, 255, 255, 0.15); }
.nav-toggle[aria-expanded="true"] { background: var(--yellow); border-color: var(--yellow); }
.nav-toggle span {
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s, background-color 0.25s;
}
.nav-toggle[aria-expanded="true"] span { background: var(--ink); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- tlačidlo „späť hore" ---------- */

.to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1200;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s, background-color 0.2s;
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--yellow-dark); }
.to-top svg { width: 18px; height: 18px; fill: currentColor; }

/* ---------- hero (úvod) ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 48px) 0 72px;
  background: var(--ink);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 30% center;
  background-image:
    linear-gradient(90deg, rgba(15, 16, 19, 0.95) 0%, rgba(15, 16, 19, 0.8) 45%, rgba(15, 16, 19, 0.3) 100%),
    url("../pictures/seat.webp");
}
.hero-content { position: relative; max-width: 640px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  animation: dot-pulse 2s ease-out infinite;
}
@keyframes dot-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.hero h1 {
  color: #fff;
  font-size: clamp(36px, 5.6vw, 60px);
  font-weight: 800;
  margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--yellow); }

.hero p.lead {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  list-style: none;
}
.hero-facts li { display: flex; align-items: center; gap: 8px; }
.hero-facts .icon { color: var(--yellow); font-size: 15px; }

/* ---------- podstránkový hero ---------- */

.page-hero {
  background: var(--ink);
  padding: calc(var(--header-h) + 72px) 0 64px;
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(32px, 4.6vw, 48px);
  font-weight: 800;
  margin-bottom: 12px;
}
.page-hero p { color: rgba(255, 255, 255, 0.65); font-size: 17px; max-width: 560px; }

/* ---------- karty služieb ---------- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card .chip {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--yellow);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.service-card h3 { font-size: 18px; margin-bottom: 8px; }
.service-card p { font-size: 14.5px; color: var(--muted); }

/* ---------- flotila ---------- */

.fleet-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.fleet-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--ink-soft);
}
.fleet-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.fleet-card:hover img { transform: scale(1.04); }
.fleet-card figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 48px 24px 20px;
  background: linear-gradient(180deg, transparent, rgba(15, 16, 19, 0.85));
  color: #fff;
}
.fleet-card figcaption strong { display: block; font-size: 18px; letter-spacing: -0.01em; }
.fleet-card figcaption span { font-size: 14px; color: rgba(255, 255, 255, 0.75); }
.fleet-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 12.5px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
}
.fleet-eco {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #16a34a;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 6px 11px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.35);
}
.fleet-eco svg { width: 13px; height: 13px; fill: currentColor; }

/* ---------- prečo my ---------- */

.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.why-item .chip {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(240, 194, 30, 0.15);
  color: var(--yellow-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  margin-bottom: 18px;
}
.why-item h3 { font-size: 20px; margin-bottom: 8px; }
.why-item p { color: var(--muted); font-size: 15px; }

/* ---------- cenový pútač ---------- */

.price-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.price-big {
  font-size: clamp(64px, 9vw, 104px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
}
.price-big small { font-size: 0.35em; font-weight: 600; color: var(--yellow); display: block; letter-spacing: 0; }
.price-list { list-style: none; margin: 28px 0 36px; }
.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  font-size: 15.5px;
}
.price-list li strong { color: #fff; font-weight: 600; white-space: nowrap; }

.pay-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14.5px;
}
.pay-note .icon { color: var(--yellow); font-size: 17px; flex: none; }

/* ---------- hodnotenia ---------- */

.reviews-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.reviews-head h2 { font-size: clamp(28px, 4vw, 40px); }
.google-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease;
}
.google-rating:hover { transform: translateY(-2px); }
.google-rating .rating-num { font-weight: 800; color: var(--ink); font-size: 18px; }
.google-rating .rating-sub { color: var(--muted); font-size: 14px; }
.stars { display: inline-flex; gap: 2px; }
.stars .star { width: 16px; height: 16px; fill: #f5a623; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
}
.review-card .stars { margin-bottom: 16px; }
.review-card blockquote { color: var(--text); font-size: 15.5px; line-height: 1.65; margin-bottom: 18px; }
.review-card figcaption { font-weight: 600; color: var(--ink); font-size: 14.5px; }
.reviews-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }

/* carousel hodnotení */
.reviews-carousel { position: relative; }
.reviews-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 2px 14px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.reviews-track::-webkit-scrollbar { display: none; }
.reviews-track .review-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}
.reviews-track .review-card blockquote { flex: 1; }
.reviews-controls { display: flex; justify-content: center; gap: 12px; margin-top: 22px; }
.rev-nav {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s, transform 0.15s;
}
.rev-nav:hover { background: var(--yellow); border-color: var(--yellow); }
.rev-nav:active { transform: scale(0.94); }
.rev-nav svg { width: 15px; height: 15px; fill: currentColor; }

@media (max-width: 560px) {
  .reviews-track .review-card { flex-basis: 84%; }
}

/* ---------- FAQ ---------- */

.faq { max-width: 720px; margin: 0 auto; }
.faq details {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  margin-bottom: 12px;
}
.faq summary {
  padding: 18px 22px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 22px; font-weight: 400; color: var(--muted); transition: transform 0.2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 22px 18px; color: var(--muted); font-size: 15px; }

/* ---------- cenník ---------- */

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 72px;
}
.pricing-card {
  border-radius: var(--radius);
  padding: 30px 28px;
  border: 1px solid var(--border);
  background: #fff;
}
.pricing-card.featured {
  background: var(--ink);
  border-color: var(--ink);
}
.pricing-card.featured h3, .pricing-card.featured .row strong { color: #fff; }
.pricing-card.featured .row { border-color: rgba(255, 255, 255, 0.12); color: rgba(255, 255, 255, 0.7); }
.pricing-card .chip {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--yellow);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
}
.pricing-card h3 { font-size: 19px; margin-bottom: 14px; }
.pricing-card .row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--muted);
}
.pricing-card .row:last-child { border-bottom: 0; }
.pricing-card .row strong { color: var(--ink); font-weight: 600; white-space: nowrap; }
.pricing-note { font-size: 13.5px; color: var(--muted); margin-top: 14px; }

.price-search { position: relative; max-width: 420px; margin-bottom: 28px; }
.price-search input {
  width: 100%;
  padding: 15px 20px 15px 48px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: #fff;
  font: 15px "Poppins", sans-serif;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.price-search input:focus { border-color: var(--yellow); box-shadow: 0 0 0 4px rgba(240, 194, 30, 0.18); }
.price-search .icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 17px;
}

.price-table-wrap {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
.price-table { width: 100%; border-collapse: collapse; }
.price-table td {
  padding: 13px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.price-table tr:last-child td { border-bottom: 0; }
.price-table tr:nth-child(even) { background: var(--bg-soft); }
.price-table td:last-child { text-align: right; font-weight: 600; color: var(--ink); white-space: nowrap; }
.price-table .no-results td { text-align: center; color: var(--muted); padding: 28px; }

/* ---------- kontakt ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: start;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}
.contact-card h2 { font-size: 24px; margin-bottom: 6px; }
.contact-card > p { color: var(--muted); font-size: 15px; margin-bottom: 26px; }

.input-group { margin-bottom: 18px; }
.input-group label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 7px;
}
.input-group input,
.input-group textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--bg-soft);
  font: 15px "Poppins", sans-serif;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
  resize: vertical;
}
.input-group input:focus,
.input-group textarea:focus {
  border-color: var(--yellow);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(240, 194, 30, 0.18);
}
.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.contact-info { background: var(--ink); color: #fff; border-color: var(--ink); }
.contact-info h2 { color: #fff; }
.contact-info > p { color: rgba(255, 255, 255, 0.65); }
.contact-info ul { list-style: none; }
.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 15px;
}
.contact-info li:last-child { border-bottom: 0; }
.contact-info .icon { color: var(--yellow); font-size: 17px; margin-top: 4px; }
.contact-info a { color: #fff; text-decoration: none; font-weight: 600; }
.contact-info a:hover { color: var(--yellow); }
.contact-info small { display: block; color: rgba(255, 255, 255, 0.55); font-size: 13px; }

.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  max-width: 340px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  background: #16a34a;
  color: #fff;
  font-size: 14.5px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  transform: translateX(calc(100% + 40px));
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.3, 1.2);
}
.toast.show { transform: none; }
.toast.error { background: #dc2626; }

/* ---------- práca ---------- */

.job-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; align-items: start; }
.job-card h2 { font-size: 24px; margin-bottom: 18px; }
.check-list { list-style: none; }
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 9px 0;
  font-size: 15.5px;
}
.check-list .icon { color: var(--yellow-dark); font-size: 17px; margin-top: 5px; }

/* ---------- pätička ---------- */

.site-footer { background: var(--ink); color: rgba(255, 255, 255, 0.7); padding: 72px 0 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.site-footer img { height: 38px; width: auto; margin-bottom: 18px; }
.site-footer p { font-size: 14.5px; max-width: 300px; }
.site-footer h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 10px; font-size: 14.5px; }
.site-footer a { color: rgba(255, 255, 255, 0.7); text-decoration: none; transition: color 0.2s; }
.site-footer a:hover { color: var(--yellow); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.45);
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
.footer-social a:hover { background: var(--yellow); border-color: var(--yellow); color: var(--ink); }

/* ---------- mobilná lišta „zavolať" ---------- */

.call-bar {
  display: none;
  position: fixed;
  inset: auto 0 0 0;
  z-index: 1100;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(20, 22, 26, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.call-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
}

/* ============================================================
   Responzivita
   ============================================================ */

@media (max-width: 1000px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .price-teaser { grid-template-columns: 1fr; gap: 32px; }
  .pricing-cards { grid-template-columns: 1fr; }
  .contact-grid, .job-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .section { padding: 72px 0; }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(20, 22, 26, 0.97);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 24px 24px;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s;
  }
  .main-nav.open { transform: none; opacity: 1; visibility: visible; }
  .main-nav ul { flex-direction: column; gap: 2px; }
  .main-nav a { padding: 13px 14px; font-size: 17px; border-radius: var(--radius-sm); }

  .nav-toggle { display: flex; }
  .header-call { display: none; }
  .header-actions { margin-left: auto; }

  .cookie-banner { left: 12px; right: 12px; bottom: 12px; max-width: none; padding: 18px 18px calc(18px + env(safe-area-inset-bottom)); }

  .hero { min-height: auto; padding-bottom: 96px; }
  .hero-bg { background-position: 68% center; }
  .hero-bg {
    background-image:
      linear-gradient(180deg, rgba(15, 16, 19, 0.9) 0%, rgba(15, 16, 19, 0.72) 55%, rgba(15, 16, 19, 0.45) 100%),
      url("../pictures/seat-mobile.webp");
  }

  .why-grid, .fleet-grid { grid-template-columns: 1fr; }
  .fleet-card { aspect-ratio: 16 / 11; }

  .call-bar {
    display: block;
    transform: translateY(120%);
    transition: transform 0.3s ease;
  }
  .call-bar.show { transform: none; }
  body { padding-bottom: 74px; }

  .to-top { bottom: calc(90px + env(safe-area-inset-bottom)); width: 44px; height: 44px; }

  .price-table td { padding: 12px 16px; }
  .contact-card { padding: 26px 22px; }
}

@media (max-width: 520px) {
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-cta .btn { width: 100%; }

  /* kompaktnejší hero na telefónoch (najmä pre dlhší SK text) */
  .hero { min-height: 100svh; padding-top: calc(var(--header-h) + 44px); padding-bottom: 48px; }
  .hero-badge { margin-bottom: 26px; }
  .hero h1 { font-size: 30px; line-height: 1.12; letter-spacing: -0.03em; margin-bottom: 14px; }
  .hero p.lead { font-size: 15.5px; line-height: 1.55; margin-bottom: 34px; }
  .hero-cta { gap: 12px; margin-bottom: 26px; }
  .hero-facts { gap: 8px 22px; font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
