/* ===== TbilisiCar - Premium Car Rental ===== */
/* Custom Design: Warm burgundy + gold accent, travel-inspired */

/* ---------- CSS Variables ---------- */
:root {
  --burgundy: #7B2D3B;
  --burgundy-dark: #5A1F2B;
  --burgundy-light: #9E3A4C;
  --gold: #D4A84B;
  --gold-light: #E8C97A;
  --gold-dark: #B08930;
  --cream: #FDF6EC;
  --cream-dark: #F5EBD8;
  --dark: #1E1215;
  --dark-soft: #2E1F24;
  --text: #3A2429;
  --text-light: #6B5258;
  --text-muted: #9A8588;
  --white: #FFFFFF;
  --bg-section: #FAF4ED;
  --bg-highlight: #F5EDE4;
  --border: rgba(123, 45, 59, 0.12);
  --shadow-sm: 0 2px 8px rgba(30, 18, 21, 0.06);
  --shadow-md: 0 4px 20px rgba(30, 18, 21, 0.1);
  --shadow-lg: 0 8px 40px rgba(30, 18, 21, 0.14);
  --shadow-gold: 0 4px 20px rgba(212, 168, 75, 0.25);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --container: 1200px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--burgundy); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold); }
ul, ol { list-style: none; }
h1, h2, h3, h4 { line-height: 1.25; color: var(--dark); }

/* ---------- Container ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* ---------- Section ---------- */
.section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 640px;
  margin-bottom: 48px;
}

.section-subtitle.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-title.center {
  text-align: center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  line-height: 1.4;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(212, 168, 75, 0.4);
  color: var(--dark);
}

.btn-secondary {
  background: var(--white);
  color: var(--burgundy);
  border: 2px solid var(--burgundy);
}

.btn-secondary:hover {
  background: var(--burgundy);
  color: var(--white);
}

/* ---------- Badge / Tag ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 50px;
  background: rgba(212, 168, 75, 0.15);
  color: var(--gold-dark);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 18px 0;
  transition: var(--transition);
}

/* Inner pages: solid header */
.site-header.solid {
  position: relative;
  background: var(--dark);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.logo img {
  height: 36px;
  width: auto;
}

.logo span.accent {
  color: var(--gold);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 4px 0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-menu a:hover {
  color: var(--white);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-menu a.active {
  color: var(--white);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 110;
}

.burger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 3px;
  transition: var(--transition);
}

.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* background image set inline */
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 18, 21, 0.65) 0%, rgba(90, 31, 43, 0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 60px;
  max-width: 1200px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.hero h1 .highlight {
  color: var(--gold);
}

.hero-desc {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 28px;
  line-height: 1.6;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 10px 20px;
  border-radius: 50px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.92rem;
}

.hero-badge .material-icons-outlined {
  font-size: 20px;
  color: var(--gold);
}

/* Booking widget area */
.booking-section {
  padding: 48px 0 60px;
  background: var(--white);
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  background: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}

.step-card {
  position: relative;
  background: var(--bg-section);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid transparent;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-card p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.6;
}

.step-connector {
  position: absolute;
  top: 62px;
  right: -16px;
  color: var(--gold);
  font-size: 20px;
  z-index: 2;
}

/* ============================================
   OFFERS SECTION
   ============================================ */
.offers-section {
  background: var(--bg-section);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.offer-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--burgundy), var(--gold));
  opacity: 0;
  transition: var(--transition);
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.offer-card:hover::before {
  opacity: 1;
}

.offer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(123, 45, 59, 0.08), rgba(212, 168, 75, 0.08));
  margin-bottom: 20px;
  color: var(--burgundy);
}

.offer-icon .material-icons-outlined {
  font-size: 30px;
}

.offer-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.offer-card p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ============================================
   WHY RENT
   ============================================ */
.why-rent {
  background: var(--white);
}

.why-rent-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  align-items: start;
}

.why-rent-text p {
  margin-bottom: 16px;
  color: var(--text-light);
  line-height: 1.8;
}

.why-rent-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.feature-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--bg-section);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  border: 1px solid transparent;
}

.feature-chip:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.feature-chip .material-icons-outlined {
  font-size: 22px;
  color: var(--burgundy);
}

/* ============================================
   PRICE SECTION
   ============================================ */
.price-section {
  background: var(--bg-section);
}

.price-intro {
  max-width: 800px;
  margin-bottom: 36px;
  color: var(--text-light);
  line-height: 1.8;
}

.price-tips {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 48px;
  border-left: 4px solid var(--gold);
}

.price-tips h3 {
  margin-bottom: 14px;
  font-size: 1.1rem;
}

.price-tips ul {
  list-style: none;
}

.price-tips li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: var(--text-light);
  line-height: 1.7;
}

.price-tips li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--burgundy);
  font-weight: 700;
}

/* Price cards */
.price-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.price-card .material-icons-outlined {
  font-size: 40px;
  color: var(--burgundy);
  margin-bottom: 14px;
}

.price-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.price-card .price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--burgundy);
  margin-bottom: 4px;
}

.price-card .price-note {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Price table */
.price-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.92rem;
}

.price-table thead {
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
  color: var(--white);
}

.price-table th {
  padding: 16px 18px;
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
}

.price-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}

.price-table tbody tr:hover {
  background: rgba(212, 168, 75, 0.04);
}

.price-table tbody tr:last-child td {
  border-bottom: none;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews-section {
  background: var(--white);
}

.reviews-aggregate {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  color: var(--white);
}

.aggregate-score {
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1;
}

.aggregate-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.aggregate-stars {
  color: var(--gold);
  font-size: 1.3rem;
  letter-spacing: 2px;
}

.aggregate-text {
  font-size: 0.92rem;
  opacity: 0.85;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.review-card {
  background: var(--bg-section);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: var(--transition);
  border: 1px solid transparent;
}

.review-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-md);
}

