/* ========================================================
   Odtahová služba Provazník — Premium Automotive Design
   ======================================================== */

:root {
  --blue:       #17181b;   /* near-black / primary ink */
  --blue-mid:   #2b2d31;   /* charcoal / hover */
  --blue-dark:  #0a0a0b;   /* deepest black */
  --blue-light: #f1f0ed;   /* light gray chip bg */
  --orange:     #ff7a1a;   /* accent — amber/orange */
  --orange-h:   #e8650a;   /* accent hover */
  --orange-lt:  #fff1e2;   /* accent tint */
  --text:       #17181b;
  --muted:      #6b6d72;
  --border:     #e5e4e0;
  --bg:         #f6f5f2;
  --white:      #ffffff;
  --radius:     10px;
  --radius-sm:  6px;
  --radius-lg:  16px;
  --shadow:     0 2px 12px rgba(15,15,17,.08);
  --shadow-md:  0 6px 24px rgba(15,15,17,.14);
  --shadow-lg:  0 16px 48px rgba(15,15,17,.22);
  --header-h:   76px;
  --ease-out:   cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
}
h1, h2, h3, .logo-name, .btn, .vehicle-name, .why-number {
  font-family: 'Manrope', 'Segoe UI', Arial, sans-serif;
  letter-spacing: -0.01em;
}
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--orange); }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }
input, textarea, select {
  font: inherit;
  font-size: .95rem;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .65rem .9rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color .2s;
}
input:focus, textarea:focus, select:focus { border-color: var(--blue-mid); }
textarea { resize: vertical; }

