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

@font-face {
  font-family: 'Poly Sans';
  src: url('polysans-neutral.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f0f0f2;
  --bg-card: #ffffff;
  --bg-accent: #ccff00; /* Lime green from image */
  --bg-dark: #000000;
  --dark: #000000;
  --muted: #6b7280;
  --text: #000000;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --radius: 24px;
  --radius-sm: 12px;
  --radius-lg: 32px;
}

body {
  font-family: 'Inter', sans-serif; /* Clean modern font */
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

/* App Layout Structure */
.app-container {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 24px;
  max-width: 1400px;
  margin: 150px auto 40px;
  padding: 0 24px;
}

/* Sidebar Styles */
.sidebar {
  align-self: start;
}

/* Car Reviews */
.car-reviews {
  grid-column: 1 / -1;
  margin-top: 16px;
}

@media (max-width: 900px) {
  .app-container {
    grid-template-columns: 1fr;
    margin-top: 110px;
  }
  .car-reviews {
    order: 3;
    grid-column: auto;
  }
}

.summary-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.summary-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Timeline/Stepper styles */
.timeline-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  padding: 12px;
  background: var(--bg);
  border-radius: var(--radius-sm);
}

.progress-bar-container {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.progress-bar {
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--bg-accent);
  width: 67%;
}


.title {
  font-family: 'Poly Sans', 'Sora', sans-serif;
  font-weight: 300;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* NAV */
.nav {
  position: absolute; top: 12px; left: 12px; right: 12px; z-index: 10;
  background: transparent;
  border-radius: 20px;
  transition: all .3s;
  height: 120px;
}

.nav.scrolled {
  position: fixed; top: 12px; left: 12px; right: 12px;
  background: #000;
  height: 80px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

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

.nav-links { display: flex; gap: 4px; }

.nav-right { display: flex; align-items: center; gap: 12px; }

.nav.scrolled .nav-inner {
  height: 80px;
}

.nav-logo {
  display: flex; align-items: center; gap: 8px;
  font-size: 18px; color: #fff; text-decoration: none;
  font-family: 'Poly Sans', 'Sora', sans-serif; font-weight: 300;
  margin-right: auto;
}

.nav-logo img { height: 110px; width: auto; }

.nav-links a {
  padding: 8px 16px; font-size: 14px;
  color: rgba(255,255,255,0.7); text-decoration: none; border-radius: 8px;
  transition: all .2s; font-family: 'Hubot Sans', sans-serif;
}

.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,0.12); }

.nav-lang {
  font-size: 13px; color: rgba(255,255,255,0.7); cursor: pointer;
  padding: 6px 12px; border-radius: 8px; transition: background .2s;
}

.nav-lang:hover { background: rgba(255,255,255,0.12); }

/* Nav Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger { background: none; border: none; font-family: inherit; }
.nav-dropdown-menu {
  display: none; position: absolute; top: 100%; right: 0; margin-top: 8px;
  background: #1a1a1a; border: 1px solid #333; border-radius: 10px;
  min-width: 140px; z-index: 100; overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.nav-dropdown-menu a {
  display: block; padding: 10px 16px; color: #ccc; font-size: 13px;
  text-decoration: none; transition: background .2s, color .2s;
}
.nav-dropdown-menu a:hover { background: #333; color: #fff; }
.nav-dropdown-menu a.active { color: #fff; font-weight: 600; }
.nav-dropdown.open .nav-dropdown-menu { display: block; }

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 4px;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 9998;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-menu.active { display: flex; }
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}
.mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  font-family: 'Hubot Sans', sans-serif;
  transition: opacity 0.2s;
}
.mobile-menu a:hover { opacity: 0.7; }
.mobile-menu-footer {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* HERO */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  background: #fff;
  padding: 12px 12px 12px 12px;
}

.hero-bg {
  position: absolute; inset: 12px 12px 12px 12px;
  border-radius: 20px; overflow: hidden;
}

.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-img-mobile { display: none; }

