/*
Theme Name: RedHat Rent
Theme URI: https://aliceblue-goldfish-176445.hostingersite.com
Description: RedHat Rent — Custom Car Rental Theme. Clean, Swiss, Red/Black/White.
Author: RedHat Garage / Artur Dlugokecki
Version: 1.0.0
Text Domain: redhatrent
*/

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:   #FFFFFF;
  --black:   #121212;
  --red:     #CC0000;
  --red-dark:#a50000;
  --gray-50: #f9fafb;
  --gray-100:#f3f4f6;
  --gray-200:#e5e7eb;
  --gray-500:#6b7280;
  --font:    'Inter', sans-serif;
  --radius:  8px;
  --shadow:  0 2px 12px rgba(0,0,0,0.08);
  --max-w:   1200px;
}

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

/* ============================================================
   STICKY HEADER WRAPPER
============================================================ */
#rhr-header-sticky {
  position: sticky;
  top: 0;
  z-index: 200;
}

/* ============================================================
   ANNOUNCE BAR
============================================================ */
#rhr-announce {
  background: var(--red);
  color: #fff;
  text-align: center;
  padding: 10px 48px 10px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  position: relative;
  line-height: 1.4;
}
#rhr-announce a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
#rhr-announce .ann-close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.2rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}

/* ============================================================
   NAV
============================================================ */
#rhr-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--black);
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo .logo-mark {
  width: 36px;
  height: 36px;
  background: var(--red);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  font-style: italic;
}
.nav-logo .logo-text {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.1;
}
.nav-logo .logo-text span { color: var(--red); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

#rhr-nav .nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  flex: 1;
  justify-content: center;
}
#rhr-nav .nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
  letter-spacing: 0.03em;
}
#rhr-nav .nav-links a:hover { color: var(--white); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--red);
  color: #fff;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.2s;
  flex-shrink: 0;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--red-dark); }

/* ============================================================
   HERO
============================================================ */
#hero {
  position: relative;
  width: 100%;
  min-height: 420px;
  background: linear-gradient(135deg, #1a0000 0%, #2d0000 50%, #1a0000 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,10,0.92) 0%,
    rgba(10,10,10,0.55) 40%,
    rgba(10,10,10,0.1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 48px 6% 48px;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  color: #fff;
  align-items: flex-start;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(204,0,0,0.85);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  width: fit-content;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  align-self: center;
}

.hero-content .sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  white-space: nowrap;
  text-align: center;
  align-self: center;
  width: 100%;
}

.hero-content .eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  align-self: center;
  text-align: center;
  width: 100%;
}

.hero-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #ffffff;
  text-align: center;
  align-self: center;
  width: 100%;
}
.hero-content h1 .accent { color: var(--red); }

.hero-content .sub_PLACEHOLDER_UNDO {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 560px;
}

/* Booking widget */
.hero-booking {
  background: rgba(255,255,255,0.97);
  border-radius: 12px;
  padding: 24px 28px;
  max-width: 900px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.hero-booking .booking-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 16px;
}
.hero-booking .booking-fields {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  gap: 12px;
  align-items: end;
}
.booking-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.booking-field input[type="date"],
.booking-field select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--black);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.booking-field input:focus,
.booking-field select:focus { border-color: var(--red); }
.btn-search {
  padding: 13px 28px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-search:hover { background: var(--red-dark); }

/* Hero dots */
.hero-dots {
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}
.hero-dot.active {
  background: var(--red);
  transform: scale(1.3);
}

/* ============================================================
   USP STRIP
============================================================ */
#usp-strip {
  background: var(--black);
  padding: 24px;
  border-top: 3px solid var(--red);
}
#usp-strip .usp-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  max-width: var(--max-w);
  margin: 0 auto;
}
#usp-strip .usp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 32px;
  border-right: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 500;
}
#usp-strip .usp-item:last-child { border-right: none; }
#usp-strip .usp-icon { font-size: 1.2rem; color: var(--red); }
#usp-strip .usp-item strong { color: #fff; font-weight: 700; }

/* ============================================================
   SECTION BASE
============================================================ */
.rhr-section {
  padding: 96px 24px;
}
.rhr-section.bg-gray { background: var(--gray-50); }
.rhr-section.bg-black { background: var(--black); color: var(--white); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}
.section-header .tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-header p {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.7;
}
.section-header.white h2 { color: #fff; }
.section-header.white p  { color: rgba(255,255,255,0.6); }
.section-header.white .tag { color: #f87171; }

/* ============================================================
   FLEET GRID
============================================================ */
#fleet .fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.car-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.car-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.car-card .car-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--gray-100);
}
.car-card .car-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.car-card:hover .car-img img { transform: scale(1.04); }
.car-card .car-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.car-card .car-badge.avail { background: #16a34a; }
.car-card .car-badge.unavail { background: #6b7280; }

.car-card .car-body {
  padding: 20px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.car-card .car-category {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}
.car-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.car-card .car-year {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 14px;
}

.car-specs {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.car-spec {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--gray-500);
}
.car-spec .spec-icon { font-size: 0.9rem; }

.car-pricing {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
}
.car-price-main {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.car-price-main .price-label {
  font-size: 0.7rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.car-price-main .price-value {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.02em;
  line-height: 1;
}
.car-price-main .price-value span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-500);
}
.car-price-alts {
  text-align: right;
}
.car-price-alts .price-alt {
  font-size: 0.75rem;
  color: var(--gray-500);
  display: block;
  line-height: 1.6;
}
.car-price-alts .price-alt strong {
  color: var(--black);
  font-weight: 700;
}

.car-card .btn-book {
  display: block;
  margin-top: 16px;
  padding: 12px;
  background: var(--red);
  color: #fff;
  text-align: center;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.2s;
}
.car-card .btn-book:hover { background: var(--red-dark); }
.car-card .btn-book.outline {
  background: transparent;
  border: 2px solid var(--gray-200);
  color: var(--gray-500);
}
.car-card .btn-book.outline:hover {
  border-color: var(--black);
  color: var(--black);
  background: transparent;
}

/* ============================================================
   HOW IT WORKS
============================================================ */
#how-it-works .steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}
#how-it-works .steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(to right, var(--red), var(--red-dark));
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 12px;
}
.step-number {
  width: 80px;
  height: 80px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 900;
  margin: 0 auto 20px;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 2px var(--red);
  position: relative;
}
.step-card h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--white);
}
.step-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ============================================================
   WHY US
============================================================ */
#why-us .why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.why-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
}
.why-card h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.why-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ============================================================
   BOOKING SECTION (CRBS)