/* ── Utility ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.section { padding: 5rem 0; }
.bg-white { background: var(--white); }
.bg-light  { background: var(--bg); }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--blue);
  position: relative;
  display: inline-block;
  padding-bottom: .6rem;
}
.section-header h2::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 50px; height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .78rem 1.6rem;
  border-radius: 100px;
  font-size: .93rem;
  font-weight: 700;
  letter-spacing: .01em;
  transition: background .22s, color .22s, box-shadow .22s, transform .2s var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background .2s;
  border-radius: inherit;
}
.btn:hover::after { background: rgba(255,255,255,.07); }
.btn:active { transform: scale(.97); }
.btn-accent {
  background: linear-gradient(135deg, #ff8c3d 0%, var(--orange) 50%, var(--orange-h) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(255,122,26,.3);
}
.btn-accent:hover {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-h) 100%);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(255,122,26,.4);
  transform: translateY(-2px);
}
.btn-outline-light {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border-color: rgba(255,255,255,.5);
  backdrop-filter: blur(4px);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.2);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,.1);
}
.btn-white:hover {
  background: var(--white);
  color: var(--orange);
  box-shadow: 0 6px 20px rgba(0,0,0,.15);
  transform: translateY(-2px);
}
.btn-block { width: 100%; justify-content: center; }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--blue);
  background-repeat: no-repeat;
  border-bottom: 3px solid var(--orange);
  height: var(--header-h);
  transition: background .3s var(--ease-out), border-color .3s var(--ease-out);
}

/* Transparent overlay header (home page hero) */
.site-header.header--overlay {
  position: fixed;
  width: 100%;
  background: linear-gradient(to bottom, rgba(10,10,11,.65) 0%, rgba(10,10,11,0) 100%);
  background-repeat: no-repeat;
  border-bottom-color: transparent;
}
.site-header.header--overlay.is-scrolled {
  position: fixed;
  background: var(--blue);
  border-bottom-color: var(--orange);
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
}
.site-header.is-scrolled:not(.header--overlay) {
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
}
.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 1.5rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-icon {
  font-size: 1.8rem;
  color: var(--orange);
  line-height: 1;
}
.logo-name {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.logo-sub {
  display: block;
  font-size: .68rem;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 400;
}
.logo--light .logo-name { color: var(--white); }

/* Main nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: .1rem;
  margin-left: auto;
}
.nav-link {
  padding: .5rem .9rem;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  border-radius: 0;
  transition: color .2s, background .2s;
  text-decoration: none;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,.1); }
.nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,.12);
  font-weight: 700;
  border-bottom: 2px solid var(--orange);
}
.nav-link.nav-link--cta {
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  margin-left: .4rem;
}
.nav-link.nav-link--cta:hover { background: var(--orange); filter: brightness(1.08); }
.nav-link.nav-link--cta.active { border-bottom: none; background: var(--orange); }
.mobile-nav-link.mobile-nav-link--cta { color: var(--orange); font-weight: 800; }

/* Header phone */
.header-phone {
  display: flex;
  align-items: center;
  gap: .45rem;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
  padding: .5rem 1rem;
  border-radius: var(--radius);
  flex-shrink: 0;
  text-decoration: none;
  transition: background .2s;
}
.header-phone:hover { background: var(--orange-h); color: var(--white); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 8px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .25s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  background: var(--blue-mid);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1rem 0;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu .container {
  display: flex;
  flex-direction: column;
}
.mobile-nav-link {
  padding: .75rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  border-bottom: 1px solid rgba(255,255,255,.08);
  text-decoration: none;
  transition: color .2s;
}
.mobile-nav-link:hover, .mobile-nav-link.active { color: var(--orange); }
.mobile-phone {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1rem;
  padding: .75rem 1.25rem;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  border-radius: var(--radius);
  justify-content: center;
  text-decoration: none;
  font-size: 1rem;
}

/* ── Hero v2 ── */
.hero-v2 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--header-h) + 2rem);
  overflow: hidden;
}
.hero-v2-bg {
  position: absolute;
  inset: -12px;
  background-size: cover;
  background-position: center 42%;
  filter: blur(5px);
  transform: scale(1.03);
}
.hero-v2-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(8,8,9,.92) 0%, rgba(8,8,9,.55) 42%, rgba(8,8,9,.25) 68%, rgba(8,8,9,.55) 100%),
    linear-gradient(90deg, rgba(8,8,9,.55) 0%, rgba(8,8,9,.1) 55%);
  pointer-events: none;
}
.hero-v2-content {
  position: relative;
  width: 100%;
  max-width: 700px;
  padding-bottom: 4.5rem;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--orange);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero-caret {
  display: inline-block;
  width: 3px;
  height: .82em;
  margin-left: 5px;
  background: var(--orange);
  vertical-align: -0.08em;
  animation: hero-caret-blink .8s step-end infinite;
}
.hero-caret.hero-caret--done { animation: none; opacity: 0; transition: opacity .5s ease; }
@keyframes hero-caret-blink { 50% { opacity: 0; } }
.hero-v2 h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  min-height: 2.16em;
  margin-bottom: 1.1rem;
  letter-spacing: -0.02em;
}
.hero-v2-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.82);
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 520px;
}
.hero-v2-callcard {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg);
  padding: .9rem 1.4rem;
  margin-bottom: 2rem;
}
.hero-v2-avail {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: var(--orange);
  font-weight: 800;
  font-size: .9rem;
  letter-spacing: .04em;
  padding-right: 1rem;
  border-right: 1px solid rgba(255,255,255,.2);
}
.hero-v2-phone {
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -.01em;
  transition: color .2s;
}
.hero-v2-phone:hover { color: var(--orange); }
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .hero-v2 { min-height: 100vh; align-items: flex-end; }
  .hero-v2-callcard { flex-direction: column; align-items: flex-start; gap: .5rem; }
  .hero-v2-avail { border-right: none; padding-right: 0; }
}

/* ── Infobar ── */
.infobar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
  box-shadow: 0 4px 16px rgba(29,53,87,.06);
}
.infobar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.infobar-item {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .75rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: box-shadow .2s, border-color .2s;
}
.infobar-item:hover {
  box-shadow: var(--shadow);
  border-color: var(--blue-light);
}
.infobar-item i {
  font-size: 1.4rem;
  color: var(--orange);
  flex-shrink: 0;
  width: 36px;
  text-align: center;
}
.infobar-item strong { display: block; font-size: .92rem; font-weight: 700; }
.infobar-item span { display: block; font-size: .77rem; color: var(--muted); margin-top: .1rem; }