.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.hero-content {
  position: relative; z-index: 1;
  max-width: 100%; margin: 0 auto; padding: 0 16px;
  height: 100%; display: flex; flex-direction: column;
  justify-content: flex-end; padding-bottom: 16px; padding-top: 64px;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 52px); color: #fff;
  margin-bottom: 32px; line-height: 1.1;
  font-family: 'Poly Sans', 'Sora', sans-serif; font-weight: 300;
  max-width: 600px;
}

.hero-search {
  background: #fff; border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}

.search-row {
  display: flex; align-items: stretch; gap: 0;
}

.search-values {
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
  margin-bottom: 10px;
}

.search-group {
  flex: 1; min-width: 0;
  padding: 0 10px;
  position: relative;
}

.search-group:first-child { padding-left: 0; }
.search-group:last-child { padding-right: 0; }

.search-label {
  display: block;
  font-size: 13px; font-weight: 500; color: #000;
  font-family: 'Hubot Sans', sans-serif;
  margin-bottom: 6px;
}

.field-box {
  position: relative;
  display: flex; align-items: center;
}

.field-icon {
  position: absolute; left: 0;
  width: 16px; height: 16px; opacity: 0.3; flex-shrink: 0;
  color: #000;
}

.field-select {
  width: 100%; border: none; outline: none;
  font-size: 13px; color: #000;
  font-family: 'Hubot Sans', sans-serif;
  cursor: pointer; background: transparent;
  padding-left: 20px; padding-right: 24px;
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

.search-label-inline { display: none; }

.field-val {
  width: 100%; border: none; outline: none;
  font-size: 13px; color: #000;
  font-family: 'Hubot Sans', sans-serif;
  cursor: pointer; background: transparent;
  padding-left: 20px; padding-right: 24px;
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
}

.field-arrow {
  position: absolute; right: 0;
  width: 20px; height: 20px; background: #9ca3af;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; pointer-events: none;
}

.field-arrow svg { width: 10px; height: 10px; }

.search-datetime {
  display: flex; align-items: stretch; gap: 0;
}

.search-datetime .field-box {
  flex: 1; min-width: 0;
}

.dt-divider {
  width: 1px; background: var(--border);
  flex-shrink: 0; margin: 0 8px;
}

.search-bottom {
  display: flex; align-items: center; justify-content: space-between;
}

.search-info {
  font-size: 12px; color: var(--muted);
  font-family: 'Hubot Sans', sans-serif;
  margin: 0;
}

.search-info strong { color: #000; }

.search-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 24px; background: var(--dark); color: #fff;
  font-size: 14px; border-radius: var(--radius); text-decoration: none;
  transition: background .2s; white-space: nowrap;
  font-family: 'Hubot Sans', sans-serif;
}

.search-btn:hover { background: var(--primary-hover); }

@media (max-width: 768px) {
  .hero { height: auto; min-height: 100vh; padding: 8px; display: flex; flex-direction: column; }
  .hero-bg { position: absolute; inset: 8px; }
  .hero-img-desktop { display: none; }
  .hero-img-mobile { display: block; }
  .hero-content { position: relative; flex: 1; justify-content: flex-end; padding-bottom: 16px; padding-top: 80px; }
  .hero h1 { font-size: 28px; margin-bottom: 16px; }
  .nav-links { display: none; }
  .nav-inner { padding: 0 8px; }
  .search-row:first-child { display: none; }
  .search-values { border-bottom: none; padding-bottom: 0; margin-bottom: 0; display: grid; grid-template-columns: 1fr; gap: 6px; }
  .search-group { flex: unset; min-width: 0; padding: 0; position: relative; }
  .search-group .search-label-inline { display: block; font-size: 11px; color: #000; font-weight: 500; margin-bottom: 2px; grid-column: 1 / -1; }
  .search-group .field-box { border: 1px solid var(--border); border-radius: 10px; padding: 4px 10px; min-height: 36px; background: #fff; display: flex; align-items: center; position: relative; }
  .search-group .field-icon { position: static; width: 16px; height: 16px; margin-right: 8px; color: #888; flex-shrink: 0; }
  .search-group .field-select { font-size: 14px; padding-left: 0; font-weight: 500; color: #000; }
  .search-group .field-val { font-size: 14px; padding-left: 0; font-weight: 500; color: #000; }
  .search-group .field-arrow { position: static; margin-left: auto; width: 18px; height: 18px; }
  .search-bottom { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-top: 8px; }
  .hero-search { padding: 12px; border-radius: 16px; }
  .search-datetime { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
  .search-datetime .field-box { min-height: 36px; }
  .dt-divider { display: none; }
}

@media (max-width: 480px) {
  .hero { min-height: 100vh; }
  .hero-content { padding-bottom: 12px; padding-top: 72px; }
  .hero h1 { font-size: 22px; margin-bottom: 12px; }
  .hero-search { padding: 14px; }
  .search-datetime { gap: 8px; }
}

/* DATE PICKER */
.date-picker, .time-picker {
  display: none; position: absolute; bottom: calc(100% + 4px); left: 0;
  background: #fff; border: 1px solid var(--border);
  border-radius: 12px; box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  z-index: 50; width: 260px; padding: 16px;
}

.date-picker.open, .time-picker.open { display: block; }

.dp-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}

.dp-nav {
  background: none; border: none; font-size: 20px; cursor: pointer;
  color: var(--muted); padding: 4px 8px; border-radius: 6px; line-height: 1;
}

.dp-nav:hover { background: var(--bg-gray); color: var(--dark); }

.dp-month-year {
  font-size: 14px; color: var(--dark);
  font-family: 'Hubot Sans', sans-serif;
}

.dp-days {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px;
}

.dp-days div {
  display: flex; align-items: center; justify-content: center;
  height: 32px; font-size: 13px; border-radius: 6px; cursor: pointer;
  font-family: 'Hubot Sans', sans-serif;
}

.dp-days div:hover { background: var(--bg-gray); }
.dp-day.selected { background: #000; color: #fff; border-radius: 6px; }

/* TIME PICKER */
.tp-scroll {
  display: flex; gap: 16px; max-height: 200px;
}

.tp-col { flex: 1; text-align: center; }

.tp-label {
  display: block; font-size: 11px; color: var(--muted);
  margin-bottom: 6px; font-family: 'Hubot Sans', sans-serif;
}

.tp-list {
  display: flex; flex-direction: column; gap: 2px;
  max-height: 170px; overflow-y: auto;
}

.tp-list div {
  padding: 4px 8px; font-size: 13px; border-radius: 6px;
  cursor: pointer; font-family: 'Hubot Sans', sans-serif;
}

.tp-list div:hover { background: var(--bg-gray); }
.tp-item.active { background: #000; color: #fff; }

/* SECTIONS */
.section { padding: 60px 0; }
.section-gray { background: var(--bg-gray); }

.section-header {
  display: flex; align-items: flex-end;
  justify-content: space-between; margin-bottom: 32px; gap: 16px;
}

.section-header h2 {
  font-size: 24px; margin-bottom: 4px;
  font-family: 'Poly Sans', 'Sora', sans-serif; font-weight: 300;
}

.section-header p, .section-sub {
  font-size: 14px; color: var(--muted);
  font-family: 'Hubot Sans', sans-serif;
}

.section-sub { margin-top: 4px; }

/* CAR GRID */
.car-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}

@media (max-width: 1000px) { .car-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px) { .car-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .car-grid { grid-template-columns: 1fr; } }

.car-card {
  background: #f7f7f8;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column;
}

.car-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
  border-color: #d0d0d0;
}

.car-img-box {
  position: relative;
  background: #fff;
  border-radius: 8px;
  height: 220px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  margin: 0;
}

.car-img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .3s ease;
}

.car-card:hover .car-img-box img {
  transform: scale(1.04);
}

.car-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 5px 12px; background: #ffffff;
  border-radius: 20px; font-size: 11px; font-weight: 500;
  color: #111827; box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  font-family: 'Hubot Sans', sans-serif;
}

.car-info {
  padding: 16px 14px 16px 14px;
  display: flex; flex-direction: column; flex: 1;
}

.car-title {
  font-size: 18px; font-weight: 600; color: #000;
  margin-bottom: 4px; font-family: 'Hubot Sans', sans-serif;
}

.car-stars {
  display: flex; gap: 3px; margin-bottom: 8px;
}
.car-stars .star {
  width: 14px; height: 14px;
  background: #000;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.car-trans-row {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--muted); margin-bottom: 10px;
  font-family: 'Hubot Sans', sans-serif;
}

.car-specs {
  display: flex; align-items: center; gap: 16px;
  font-size: 13px; color: var(--muted); margin-bottom: 16px;
  font-family: 'Hubot Sans', sans-serif; flex-wrap: wrap;
}

.car-specs span {
  display: flex; align-items: center; gap: 5px;
}

.rating-span {
  margin-left: auto; color: #111827; font-weight: 500;
}

.car-footer {
  display: flex; align-items: flex-end; justify-content: space-between;
  padding-top: 12px; border-top: 1px solid #f0f0f2; margin-top: auto;
}

.price-from {
  display: block; font-size: 11px; color: var(--dim); margin-bottom: 2px;
  font-family: 'Hubot Sans', sans-serif;
}

.price-val {
  font-size: 18px; font-weight: 700; color: #000;
  font-family: 'Hubot Sans', sans-serif;
}

.price-unit {
  font-size: 13px; font-weight: 400; color: var(--muted);
}

/* SEE MORE */
.see-more { text-align: center; margin-top: 28px; }

.see-more-btn {
  display: inline-block; padding: 10px 28px;
  border: 1px solid var(--border); border-radius: 100px;
  font-size: 14px; color: var(--dark); text-decoration: none;
  transition: all .2s; font-family: 'Hubot Sans', sans-serif;
}

.see-more-btn:hover { background: var(--dark); color: #fff; border-color: var(--dark); }

.see-all {
  font-size: 14px; color: var(--dark); text-decoration: none; white-space: nowrap;
  padding: 8px 16px; border-radius: 8px; transition: background .2s;
  font-family: 'Hubot Sans', sans-serif;
}

.see-all:hover { background: var(--bg-gray); }

/* TAGS */
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }

.tag {
  padding: 8px 16px; background: #fff;
  border: 1px solid var(--border); border-radius: 100px;
  font-size: 13px; color: var(--muted); text-decoration: none;
  transition: all .2s; white-space: nowrap; font-family: 'Hubot Sans', sans-serif;
}

.tag:hover { border-color: var(--dark); color: var(--dark); }

/* DEALS */
.deals-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}

@media (max-width: 600px) { .deals-grid { grid-template-columns: 1fr; } }

.deal-card {
  border-radius: var(--radius-lg); overflow: hidden;
  position: relative; min-height: 200px; cursor: pointer;
}

.deal-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.1));
}

.deal-content {
  position: relative; z-index: 1; padding: 20px;
  height: 100%; display: flex; flex-direction: column; justify-content: flex-end;
}

.deal-badge {
  position: absolute; top: 16px; right: 16px;
  padding: 4px 10px; background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px); border-radius: 6px;
  font-size: 11px; color: #fff; font-family: 'Hubot Sans', sans-serif;
}

