/* =============================================
   AVIS TURKEY – RENT A CAR
   style.css – Mobile-First Design
   Font: Outfit • Theme: Red (#CC0000) & White
   ============================================= */

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

:root {
  --red:         #CC0000;
  --red-dark:    #a30000;
  --red-light:   #e8000030;
  --red-glow:    rgba(204,0,0,0.18);
  --white:       #ffffff;
  --off-white:   #f8f9fa;
  --light-grey:  #f2f2f2;
  --mid-grey:    #e0e0e0;
  --text-dark:   #111827;
  --text-mid:    #4b5563;
  --text-light:  #9ca3af;
  --shadow-sm:   0 1px 4px rgba(0,0,0,0.06);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.14);
  --shadow-red:  0 6px 20px rgba(204,0,0,0.25);
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   18px;
  --radius-xl:   24px;
  --transition:  0.2s ease;
  --top-bar-h:   34px;
  --nav-h:       60px;
  --bottom-nav:  70px;
  --font:        'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  padding-bottom: var(--bottom-nav);
  padding-top: calc(var(--top-bar-h) + var(--nav-h));
}

body.mobile-menu-open {
  overflow: hidden;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }
svg { width: 1em; height: 1em; flex-shrink: 0; }

/* ── TOP BAR ── */
.top-bar {
  background: var(--text-dark);
  height: var(--top-bar-h);
  display: flex;
  align-items: center;
  overflow: hidden;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 101;
}

.top-bar-inner {
  width: max-content;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  animation: topBarMarquee 18s linear infinite;
}

.top-bar-icon { font-size: 0.85rem; }

.top-bar-text {
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.2px;
}

.top-bar-sep {
  color: rgba(255,255,255,0.3);
  font-size: 1.1rem;
  line-height: 1;
}


/* ── DESKTOP & MOBILE HEADER ── */
.desktop-header {
  position: fixed;
  top: var(--top-bar-h); left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 2px solid var(--red);
  box-shadow: 0 1px 12px rgba(0,0,0,0.08);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  gap: 16px;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  justify-self: start;
}

.logo-img { height: 48px; width: auto; display: block; }

/* CENTER NAV (Hidden on mobile) */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 4px;
  justify-self: center;
}

.nav-link {
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--red);
  background: rgba(204,0,0,0.06);
}

/* RIGHT ACTIONS (Hidden on mobile) */
.header-actions {
  display: none;
  align-items: center;
  gap: 8px;
  justify-self: end;
}

/* MOBILE MENU BTN */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--text-dark);
}

.btn-call-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
  background: var(--red);
  border: 1.5px solid var(--red);
}

.btn-call-header:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);

}

.btn-call-header svg { font-size: 1rem; }

.btn-whatsapp-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  background: #25d366;
  color: #fff;
  border: 1.5px solid transparent;
  transition: background var(--transition), border-color var(--transition);
}

.btn-whatsapp-header:hover { background: #1da851; }
.btn-whatsapp-header svg { font-size: 1rem; }

/* ── HERO SECTION ── */
.hero {
  position: relative;
  min-height: calc(100svh - var(--top-bar-h) - var(--nav-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/modern_hero_suv.jpg') center/cover no-repeat;
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.58) 52%, rgba(0,0,0,0.78) 100%);
  pointer-events: none;
}

.hero-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

.hero-content {
  position: relative;
  z-index: 2;
  padding: 28px 20px 74px;
  max-width: 520px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(204,0,0,0.10);
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 50px;
  margin-bottom: 20px;
  border: 1px solid rgba(204,0,0,0.20);
  animation: fadeSlideUp 0.6s ease forwards;
}

.hero-title {
  font-size: 2.05rem;
  font-weight: 900;
  line-height: 1.08;
  color: var(--text-dark);
  margin-bottom: 18px;
  animation: fadeSlideUp 0.7s ease 0.1s forwards;
  opacity: 0;
}

.hero-title-highlight {
  color: var(--red);
  display: block;
}

.hero-subtitle {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 24px;
  animation: fadeSlideUp 0.7s ease 0.2s forwards;
  opacity: 0;
}

.hero-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 28px;
  animation: fadeSlideUp 0.7s ease 0.3s forwards;
  opacity: 0;
}

.hero-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}

.hero-btn svg { font-size: 1.1rem; }

.hero-buttons .btn-primary {
  grid-column: 1 / -1;
}

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  animation: fadeSlideUp 0.7s ease 0.4s forwards;
  opacity: 0;
}

.hero-stat { text-align: center; }

.stat-num {
  display: block;
  font-size: 1.22rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}

