/* ═══════════════════════════════════════
   RENT CAR JUNIOR – style.css
   ═══════════════════════════════════════ */

:root {
  --black:      #0d1117;
  --dark:       #111827;
  --dark-mid:   #1f2937;
  --orange:     #f97316;
  --orange-d:   #ea6c0a;
  --orange-pale:#fff7ed;
  --blue:       #1d4ed8;
  --text:       #111827;
  --text-muted: #6b7280;
  --bg:         #ffffff;
  --bg-alt:     #f9fafb;
  --border:     #e5e7eb;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 1px 8px rgba(0,0,0,0.07);
  --shadow-md:  0 4px 24px rgba(0,0,0,0.09);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.13);
  --tr:         0.22s ease;
  --max-w:      1180px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
svg  { display: block; flex-shrink: 0; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

.section     { padding: 100px 0; }
.section-alt { background: var(--bg-alt); }

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid transparent;
  transition: all var(--tr);
  cursor: pointer;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-d); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(249,115,22,0.35); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.35); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }
.btn-outline { background: transparent; color: var(--orange); border-color: var(--orange); }
.btn-outline:hover { background: var(--orange); color: #fff; }
.btn-white { background: #fff; color: var(--orange); font-weight: 700; }
.btn-white:hover { background: var(--orange-pale); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.12); }
.btn-ghost-dark { background: transparent; color: #fff; border-color: rgba(255,255,255,0.3); }
.btn-ghost-dark:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }
.btn-full { width: 100%; justify-content: center; }


/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
  background: transparent;
  transition: background var(--tr), box-shadow var(--tr);
}
.header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(0,0,0,0.06);
}

/* Topbar */
.header-topbar {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background var(--tr), border-color var(--tr);
}
.topbar-inner {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}
.topbar-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.73rem;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
  transition: color var(--tr);
}
.topbar-link svg { width: 12px; height: 12px; flex-shrink: 0; }
.topbar-link:hover { color: var(--orange); }
.header.scrolled .header-topbar {
  background: var(--bg-alt);
  border-bottom-color: var(--border);
}
.header.scrolled .topbar-link { color: var(--text-muted); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 36px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 8px;
  transition: color var(--tr), background var(--tr);
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.1); }
.nav-link.active { color: var(--orange); }

.header.scrolled .nav-link       { color: var(--text-muted); }
.header.scrolled .nav-link:hover { color: var(--dark); background: var(--bg-alt); }
.header.scrolled .nav-link.active { color: var(--orange); }

.nav-cta {
  background: var(--orange) !important;
  color: #fff !important;
  font-weight: 700;
  margin-left: 8px;
  border-radius: var(--radius);
}
.nav-cta:hover { background: var(--orange-d) !important; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(249,115,22,0.4); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--tr);
}
.header.scrolled .nav-toggle span { background: var(--dark); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  margin-top: -108px; /* topbar(36) + nav(72) → průhledný header ukáže dark overlay */
  display: flex;
  flex-direction: column;
  background: var(--black);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-car-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.55;
  filter: grayscale(15%);
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(13,17,23,0.92) 0%, rgba(13,17,23,0.65) 50%, rgba(13,17,23,0.3) 100%),
    linear-gradient(to top, rgba(13,17,23,0.8) 0%, transparent 50%);
}
.hero-content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 176px 0 40px;
}
.hero-text { max-width: 600px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.4);
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.hero-text h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 24px;
}
.hero-accent { color: var(--orange); }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 500px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Stats strip */
.hero-stats {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 28px 0;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  text-align: center;
}
.hero-stat:last-child { border-right: none; }
.hero-stat strong { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; color: var(--orange); }
.hero-stat span   { font-size: 0.74rem; color: rgba(255,255,255,0.5); }


/* ══════════════════════════════════════
   VOZY / CARS
   ══════════════════════════════════════ */
.cars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.car-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}
.car-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}
.car-img-wrap { position: relative; overflow: hidden; height: 220px; background: var(--bg-alt); }
.car-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.car-card:hover .car-img { transform: scale(1.04); }
.car-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--orange);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
}
.car-body { padding: 24px; }
.car-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  gap: 12px;
}
.car-header h3 { font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: 3px; }
.car-sub { font-size: 0.76rem; color: var(--text-muted); }
.car-price { text-align: right; flex-shrink: 0; }
.car-price strong { display: block; font-size: 1.4rem; font-weight: 800; color: var(--orange); letter-spacing: -0.02em; }
.car-price span { font-size: 0.72rem; color: var(--text-muted); }
.car-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
  padding: 14px;
  background: var(--bg-alt);
  border-radius: var(--radius);
}
.car-specs li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
}
.car-specs li svg { width: 14px; height: 14px; color: var(--orange); }
.car-desc { font-size: 0.83rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 18px; }

/* Featured car card */
.car-card--featured {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange), var(--shadow-md);
}
.car-card--featured .car-badge {
  background: var(--orange);
}