/* ── Services grid (asymmetric) ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow .3s var(--ease-out), border-color .3s, transform .3s var(--ease-out);
  overflow: hidden;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(29,53,87,.15);
  transform: translateY(-6px);
}
.svc-card-img {
  position: relative;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  height: 190px;
}
.svc-card-img img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease-out);
}
.service-card:hover .svc-card-img img { transform: scale(1.06); }
.svc-card-content {
  padding: 1.5rem 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  flex: 1;
}
.svc-icon {
  width: 48px; height: 48px;
  background: var(--blue-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 1.3rem;
}
.service-card h3 {
  font-size: 1.06rem;
  font-weight: 700;
  color: var(--blue);
  margin-top: .25rem;
}
.service-card p {
  font-size: .87rem;
  color: var(--muted);
  flex: 1;
  line-height: 1.6;
}
.link-more {
  font-size: .84rem;
  font-weight: 700;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  text-decoration: none;
  margin-top: .25rem;
  transition: gap .2s;
}
.link-more:hover { color: var(--orange-h); gap: .55rem; }
.link-more i { font-size: .72rem; }

/* ── 24/7 Towing split ── */
.towing-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--blue-dark);
}
.towing-split-img {
  position: relative;
  min-height: 420px;
}
.towing-split-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.towing-split-content {
  display: flex;
  align-items: center;
  padding: 4rem 3rem;
}
.towing-split-inner { max-width: 480px; }
.towing-split-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.towing-split-lead {
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.towing-split .feature-list li {
  color: rgba(255,255,255,.88);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
}
.towing-split .feature-list li:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
}
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.home-bridge {
  background: var(--white);
  padding: 2.5rem 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.home-bridge p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue);
}
.towing-split--reverse .towing-split-img { order: 2; }
.towing-split--reverse .towing-split-content { order: 1; }
@media (max-width: 900px) {
  .towing-split { grid-template-columns: 1fr; }
  .towing-split-img { min-height: 280px; }
  .towing-split-content { padding: 3rem 1.5rem; }
}

/* ── Why us ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: center;
}
.why-visual {
  text-align: center;
  position: relative;
}
.why-visual::before {
  content: '';
  position: absolute;
  inset: -2rem;
  background: radial-gradient(ellipse at center, rgba(29,53,87,.08) 0%, transparent 70%);
  border-radius: 50%;
}
.why-number {
  font-size: 7rem;
  font-weight: 700;
  line-height: 1;
  color: var(--blue);
  position: relative;
}
.why-number span { font-size: 4rem; color: var(--orange); }
.why-visual p {
  color: var(--muted);
  font-size: .9rem;
  margin-top: .75rem;
  font-weight: 500;
  position: relative;
}
.why-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 1.5rem;
}
.check-list {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  margin-bottom: 2rem;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  font-size: .95rem;
  padding: .65rem 1rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color .2s, box-shadow .2s;
}
.check-list li:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow);
}
.check-list li i {
  color: var(--orange);
  margin-top: .25rem;
  flex-shrink: 0;
  font-size: .9rem;
}

/* ── CTA band ── */
.cta-band {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, var(--blue-mid) 100%);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 0h40v40H0zm40 40h40v40H40z'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cta-inner p {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

/* ── Page header ── */
.page-header {
  background: var(--blue);
  padding: 2.5rem 0;
  border-bottom: 3px solid var(--orange);
}
.page-header h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
}
.page-header p {
  color: rgba(255,255,255,.75);
  margin-top: .4rem;
  font-size: .95rem;
}