============================================================ */
#booking {
  background: var(--gray-50);
  padding: 80px 24px;
}
#booking .booking-wrap {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

/* ============================================================
   LOCATION
============================================================ */
#location .location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: var(--max-w);
  margin: 0 auto;
}
.location-info .info-block {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 16px;
  border: 1px solid var(--gray-200);
}
.location-info .info-block h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.location-info .info-block p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.7;
}
.location-info .info-block ul { list-style: none; }
.location-info .info-block ul li {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.8;
}
.location-info .info-block ul li::before {
  content: '→ ';
  color: var(--red);
  font-weight: 700;
}

.location-map {
  border-radius: 12px;
  overflow: hidden;
  height: 420px;
  background: var(--gray-100);
}
.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================================
   CONTACT CTA BAND
============================================================ */
#cta-band {
  background: var(--red);
  padding: 64px 24px;
  text-align: center;
  color: #fff;
}
#cta-band h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
#cta-band p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #fff;
  color: var(--red);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.2s;
}
.btn-cta-white:hover { background: rgba(255,255,255,0.9); }
.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border: 2px solid rgba(255,255,255,0.6);
  color: #fff;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: border-color 0.2s, background 0.2s;
}
.btn-cta-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* ============================================================
   FOOTER
============================================================ */
#rhr-footer {
  background: var(--black);
  color: rgba(255,255,255,0.6);
  padding: 56px 24px 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
#rhr-footer .footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo {
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-brand .logo span { color: var(--red); }
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 260px;
}
.footer-brand .footer-contact {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-brand .footer-contact a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.footer-brand .footer-contact a:hover { color: #fff; }

#rhr-footer h5 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
#rhr-footer ul { list-style: none; }
#rhr-footer ul li { margin-bottom: 10px; }
#rhr-footer ul a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
#rhr-footer ul a:hover { color: var(--white); }

.footer-lang {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.lang-btn {
  padding: 5px 12px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  background: none;
  transition: border-color 0.2s, color 0.2s;
}
.lang-btn:hover, .lang-btn.active {
  border-color: var(--red);
  color: #fff;
}

#rhr-footer .footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
#rhr-footer .footer-bottom strong { color: rgba(255,255,255,0.7); }
.footer-payment {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.payment-badge {
  padding: 4px 10px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
}


/* ============================================================
   NAV LANGUAGE SELECTOR
============================================================ */
.nav-lang {
  display: flex;
  gap: 2px;
  align-items: center;
  flex-shrink: 0;
}
.lang-opt {
  background: none;
  border: 1px solid transparent;
  font-size: 1.25rem;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 6px;
  opacity: 0.45;
  transition: opacity 0.2s, border-color 0.2s;
  line-height: 1;
}
.lang-opt:hover { opacity: 0.8; }
.lang-opt.active { opacity: 1; border-color: rgba(255,255,255,0.2); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  #fleet .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  #how-it-works .steps-grid { grid-template-columns: repeat(2, 1fr); }
  #how-it-works .steps-grid::before { display: none; }
  #why-us .why-grid { grid-template-columns: repeat(2, 1fr); }
  #rhr-footer .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  #hero { min-height: 60vh; }
  .hero-content { padding: 48px 16px 32px; gap: 16px; }
  .hero-booking .booking-fields { grid-template-columns: 1fr 1fr; }
  .hero-booking { padding: 20px; width: 100%; box-sizing: border-box; }
  .btn-search { width: 100%; }
  .hero-booking .booking-fields { gap: 10px; }
  #fleet .fleet-grid { grid-template-columns: 1fr; }
  #how-it-works .steps-grid { grid-template-columns: 1fr 1fr; }
  #why-us .why-grid { grid-template-columns: 1fr 1fr; }
  #location .location-grid { grid-template-columns: 1fr; gap: 32px; }
  #rhr-footer .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  #rhr-footer .footer-bottom { flex-direction: column; text-align: center; }
  #usp-strip .usp-item { padding: 10px 16px; font-size: 0.8rem; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  #usp-strip .usp-item:last-child { border-bottom: none; }
  #usp-strip .usp-list { flex-direction: column; }
  .nav-hamburger { display: flex; }
  #rhr-nav { height: 64px; overflow: visible; flex-wrap: wrap; align-items: center; padding: 0 20px; }
  #rhr-nav .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--black);
    padding: 16px 0 20px;
    gap: 0;
    list-style: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    z-index: 99;
    justify-content: flex-start;
  }
  #rhr-nav .nav-links.open { display: flex; }
  #rhr-nav .nav-links a { padding: 12px 24px; display: block; font-size: 1rem; color: rgba(255,255,255,0.8); }
  .nav-cta { display: none; }
  #booking .booking-wrap { padding: 28px 20px; }
}

@media (max-width: 480px) {
  #how-it-works .steps-grid { grid-template-columns: 1fr; }
  #why-us .why-grid { grid-template-columns: 1fr; }
}