.stat-label {
  font-size: 0.66rem;
  color: var(--text-light);
  font-weight: 500;
  white-space: nowrap;
}

.stat-divider {
  width: 1px;
  height: 30px;
  background: var(--mid-grey);
  flex-shrink: 0;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}

.scroll-dot {
  width: 24px;
  height: 40px;
  border: 2px solid var(--mid-grey);
  border-radius: 14px;
  position: relative;
}

.scroll-dot::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--red);
  border-radius: 2px;
  animation: scrollBounce 1.6s ease infinite;
}

@keyframes topBarMarquee {
  from { transform: translateX(100vw); }
  to { transform: translateX(-100%); }
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
}

.btn-primary:hover {
  background: var(--red-dark);
  box-shadow: var(--shadow-red);
}

.btn-outline {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}

.btn-outline:hover {
  background: var(--red);
  color: var(--white);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border: 2px solid #25D366;
}

.btn-whatsapp:hover {
  background: #1fae54;
  border-color: #1fae54;
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}

/* ── CITIES QUICK LINKS STRIP ── */
.cities-strip {
  background: var(--text-dark);
  padding: 14px 20px;
  overflow-x: auto;
  scrollbar-width: none;
}

.cities-strip::-webkit-scrollbar { display: none; }

.cities-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.cs-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.cs-links {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.cs-links::-webkit-scrollbar { display: none; }

.cs-link {
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  transition: all var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.cs-link:hover {
  background: var(--red);
  color: var(--text-dark);
  border-color: var(--red);
}

.cs-all {
  color: var(--red);
  border-color: rgba(204,0,0,0.4);
  background: rgba(204,0,0,0.1);
}

/* ── FEATURES STRIP ── */
.features-strip {
  background: var(--white);
  border-top: 1px solid var(--light-grey);
  border-bottom: 1px solid var(--light-grey);
  padding: 20px 20px;
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--light-grey);
  transition: box-shadow var(--transition), transform var(--transition);
}

.feature-item:hover {
  box-shadow: var(--shadow-md);
}

.feature-icon { font-size: 1.6rem; flex-shrink: 0; }

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.feature-text strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
}

.feature-text span {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ── SECTION COMMONS ── */
.section-header {
  text-align: center;
  padding: 48px 20px 32px;
  max-width: 600px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  background: var(--red-light);
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  border: 1px solid rgba(204,0,0,0.15);
}

.section-title {
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ── FLEET SECTION ── */
.fleet { padding-bottom: 0; background: var(--off-white); }

.fleet .section-title {
  color: var(--red);
}

/* Filter tabs */
.filter-tabs {
  display: flex;
  gap: 8px;
  padding: 0 16px 24px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  max-width: 1200px;
  margin: 0 auto;
}

.filter-tabs::-webkit-scrollbar { display: none; }

.filter-btn {
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  background: var(--white);
  border: 1.5px solid var(--mid-grey);
  white-space: nowrap;
  transition: all var(--transition);
  flex-shrink: 0;
}

.filter-btn:hover { border-color: var(--red); color: var(--red); }

.filter-btn.active {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: var(--shadow-red);
}

/* Cars Grid */
.cars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 0 16px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── CAR CARD ── */
.car-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--mid-grey);
  transition: box-shadow var(--transition), border-color var(--transition);
  position: relative;
}

.car-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(204,0,0,0.25);
}

.car-card.hidden { display: none; }