/* ── Legal content (GDPR / cookies page) ── */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 1.2rem;
  margin: 2.2rem 0 .7rem;
  color: var(--blue);
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p { color: var(--muted); line-height: 1.7; }
.legal-updated { font-style: italic; font-size: .85rem; }
.cookie-table {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1rem 0 1.5rem;
}
.cookie-table-row {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
}
.cookie-table-name {
  font-weight: 700;
  color: var(--blue);
  margin-bottom: .3rem;
}
.cookie-table-desc {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.6;
}
.btn-outline-dark {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline-dark:hover {
  background: var(--blue);
  color: var(--white);
}
.btn-sm { padding: .5rem 1.1rem; font-size: .82rem; }

/* ── Form checkbox (GDPR consent) ── */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .85rem;
  color: var(--muted);
  cursor: pointer;
}
.form-check input[type="checkbox"] {
  margin-top: .2rem;
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--orange);
  flex-shrink: 0;
  cursor: pointer;
}
.form-check a { font-weight: 600; }

/* ── Service detail ── */
.service-detail {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  padding: 3rem 0;
}
.svc-detail-icon {
  width: 80px; height: 80px;
  background: var(--blue-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 2.2rem;
  flex-shrink: 0;
}
.svc-detail-body h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: .75rem;
}
.svc-detail-body p {
  color: var(--muted);
  margin-bottom: 1.25rem;
  max-width: 600px;
}
.svc-divider {
  border: none;
  border-top: 1px solid var(--border);
}

/* ── Equipment ── */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.tech-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: box-shadow .2s;
}
.tech-card:hover { box-shadow: var(--shadow-md); }
.tech-icon {
  width: 64px; height: 64px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 1.7rem;
  margin: 0 auto 1.25rem;
}
.tech-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: .5rem;
}
.tech-card p { font-size: .88rem; color: var(--muted); }

/* ── Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item { border-radius: var(--radius); overflow: hidden; }
.gallery-placeholder {
  aspect-ratio: 4/3;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--border);
  font-size: 2.5rem;
  border-radius: var(--radius);
  transition: border-color .2s;
}
.gallery-placeholder:hover { border-color: var(--blue-mid); }

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}
.contact-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1rem;
}
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
}
.contact-row:last-child { border-bottom: none; }
.contact-icon {
  width: 38px; height: 38px;
  background: var(--blue-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.contact-label { font-size: .78rem; color: var(--muted); margin-bottom: .15rem; }
.contact-value { font-size: .93rem; font-weight: 700; color: var(--blue); }
a.contact-value:hover { color: var(--orange); }

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .87rem; font-weight: 500; }
.form-hint { font-size: .78rem; color: var(--muted); }
.poptavka-urgent-note {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1rem;
  padding: .6rem 1rem;
  background: rgba(255,122,26,.12);
  border: 1px solid rgba(255,122,26,.3);
  border-radius: var(--radius);
  color: var(--orange);
  font-size: .87rem;
  font-weight: 600;
}
.form-success {
  display: none;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  font-weight: 600;
  color: #166534;
  background: #dcfce7;
  border: 1px solid #86efac;
  border-radius: var(--radius);
  padding: .75rem 1rem;
}
.form-success.show { display: flex; }

/* Map */
.map-wrap { border-top: 1px solid var(--border); }

/* ── Footer ── */
.site-footer {
  background: var(--blue-dark);
  border-top: 3px solid var(--orange);
  color: rgba(255,255,255,.75);
  padding: 3.5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo { margin-bottom: .9rem; }
.footer-tagline { font-size: .88rem; color: rgba(255,255,255,.5); }
.footer-col h4 {
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-col ul a {
  font-size: .87rem;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: color .2s;
}
.footer-col ul a:hover { color: var(--orange); }
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .87rem;
  margin-bottom: .5rem;
}
.footer-contact-list i { color: var(--orange); flex-shrink: 0; margin-top: .15rem; }
.footer-contact-list a { color: rgba(255,255,255,.7); text-decoration: none; }
.footer-contact-list a:hover { color: var(--orange); }

/* Lang switcher */
.lang-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .3rem .65rem;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.08);
  border-radius: var(--radius);
  text-decoration: none;
  transition: background .2s, color .2s;
  border: 1px solid transparent;
}
.lang-btn:hover { background: rgba(255,255,255,.15); color: var(--white); }
.lang-btn.active {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

/* Footer bottom */
.footer-bottom {
  padding: 1.25rem 0;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.35); }
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }
.footer-credit { font-size: .82rem; color: rgba(255,255,255,.35); }
.footer-credit a { color: rgba(255,255,255,.55); text-decoration: none; font-weight: 600; }
.footer-credit a:hover { color: var(--orange); }
.lang-btn .fi { border-radius: 2px; }

