/* ============================================================
   Heraklion Car Hub - Main Stylesheet
   Design: Minoan-inspired wine & antique gold palette
   Class prefix: hh- (Heraklion Hub)
   ============================================================ */

*, *::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: #1a0f0a;
  background: #fff;
  line-height: 1.65;
}

/* ---------- CSS Variables ---------- */
:root {
  --pri: #3d1a24;
  --pri-light: #6a2d40;
  --accent: #b8860b;
  --accent-hover: #8b6508;
  --accent-light: #daa520;
  --bg: #fdf8f2;
  --bg-alt: #f9f1e7;
  --text: #1a0f0a;
  --muted: #6b7280;
  --border: #e8d5b0;
  --white: #fff;
  --shadow: 0 2px 16px rgba(61, 26, 36, .10);
  --shadow-lg: 0 8px 36px rgba(61, 26, 36, .18);
  --r: 12px;
  --wrap: 1200px;
}

/* LocalRent widget overrides */
.search-cigarette__wrap, .vehicle-card-footer__view, .search__button-more {
  background: var(--accent) !important;
}

/* ============================================================
   Layout
   ============================================================ */
.hh-wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.hh-sect { padding: 60px 0; }
.hh-sect--alt { background: var(--bg-alt); }
.hh-sect--light { background: var(--bg); }
.hh-sect__head { text-align: center; margin-bottom: 44px; }
.hh-sect__head h2 { margin-bottom: 10px; }
.hh-sect__head 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
   ============================================================ */
.hh-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;
}
.hh-btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: #fff;
  box-shadow: 0 4px 16px rgba(184, 134, 11, .35);
}
.hh-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 134, 11, .45);
  text-decoration: none;
  color: #fff;
}
.hh-btn--outline { background: transparent; color: var(--pri); border: 2px solid var(--pri); }
.hh-btn--outline:hover { background: var(--pri); color: #fff; text-decoration: none; }

/* ============================================================
   Utility
   ============================================================ */
.hh-card { background: var(--white); border-radius: var(--r); box-shadow: var(--shadow); padding: 24px; transition: box-shadow .2s; }
.hh-card:hover { box-shadow: var(--shadow-lg); }

/* ============================================================
   Rating bar
   ============================================================ */
.hh-rating__bar-fill { height: 100%; background: #d4a017; border-radius: 3px; width: var(--w, 0%); }

/* ============================================================
   Avatar color variants
   ============================================================ */
.hh-av--wine { background: #3d1a24; }
.hh-av--gold { background: #b8860b; }
.hh-av--burgundy { background: #6a2d40; }
.hh-av--amber { background: #daa520; }
.hh-av--dark { background: #2c1810; }

/* ============================================================
   HEADER
   ============================================================ */
.hh-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
}
.hh-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.hh-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.hh-logo__img { height: 40px; width: auto; filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .3)); }
.hh-nav { display: flex; align-items: center; gap: 3px; list-style: none; }
.hh-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;
}
.hh-nav li a:hover,
.hh-nav li a.active {
  background: rgba(255, 255, 255, .18);
  color: #fff;
  text-decoration: none;
}
.hh-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 9px;
  background: rgba(255, 255, 255, .15);
  border-radius: 8px;
  border: none;
}
.hh-burger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s; }
.hh-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hh-burger.is-open span:nth-child(2) { opacity: 0; }
.hh-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO (Home page)
   ============================================================ */
.hh-hero {
  position: relative;
  background: url('/img/hero.webp') center / cover no-repeat;
  min-height: 400px;
  display: flex;
  flex-direction: column;
}
.hh-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.hh-hero__body { position: relative; z-index: 2; padding: 120px 0 40px; text-align: center; max-width: 1160px; }
.hh-hero__body 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);
}
.hh-hero__desc {
  color: rgba(255, 255, 255, .9);
  font-size: clamp(.9rem, 1.8vw, 1.05rem);
  margin-bottom: 22px;
}
.hh-hero__tags { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; }
.hh-hero__tag {
  background: rgba(184, 134, 11, .25);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(218, 165, 32, .5);
  color: #fff;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: .85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hh-hero__tag .hh-chk { color: #4ade80; font-weight: 800; }

/* ============================================================
   PAGE HERO (sub-pages)
   ============================================================ */
.hh-page-hero {
  background: url('/img/hero.webp') center / cover no-repeat;
  padding: 110px 0 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hh-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  pointer-events: none;
}
.hh-page-hero .hh-wrap { position: relative; z-index: 2; }
.hh-page-hero h1 {
  color: #fff;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin: 0 0 12px;
}
.hh-page-hero p {
  color: rgba(255, 255, 255, .88);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

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

/* ============================================================
   HOW TO RENT - STEPS
   Design: rounded rectangle with outer glow ring
   ============================================================ */
.hh-steps { position: relative; }
.hh-steps__line {
  position: absolute;
  top: 46px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent-light), var(--accent));
  z-index: 0;
}
.hh-steps__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; z-index: 1; }
.hh-steps__card { text-align: center; padding: 18px 14px; }
.hh-steps__num {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--pri), var(--pri-light));
  color: var(--accent-light);
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 0 0 4px rgba(184, 134, 11, .25), 0 4px 16px rgba(61, 26, 36, .3);
}
.hh-steps__card h3 { font-size: .97rem; margin-bottom: 7px; color: var(--pri); }
.hh-steps__card p { font-size: .87rem; color: var(--muted); margin: 0; }

