/* ===========================
   RENT A MAGO — ALLEGRA STYLE
   =========================== */

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

:root {
  --blue: #4abcd4;
  --blue-dark: #3aa8c0;
  --blue-light: #e8f7fb;
  --dark: #3a3a3a;
  --dark-footer: #4a4a4a;
  --text: #333333;
  --text-muted: #777777;
  --text-light: #999999;
  --border: #e0e0e0;
  --white: #ffffff;
  --bg-light: #f5f5f5;
  --red: #e84545;
  --font-main: 'Source Sans 3', 'Segoe UI', sans-serif;
  --font-heading: 'Raleway', 'Segoe UI', sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ---- TOP HEADER ---- */
.top-header {
  background: var(--white);
  padding: 18px 0 14px;
  border-bottom: 1px solid var(--border);
}
.top-header-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo-wrap { display: flex; align-items: center; gap: 12px; }
.logo-img { height: 64px; width: auto; }
.logo-text { font-family: var(--font-heading); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.3em; color: var(--blue); text-transform: uppercase; }
.header-contact { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.header-phones { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.header-phone { display: flex; align-items: center; gap: 6px; font-size: 0.95rem; font-weight: 600; color: var(--text); }
.header-phone svg { color: var(--blue); flex-shrink: 0; }
.header-email { font-size: 0.85rem; color: var(--text-muted); }
.header-hours { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; color: var(--text-muted); }
.header-hours svg { color: var(--blue); }

/* ---- NAVBAR ---- */
.navbar {
  background: var(--blue);
  position: sticky; top: 0; z-index: 900;
}
.navbar-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-links { display: flex; align-items: center; gap: 0; }
.nav-link {
  display: block; padding: 14px 20px;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--white);
  transition: background 0.2s;
}
.nav-link:hover, .nav-link.active {
  background: rgba(0,0,0,0.15);
  outline: 1px solid rgba(255,255,255,0.3);
}
.nav-phone-pill {
  display: flex; align-items: center; gap: 8px;
  background: rgba(0,0,0,0.15); border-radius: 3px;
  padding: 8px 16px; font-size: 0.82rem; font-weight: 700; color: var(--white);
}
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.burger span { display: block; width: 22px; height: 2px; background: var(--white); transition: 0.3s; }

/* ---- HERO ---- */
.hero {
  position: relative; width: 100%;
  min-height: 480px;
  overflow: hidden;
  display: flex; align-items: stretch;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
  z-index: 1;
}
.hero-img {
  position: absolute; inset: 0;
  background: url('hero-bg.jpg') center/cover no-repeat;
  background-color: #1a2a3a;
}
/* Placeholder gradient when no photo */
.hero-img-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0d2137 0%, #1e4060 40%, #2a6080 70%, #1a3a55 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  width: 100%; display: flex; align-items: center; justify-content: flex-end;
  max-width: 1160px; margin: 0 auto; padding: 60px 24px;
}
.hero-panel {
  background: rgba(30,30,30,0.82);
  backdrop-filter: blur(2px);
  clip-path: polygon(40px 0%, 100% 0%, 100% 100%, 0% 100%);
  padding: 48px 48px 48px 72px;
  max-width: 480px; width: 100%;
}
.hero-panel h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 16px;
}
.hero-panel p { font-size: 1rem; color: rgba(255,255,255,0.8); line-height: 1.65; }

/* ---- BOOKING BAR ---- */
.booking-bar {
  background: var(--blue);
  padding: 18px 0;
}
.booking-bar-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: flex-end; gap: 12px; flex-wrap: wrap;
}
.booking-group { display: flex; flex-direction: column; gap: 4px; flex: 1; min-width: 120px; }
.booking-group label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.85); }
.booking-group input, .booking-group select {
  height: 40px; padding: 0 10px;
  border: none; border-radius: 2px;
  font-family: var(--font-main); font-size: 0.85rem; color: var(--text);
  background: var(--white);
  width: 100%;
}
.booking-group input:focus, .booking-group select:focus { outline: 2px solid rgba(255,255,255,0.5); }
.booking-divider {
  width: 1px; height: 40px; background: rgba(255,255,255,0.3);
  align-self: flex-end; flex-shrink: 0;
}
.btn-book {
  height: 40px; padding: 0 28px;
  background: var(--dark); color: var(--white);
  border: none; border-radius: 2px;
  font-family: var(--font-main); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s; white-space: nowrap;
  flex-shrink: 0;
}
.btn-book:hover { background: #222; }

/* ---- SECTIONS ---- */
.section { padding: 72px 0; }
.section-light { background: var(--white); }
.section-grey { background: var(--bg-light); }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; width: 100%; }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700; color: var(--text);
  text-align: center; margin-bottom: 8px;
}
.section-sub {
  text-align: center; color: var(--blue);
  font-size: 0.95rem; margin-bottom: 48px;
}
.section-sub a { color: var(--blue); }
.section-sub span { margin: 0 6px; }

