/* ============================================
   ODVOZKO — Design tokens (luxusná verzia)
   ============================================ */
:root {
  /* Colour */
  --color-bg: #0F1216;
  --color-surface: #1A1D23;
  --color-surface-2: #23272F;
  --color-primary: #C9A24B;
  --color-primary-dark: #A9822F;
  --color-yellow: #E4C878;
  --color-coral: #B8536B;
  --color-copper: #B57A3F;
  --color-text: #F3EFE6;
  --color-text-muted: #ABA79C;
  --color-border: rgba(243, 239, 230, 0.12);
  --color-border-gold: rgba(201, 162, 75, 0.35);
  --color-error: #C1443B;

  /* Type */
  --font-display: "Bodoni Moda", "Times New Roman", serif;
  --font-body: "Manrope", system-ui, -apple-system, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  /* Layout */
  --container-width: 1200px;
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-card: 0 24px 60px -20px rgba(0, 0, 0, 0.6);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================
   Reset
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/></svg>"),
    radial-gradient(900px 560px at 84% -10%, rgba(201, 162, 75, 0.16), transparent 60%),
    radial-gradient(760px 620px at -8% 22%, rgba(184, 83, 107, 0.14), transparent 62%),
    radial-gradient(680px 520px at 55% 105%, rgba(201, 162, 75, 0.08), transparent 60%);
  background-color: var(--color-bg);
  background-repeat: repeat, no-repeat, no-repeat, no-repeat;
  background-attachment: fixed;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input { font: inherit; }
h1, h2, h3 { font-family: var(--font-display); margin: 0; line-height: 1.1; }
p { margin: 0; }
ul { list-style: none; margin: 0; padding: 0; }

.container {
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-primary);
  color: var(--color-bg);
  padding: 12px 18px;
  border-radius: 0 0 8px 0;
  z-index: 200;
  font-weight: 700;
}
.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 3px solid var(--color-yellow);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-primary);
  color: var(--color-bg);
  box-shadow: 0 12px 28px -12px rgba(201, 162, 75, 0.55);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}
.btn-ghost {
  background: transparent;
  border-color: var(--color-border);
  color: var(--color-text);
}
.btn-ghost:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
}
.btn-lg { padding: 15px 28px; font-size: 1rem; }

@keyframes pulse-cta {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 162, 75, 0.55); }
  50% { box-shadow: 0 0 0 9px rgba(201, 162, 75, 0); }
}

/* ============================================
   Header
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 18, 22, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 76px;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: auto;
}
.header-logo{
  width: 250px;
}
.logo-word {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: 0.015em;
  color: var(--color-text);
}
.main-nav {
  display: flex;
  gap: 18px;
  flex-wrap: nowrap;
}
.main-nav a {
  white-space: nowrap;
}
.main-nav a {
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  color: var(--color-text-muted);
  transition: color 0.15s ease;
}
.main-nav a:hover { color: var(--color-primary); }

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

.lang-switch {
  display: flex;
  gap: 6px;
  align-items: center;
}
.lang-switch--mobile { display: none; }
.lang-btn {
  padding: 3px;
  border-radius: 5px;
  border: 1.5px solid transparent;
  background: transparent;
  display: flex;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}
.lang-btn svg { display: block; border-radius: 2px; }
.lang-btn:hover { opacity: 0.85; }
.lang-btn.is-active {
  opacity: 1;
  border-color: var(--color-primary);
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--color-text);
}
.phone-link svg { color: var(--color-coral); }
.phone-link-hero{
  width: 100%;
  height: 50px;
  z-index: 1111;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: 72px 100px;
  scroll-margin-top: 76px;
  background-image: url(../img/1634.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}
.hero::after{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #000000e2;
  top: 0;
  right: 0;
  z-index: -1;
}
.section-placeholder {
  scroll-margin-top: 76px;
}

.hero-route {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.6;
}
.hero-route path {
  fill: none;
  stroke: rgba(201, 162, 75, 0.28);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 1 14;
  animation: dash-flow 26s linear infinite;
}
.route-dot.dot-start { fill: var(--color-primary); }
.route-dot.dot-end { fill: var(--color-coral); }
.route-plane path {
  fill: var(--color-primary);
  filter: drop-shadow(0 0 5px rgba(201, 162, 75, 0.55));
  animation: airport 18s linear infinite;
  
}
@keyframes dash-flow {
  to { stroke-dashoffset: -600; }
}
@keyframes airport {
  from { rotate: 20deg; }
  to { rotate: 80deg; }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-yellow);
  background: rgba(201, 162, 75, 0.12);
  border: 1px solid var(--color-border-gold);
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
  animation: rise 0.7s ease both;
}

.hero-content h1 {
  font-size: clamp(2.6rem, 4.6vw, 4.1rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--color-text);
  animation: rise 0.7s ease 0.05s both;
}
.hero-content h1 .highlight {
  color: var(--color-primary);
  font-style: italic;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.hero-lead {
  margin-top: 22px;
  max-width: 46ch;
  font-size: 1.1rem;
  color: var(--color-text-muted);
  animation: rise 0.7s ease 0.1s both;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
  animation: rise 0.7s ease 0.15s both;
  display: none;
}

.trust-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 40px;
  animation: rise 0.7s ease 0.2s both;
}
.trust-row li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-muted);
}
.trust-row svg { color: var(--color-coral); flex-shrink: 0; }

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   Ticket widget (signature element)
   ============================================ */
