/* ============================================================
   Madeira Car Hub — Main Stylesheet
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  color: #1a2332;
  background: #fff;
  line-height: 1.65;
}

/* ---------- CSS Variables ---------- */
:root {
  --pri: #0a356e;
  --pri-light: #1565c0;
  --ocean: #0288d1;
  --teal: #0097b2;
  --teal-light: #00bcd4;
  --bg: #f0f8ff;
  --bg-alt: #e3f2fd;
  --text: #1a2332;
  --muted: #5a6a7e;
  --border: #b3d9f5;
  --white: #fff;
  --shadow: 0 2px 14px rgba(10, 53, 110, .09);
  --shadow-lg: 0 8px 32px rgba(10, 53, 110, .16);
  --r: 12px;
  --wrap: 1200px;
}

.search-cigarette__wrap, .vehicle-card-footer__view, .search__button-more {
  background: var(--ocean) !important;
}

/* ============================================================
   Layout
   ============================================================ */
.container { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.section { padding: 60px 0; }
.section-alt { background: var(--bg-alt); }
.section-light { background: var(--bg); }
.section-title { text-align: center; margin-bottom: 44px; }
.section-title h2 { margin-bottom: 10px; }
.section-title p { color: var(--muted); max-width: 680px; margin: 0 auto; }

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4 { color: var(--pri); line-height: 1.3; }
h2 { font-size: clamp(1.45rem, 2.8vw, 2rem); margin-bottom: .8rem; }
h3 { font-size: clamp(1rem, 1.8vw, 1.3rem); }
p { color: #374151; margin-bottom: .9rem; }
a { color: var(--pri-light); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 26px;
  border-radius: 8px;
  font-size: .97rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  border: none;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--ocean), var(--teal));
  color: #fff;
  box-shadow: 0 4px 16px rgba(2, 136, 209, .35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(2, 136, 209, .45);
  text-decoration: none;
  color: #fff;
}
.btn-outline { background: transparent; color: var(--pri); border: 2px solid var(--pri); }
.btn-outline:hover { background: var(--pri); color: #fff; text-decoration: none; }
.btn-sm { padding: 9px 18px; font-size: .9rem; }

/* ============================================================
   Utility
   ============================================================ */
.card { background: var(--white); border-radius: var(--r); box-shadow: var(--shadow); padding: 24px; transition: box-shadow .2s; }
.card:hover { box-shadow: var(--shadow-lg); }
.icon-sm { font-size: 18px !important; }
.mb-24 { margin-bottom: 24px; }
.mb-16 { margin-bottom: 16px; }

/* ============================================================
   Avatar color variants
   ============================================================ */
.av--ocean { background: #0288d1; }
.av--teal  { background: #0097b2; }
.av--navy  { background: #1565c0; }
.av--cyan  { background: #00acc1; }
.av--dark  { background: #0a356e; }

/* ============================================================
   Rating bar — uses CSS custom property --w set inline
   ============================================================ */
.bar-fill { height: 100%; background: #fbbf24; border-radius: 3px; width: var(--w, 0%); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 14px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.logo-link { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.logo-img { height: 40px; width: auto; filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .3)); }
.main-nav { display: flex; align-items: center; gap: 3px; list-style: none; }
.main-nav li a {
  display: block;
  padding: 8px 13px;
  color: rgba(255, 255, 255, .9);
  font-size: .88rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all .2s;
  white-space: nowrap;
}
.main-nav li a:hover,
.main-nav li a.active {
  background: rgba(255, 255, 255, .18);
  color: #fff;
  text-decoration: none;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 9px;
  background: rgba(255, 255, 255, .15);
  border-radius: 8px;
  border: none;
}
.menu-toggle span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: url('/img/hero.webp') center / cover no-repeat;
  min-height: 400px;
  display: flex;
  flex-direction: column;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(5, 20, 55, .78) 0%, rgba(8, 40, 95, .65) 55%, rgba(2, 120, 200, .42) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 130px 0 40px; text-align: center; max-width: 1160px; }
.hero-content h1 {
  color: #fff;
  font-size: clamp(1.5rem, 3.8vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .3);
}
.hero-desc {
  color: rgba(255, 255, 255, .9);
  font-size: clamp(.9rem, 1.8vw, 1.05rem);
  margin-bottom: 22px;
}
.hero-badges { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; }
.hero-badge {
  background: rgba(255, 255, 255, .16);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .32);
  color: #fff;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: .85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-badge .chk { color: #4ade80; font-weight: 800; }

/* ============================================================
   PAGE HERO (utility & sub-pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--pri) 0%, var(--ocean) 100%);
  min-height: 220px;
  display: flex;
  align-items: center;
  padding: 80px 0 40px;
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/img/hero.webp') center / cover no-repeat;
  opacity: .18;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 {
  color: #fff;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 10px;
  text-shadow: 0 2px 6px rgba(0,0,0,.25);
}
.page-hero p {
  color: rgba(255,255,255,.88);
  font-size: clamp(.9rem, 1.6vw, 1rem);
  max-width: 640px;
  margin-bottom: 16px;
  text-shadow: 0 1px 3px rgba(0,0,0,.2);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 50px; }
.about-card {
  background: var(--white);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  border-left: 4px solid var(--ocean);
  transition: transform .2s, box-shadow .2s;
}
.about-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.about-card-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--bg), #c8e6f9);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; color: var(--ocean);
}
.about-card-icon .material-icons-outlined { font-size: 28px; }
.about-card h3 { font-size: 1rem; margin-bottom: 7px; }
.about-card p { color: var(--muted); font-size: .91rem; margin: 0; }
.how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.how-step { text-align: center; padding: 20px 16px; }
.how-num {
  width: 50px; height: 50px; border-radius: 50%;
  background: linear-gradient(135deg, var(--ocean), var(--teal));
  color: #fff; font-size: 1.3rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 4px 14px rgba(2,136,209,.3);
}
.how-step h3 { font-size: .95rem; margin-bottom: 7px; }
.how-step p { font-size: .85rem; color: var(--muted); margin: 0; }

/* ============================================================
   CONTACTS PAGE
   ============================================================ */
.contacts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-card {
  background: var(--white);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding: 32px;
}
.contact-row {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.contact-row:last-child { border-bottom: none; }
.contact-row .ci {
  width: 42px; height: 42px;
  background: var(--bg);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ocean); flex-shrink: 0;
}
.contact-row .cl-label { font-size: .78rem; color: var(--muted); margin-bottom: 3px; }
.contact-row .cl-val { font-weight: 600; color: var(--pri); font-size: .97rem; }
.contact-row .cl-val a { color: var(--pri-light); }
.map-wrap { border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); }
.map-wrap iframe { display: block; width: 100%; height: 380px; border: 0; }
.nav-btn { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; }

/* ============================================================
   PRIVACY POLICY PAGE
   ============================================================ */
.privacy-content { max-width: 860px; margin: 0 auto; }
.privacy-content h2 { font-size: 1.25rem; margin: 36px 0 10px; padding-bottom: 6px; border-bottom: 2px solid var(--border); }
.privacy-content h3 { font-size: 1rem; margin: 22px 0 8px; color: var(--pri-light); }
.privacy-content p { font-size: .93rem; color: #374151; margin-bottom: .9rem; }
.privacy-content ul { list-style: disc; padding-left: 22px; margin-bottom: .9rem; }
.privacy-content ul li { font-size: .93rem; color: #374151; margin-bottom: 5px; }
.privacy-content a { color: var(--pri-light); }
.last-updated { display: inline-block; background: var(--bg); color: var(--muted); padding: 6px 14px; border-radius: 20px; font-size: .82rem; margin-bottom: 30px; }

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .contacts-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .how-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   BOOKING WIDGET
   ============================================================ */
.booking-section { background: var(--white); padding: 32px 0 40px; }

/* ============================================================
   HOW TO RENT - STEPS
   ============================================================ */
.steps-wrapper { position: relative; }
.steps-line {
  position: absolute;
  top: 46px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--teal-light), var(--ocean));
  z-index: 0;
}
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; z-index: 1; }
.step-card { text-align: center; padding: 18px 14px; }
.step-num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ocean), var(--teal));
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(2, 136, 209, .35);
  border: 3px solid #fff;
}
.step-card h3 { font-size: .97rem; margin-bottom: 7px; color: var(--pri); }
.step-card p { font-size: .87rem; color: var(--muted); margin: 0; }

/* ============================================================
   ADVANTAGES
   ============================================================ */
.adv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.adv-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--ocean);
  transition: transform .2s, box-shadow .2s;
}
.adv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.adv-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--bg), #c8e6f9);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--ocean);
}
.adv-icon .material-icons-outlined { font-size: 26px; }
.adv-card h3 { font-size: 1rem; margin-bottom: 8px; }
.adv-card p { color: var(--muted); font-size: .91rem; margin: 0; }