/* ---- LOCATION SECTION ---- */
.location-section { padding: 56px 0; background: var(--white); text-align: center; }
.location-btns { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 24px; }
.btn-primary {
  display: inline-block; padding: 12px 32px;
  background: var(--blue); color: var(--white);
  border-radius: 2px; font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: none; cursor: pointer; transition: background 0.2s;
}
.btn-primary:hover { background: var(--blue-dark); }
.btn-secondary {
  display: inline-block; padding: 12px 32px;
  background: var(--dark); color: var(--white);
  border-radius: 2px; font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: none; cursor: pointer; transition: background 0.2s;
}
.btn-secondary:hover { background: #222; }

/* ---- FLEET CAROUSEL ---- */
.fleet-section {
  background: #2a2a2a;
  padding: 64px 0;
}
.fleet-section .section-title { color: var(--white); }
.fleet-carousel { position: relative; overflow: hidden; }
.fleet-track {
  display: flex; transition: transform 0.4s ease;
}
.fleet-card {
  min-width: 100%; padding: 32px 48px;
  display: flex; flex-direction: column; align-items: center;
  gap: 20px;
}
.fleet-car-img {
  width: 280px; height: 180px;
  background: #ddd; border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.fleet-car-img img { width: 100%; height: 100%; object-fit: cover; }
.fleet-car-img.placeholder {
  background: linear-gradient(135deg, #555 0%, #444 100%);
  color: #888; font-size: 0.8rem;
}
.fleet-card h3 { font-family: var(--font-heading); font-size: 1.4rem; color: var(--white); font-weight: 700; }
.fleet-specs { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 24px; }
.fleet-spec { display: flex; align-items: center; gap: 6px; color: var(--blue); font-size: 0.85rem; }
.fleet-spec svg { flex-shrink: 0; }
.fleet-price { text-align: center; }
.fleet-price-old { font-size: 0.85rem; color: #888; text-decoration: line-through; }
.fleet-price-new { font-size: 1.8rem; font-weight: 700; color: var(--blue); }
.fleet-price-new span { font-size: 0.9rem; color: rgba(255,255,255,0.7); font-weight: 400; }
.fleet-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1); border: none; color: var(--white);
  width: 40px; height: 40px; border-radius: 50%;
  font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; z-index: 5;
}
.fleet-nav:hover { background: rgba(255,255,255,0.25); }
.fleet-prev { left: 16px; }
.fleet-next { right: 16px; }

/* ---- VEHICLES LIST (vozila.html) ---- */
.vehicle-row {
  display: grid;
  grid-template-columns: 240px 1fr 200px;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  margin-bottom: 24px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.vehicle-row:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.vehicle-img-wrap {
  background: var(--bg-light);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.vehicle-img-wrap img { max-width: 190px; height: auto; }
.vehicle-img-wrap.svg-placeholder {
  background: #f0f0f0;
}
.vehicle-info { padding: 24px 28px; border-left: 1px solid var(--border); }
.vehicle-info h3 { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; color: var(--text); margin-bottom: 14px; }
.vehicle-specs-list { display: flex; flex-direction: column; gap: 6px; }
.vehicle-spec-item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--blue); }
.vehicle-spec-item svg { color: var(--blue); flex-shrink: 0; }
.vehicle-price-box {
  padding: 24px 20px;
  border-left: 1px solid var(--border);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; text-align: center;
}
.price-label { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.price-old { font-size: 0.85rem; color: #bbb; text-decoration: line-through; }
.price-new { font-size: 1.5rem; font-weight: 700; color: var(--red); }
.price-new small { font-size: 0.8rem; color: var(--text-muted); font-weight: 400; }
.price-per { font-size: 0.8rem; color: var(--text-muted); }
.btn-upit {
  width: 100%; padding: 11px 0;
  background: var(--blue); color: var(--white);
  border: none; border-radius: 2px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; cursor: pointer;
  transition: background 0.2s; text-align: center; display: block;
}
.btn-upit:hover { background: var(--blue-dark); }
.price-note { font-size: 0.72rem; color: var(--text-muted); }

/* ---- PAGE HERO (subpages) ---- */
.page-hero {
  background: var(--bg-light);
  padding: 48px 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700; color: var(--text);
}

/* ---- CONTACT FORM ---- */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px 48px;
  max-width: 900px; margin: 0 auto;
}
.form-section-title { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 16px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 5px; }
.form-field label { font-size: 0.78rem; color: var(--text-muted); }
.form-field input, .form-field select, .form-field textarea {
  height: 40px; padding: 0 12px;
  border: 1px solid var(--border); border-radius: 2px;
  font-family: var(--font-main); font-size: 0.88rem; color: var(--text);
  background: var(--white); width: 100%;
}
.form-field textarea { height: 130px; padding: 10px 12px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--blue);
}
.form-field.full { grid-column: 1 / -1; }
.form-divider { height: 1px; background: var(--border); margin: 24px 0; }
.checkbox-group { display: flex; flex-direction: column; gap: 10px; }
.checkbox-item { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; cursor: pointer; }
.checkbox-item input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--blue); cursor: pointer; }
.form-back { font-size: 0.85rem; color: var(--blue); display: inline-block; margin-bottom: 20px; }
.form-back:hover { text-decoration: underline; }
.form-submit-wrap { display: flex; justify-content: flex-end; padding-top: 16px; }
.btn-submit {
  padding: 13px 40px;
  background: var(--blue); color: var(--white);
  border: none; border-radius: 2px;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; cursor: pointer; transition: background 0.2s;
}
.btn-submit:hover { background: var(--blue-dark); }
.privacy-check { display: flex; align-items: flex-start; gap: 10px; font-size: 0.82rem; color: var(--text-muted); }
.privacy-check input { margin-top: 2px; accent-color: var(--blue); }
.privacy-check a { color: var(--blue); }