.deal-title {
  font-size: 16px; color: #fff; line-height: 1.3; margin-bottom: 8px;
  font-family: 'Poly Sans', 'Sora', sans-serif; font-weight: 300;
}

.deal-discount {
  font-size: 48px; color: var(--bg-accent); line-height: 1;
  font-family: 'Poly Sans', 'Sora', sans-serif; font-weight: 300;
}

.deal-terms {
  font-size: 11px; color: rgba(255,255,255,0.6); margin-top: 4px;
  font-family: 'Hubot Sans', sans-serif;
}

/* BRANDS */
.brands { padding: 32px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.brands-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}

.brands-inner span {
  font-size: 16px; color: var(--dim); letter-spacing: 0.02em;
  white-space: nowrap; font-family: 'Hubot Sans', sans-serif;
}

/* SHOWCASE */
.showcase {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  max-width: 1200px; margin: 60px auto; padding: 0 24px;
}

.showcase-box { border-radius: var(--radius-lg); overflow: hidden; position: relative; min-height: 260px; }

.showcase-dark {
  background: #000; padding: 40px 32px;
  display: flex; flex-direction: column; justify-content: center;
}

.showcase-content h2 {
  font-size: 24px; color: #fff; line-height: 1.25; margin-bottom: 8px; max-width: 280px;
  font-family: 'Poly Sans', 'Sora', sans-serif; font-weight: 300;
}