/* Car image */
.car-image-wrap {
  position: relative;
  background: linear-gradient(145deg, #f8f8f8 0%, #efefef 100%);
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.car-badges {
  position: absolute;
  top: 8px;
  left: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  max-width: calc(100% - 88px);
  z-index: 2;
}

.badge {
  padding: 4px 6px;
  border-radius: 5px;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.badge-ekonomik { background: var(--red); color: var(--white); }
.badge-konfor   { background: #1a6dd6; color: var(--white); }
.badge-suv      { background: #2a9d00; color: var(--white); }
.badge-premium  { background: #7c3aed; color: var(--white); }
.badge-kasko    { background: rgba(0,0,0,0.65); color: var(--white); backdrop-filter: blur(4px); }

.car-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Car body */
.car-body { padding: 20px; }

.car-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.car-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.spec {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: var(--text-mid);
  font-weight: 500;
}

.spec svg { font-size: 0.9rem; color: var(--text-light); }

/* Price block */
.price-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: 10px;
}

.price-monthly,
.price-daily {
  background: var(--red);
  color: var(--white);
}

.price-deposit {
  background: transparent;
  border: 1.5px dashed var(--mid-grey);
}

.price-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  opacity: 0.85;
}

.price-amount {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}

.price-amount-deposit {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--red);
}

.price-deposit .price-label { color: var(--text-light); }

/* Car actions */
.car-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.btn-rent, .btn-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 6px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 500;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.btn-rent svg, .btn-call svg { font-size: 1rem; }

.btn-rent {
  background: var(--red);
  color: var(--white);
  border: 1.5px solid var(--red);
}

.btn-rent:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.btn-call {
  background: var(--white);
  color: var(--red);
  border: 1.5px solid var(--mid-grey);
}

.btn-call:hover {
  background: rgba(204,0,0,0.05);
  border-color: var(--red);
}

/* ── CONTACT CTA ── */
.contact-cta {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  padding: 60px 20px;
  overflow: hidden;
  position: relative;
}

.contact-cta::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}

.contact-cta::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-text { text-align: center; }

.cta-text .section-tag {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}

.cta-title {
  font-size: clamp(1.8rem, 6vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}

.cta-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.cta-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 15px 26px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: all var(--transition);
}

.cta-btn svg { font-size: 1.1rem; }

.cta-text .btn-primary {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}

.cta-text .btn-primary:hover {
  background: rgba(255,255,255,0.9);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.cta-visual { width: 100%; max-width: 400px; }

.cta-car-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.cta-car-img { width: 100%; height: auto; display: block; }

/* ── FOOTER ── */
.footer {
  background: var(--text-dark);
  padding: 48px 20px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.footer-col {}

.footer-logo-img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 14px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 12px;
  max-width: 280px;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

.footer-heading {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-address {
  max-width: 260px;
  margin: -4px 0 12px;
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  line-height: 1.5;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a,
.footer-links li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
  transition: color var(--transition);
}

.footer-links a:hover,
.footer-links li a:hover { color: var(--red); }

.footer-contact-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  transition: opacity var(--transition);
}

.footer-btn:hover { opacity: 0.85; }

.footer-btn-wa {
  background: #25d366;
  color: #fff;
}

.footer-btn-tel {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.15);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-direction: column;
  align-items: flex-start;
}

.logo-icon-sm { width: 28px; height: 28px; }
.logo-icon-sm svg { width: 100%; height: 100%; }

.footer-logo-text {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: 2px;
}

.footer-logo-sub {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* ── FAQ SECTION ── */
.faq-section {
  padding: 80px 20px;
  background: var(--off-white);
}

.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--mid-grey);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  padding: 18px 20px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--red);
  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-content {
  padding: 0 20px 20px;
  color: var(--text-mid);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ── MOBILE BOTTOM NAV ── */
/* ── MOBILE BOTTOM NAV ── */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--bottom-nav);
  background: var(--text-dark);
  border-top: 1.5px solid #222;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 4px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
}

.mob-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1;
  padding: 8px 4px;
  color: rgba(255,255,255,0.6);
  font-size: 0.65rem;
  font-weight: 600;
  transition: color var(--transition), transform var(--transition);
  text-align: center;
}

.mob-nav-item:active { transform: scale(0.92); }

.mob-nav-item.active { color: var(--red); }

.mob-nav-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.mob-nav-icon svg { width: 24px; height: 24px; }

.mob-nav-label { white-space: nowrap; }

.mob-nav-center { color: var(--red); }

/* ── ANIMATIONS ── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes carFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50%       { transform: translateX(-50%) translateY(8px); opacity: 0.5; }
}

/* ── TABLET (640px+) ── */
@media (min-width: 640px) {
  .features-inner { grid-template-columns: repeat(4, 1fr); }
  .cars-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { flex-direction: row; text-align: left; }
  .cta-text { text-align: left; flex: 1; }
  .cta-text .section-tag { display: inline-block; }
  .cta-sub { margin-left: 0; margin-right: 0; }
  .cta-buttons { justify-content: flex-start; }
}