.hero-widget {
  animation: rise 0.8s ease 0.2s both;
}

.ticket {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ticket-perforation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: var(--color-bg);
  border-radius: 50%;
  z-index: 2;
  box-shadow: inset 0 0 0 1px var(--color-border-gold);
}
.ticket-perforation--left { left: -14px; }
.ticket-perforation--right { right: -14px; }

.ticket-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ticket-title {
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--color-text);
}
.ticket-title-underline {
  width: 44px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-primary);
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media(width < 1183px ){
  .field-grid{
    grid-template-columns: 1fr;
  }
}
@media(width < 981px ){
  .field-grid{
    grid-template-columns: 1fr 1fr;
  }
}

.field-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  background: var(--color-surface-2);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  position: relative;
}
.field-icon:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.15);
}
.field-icon.is-invalid {
  border-color: var(--color-error);
  background: rgba(193, 68, 59, 0.1);
}
.field-icon.is-invalid svg {
  color: var(--color-error);
}
.field-icon.is-invalid input::placeholder,
.field-icon.is-invalid textarea::placeholder {
  color: var(--color-error);
  font-weight: 600;
}
.field-icon svg {
  flex-shrink: 0;
  color: var(--color-coral);
}
.field-icon input,
.field-icon select,
.field-icon textarea {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  padding: 0;
  font-size: 0.92rem;
  color: var(--color-text);
}
.field-icon input:focus,
.field-icon select:focus,
.field-icon textarea:focus {
  outline: none;
}
.field-icon input::placeholder,
.field-icon textarea::placeholder { color: #6E6A62; }

.field-select select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  color: var(--color-text);
}
.field-select select option {
  background: var(--color-surface-2);
  color: var(--color-text);
}
.field-select select:invalid { color: #6E6A62; }
.field-select::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--color-text-muted);
  border-bottom: 2px solid var(--color-text-muted);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

.field-full { width: 100%; }
.field-textarea { align-items: flex-start; }
.field-textarea svg { margin-top: 3px; }
.field-textarea textarea {
  resize: vertical;
  min-height: 44px;
  font-family: var(--font-body);
  line-height: 1.4;
}

.ticket-divider {
  height: 0;
  border-top: 1px dashed var(--color-border-gold);
  margin-inline: -28px;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.consent-row input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--color-primary);
}
.consent-row span {
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--color-text-muted);
}
.consent-row.is-invalid input[type="checkbox"] {
  outline: 2px solid var(--color-error);
  outline-offset: 2px;
}
.consent-row.is-invalid span {
  color: var(--color-error);
}
.consent-row a {
  color: var(--color-yellow);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.btn-block { width: 100%; }

/* ============================================
   Sekcia: O nás
   ============================================ */
.about {
  padding-block: 100px;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 76px;
}
.about-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.about-seal-ring {
  fill: none;
  stroke: rgba(201, 162, 75, 0.14);
  stroke-width: 1.5;
}
.about-seal-tick {
  stroke: rgba(201, 162, 75, 0.22);
  stroke-width: 1.5;
}

.about-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: 64px;
  align-items: center;
}