.showcase-content p { font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 24px; font-family: 'Hubot Sans', sans-serif; }

.btn-white {
  display: inline-block; padding: 10px 24px; background: #fff; color: #000;
  font-size: 14px; border-radius: 8px; text-decoration: none; width: fit-content;
  font-family: 'Hubot Sans', sans-serif; font-weight: 500;
}

.btn-white:hover { background: #f0f0f0; }

.showcase-img { position: relative; }

.showcase-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }

.showcase-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; padding: 24px;
}

.showcase-overlay h2 {
  font-size: 20px; color: #fff; max-width: 240px;
  font-family: 'Poly Sans', 'Sora', sans-serif; font-weight: 300;
}

@media (max-width: 600px) { .showcase { grid-template-columns: 1fr; } }

/* ABOUT US */
.about-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-bottom: 28px;
}
.about-img {
  border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/10;
}
.about-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.about-text {
  font-size: 15px; color: var(--text); line-height: 1.7;
}
.about-text p { margin-bottom: 14px; }
.about-highlight {
  font-weight: 600; font-size: 14px; color: #000;
  background: var(--bg-gray); padding: 14px 18px; border-radius: var(--radius);
}
@media (max-width: 600px) {
  .about-row { grid-template-columns: 1fr; }
  .about-text { font-size: 14px; }
}