/* ============================================================
   ADVANTAGES / PERKS
   Design: border-bottom gold line + ivory background
   ============================================================ */
.hh-perks__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.hh-perks__card {
  background: var(--white);
  border-radius: var(--r);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border-bottom: 4px solid var(--accent);
  transition: transform .2s, box-shadow .2s;
}
.hh-perks__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.hh-perks__icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--bg-alt), #f0dbb5);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--accent);
  border: 1px solid var(--border);
}
.hh-perks__icon .material-icons-outlined { font-size: 26px; }
.hh-perks__card h3 { color: var(--pri); font-size: 1rem; margin-bottom: 10px; }
.hh-perks__card p { font-size: .9rem; color: #374151; line-height: 1.7; margin: 0; }
.hh-perks__card a { color: var(--accent); }

/* ============================================================
   WHY RENT
   ============================================================ */
.hh-why__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.hh-why__text h2 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 800; color: var(--pri); margin: 0 0 16px; }
.hh-why__text p { color: #2d2010; line-height: 1.8; margin: 0 0 14px; }
.hh-why__text p a { color: var(--accent); }
.hh-why__list { list-style: none; margin: 0 0 22px; }
.hh-why__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  font-size: .95rem;
  color: #2d2010;
}
.hh-why__list li:last-child { border-bottom: none; }
.hh-why__list .material-icons-outlined { color: var(--accent); font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.hh-why__img img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  display: block;
}

/* ============================================================
   PRICES
   ============================================================ */
.hh-prices__types { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-bottom: 44px; }
.hh-prices__type {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px 14px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.hh-prices__type:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.hh-prices__type .material-icons-outlined { font-size: 32px; color: var(--accent); margin-bottom: 8px; }
.hh-prices__type-name { font-size: .82rem; font-weight: 700; color: var(--pri); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 4px; }
.hh-prices__type-from { font-size: .8rem; color: var(--muted); }
.hh-prices__type-val { font-size: 1.15rem; font-weight: 800; color: var(--accent); }

.hh-prices__tips {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--r);
  padding: 24px 28px;
  margin-bottom: 40px;
}
.hh-prices__tips h3 { font-size: 1.05rem; color: var(--pri); margin-bottom: 14px; }
.hh-prices__tiplist { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; list-style: none; }
.hh-prices__tiplist li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .9rem;
  color: #2d2010;
}
.hh-prices__tiplist .material-icons-outlined { color: var(--accent); font-size: 18px; margin-top: 1px; flex-shrink: 0; }