.about-content .eyebrow { margin-bottom: 18px; }
.about-content h2 {
  font-size: clamp(2rem, 3.4vw, 2.7rem);
  font-weight: 500;
  color: var(--color-text);
  max-width: 15ch;
}
.about-text {
  margin-top: 20px;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  max-width: 52ch;
}
.about-text + .about-text { margin-top: 14px; }

.about-stats {
  display: flex;
  gap: 12px;
  margin-top: 38px;
  flex-wrap: wrap;
}
.stat {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  background: var(--color-surface);
  min-width: 108px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.stat:hover {
  border-color: var(--color-border-gold);
  transform: translateY(-3px);
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--color-primary);
  white-space: nowrap;
}
.stat-label {
  display: block;
  margin-top: 4px;
  font-size: 0.74rem;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.about-visual {
  position: relative;
  z-index: 1;
}
.about-illustration {
  width: 100%;
  aspect-ratio: 700 / 560;
  display: block;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-gold);
  box-shadow: var(--shadow-card);
}
.about-skyline { fill: rgba(201, 162, 75, 0.14); }
.about-ground { stroke: rgba(201, 162, 75, 0.25); stroke-width: 1.5; }
.about-car-body { fill: var(--color-primary); opacity: 0.92; }
.about-car-detail {
  stroke: var(--color-bg);
  stroke-width: 3;
  stroke-linecap: round;
  opacity: 0.55;
}
.about-car-wheel-well { fill: #0B0D11; }
.about-car-wheel-rim { fill: var(--color-yellow); opacity: 0.7; }
.about-car-headlight {
  fill: var(--color-yellow);
  filter: drop-shadow(0 0 8px rgba(228, 200, 120, 0.9));
}

.imgpassat-about-us{
  border-radius: 5px;
  position: relative;
}
.about-visual::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.338);
    z-index: 1;
}

.about-badges {
  position: absolute;
  top: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 2;
}
.about-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(15, 18, 22, 0.85);
  backdrop-filter: blur(6px);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  min-width: 208px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.about-badge:hover {
  transform: translateX(-4px);
  border-color: var(--color-primary);
}
.about-badge-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 75, 0.14);
  color: var(--color-primary);
}
.about-badge strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text);
}
.about-badge span {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  color: var(--color-primary);
  line-height: 1.3;
}

/* ============================================
   Sekcia: Služby
   ============================================ */
.services {
  padding-block: 100px;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 76px;
}
.services .container {
  position: relative;
  z-index: 1;
}

.services-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.services-road {
  fill: none;
  stroke: rgba(201, 162, 75, 0.18);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 1 14;
  animation: dash-flow 34s linear infinite;
}
.services-road-dot { fill: var(--color-border-gold); }
.services-plane-watermark path {
  fill: rgba(201, 162, 75, 0.075);
}

.section-head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}
.eyebrow-center { display: inline-block; }
.section-head h2 {
  margin-top: 14px;
  font-size: clamp(2.1rem, 3.4vw, 2.8rem);
  font-weight: 500;
  color: var(--color-text);
}
.section-lead {
  margin-top: 18px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  font-style: italic;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 30px 24px 26px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 76px;
  height: 76px;
  background: repeating-linear-gradient(
    45deg,
    var(--stripe-color) 0 7px,
    transparent 7px 16px
  );
  clip-path: polygon(0 0, 100% 0, 0 100%);
  opacity: 0.22;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
  border-color: var(--stripe-color);
}
.service-card:hover::before {
  opacity: 0.4;
}

.service-card--a { --stripe-color: var(--color-primary); }
.service-card--b { --stripe-color: var(--color-coral); }
.service-card--c { --stripe-color: var(--color-copper); }