/* Pricing table inside car card */
.car-pricing-table {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 14px;
}
.car-pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  font-size: 0.8rem;
  border-bottom: 1px solid var(--border);
}
.car-pricing-row:last-child { border-bottom: none; }
.car-pricing-row:nth-child(odd) { background: var(--bg-alt); }
.car-pricing-row span { color: var(--text-muted); }
.car-pricing-row strong { color: var(--dark); font-weight: 600; }

/* Extras note */
.car-extras {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  padding: 8px 10px;
  background: var(--orange-pale);
  border-radius: 6px;
  border-left: 3px solid var(--orange);
}


/* ══════════════════════════════════════
   JAK TO FUNGUJE
   ══════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}
.step { text-align: center; padding: 0 16px; }
.step-num {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 16px;
}
.step-icon {
  width: 72px;
  height: 72px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(249,115,22,0.3);
}
.step-icon svg { width: 28px; height: 28px; }
.step h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.step p  { font-size: 0.855rem; color: var(--text-muted); line-height: 1.7; }
.step-divider {
  color: var(--border);
  padding-top: 36px;
  align-self: start;
}
.step-divider svg { width: 28px; height: 28px; }


/* ══════════════════════════════════════
   PROČ MY
   ══════════════════════════════════════ */
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-text .eyebrow { display: block; }
.why-text h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 18px;
}
.why-text p { font-size: 0.97rem; color: var(--text-muted); line-height: 1.78; margin-bottom: 8px; }
.why-features { display: flex; flex-direction: column; gap: 20px; }
.why-feat {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  transition: border-color var(--tr), box-shadow var(--tr);
}
.why-feat:hover { border-color: var(--orange); box-shadow: var(--shadow-md); }
.why-feat-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--orange-pale);
  color: var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-feat-icon svg { width: 20px; height: 20px; }
.why-feat h4 { font-size: 0.93rem; font-weight: 700; color: var(--dark); margin-bottom: 5px; }
.why-feat p  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; }


/* ══════════════════════════════════════
   ISIC SEKCE
   ══════════════════════════════════════ */
.isic-section {
  background: var(--dark);
  padding: 100px 0;
  overflow: hidden;
}
.isic-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.isic-badge-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.isic-dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}
.isic-badge-wrap span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
}
.isic-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 18px;
}
.isic-content > p {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.78;
  margin-bottom: 28px;
}
.isic-list { margin-bottom: 36px; }
.isic-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.isic-list li svg { width: 18px; height: 18px; color: var(--orange); flex-shrink: 0; }
.isic-visual { display: flex; justify-content: flex-end; }
.isic-img {
  width: 100%;
  max-width: 460px;
  height: 500px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}


/* ══════════════════════════════════════
   RECENZE
   ══════════════════════════════════════ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform var(--tr), box-shadow var(--tr);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-stars { font-size: 1.1rem; color: var(--orange); margin-bottom: 14px; letter-spacing: 2px; }
.review-card > p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.72;
  margin-bottom: 20px;
  font-style: italic;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px;
  height: 40px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-author strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--dark); }
.review-author span   { font-size: 0.75rem; color: var(--text-muted); }


/* ══════════════════════════════════════
   CTA BANNER
   ══════════════════════════════════════ */
.cta-banner { background: var(--orange); padding: 80px 0; }
.cta-banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.cta-banner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 8px;
}
.cta-banner p { color: rgba(255,255,255,0.75); font-size: 0.97rem; }
.cta-btns { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }


/* ══════════════════════════════════════
   KONTAKT
   ══════════════════════════════════════ */
.contact-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 720px;
  margin: 0 auto;
}
.contact-form {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  color: var(--text);
  background: var(--bg-alt);
  transition: border-color var(--tr), box-shadow var(--tr);
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--bg);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.12);
}
.form-group textarea { min-height: 110px; }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.contact-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-child { border-bottom: none; padding-bottom: 0; }
.contact-item:first-child { padding-top: 0; }
.contact-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--orange-pale);
  color: var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon svg { width: 18px; height: 18px; }
.contact-item > div { display: flex; flex-direction: column; gap: 3px; }
.contact-label {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.contact-item a,
.contact-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.5;
}
.contact-item a:hover { color: var(--orange); }

.social-links { display: flex; gap: 10px; }
.social-btn {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: border-color var(--tr), color var(--tr), background var(--tr);
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-pale); }