.footer-legal-links { font-size: .82rem; color: rgba(255,255,255,.35); }
.footer-legal-links a { color: rgba(255,255,255,.55); text-decoration: none; }
.footer-legal-links a:hover { color: var(--orange); }

/* ── Cookie consent banner ── */
.cookie-consent {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 950;
  background: var(--blue);
  border-top: 3px solid var(--orange);
  box-shadow: 0 -6px 24px rgba(0,0,0,.25);
  padding: 1.25rem 1rem calc(1.25rem + env(safe-area-inset-bottom, 0px));
}
.cookie-consent-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr auto auto;
  align-items: center;
  gap: 1.25rem 2rem;
}
.cookie-consent-text {
  color: rgba(255,255,255,.8);
  font-size: .87rem;
  line-height: 1.6;
  margin: 0;
}
.cookie-consent-text a { color: var(--orange); font-weight: 600; }
.cookie-consent-options {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.25rem;
}
.cookie-option {
  display: flex;
  align-items: center;
  gap: .45rem;
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  white-space: nowrap;
  cursor: pointer;
}
.cookie-option input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  accent-color: var(--orange);
  cursor: pointer;
}
.cookie-option input[type="checkbox"]:disabled { cursor: default; opacity: .6; }
.cookie-consent-actions {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .cookie-consent-inner { grid-template-columns: 1fr; }
}

/* ── Sticky mobile call bar ── */
.mobile-cta-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 400;
  display: none;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  font-size: .95rem;
  padding: .9rem 1rem calc(.9rem + env(safe-area-inset-bottom, 0px));
  text-decoration: none;
  box-shadow: 0 -4px 20px rgba(0,0,0,.25);
  transition: background .2s;
}
.mobile-cta-bar:hover { background: var(--orange-h); color: var(--white); }
.mobile-cta-bar i { font-size: 1.1rem; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .header-phone { display: none; }
  .hamburger { display: flex; }
  .infobar-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 2rem; }
  .why-visual { order: -1; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 60px; }
}

@media (max-width: 640px) {
  :root { --header-h: 60px; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-grid { grid-template-columns: 1fr; }
  .infobar-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .service-detail { flex-direction: column; gap: 1.25rem; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .section { padding: 3rem 0; }
}

/* ── Service sub-page ── */
.page-header--service { padding: 2rem 0; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  margin-bottom: .9rem;
  transition: color .2s;
}
.back-link:hover { color: var(--orange); }
.page-header-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.page-header-icon {
  width: 64px; height: 64px;
  background: rgba(255,255,255,.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 2rem;
  flex-shrink: 0;
}

.service-detail-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.sdp-image {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--bg);
  aspect-ratio: 4/3;
}
.sdp-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sdp-content h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: .75rem;
}
.sdp-lead {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  margin-bottom: 2rem;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .93rem;
  color: var(--text);
}
.feature-list li i {
  color: var(--orange);
  flex-shrink: 0;
  margin-top: .2rem;
}

/* ── Image fallback ── */
.img-fallback {
  display: none;
  width: 100%;
  height: 100%;
  min-height: 240px;
  background: var(--bg);
  align-items: center;
  justify-content: center;
  color: var(--border);
  font-size: 3rem;
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(8,8,9,.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem;
}
.lightbox[hidden] { display: none; }
.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: fixed;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background .2s;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--orange); border-color: var(--orange); }
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }
@media (max-width: 640px) {
  .lightbox { padding: 5rem 0.5rem; }
  .lightbox-close, .lightbox-prev, .lightbox-next { width: 40px; height: 40px; font-size: 1rem; }
  .lightbox-prev { left: .5rem; }
  .lightbox-next { right: .5rem; }
}