.service-icon {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--stripe-color);
  background: color-mix(in srgb, var(--stripe-color) 16%, var(--color-surface-2));
  border: 1px solid color-mix(in srgb, var(--stripe-color) 40%, transparent);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease, color 0.3s ease;
}
.service-card:hover .service-icon {
  transform: scale(1.1) rotate(-6deg);
  background: var(--stripe-color);
  color: var(--color-bg);
}

.service-card h3 {
  position: relative;
  z-index: 1;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  color: var(--color-text);
}
.service-card p {
  position: relative;
  z-index: 1;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

/* ============================================
   Sekcia: Vozový park
   ============================================ */
.fleet {
  padding-block: 100px;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 76px;
}
.fleet-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.fleet-floor-line {
  stroke: rgba(201, 162, 75, 0.07);
  stroke-width: 1;
}
.fleet-wheel-ring {
  fill: none;
  stroke: rgba(201, 162, 75, 0.13);
  stroke-width: 1.5;
}
.fleet-wheel-spoke {
  stroke: rgba(201, 162, 75, 0.13);
  stroke-width: 1.5;
}
.fleet .container {
  position: relative;
  z-index: 1;
}

.fleet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}

.fleet-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--color-border-gold);
}

.fleet-image {
  position: relative;
  aspect-ratio: 520 / 320;
  background: linear-gradient(to top, #000000 50%, #616161 100%);
}
.vito-ourcars-img{
  width: 90%;
  right: 5%;
  left: 5%;
  position: relative;
  top: 5%;
}
.fleet-illustration {
  width: 100%;
  height: 100%;
  display: block;
}
.fleet-reflection { fill: rgba(201, 162, 75, 0.1); }
.fleet-ground { stroke: rgba(201, 162, 75, 0.18); stroke-width: 1.5; }
.fleet-car-body { fill: var(--color-primary); opacity: 0.92; }
.fleet-car-detail {
  stroke: var(--color-bg);
  stroke-width: 3;
  stroke-linecap: round;
  opacity: 0.55;
}
.fleet-car-wheel-well { fill: #0B0D11; }
.fleet-car-wheel-rim { fill: var(--color-yellow); opacity: 0.7; }
.fleet-car-headlight {
  fill: var(--color-yellow);
  filter: drop-shadow(0 0 8px rgba(228, 200, 120, 0.9));
}

.fleet-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: rgba(15, 18, 22, 0.85);
  border: 1px solid var(--color-border-gold);
  color: var(--color-text);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.fleet-badge--vip {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.fleet-body { padding: 28px 26px 26px; }
.fleet-body h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-text);
}
.fleet-body > p {
  margin-top: 12px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.fleet-divider {
  height: 0;
  border-top: 1px solid var(--color-border);
  margin: 20px 0;
}

.fleet-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
  margin-bottom: 24px;
}
.fleet-specs li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--color-text-muted);
}
.fleet-specs svg { color: var(--color-primary); flex-shrink: 0; }

.btn-outline-gold {
  background: transparent;
  border: 1.5px solid var(--color-primary);
  color: var(--color-primary);
}
.btn-outline-gold:hover {
  background: var(--color-primary);
  color: var(--color-bg);
  transform: translateY(-2px);
}

.fleet-note {
  text-align: center;
  margin-top: 44px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: var(--color-text-muted);
}

/* ============================================
   Sekcia: Cenník
   ============================================ */
.pricing {
  padding-block: 100px;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 76px;
}
.pricing .container {
  position: relative;
  z-index: 1;
}
.pricing-euro {
  position: absolute;
  z-index: 0;
  right: -60px;
  bottom: -180px;
  font-family: var(--font-display);
  font-size: 620px;
  font-weight: 700;
  line-height: 1;
  color: rgba(201, 162, 75, 0.05);
  pointer-events: none;
  user-select: none;
}
.pricing-route-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.pricing-route-line {
  fill: none;
  stroke: rgba(201, 162, 75, 0.12);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 1 14;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}

.pricing-card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px 32px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.pricing-card--featured {
  border-color: var(--color-primary);
  box-shadow: 0 24px 60px -24px rgba(201, 162, 75, 0.35);
}

.pricing-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 75, 0.12);
  color: var(--color-primary);
}