.review-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.review-text {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--burgundy), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}

.review-author-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
}

.review-author-info span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ============================================
   TRAFFIC RULES
   ============================================ */
.traffic-section {
  background: var(--bg-section);
}

.traffic-main {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 28px;
  border: 1px solid var(--border);
}

.traffic-main h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.traffic-main ul {
  list-style: none;
}

.traffic-main li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
  line-height: 1.6;
}

.traffic-main li:last-child {
  border-bottom: none;
}

.traffic-main li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--burgundy);
}

.traffic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.traffic-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.traffic-card:hover {
  box-shadow: var(--shadow-md);
}

.traffic-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.traffic-card h3 .material-icons-outlined {
  color: var(--burgundy);
}

.traffic-card p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ============================================
   DESTINATIONS
   ============================================ */
.destinations-section {
  background: var(--white);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.dest-card {
  background: var(--bg-section);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.dest-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}

.dest-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dest-card h3 .material-icons-outlined {
  color: var(--burgundy);
}

.dest-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

.dest-meta {
  display: flex;
  gap: 20px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
}

.dest-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dest-meta .material-icons-outlined {
  font-size: 16px;
}

/* ============================================
   TOP CARS
   ============================================ */
.top-cars-section {
  background: var(--bg-section);
}

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

.car-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.car-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.car-card-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  padding: 20px;
  overflow: hidden;
}

.car-card-img img {
  max-height: 160px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

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

.car-card-body {
  padding: 28px;
}

.car-card-body h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.car-card-category {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.car-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.car-spec {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-light);
}

.car-spec .material-icons-outlined {
  font-size: 18px;
  color: var(--burgundy);
}

.car-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.car-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--burgundy);
}

.car-price small {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
  background: var(--white);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(123, 45, 59, 0.22);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  background: var(--white);
  user-select: none;
  transition: var(--transition);
  gap: 16px;
}

.faq-question:hover {
  background: var(--bg-section);
}

.faq-question .material-icons-outlined {
  transition: var(--transition);
  color: var(--burgundy);
  font-size: 22px;
  flex-shrink: 0;
}

.faq-item.open .faq-question .material-icons-outlined {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-light);
  line-height: 1.8;
  font-size: 0.95rem;
}

.faq-item.open .faq-answer {
  max-height: 600px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 0 0;
}

.footer-top {
  display: block;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
  margin-bottom: 14px;
}

.footer-seo {
  max-width: 1200px;
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links {
  display: flex;
  gap: 28px;
  justify-content: center;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #FFFFFF20;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   INNER PAGES
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--burgundy-dark), var(--dark));
  padding: 100px 0 48px;
  color: var(--white);
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
}

.page-content {
  padding: 60px 0 80px;
}

.page-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 36px 0 14px;
  color: var(--dark);
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content p {
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.8;
}

.page-content ul, .page-content ol {
  margin: 14px 0 14px 20px;
  list-style: disc;
}

.page-content li {
  color: var(--text-light);
  margin-bottom: 8px;
  line-height: 1.7;
}

/* About cards */
.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 36px 0;
}

.about-feature {
  background: var(--bg-section);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-feature .material-icons-outlined {
  font-size: 32px;
  color: var(--burgundy);
  flex-shrink: 0;
}

.about-feature h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.about-feature p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* How to book steps */
.booking-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 32px 0;
}

.booking-step {
  text-align: center;
  padding: 24px 16px;
  background: var(--bg-section);
  border-radius: var(--radius-md);
}

.booking-step .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--burgundy);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 12px;
}

.booking-step h3 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.booking-step p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 32px;
}

.contact-info-card {
  background: var(--bg-section);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-item .material-icons-outlined {
  font-size: 28px;
  color: var(--burgundy);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-item h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-info-item p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.contact-info-item a {
  color: var(--burgundy);
  font-weight: 600;
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  min-height: 360px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Privacy policy */
.privacy-content h2 {
  margin-top: 40px;
}

.privacy-content h2:first-child {
  margin-top: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .step-connector {
    display: none;
  }

  .why-rent-content {
    grid-template-columns: 1fr;
  }

  .price-cards {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .traffic-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .section-title { font-size: 1.7rem; }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    transition: var(--transition);
    z-index: 105;
    box-shadow: -4px 0 20px rgba(0,0,0,0.3);
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-menu a {
    font-size: 1.15rem;
  }

  .burger { display: flex; }

  .hero { min-height: 520px; }
  .hero h1 { font-size: 2rem; }
  .hero-desc { font-size: 1rem; }

  .hero-badges {
    flex-direction: column;
    gap: 8px;
  }

  .steps-grid { grid-template-columns: 1fr 1fr; }
  .offers-grid { grid-template-columns: 1fr; }
  .price-cards { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .cars-grid { grid-template-columns: 1fr; }
  .destinations-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
  .footer-links { flex-direction: column; gap: 12px; }

  .reviews-aggregate {
    flex-direction: column;
    text-align: center;
  }

  .page-hero { padding: 80px 0 36px; }
  .page-hero h1 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 44px 0; }
  .section-title { font-size: 1.5rem; }

  .hero h1 { font-size: 1.7rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .why-rent-features { grid-template-columns: 1fr; }
  .price-table { font-size: 0.82rem; }
  .price-table th, .price-table td { padding: 10px 12px; }
}

/* Nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 104;
}

.nav-overlay.open {
  display: block;
}


.hero-content .badge {
  color: #FFFFFF;
  background: rgba(212, 168, 75, 0.65);
}