/* ---- FEATURES ---- */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.feature-card { text-align: center; }
.feature-icon {
  width: 64px; height: 64px; margin: 0 auto 16px;
  background: var(--blue-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.feature-icon svg { color: var(--blue); }
.feature-card h4 { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.feature-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ---- FOOTER ---- */
.footer { background: var(--dark-footer); padding: 48px 0 0; }
.footer-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 200px 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 40px;
}
.footer-logo-img { height: 60px; width: auto; margin-bottom: 0; }
.footer-col h5 { font-size: 0.82rem; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.75); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 24px;
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.footer-social a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-social a:hover { color: var(--white); }

/* ---- MOBILE PHONE BAR ---- */
.mobile-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: var(--blue);
  padding: 12px 24px;
  justify-content: center; align-items: center; gap: 16px;
}
.mobile-bar a {
  flex: 1; text-align: center; padding: 10px;
  background: rgba(0,0,0,0.15); border-radius: 2px;
  color: var(--white); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}

/* ---- NOTE ---- */
.price-asterisk-note {
  font-size: 0.82rem; color: var(--text-muted); margin-top: 32px;
  padding: 16px; border-left: 3px solid var(--border);
  background: var(--bg-light);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .vehicle-row { grid-template-columns: 200px 1fr 180px; }
  .hero-panel { max-width: 420px; }
}

/* ==============================
   TABLET + MOBILE  (≤ 768px)
   ============================== */
@media (max-width: 768px) {

  /* --- TOP HEADER: logo + phone side-by-side, compact --- */
  .top-header { padding: 12px 0; }
  .top-header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .logo-img { height: 48px; }
  .header-contact {
    align-items: flex-end;
    gap: 2px;
  }
  .header-phones { align-items: flex-end; }
  .header-phone {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--blue);
  }
  .header-email { display: none; }
  .header-hours { display: none; }

  /* --- NAVBAR --- */
  .navbar-inner { padding: 0 16px; min-height: 48px; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--blue);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    z-index: 998;
  }
  .nav-links.open { display: flex; }
  .nav-link {
    font-size: 1.15rem;
    padding: 20px 48px;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    letter-spacing: 0.15em;
  }
  .nav-link:first-child { border-top: 1px solid rgba(255,255,255,0.1); }
  .nav-phone-pill { display: none; }
  .burger { display: flex; z-index: 999; }

  /* Burger → X animation */
  .burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .burger.open span:nth-child(2) { opacity: 0; }
  .burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  /* --- HERO: full-screen, panel bottom-aligned --- */
  .hero {
    min-height: 88vw;
    align-items: flex-end;
  }
  .hero-bg {
    background: linear-gradient(180deg,
      rgba(0,0,0,0.05) 0%,
      rgba(0,0,0,0.55) 60%,
      rgba(0,0,0,0.82) 100%);
  }
  .hero-inner {
    padding: 0;
    justify-content: stretch;
    align-items: flex-end;
  }
  .hero-panel {
    clip-path: none;
    padding: 28px 20px 32px;
    max-width: 100%;
    width: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(10,20,40,0.96) 30%);
    backdrop-filter: none;
    border-radius: 0;
  }
  .hero-panel h1 {
    font-size: clamp(1.45rem, 5.5vw, 1.9rem);
    margin-bottom: 10px;
    line-height: 1.25;
  }
  .hero-panel p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    max-width: 360px;
  }

  /* --- BOOKING BAR: clean vertical stack --- */
  .booking-bar { padding: 0; }
  .booking-bar-inner {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }
  .booking-divider { display: none; }
  .booking-group {
    min-width: 100%;
    flex: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding: 14px 20px;
    gap: 6px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .booking-group label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.7);
    white-space: nowrap;
    min-width: 120px;
  }
  .booking-group input,
  .booking-group select {
    height: 36px;
    flex: 1;
    text-align: right;
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border: none;
    border-radius: 3px;
    font-size: 0.85rem;
    padding: 0 10px;
  }
  .booking-group input::placeholder { color: rgba(255,255,255,0.5); }
  .btn-book {
    width: 100%;
    height: 52px;
    font-size: 0.88rem;
    letter-spacing: 0.18em;
    border-radius: 0;
    background: #1a1a2a;
  }
  .btn-book:hover { background: #111; }

  /* --- LOCATION SECTION --- */
  .location-section { padding: 40px 0; }
  .location-btns { flex-direction: column; align-items: stretch; padding: 0 16px; }
  .btn-primary, .btn-secondary { text-align: center; padding: 14px; width: 100%; }

  /* --- VEHICLE ROWS --- */
  .vehicle-row { grid-template-columns: 1fr; border-radius: 4px; }
  .vehicle-img-wrap { padding: 24px 32px; min-height: 160px; }
  .vehicle-info { border-left: none; border-top: 1px solid var(--border); padding: 20px; }
  .vehicle-price-box {
    border-left: none;
    border-top: 1px solid var(--border);
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    gap: 8px;
    text-align: left;
  }
  .price-label { width: 100%; }
  .btn-upit { width: auto; min-width: 120px; padding: 11px 20px; }

  /* --- FEATURES --- */
  .features-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .feature-card { padding: 0 4px; }

  /* --- FLEET CAROUSEL --- */
  .fleet-card { padding: 28px 20px; }
  .fleet-car-img { width: 220px; height: 140px; }

  /* --- FOOTER --- */
  .footer { padding-top: 36px; }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding-bottom: 32px;
  }
  .footer-inner > div:first-child { grid-column: 1 / -1; }
  .footer-logo-img { height: 50px; }

  /* --- FORM --- */
  .form-grid-2, .form-grid-3 { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 16px; }

  /* --- MOBILE BOTTOM BAR --- */
  .mobile-bar { display: flex; }
  body { padding-bottom: 64px; }
}