/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.footer { background: var(--dark); color: rgba(255,255,255,0.55); padding: 64px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo img { height: 32px; width: auto; margin-bottom: 14px; filter: brightness(0) invert(1); opacity: 0.85; }
.footer-brand p { font-size: 0.84rem; line-height: 1.72; max-width: 240px; }
.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a,
.footer-col ul li { font-size: 0.855rem; color: rgba(255,255,255,0.5); transition: color var(--tr); }
.footer-col ul a:hover { color: var(--orange); }
.footer-bottom { padding: 20px 0; }
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: rgba(255,255,255,0.45); transition: color var(--tr); }
.footer-bottom a:hover { color: #fff; }


/* ══════════════════════════════════════
   MOBILE MENU CLOSE BUTTON
   ══════════════════════════════════════ */
.nav-close-wrap { display: none; }

/* ══════════════════════════════════════
   FORM – CHECKBOX
   ══════════════════════════════════════ */
.form-group--isic { justify-content: flex-end; }
.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--bg-alt);
  transition: border-color var(--tr);
  margin-top: auto;
}
.form-checkbox:hover { border-color: var(--orange); }
.form-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--orange);
  cursor: pointer;
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   DATE RANGE PICKER
   ══════════════════════════════════════ */
.date-range-picker {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
}
.drp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.drp-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
}
.drp-nav {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  border: 1.5px solid var(--border);
  background: var(--bg);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color var(--tr), color var(--tr), opacity var(--tr);
}
.drp-nav svg { width: 14px; height: 14px; }
.drp-nav:not(:disabled):hover { border-color: var(--orange); color: var(--orange); }
.drp-nav:disabled { opacity: 0.28; cursor: default; }

.drp-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 8px 14px 2px;
}
.drp-weekdays span {
  text-align: center;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 4px 0;
}
.drp-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 2px 14px 10px;
}
.drp-day {
  position: relative;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background var(--tr);
}
.drp-day--empty { pointer-events: none; }
.drp-day.disabled { cursor: default; }

.drp-day-inner {
  position: relative;
  z-index: 1;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--dark);
  transition: background var(--tr), color var(--tr);
}
.drp-day.disabled .drp-day-inner { color: #d1d5db; }
.drp-day:not(.disabled):not(.drp-day--empty):hover .drp-day-inner {
  background: var(--orange-pale);
  color: var(--orange);
}
.drp-day.today .drp-day-inner {
  border: 2px solid var(--orange);
  color: var(--orange);
  font-weight: 700;
}
.drp-day.start .drp-day-inner,
.drp-day.end   .drp-day-inner {
  background: var(--orange) !important;
  color: #fff !important;
  font-weight: 700;
}

/* Range strip — full-width background behind circles */
.drp-day.in-range               { background: rgba(249,115,22,0.11); }
.drp-day.start.has-end          { background: linear-gradient(90deg, transparent 50%, rgba(249,115,22,0.11) 50%); }
.drp-day.end                    { background: linear-gradient(90deg, rgba(249,115,22,0.11) 50%, transparent 50%); }
.drp-day.start.end              { background: transparent; }

.drp-summary {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  font-size: 0.79rem;
  color: var(--text-muted);
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  min-height: 40px;
  transition: color var(--tr);
}
.drp-summary svg   { flex-shrink: 0; color: var(--orange); }
.drp-summary strong { color: var(--orange); font-weight: 600; }

/* ══════════════════════════════════════
   REVEAL
   ══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--d, 0s);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { --d: 0.12s; }
.d2 { --d: 0.24s; }


/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
  .cars-grid    { grid-template-columns: 1fr 1fr; }
  .cars-grid .car-card:last-child { grid-column: span 2; max-width: 50%; margin: 0 auto; }
  .why-inner    { gap: 48px; }
  .isic-inner   { gap: 48px; }
}

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

  /* Topbar skrytý na mobilu → hero se vrátí na -72px */
  .header-topbar { display: none; }
  .hero { margin-top: -72px; }
  .hero-content { padding: 140px 0 40px; }

  .header.scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255,255,255,0.99);
  }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(13,17,23,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 9999;
    margin-left: 0;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link { font-size: 1.1rem; padding: 12px 28px; color: rgba(255,255,255,0.85) !important; }
  .nav-cta  { margin-left: 0; margin-top: 8px; }

  .hero-text h1   { font-size: clamp(2.8rem, 10vw, 4rem); }
  .hero-stats-grid { grid-template-columns: repeat(3, 1fr); }

  .nav-close-wrap {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
  }
  .nav-close {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 1.4rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--tr), border-color var(--tr);
  }
  .nav-close:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.5); }

  .cars-grid { grid-template-columns: 1fr; }
  .cars-grid .car-card:last-child { grid-column: 1; max-width: 100%; }

  .steps-grid { grid-template-columns: 1fr; gap: 40px; }
  .step-divider { display: none; }

  .why-inner  { grid-template-columns: 1fr; gap: 48px; }
  .isic-inner { grid-template-columns: 1fr; gap: 40px; }
  .isic-visual { order: -1; }
  .isic-img { max-width: 100%; height: 300px; }

  .reviews-grid { grid-template-columns: 1fr; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-btns { justify-content: center; }
  .contact-inner { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-btns { flex-direction: column; }
  .btn { justify-content: center; }
  .hero-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-form { padding: 22px 16px; }
}