/* ── Gallery images ── */
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--bg);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4/3;
  transition: transform .5s var(--ease-out);
}
.gallery-item::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  inset: 0;
  background: rgba(29,53,87,.55);
  color: white;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
  backdrop-filter: blur(2px);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item--wide {
  grid-column: 1 / 3;
}
.gallery-item--wide img { aspect-ratio: 16/7; }

@media (max-width: 900px) {
  .service-detail-page { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: 1; }
  .gallery-item--wide img { aspect-ratio: 4/3; }
}

/* ── Gallery single photo layout ── */
.gallery-grid--single {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 1rem;
}
.gallery-item--full {
  grid-column: 1 / -1;
}
.gallery-item--full img { aspect-ratio: 16/7; }
.gallery-grid--single .gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
}
.gallery-grid--single .gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
}

/* ── Vehicle rental cards (pujcovna.php) ── */
.vehicle-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}
.vehicle-card:last-child { border-bottom: none; }
.vehicle-card-img {
  border-radius: var(--radius);
  overflow: hidden;
}
.vehicle-card-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.vehicle-card-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem 1.25rem;
  margin-bottom: .6rem;
}
.vehicle-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--blue);
  margin: 0;
}
.vehicle-price {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--blue);
  padding: .35rem .9rem;
  border-radius: 2rem;
  font-size: .82rem;
  color: rgba(255,255,255,.75);
}
.vehicle-price strong {
  color: var(--orange);
  font-size: .97rem;
}
.vehicle-longterm {
  font-size: .84rem;
  color: var(--orange);
  font-weight: 600;
  margin: 0 0 1rem;
}
.vehicle-longterm i { margin-right: .3rem; }
.vehicle-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.vehicle-specs dt, .vehicle-specs dd {
  padding: .45rem .8rem;
  font-size: .83rem;
  margin: 0;
  border-bottom: 1px solid var(--border);
}
.vehicle-specs dt {
  background: var(--blue-light);
  font-weight: 600;
  color: var(--blue);
}
.vehicle-specs dd { color: var(--text); }
.vehicle-specs dt:nth-last-child(2),
.vehicle-specs dd:last-child { border-bottom: none; }
@media (max-width: 900px) {
  .vehicle-card { grid-template-columns: 1fr; }
  .vehicle-card-img img { aspect-ratio: 16/7; }
}

/* ── Service thumbnail (sluzby.php) ── */
.svc-detail-thumb {
  width: 280px;
  flex-shrink: 0;
  border-radius: var(--radius);
  overflow: hidden;
}
.svc-detail-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* ── Photo gallery within a page ── */
.inner-gallery { padding-top: 2.5rem; }
.inner-gallery-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 1rem;
  border-left: 3px solid var(--orange);
  padding-left: .75rem;
}
.page-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.page-gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
}
.page-gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}
.page-gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.page-gallery-item::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  inset: 0;
  background: rgba(29,53,87,.5);
  color: white;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}
.page-gallery-item:hover::after { opacity: 1; }
.page-gallery-item:hover img { transform: scale(1.07); }

@media (max-width: 900px) {
  .svc-detail-thumb { width: 180px; }
  .page-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .svc-detail-thumb { width: 100%; }
  .svc-card-img { height: 155px; }
  .page-gallery { grid-template-columns: 1fr; }
}

/* ────────────────────────────────────────────────
   SCROLL REVEAL ANIMATIONS
   ──────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .55s var(--ease-out),
    transform .55s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity .55s var(--ease-out), transform .55s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal-left.is-visible { opacity: 1; transform: none; }
.reveal-scale {
  opacity: 0;
  transform: scale(.94);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal-scale.is-visible { opacity: 1; transform: none; }

/* ────────────────────────────────────────────────
   TECH CARD  improvements
   ──────────────────────────────────────────────── */
.tech-card {
  border-radius: var(--radius-lg) !important;
}
.tech-card:hover {
  box-shadow: var(--shadow-md) !important;
  transform: translateY(-4px);
  transition: box-shadow .3s var(--ease-out), transform .3s var(--ease-out);
}