.pricing-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-text);
}
.pricing-sub {
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.pricing-price {
  margin-top: 20px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
}
.pricing-price-num {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 600;
  color: var(--color-text);
}
.pricing-card--featured .pricing-price-num { color: var(--color-primary); }
.pricing-price-unit {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.pricing-divider {
  height: 0;
  border-top: 1px solid var(--color-border);
  margin: 26px 0 10px;
}

.pricing-rows {
  text-align: left;
}
.pricing-rows li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.85rem;
}
.pricing-rows li:last-child { border-bottom: none; }
.pricing-rows li span { color: var(--color-text-muted); }
.pricing-rows li strong {
  color: var(--color-text);
  font-weight: 700;
  white-space: nowrap;
}
.pricing-free {
  color: var(--color-primary);
  letter-spacing: 0.04em;
}

.pricing-card .btn { margin-top: 26px; }

.pricing-note {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-style: italic;
}
.pricing-note1{
  margin-top: 0;
}

/* ============================================
   Sekcia: Časté otázky
   ============================================ */
.faq {
  padding-block: 100px;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 76px;
}
.faq .container {
  position: relative;
  z-index: 1;
}
.faq-mark {
  position: absolute;
  z-index: 0;
  left: -70px;
  top: -60px;
  font-family: var(--font-display);
  font-size: 520px;
  font-weight: 700;
  line-height: 1;
  color: rgba(201, 162, 75, 0.05);
  pointer-events: none;
  user-select: none;
}

.faq-list {
  max-width: 780px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 4px 22px;
  transition: border-color 0.25s ease;
}
.faq-item[open] {
  border-color: var(--color-border-gold);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--color-text);
  transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--color-primary); }

.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--color-primary);
  transition: transform 0.25s ease;
}
.faq-icon::before {
  width: 12px;
  height: 1.6px;
  transform: translate(-50%, -50%);
}
.faq-icon::after {
  width: 1.6px;
  height: 12px;
  transform: translate(-50%, -50%);
}
.faq-item[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg) scaleY(0);
}

.faq-answer {
  padding: 0 0 20px;
}
.faq-answer p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  max-width: 62ch;
}

/* ============================================
   Sekcia: Kontakt
   ============================================ */
.contact {
  padding-block: 100px;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 76px;
}
.contact .container {
  position: relative;
  z-index: 1;
}
.contact-mark {
  position: absolute;
  z-index: 0;
  right: -40px;
  bottom: -140px;
  font-family: var(--font-display);
  font-size: 560px;
  font-weight: 700;
  line-height: 1;
  color: rgba(201, 162, 75, 0.05);
  pointer-events: none;
  user-select: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(360px, 1.15fr);
  gap: 28px;
  margin-top: 56px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.contact-card:hover {
  border-color: var(--color-border-gold);
  transform: translateY(-3px);
}
.contact-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 75, 0.12);
  color: var(--color-primary);
}
.contact-card-body { display: flex; flex-direction: column; gap: 2px; }
.contact-card-body strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
}
.contact-sub {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}
.contact-value {
  margin-top: 4px;
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1rem;
}
a.contact-value:hover { color: var(--color-yellow); }

.billing-list {
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.billing-list li {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.contact-form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-text);
}
.form-underline {
  display: block;
  width: 44px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-primary);
  margin-top: 8px;
  margin-bottom: 4px;
}

.captcha-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface-2);
  padding: 14px 18px;
  transition: border-color 0.2s ease;
}
.captcha-box.is-invalid { border-color: var(--color-error); }
.captcha-option {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
}
.captcha-option input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: var(--color-primary);
}
.captcha-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text-muted);
}
.captcha-brand svg { color: var(--color-primary); flex-shrink: 0; }
.captcha-brand span {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  line-height: 1.25;
  text-align: right;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: #0B0D11;
  border-top: 1px solid var(--color-border-gold);
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-block: 64px 48px;
}

.footer-brand .logo { margin-bottom: 18px; }
.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  max-width: 42ch;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.footer-social-link:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 18px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--color-primary); }