/* ── DESKTOP (1024px+) ── */
@media (min-width: 1024px) {
  body { padding-bottom: 0; } /* no bottom nav space on desktop */

  .top-bar-inner {
    width: auto;
    max-width: 1200px;
    animation: none;
  }

  .desktop-header { display: block; }
  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    padding: 0 24px;
  }
  .desktop-nav { display: flex; }
  .header-actions { display: flex; }
  .mobile-menu-btn { display: none; }
  .logo-img { height: 48px; }
  .btn-rent, .btn-call { padding: 11px 10px; font-size: 0.82rem; }

  .mobile-bottom-nav { display: none; }

  .hero {
    min-height: 70svh;
  }

  .hero-bg::before {
    background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
  }

  .hero-content {
    padding: 60px 48px 80px;
    max-width: 580px;
  }

  .hero-badge {
    font-size: 0.78rem;
    padding: 6px 14px;
  }

  .hero-title {
    font-size: 3.4rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
    margin-bottom: 32px;
  }

  .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
  }

  .hero-buttons .btn-primary {
    grid-column: auto;
  }

  .hero-btn {
    min-height: auto;
    padding: 14px 22px;
    border-radius: 12px;
    font-size: 0.9rem;
  }

  .hero-stats {
    justify-content: flex-start;
    gap: 20px;
  }

  .stat-num {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.72rem;
  }

  .stat-divider {
    height: 36px;
  }

  .car-badges {
    top: 14px;
    left: 14px;
    gap: 6px;
    max-width: calc(100% - 128px);
  }

  .badge {
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 0.68rem;
    letter-spacing: 0.5px;
  }

  .hero-car-visual {
    width: 45%;
    right: 2%;
    bottom: 15%;
  }

  .cars-grid { grid-template-columns: repeat(3, 1fr); }

  .fleet { padding-bottom: 0; }
  .section-header { padding: 64px 0 40px; }
  .filter-tabs { padding: 0 0 28px; }

  .filter-tabs { padding: 0 0 28px; }

  /* footer 3-col */
  .footer-inner { grid-template-columns: 1.4fr 1fr 1fr; }
}

/* ── LARGE DESKTOP (1280px+) ── */
@media (min-width: 1280px) {
  .cars-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── SCROLL ANIMATIONS (IntersectionObserver) ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Discount Badge */
.discount-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--red);
  color: #fff;
  padding: 5px 7px;
  font-size: 0.62rem;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(229, 9, 20, 0.4);
  transform: none;
  z-index: 10;
  animation: pulse-discount 2s infinite;
}

@keyframes pulse-discount {
  0% { transform: scale(1); }
  50% { transform: scale(1.04); box-shadow: 0 6px 14px rgba(229, 9, 20, 0.6); }
  100% { transform: scale(1); }
}

@media (min-width: 1024px) {
  .discount-badge {
    top: 10px;
    right: 10px;
    padding: 8px 12px;
    font-size: 0.875rem;
    border-radius: 20px;
    transform: rotate(10deg);
  }

  @keyframes pulse-discount {
    0% { transform: rotate(10deg) scale(1); }
    50% { transform: rotate(10deg) scale(1.05); box-shadow: 0 6px 14px rgba(229, 9, 20, 0.6); }
    100% { transform: rotate(10deg) scale(1); }
  }
}


/* Modern Hero Overrides */
.hero-title, .hero-subtitle { color: #fff; }
.hero-badge { background: rgba(229,9,20,0.2); border-color: rgba(229,9,20,0.4); color: #ff4d4d; }
.hero-title-highlight { color: #ff4d4d; text-shadow: 0 0 20px rgba(229,9,20,0.4); }
.hero-stat .stat-label { color: rgba(255,255,255,0.8); }

/* Modern Contact Overrides */
.contact-cta {
  background: url('images/modern_contact_sedan.jpg') center/cover no-repeat;
  position: relative;
}
.contact-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
  border-radius: 0;
  width: 100%; height: 100%; top: 0; right: 0; left: 0; bottom: 0;
}
.contact-cta::after { display: none; }

/* ── MOBILE MENU OVERLAY ── */
.mobile-menu-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(5px);
  z-index: 1000;
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-content {
  width: min(88vw, 360px);
  background: var(--white);
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 22px 20px 20px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -4px 0 24px rgba(0,0,0,0.2);
}

.mobile-menu-overlay.active .mobile-menu-content {
  transform: translateX(0);
}

.mobile-menu-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text-dark);
  border: 1px solid var(--mid-grey);
  border-radius: 8px;
}

.mobile-menu-brand {
  width: 132px;
  height: auto;
  margin-bottom: 22px;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 8px;
  border-top: 1px solid var(--mid-grey);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  border-bottom: 1px solid var(--mid-grey);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-nav-link svg {
  width: 22px;
  height: 22px;
  color: var(--red);
}

.mobile-nav-link:hover, .mobile-nav-link:active {
  color: var(--red);
}

.mobile-menu-actions {
  margin-top: auto;
  display: flex;
  flex-direction: row;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--mid-grey);
}
.mobile-menu-actions .btn-call-header,
.mobile-menu-actions .btn-whatsapp-header {
  width: 100%;
  justify-content: center;
  padding: 12px 8px;
  font-size: 0.82rem;
  border-radius: 8px;
}