/* ==============================
   SMALL PHONES (≤ 480px)
   ============================== */
@media (max-width: 480px) {
  .top-header-inner { padding: 0 16px; }
  .logo-img { height: 42px; }
  .header-phone { font-size: 0.82rem; }

  .hero { min-height: 100vw; }
  .hero-panel { padding: 24px 16px 28px; }
  .hero-panel h1 { font-size: 1.3rem; }
  .hero-panel p { font-size: 0.84rem; }

  .booking-group { padding: 12px 16px; }

  .section { padding: 48px 0; }
  .features-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 20px; }

  .section-title { font-size: 1.4rem; }

  .fleet-car-img { width: 180px; height: 115px; }
  .fleet-card { padding: 24px 16px; }
  .fleet-price-new { font-size: 1.5rem; }

  .vehicle-img-wrap { padding: 20px; }
  .prices-table { font-size: 0.82rem; }
  .prices-table th, .prices-table td { padding: 10px 10px; }
}


/* ---- DESKTOP FULL WIDTH LAYOUT ----
   Desktop sadržaj se širi preko cijele širine ekrana na svim monitorima. */
@media (min-width: 769px) {
  .top-header-inner,
  .navbar-inner,
  .hero-inner,
  .booking-bar-inner,
  .container,
  .footer-inner,
  .footer-bottom {
    max-width: none !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 48px !important;
    padding-right: 48px !important;
  }

  .hero-inner {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  .contact-form-wrap {
    max-width: none !important;
  }

  .vehicle-row {
    grid-template-columns: 300px minmax(0, 1fr) 240px;
  }
}

@media (min-width: 1600px) {
  .top-header-inner,
  .navbar-inner,
  .hero-inner,
  .booking-bar-inner,
  .container,
  .footer-inner,
  .footer-bottom {
    padding-left: 72px !important;
    padding-right: 72px !important;
  }
}

/* ---- ALIGNMENT FIXES: centered desktop nav + centered inquiry button ---- */
@media (min-width: 769px) {
  .navbar-inner {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .nav-links {
    grid-column: 2;
    justify-content: center;
    justify-self: center;
  }

  .nav-phone-pill {
    grid-column: 3;
    justify-self: end;
  }

  .booking-bar-inner {
    justify-content: center !important;
    align-items: flex-end;
  }

  .btn-book {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .booking-bar-inner {
    align-items: center;
  }

  .btn-book {
    width: calc(100% - 40px);
    max-width: 340px;
    margin: 16px auto;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