.footer-address {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-style: normal;
}
.footer-address a {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-primary);
}
.footer-address a:hover { color: var(--color-yellow); }
.footer-address span {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--color-text-muted);
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-block: 22px;
}
.footer-bottom-inner p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}
.footer-legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}
.footer-legal a:hover { color: var(--color-primary); }

/* Postupné objavenie pri scrolli */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.services-grid .reveal:nth-child(4n + 1) { transition-delay: 0s; }
.services-grid .reveal:nth-child(4n + 2) { transition-delay: 0.08s; }
.services-grid .reveal:nth-child(4n + 3) { transition-delay: 0.16s; }
.services-grid .reveal:nth-child(4n + 4) { transition-delay: 0.24s; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 980px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    padding: 8px 24px 16px;
  }
  .main-nav.is-open { display: flex; }
  .main-nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
  }
  .main-nav a:last-child { border-bottom: none; }
  .header-actions .phone-link { display: none; }
  .header-actions .lang-switch--desktop { display: none; }
  .lang-switch--mobile {
    display: flex;
    gap: 10px;
    padding: 16px 0 4px;
  }
  .lang-switch--mobile .lang-btn { padding: 5px; }
 
  .header-actions .btn-primary {
    animation: pulse-cta 2.2s ease-in-out infinite;
    margin-left: -10px;
  }
  .menu-toggle { display: flex; }
  .site-header { position: sticky; }
  .header-inner { position: relative; }

  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-content { text-align: left; }
  .ticket { margin-top: 8px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
  .fleet-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .pricing-euro { font-size: 420px; bottom: -120px; }
  .faq-mark { font-size: 380px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-mark { font-size: 380px; }
  .footer-top { grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .header-inner { height: 68px; justify-content: space-around;}
  .hero { padding-block: 40px 60px; }
  .logo { margin-left: -55px; }
  .hero-ctas { flex-direction: column; align-items: stretch; display: none; }
  .header-logo { width: 220px; }
  .hero-ctas .btn { text-align: center; }
  .display-none-sk-en{display: none;}
  .field-grid { grid-template-columns: 1fr; }
  .trust-row { gap: 16px 22px; display: none; }
  .services { padding-block: 64px; }
  .services-grid { grid-template-columns: 1fr; }
  .section-head { margin-bottom: 40px; }
  .about { padding-block: 64px; }
  .about-stats { gap: 12px; }
  .stat { min-width: 100px; padding: 14px 16px; }
  .about-badges {
    position: absolute;
    margin-top: 0px;
    margin-right: -10px;
  }
  .about-badge { min-width: 0; }
  .fleet { padding-block: 64px; }
  .fleet-grid { margin-top: 40px; gap: 24px; }
  .fleet-body { padding: 22px 20px 20px; }
  .pricing { padding-block: 64px; }
  .pricing-card { padding: 32px 22px 26px; }
  .pricing-euro { font-size: 280px; bottom: -80px; right: -30px; }
  .faq { padding-block: 64px; }
  .faq-mark { font-size: 220px; left: -30px; top: -40px; }
  .faq-item { padding: 4px 16px; }
  .contact { padding-block: 64px; }
  .contact-form { padding: 26px 20px; }
  .contact-mark { font-size: 240px; bottom: -60px; right: -20px; }
  .captcha-box { flex-direction: column; align-items: flex-start; gap: 12px; }
  .captcha-brand { align-self: flex-end; }
  .footer-top { grid-template-columns: 1fr; padding-block: 48px 32px; gap: 36px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
}

/* ============================================
   Cookie banner
   ============================================ */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 300;
  padding: 20px;
  transform: translateY(130%);
  transition: transform 0.4s ease;
  pointer-events: none;
}
.cookie-banner.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-banner-inner {
  max-width: 980px;
  margin: 0 auto;
  background: var(--color-surface);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cookie-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
}
.cookie-text p {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  max-width: 58ch;
}
.cookie-text a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-actions .btn { white-space: nowrap; }

@media (max-width: 760px) {
  .cookie-banner { padding: 14px; }
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    padding: 22px 20px;
    gap: 18px;
  }
  .cookie-actions { flex-direction: column-reverse; }
  .cookie-actions .btn { width: 100%; }
}