/* EXPLORE */
/* FOOTER */
.footer-wrap { padding: 12px; background: #fff; }

.footer-bg {
  background: #000; border-radius: 20px; padding: 48px 0 24px;
}

.footer-inner {
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}

.footer-top-row {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; gap: 24px;
}

.footer-logo img { height: 100px; width: auto; }

.footer-social { display: flex; gap: 16px; }

.footer-social a { color: rgba(255,255,255,0.6); transition: color .2s; }

.footer-social a:hover { color: #fff; }

.footer-nav-links {
  display: flex; gap: 24px; flex-wrap: wrap; justify-content: center;
}

.footer-nav-links a {
  font-size: 14px; color: rgba(255,255,255,0.7); text-decoration: none;
  font-family: 'Hubot Sans', sans-serif; transition: color .2s;
}

.footer-nav-links a:hover { color: #fff; }

.footer-bottom-bar {
  width: 100%; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: rgba(255,255,255,0.5);
  font-family: 'Hubot Sans', sans-serif; flex-wrap: wrap; gap: 12px;
}

.footer-bottom-links { display: flex; gap: 20px; }

.footer-bottom-links a {
  color: rgba(255,255,255,0.5); text-decoration: none; font-size: 13px;
  font-family: 'Hubot Sans', sans-serif; transition: color .2s;
}

.footer-bottom-links a:hover { color: #fff; }

/* Reviews */
.reviews-map-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start;
}
.reviews-list {
  display: flex; flex-direction: column; gap: 16px;
}

#reviewsSeeMore {
  align-self: center; cursor: pointer;
}
.review-card {
  background: var(--card-bg, #fff); border-radius: 14px; padding: 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.review-header {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px;
}
.review-stars {
  color: #f59e0b; font-size: 16px; letter-spacing: 2px;
}
.review-text {
  font-size: 14px; line-height: 1.5; color: #333; margin-bottom: 8px;
}
.review-date {
  font-size: 12px; color: var(--muted);
}

@media (max-width: 768px) {
  .reviews-map-row { grid-template-columns: 1fr; }
  .footer-bottom-bar { flex-direction: column; text-align: center; }
}