/* ────────────────────────────────────────────────
   SERVICE DETAIL PAGE  improvements
   ──────────────────────────────────────────────── */
.sdp-image {
  border-radius: var(--radius-lg) !important;
  overflow: hidden;
}
.feature-list li {
  border-radius: var(--radius) !important;
  padding: .6rem .9rem;
  background: var(--bg);
  border: 1px solid var(--border);
  transition: border-color .2s, background .2s;
}
.feature-list li:hover {
  background: var(--blue-light);
  border-color: rgba(29,53,87,.15);
}

/* ────────────────────────────────────────────────
   VEHICLE CARD  improvements
   ──────────────────────────────────────────────── */
.vehicle-card {
  border-radius: var(--radius-lg);
  padding: 2.5rem 0 !important;
}
.vehicle-card-img {
  border-radius: var(--radius-lg) !important;
  overflow: hidden;
}
.vehicle-card-img img {
  transition: transform .5s var(--ease-out) !important;
}
.vehicle-card:hover .vehicle-card-img img { transform: scale(1.04); }
.vehicle-specs {
  border-radius: var(--radius-lg) !important;
  overflow: hidden;
  border: none !important;
  background: var(--bg);
}
.vehicle-specs dt, .vehicle-specs dd {
  border-bottom: 1px solid var(--border) !important;
  padding: .5rem .9rem !important;
}
.vehicle-specs dt {
  background: var(--blue-light) !important;
  font-weight: 600;
  color: var(--blue) !important;
}

/* ────────────────────────────────────────────────
   PAGE HEADER  improvements
   ──────────────────────────────────────────────── */
.page-header {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%) !important;
}
.page-header-icon {
  width: 56px; height: 56px;
  background: rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  flex-shrink: 0;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.2);
}

/* ────────────────────────────────────────────────
   INFOBAR  item card border-left accent
   ──────────────────────────────────────────────── */
.infobar-item { border-left: 3px solid var(--orange) !important; }

/* ────────────────────────────────────────────────
   SECTION  — bg-light with subtle pattern
   ──────────────────────────────────────────────── */
.bg-light {
  background: linear-gradient(180deg, #f0f4fa 0%, var(--bg) 100%) !important;
}

/* ────────────────────────────────────────────────
   CONTACT CARD  improvements
   ──────────────────────────────────────────────── */
.contact-card { border-radius: var(--radius-lg) !important; }
.contact-icon { border-radius: var(--radius-lg) !important; }

/* ────────────────────────────────────────────────
   FORM  improvements
   ──────────────────────────────────────────────── */
input, textarea, select {
  border-radius: var(--radius) !important;
  transition: border-color .2s, box-shadow .2s !important;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--blue-mid) !important;
  box-shadow: 0 0 0 3px rgba(45,82,130,.12) !important;
}

/* ────────────────────────────────────────────────
   LANG BUTTONS  improvements
   ──────────────────────────────────────────────── */
.lang-btn { border-radius: 100px !important; }
.lang-btn.active { box-shadow: 0 2px 8px rgba(255,122,26,.35) !important; }

/* ────────────────────────────────────────────────
   SITE FOOTER  top gradient accent
   ──────────────────────────────────────────────── */
.site-footer {
  background: var(--blue-dark) !important;
  border-top: 3px solid var(--orange);
}


/* ────────────────────────────────────────────────
   BACK LINK
   ──────────────────────────────────────────────── */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  text-decoration: none;
  margin-bottom: 1rem;
  transition: color .2s;
}
.back-link:hover { color: var(--white); }

/* ────────────────────────────────────────────────
   HEADER  phone pill rounded
   ──────────────────────────────────────────────── */
.header-phone { border-radius: 100px !important; }

/* ────────────────────────────────────────────────
   SECTION-HEADER underline animate on visible
   ──────────────────────────────────────────────── */
.section-header h2::after {
  transition: width .5s var(--ease-out) .2s;
}
.section-header.is-visible h2::after { width: 50px; }
.section-header:not(.is-visible) h2::after { width: 0; }