.hh-tbl-wrap { overflow-x: auto; }
.hh-tbl {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-width: 700px;
}
.hh-tbl thead { background: linear-gradient(135deg, var(--pri), var(--pri-light)); }
.hh-tbl th {
  padding: 14px 16px;
  text-align: left;
  font-size: .84rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .95);
  white-space: nowrap;
}
.hh-tbl td {
  padding: 12px 16px;
  font-size: .9rem;
  color: #1a0f0a;
  border-bottom: 1px solid var(--border);
}
.hh-tbl tbody tr:last-child td { border-bottom: none; }
.hh-tbl tbody tr:nth-child(odd) td { background: var(--bg); }
.hh-tbl td.pl { color: var(--accent-hover); font-weight: 700; }
.hh-tbl td.ph { color: #3d1a24; font-weight: 700; }

/* ============================================================
   REVIEWS
   ============================================================ */
.hh-reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 32px; }
.hh-review__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hh-review__stars { display: flex; gap: 3px; color: #d4a017; }
.hh-review__stars .material-icons-outlined { font-size: 18px; }
.hh-review__text { font-size: .9rem; color: #374151; line-height: 1.7; margin: 0; font-style: italic; }
.hh-review__author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.hh-review__av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.hh-review__name { font-size: .9rem; font-weight: 700; color: var(--pri); }
.hh-review__city { font-size: .78rem; color: var(--muted); }
.hh-rating {
  display: flex;
  align-items: center;
  gap: 36px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 32px;
  margin-bottom: 36px;
}
.hh-rating__score { text-align: center; }
.hh-rating__big { font-size: 3.2rem; font-weight: 900; color: var(--pri); line-height: 1; }
.hh-rating__stars-row { display: flex; gap: 2px; justify-content: center; color: #d4a017; margin: 6px 0 4px; }
.hh-rating__count { font-size: .8rem; color: var(--muted); }
.hh-rating__bars { flex: 1; }
.hh-rating__bar-row { display: flex; align-items: center; gap: 10px; margin-bottom: 7px; font-size: .8rem; color: var(--muted); }
.hh-rating__bar-track { flex: 1; height: 8px; background: var(--border); border-radius: 4px; overflow: hidden; }

/* ============================================================
   TRAFFIC RULES
   ============================================================ */
.hh-traffic__main {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 32px;
  margin-bottom: 28px;
  box-shadow: var(--shadow);
}
.hh-traffic__main h2 { font-size: 1.3rem; color: var(--pri); margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.hh-traffic__main h2 .material-icons-outlined { color: var(--accent); }
.hh-traffic__main p { font-size: .92rem; color: #374151; margin-bottom: 12px; }
.hh-traffic__list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.hh-traffic__list li { display: flex; align-items: flex-start; gap: 8px; font-size: .9rem; color: #374151; }
.hh-traffic__list .material-icons-outlined { color: var(--accent); font-size: 18px; margin-top: 1px; flex-shrink: 0; }
.hh-traffic__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.hh-traffic__col {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px 20px;
  box-shadow: var(--shadow);
}
.hh-traffic__col-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--bg-alt), #f0dbb5);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border: 1px solid var(--border);
}
.hh-traffic__col-icon .material-icons-outlined { font-size: 22px; color: var(--accent); }
.hh-traffic__col h3 { font-size: 1rem; color: var(--pri); margin-bottom: 8px; }
.hh-traffic__col p { font-size: .88rem; color: #374151; line-height: 1.6; margin: 0; }

/* ============================================================
   PLACES
   ============================================================ */
.hh-places__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.hh-places__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px 20px;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.hh-places__card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.hh-places__icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--pri), var(--pri-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.hh-places__icon .material-icons-outlined { font-size: 22px; color: var(--accent-light); }
.hh-places__card h3 { font-size: .97rem; color: var(--pri); margin-bottom: 6px; }
.hh-places__card p { font-size: .86rem; color: #374151; line-height: 1.6; margin: 0 0 10px; }
.hh-places__meta { display: flex; gap: 12px; flex-wrap: wrap; }
.hh-places__meta span { display: flex; align-items: center; gap: 4px; font-size: .78rem; color: var(--muted); }
.hh-places__meta .material-icons-outlined { font-size: 14px; color: var(--accent); }

/* ============================================================
   CARS
   ============================================================ */
.hh-cars__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.hh-car__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.hh-car__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.hh-car__img {
  background: #FFFFFF;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
  min-height: 180px;
}
.hh-car__img img { max-width: 100%; max-height: 140px; object-fit: contain; }
.hh-car__body { padding: 22px 20px; flex: 1; display: flex; flex-direction: column; }
.hh-car__badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--acc), var(--pri));
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--pri);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
  text-align: center;
  width: 140px;
  margin-left: auto;
  margin-right: auto;
}
.hh-car__name { font-size: 1.1rem; font-weight: 800; color: var(--pri); margin-bottom: 14px; text-align: center; }
.hh-car__specs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 16px; }
.hh-car__spec { display: flex; align-items: center; gap: 7px; font-size: .84rem; color: #374151; justify-content: center; }
.hh-car__spec .material-icons-outlined { font-size: 17px; color: var(--accent); flex-shrink: 0; }
.hh-car__price { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border); }
.hh-car__price-from { font-size: .78rem; color: var(--muted); }
.hh-car__price-val { font-size: 1.45rem; font-weight: 800; color: var(--pri); }
.hh-car__price-val span { font-size: .78rem; font-weight: 400; color: var(--muted); }

/* ============================================================
   FAQ
   ============================================================ */
.hh-faq__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hh-faq__item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hh-faq__q {
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--pri);
  user-select: none;
  transition: background .2s;
}
.hh-faq__q:hover { background: var(--bg); }
.hh-faq__q .material-icons-outlined { color: var(--accent); font-size: 22px; flex-shrink: 0; transition: transform .25s; }
.hh-faq__item.open .hh-faq__q { background: var(--bg-alt); }
.hh-faq__item.open .hh-faq__q .material-icons-outlined { transform: rotate(180deg); }
.hh-faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.hh-faq__item.open .hh-faq__a { max-height: 320px; }
.hh-faq__a-inner { padding: 0 20px 18px; font-size: .9rem; color: #374151; line-height: 1.75; border-top: 1px solid var(--border); padding-top: 14px; }

/* ============================================================
   FOOTER
   ============================================================ */
.hh-footer {
  background: var(--pri);
  padding: 52px 0 0;
  color: rgba(255, 255, 255, .85);
}
.hh-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.hh-footer__logo { height: 38px; width: auto; margin-bottom: 16px; display: block; }
.hh-footer__desc { font-size: .88rem; line-height: 1.7; color: rgba(255, 255, 255, .7); margin-bottom: 18px; }
.hh-footer__contact { display: flex; flex-direction: column; gap: 10px; }
.hh-footer__contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .8);
  text-decoration: none;
  font-size: .88rem;
  transition: color .2s;
}
.hh-footer__contact a:hover { color: var(--accent-light); text-decoration: none; }
.hh-footer__contact .material-icons-outlined { font-size: 18px; color: var(--accent-light); }
.hh-footer__col h4 { color: #fff; font-size: .9rem; font-weight: 700; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .06em; }
.hh-footer__links { list-style: none; }
.hh-footer__links li { margin-bottom: 8px; }
.hh-footer__links a { color: rgba(255, 255, 255, .7); font-size: .88rem; text-decoration: none; transition: color .2s; }
.hh-footer__links a:hover { color: var(--accent-light); text-decoration: none; }
.hh-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 22px 0;
}
.hh-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.hh-footer__copy { font-size: .82rem; color: rgba(255, 255, 255, .55); }
.hh-footer__seo { font-size: .78rem; color: rgba(255, 255, 255, .4); max-width: 440px; text-align: center; }
.hh-footer__legal { display: flex; gap: 20px; list-style: none; }
.hh-footer__legal a { color: rgba(255, 255, 255, .55); font-size: .82rem; text-decoration: none; transition: color .2s; }
.hh-footer__legal a:hover { color: var(--accent-light); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.hh-about__cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.hh-about__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.hh-about__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.hh-about__card-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pri), var(--pri-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.hh-about__card-icon span { font-size: 28px; color: var(--accent-light); }
.hh-about__card h3 { font-size: 1rem; font-weight: 700; color: var(--pri); margin: 0 0 10px; }
.hh-about__card p { font-size: .9rem; color: #445a6a; line-height: 1.6; margin: 0; }

/* ============================================================
   HOWTO (About page)
   ============================================================ */
.hh-howto__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 16px; }
.hh-howto__step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 26px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
}
.hh-howto__step::before {
  content: attr(data-step);
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--pri), var(--pri-light));
  border-radius: 50%;
  color: var(--accent-light);
  font-size: .8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(61, 26, 36, .3);
}
.hh-howto__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pri), var(--pri-light));
  color: var(--accent-light);
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 14px rgba(61, 26, 36, .3);
}
.hh-howto__step h3 { font-size: .97rem; font-weight: 700; color: var(--pri); margin: 0 0 10px; }
.hh-howto__step p { font-size: .88rem; color: #445a6a; line-height: 1.6; margin: 0; }

/* ============================================================
   MISSION (About page)
   ============================================================ */
.hh-mission__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hh-mission__text h2 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 800; color: var(--pri); margin: 0 0 16px; }
.hh-mission__text p { color: #2d2010; line-height: 1.8; margin: 0 0 14px; }

/* ============================================================
   CONTACTS PAGE
   ============================================================ */
.hh-contacts__grid { display: block; align-items: start; }
.hh-contacts__info h2 { font-size: 1.6rem; font-weight: 800; color: var(--pri); margin: 0 0 12px; }
.hh-contacts__info > p { color: #374151; line-height: 1.7; margin-bottom: 24px; }
.hh-contacts__info h3 { font-size: 1.05rem; font-weight: 700; color: var(--pri); }
.hh-contacts__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 28px; }
.hh-contacts__card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 18px 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.hh-contacts__card h2 { font-size: 1.4rem; font-weight: 800; color: var(--pri); margin: 0 0 24px; }
.hh-contacts__rows { display: flex; flex-direction: column; margin-top: 12px; border-top: 1px solid var(--border); }
.hh-contacts__map-col { position: relative; margin-top: 40px; }
.hh-contacts__row { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--bg-alt); }
.hh-contacts__row:last-child { border-bottom: none; padding-bottom: 0; }
.hh-contacts__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pri), var(--pri-light));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hh-contacts__icon span { font-size: 22px; color: var(--accent-light); }
.hh-contacts__label { font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: #7890a0; font-weight: 600; margin-bottom: 4px; }
.hh-contacts__val { font-size: 1rem; font-weight: 600; color: var(--pri); }
.hh-contacts__val a { color: var(--pri); text-decoration: none; }
.hh-contacts__val a:hover { color: var(--accent); text-decoration: underline; }
.hh-contacts__sub { font-size: .85rem; color: #607080; margin-top: 2px; }
.hh-contacts__action { margin-top: 28px; }
.hh-map { border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.hh-map iframe { display: block; width: 100%; height: 480px; border: 0; }
.hh-map__hint {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 0 0 var(--r) var(--r);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  color: #2d2010;
}
.hh-map__hint a { color: var(--accent); font-weight: 600; text-decoration: none; }
.hh-map__hint a:hover { text-decoration: underline; }
.hh-map__hint .material-icons-outlined { color: var(--accent); flex-shrink: 0; }

/* ============================================================
   PRIVACY POLICY
   ============================================================ */
.hh-privacy { max-width: 840px; margin: 0 auto; }
.hh-privacy h2 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--pri);
  margin: 36px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--bg-alt);
}
.hh-privacy h2:first-child { margin-top: 0; }
.hh-privacy p { color: #2d2010; line-height: 1.8; margin: 0 0 12px; font-size: .97rem; }
.hh-privacy ul { color: #2d2010; line-height: 1.8; margin: 0 0 14px; padding-left: 22px; font-size: .97rem; }
.hh-privacy ul li { margin-bottom: 6px; }
.hh-privacy a { color: var(--accent); text-decoration: none; }
.hh-privacy a:hover { text-decoration: underline; }
.hh-privacy strong { color: var(--pri); }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.hh-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-bottom: 14px;
  font-size: .82rem;
  color: rgba(255,255,255,.75);
  flex-wrap: wrap;
}
.hh-breadcrumb a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-weight: 500;
}
.hh-breadcrumb a:hover { color: #fff; text-decoration: underline; }
.hh-breadcrumb .material-icons-outlined { font-size: 16px; line-height: 1; }
.hh-breadcrumb span:last-child { color: rgba(255,255,255,.95); font-weight: 600; }

/* ============================================================
   VEHICLE TYPES CTA
   ============================================================ */
.hh-types__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 16px;
}
.hh-type__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 16px 22px;
  text-decoration: none;
  color: var(--pri);
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.hh-type__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
  text-decoration: none;
}
.hh-type__card .material-icons-outlined {
  font-size: 38px;
  color: var(--accent);
  margin-bottom: 14px;
}
.hh-type__card h3 { font-size: .97rem; font-weight: 700; margin: 0 0 6px; }
.hh-type__card p { font-size: .88rem; color: #607080; margin: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hh-why__grid { grid-template-columns: 1fr; }
  .hh-why__img { order: -1; }
  .hh-footer__grid { grid-template-columns: 1fr 1fr; }
  .hh-steps__line { display: none; }
  .hh-about__cards { grid-template-columns: repeat(2, 1fr); }
  .hh-howto__grid { grid-template-columns: repeat(2, 1fr); }
  .hh-contacts__grid { grid-template-columns: 1fr; gap: 32px; }
  .hh-contacts__map-col { position: static; }
  .hh-types__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .hh-sect { padding: 44px 0; }
  .hh-steps__grid { grid-template-columns: repeat(2, 1fr); }
  .hh-perks__grid { grid-template-columns: 1fr; }
  .hh-prices__types { grid-template-columns: repeat(3, 1fr); }
  .hh-prices__tiplist { grid-template-columns: 1fr; }
  .hh-reviews__grid { grid-template-columns: 1fr; }
  .hh-traffic__list { grid-template-columns: 1fr; }
  .hh-traffic__cols { grid-template-columns: 1fr; }
  .hh-places__grid { grid-template-columns: repeat(2, 1fr); }
  .hh-cars__grid { grid-template-columns: 1fr; }
  .hh-faq__grid { grid-template-columns: 1fr; }
  .hh-footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .hh-footer__bottom-inner { flex-direction: column; text-align: center; }
  .hh-footer__seo { text-align: center; }
  .hh-rating { gap: 20px; }
  .hh-about__cards { grid-template-columns: 1fr 1fr; }
  .hh-mission__grid { grid-template-columns: 1fr; }
  .hh-map iframe { height: 320px; }
  .hh-burger { display: flex; }
  .hh-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0;
    background: var(--pri);
    padding: 70px 20px 28px;
    flex-direction: column;
    align-items: flex-start;
    z-index: 90;
    gap: 2px;
    box-shadow: 0 8px 32px rgba(0,0,0,.3);
  }
  .hh-nav.open { display: flex; }
  .hh-nav li { width: 100%; }
  .hh-nav li a { padding: 12px 16px; font-size: 1rem; }
}

@media (max-width: 600px) {
  .hh-types__grid { grid-template-columns: repeat(2, 1fr); }
  .hh-contacts__cards { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hh-prices__types { grid-template-columns: repeat(2, 1fr); }
  .hh-places__grid { grid-template-columns: 1fr; }
  .hh-steps__grid { grid-template-columns: 1fr; }
  .hh-hero__body h1 { font-size: 1.35rem; }
  .hh-about__cards { grid-template-columns: 1fr; }
  .hh-howto__grid { grid-template-columns: 1fr; }
  .hh-types__grid { grid-template-columns: repeat(2, 1fr); }
}