/* ============================================================
   WHY RENT
   ============================================================ */
.why-grid { display: grid; grid-template-columns: 1fr 400px; gap: 50px; align-items: center; }
.why-img { border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-lg); }
.why-img img { width: 100%; height: auto; margin: 0 auto; display: block; }
.why-list { list-style: none; margin: 14px 0 20px; }
.why-list li { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 10px; color: #374151; font-size: .95rem; }
.why-list li .material-icons-outlined { color: var(--teal); font-size: 20px; flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   PRICES
   ============================================================ */
.price-intro { margin-bottom: 24px; }
.price-table-title { margin-bottom: 16px; }
.price-types { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 36px; }
.price-type {
  background: var(--white);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding: 20px 16px;
  text-align: center;
  border-bottom: 3px solid var(--teal-light);
}
.price-type .type-emoji { font-size: 2.2rem; margin-bottom: 7px; }
.price-type h3 { font-size: .92rem; margin-bottom: 5px; }
.price-type .from { font-size: 1.55rem; font-weight: 800; color: var(--ocean); }
.price-type .perday { font-size: .75rem; color: var(--muted); }
.price-tips {
  background: var(--bg);
  border-radius: var(--r);
  padding: 22px 24px;
  margin-bottom: 32px;
  border-left: 4px solid var(--ocean);
}
.price-tips h3 { margin-bottom: 11px; }
.tip-list { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.tip-list li { display: flex; align-items: center; gap: 9px; font-size: .91rem; color: #374151; }
.tip-list li::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
.table-wrap { overflow-x: auto; border-radius: var(--r); box-shadow: var(--shadow); }
.price-tbl { width: 100%; border-collapse: collapse; font-size: .9rem; }
.price-tbl th {
  background: linear-gradient(135deg, var(--pri), var(--pri-light));
  color: #fff;
  padding: 12px 15px;
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
}
.price-tbl th:first-child { border-radius: 12px 0 0 0; }
.price-tbl th:last-child { border-radius: 0 12px 0 0; }
.price-tbl td { padding: 10px 15px; border-bottom: 1px solid var(--border); color: #374151; }
.price-tbl tr:nth-child(even) td { background: var(--bg); }
.price-tbl tr:last-child td { border-bottom: none; }
.price-tbl .pl { color: var(--teal); font-weight: 600; }
.price-tbl .ph { color: var(--pri); font-weight: 700; }

/* ============================================================
   REVIEWS
   ============================================================ */
.rating-overview {
  text-align: center;
  background: linear-gradient(135deg, var(--pri), var(--ocean));
  color: #fff;
  border-radius: var(--r);
  padding: 30px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.rating-score { font-size: 4rem; font-weight: 800; line-height: 1; }
.rating-stars { font-size: 1.7rem; color: #fbbf24; margin: 4px 0; }
.rating-count { font-size: .9rem; opacity: .85; }
.rating-bars { text-align: left; }
.rating-bar-row { display: flex; align-items: center; gap: 10px; margin-bottom: 5px; font-size: .83rem; color: rgba(255, 255, 255, .85); }
.bar-bg { width: 110px; height: 6px; background: rgba(255, 255, 255, .25); border-radius: 3px; overflow: hidden; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card { background: var(--white); border-radius: var(--r); box-shadow: var(--shadow); padding: 20px; }
.review-head { display: flex; align-items: center; gap: 11px; margin-bottom: 10px; }
.av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.rev-name { font-weight: 600; font-size: .93rem; color: var(--pri); }
.rev-loc { font-size: .78rem; color: var(--muted); display: flex; align-items: center; gap: 3px; }
.rev-loc .material-icons-outlined { font-size: 13px; color: var(--teal); }
.rev-stars { color: #fbbf24; font-size: .85rem; margin-bottom: 7px; }
.review-card p { font-size: .88rem; color: #374151; line-height: 1.55; margin: 0; }

/* ============================================================
   TRAFFIC RULES
   ============================================================ */
.traffic-main {
  background: var(--white);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding: 26px;
  margin-bottom: 22px;
}
.traffic-rules-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
  margin-top: 14px;
}
.traffic-rules-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .91rem;
  color: #374151;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
}
.traffic-rules-list li .material-icons-outlined { color: var(--ocean); font-size: 19px; flex-shrink: 0; }
.traffic-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tcol { background: var(--white); border-radius: var(--r); box-shadow: var(--shadow); padding: 22px 20px; }
.tcol-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.tcol-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--pri-light), var(--teal));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.tcol-icon .material-icons-outlined { font-size: 26px; }
.tcol h3 { font-size: 1.15rem; font-weight: 800; margin: 0; color: var(--pri); line-height: 1.2; }
.tcol p { font-size: .88rem; color: var(--muted); margin: 0; }

/* ============================================================
   ATTRACTIONS
   ============================================================ */
.attr-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.attr-card {
  background: var(--white);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding: 22px;
  transition: transform .2s, box-shadow .2s;
}
.attr-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.attr-icon { font-size: 2rem; margin-bottom: 8px; }
.attr-card h3 { font-size: 1rem; margin-bottom: 7px; }
.attr-card p { font-size: .87rem; color: var(--muted); margin: 0 0 11px; }
.attr-meta { display: flex; gap: 10px; flex-wrap: wrap; }
.attr-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--bg);
  padding: 3px 9px;
  border-radius: 12px;
  font-size: .78rem;
  color: var(--muted);
}
.attr-meta span .material-icons-outlined { font-size: 13px; color: var(--ocean); }

/* ============================================================
   TOP CARS
   ============================================================ */
.cars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.car-card { background: var(--white); border-radius: var(--r); box-shadow: var(--shadow); overflow: hidden; transition: transform .2s, box-shadow .2s; }
.car-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.car-img-wrap { position: relative; height: 195px; overflow: hidden; }
.car-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; padding: 20px; }
.car-card:hover .car-img-wrap img { transform: scale(1.05); }
.car-cat {
  position: absolute;
  top: 11px;
  left: 11px;
  background: rgba(2, 136, 209, .88);
  backdrop-filter: blur(4px);
  color: #fff;
  padding: 3px 11px;
  border-radius: 20px;
  font-size: .76rem;
  font-weight: 600;
}
.car-body { padding: 18px 20px; }
.car-body h3 { font-size: 1.1rem; margin-bottom: 13px; }
.car-specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 7px; margin-bottom: 15px; }
.cs { display: flex; align-items: center; gap: 6px; font-size: .83rem; color: #374151; }
.cs .material-icons-outlined { font-size: 17px; color: var(--ocean); }
.car-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 13px; border-top: 1px solid var(--border); }
.car-price { color: var(--ocean); font-size: 1.35rem; font-weight: 800; }
.car-price small { font-size: .72rem; color: var(--muted); font-weight: 400; display: block; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; align-items: start; }
.faq-item { background: var(--white); border-radius: var(--r); box-shadow: var(--shadow); overflow: hidden; }
.faq-q {
  padding: 17px 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-weight: 600;
  font-size: .93rem;
  color: var(--pri);
  transition: background .2s;
  user-select: none;
}
.faq-q:hover { background: var(--bg); }
.faq-q .material-icons-outlined { flex-shrink: 0; color: var(--ocean); transition: transform .3s; }
.faq-item.open .faq-q { background: var(--bg); }
.faq-item.open .faq-q .material-icons-outlined { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 18px 16px; font-size: .9rem; color: #374151; line-height: 1.6; }
.faq-item.open .faq-a { max-height: 400px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: linear-gradient(160deg, #081b38, #0a2f60); color: rgba(255, 255, 255, .75); padding: 52px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.footer-logo { height: 36px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer-desc { color: rgba(255, 255, 255, .6); font-size: .88rem; margin-bottom: 16px; }
.f-contact a {
  color: rgba(255, 255, 255, .8);
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .88rem;
  margin-bottom: 8px;
}
.f-contact a:hover { color: #fff; text-decoration: none; }
.f-contact .material-icons-outlined { font-size: 18px; }
.footer-col h4 { color: #fff; font-size: .93rem; margin-bottom: 14px; font-weight: 600; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255, 255, 255, .6); font-size: .88rem; transition: color .2s; }
.footer-links a:hover { color: #fff; text-decoration: none; }
.footer-bottom { padding: 18px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-copy { font-size: .82rem; color: rgba(255, 255, 255, .5); }
.footer-seo { font-size: .78rem; color: rgba(255, 255, 255, .38); max-width: 560px; text-align: center; line-height: 1.5; }
.footer-legal { display: flex; gap: 18px; list-style: none; }
.footer-legal a { color: rgba(255, 255, 255, .5); font-size: .82rem; }
.footer-legal a:hover { color: #fff; text-decoration: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-img { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps-line { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 44px 0; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .adv-grid { grid-template-columns: 1fr; }
  .price-types { grid-template-columns: repeat(2, 1fr); }
  .tip-list { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .traffic-rules-list { grid-template-columns: 1fr; }
  .traffic-cols { grid-template-columns: 1fr; }
  .attr-grid { grid-template-columns: repeat(2, 1fr); }
  .cars-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-seo { text-align: center; }
  .rating-overview { gap: 20px; }

  /* Mobile Nav */
  .main-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(6, 18, 45, .97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    z-index: 200;
    padding: 30px 20px;
  }
  .main-nav.open { display: flex; }
  .main-nav li { width: 100%; max-width: 280px; }
  .main-nav li a { display: block; padding: 13px 20px; font-size: 1rem; border-radius: 8px; }
  .menu-toggle { display: flex; margin-left: auto; }
  .menu-toggle.is-open {
    position: fixed;
    top: 18px;
    right: 16px;
    z-index: 201;
    background: rgba(255,255,255,.12);
    border-radius: 8px;
    padding: 8px;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .price-types { grid-template-columns: 1fr; }
  .attr-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 1.35rem; }
}
