/* ===== CSS Variables & Reset ===== */
:root {
  --primary: #7B2D8B;
  --primary-dark: #561E61;
  --primary-light: #A855C0;
  --accent: #E8940A;
  --accent-light: #F5B229;
  --text: #212121;
  --text-secondary: #616161;
  --text-light: #9E9E9E;
  --bg: #FFFFFF;
  --bg-light: #F8F4FA;
  --bg-alt: #EFE8F2;
  --border: #E0E0E0;
  --success: #2E7D32;
  --star: #FFC107;
  --shadow: 0 2px 8px rgba(123,45,139,.08);
  --shadow-md: 0 4px 16px rgba(123,45,139,.13);
  --shadow-lg: 0 8px 32px rgba(123,45,139,.18);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --container: 1200px;
  --transition: .3s ease;
  --font: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

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

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

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  font-weight: 700;
}

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

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

.section-title {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--text);
  text-align: center;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

/* ===== Header ===== */
.header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 100;
}

/* Transparent header variant (homepage hero overlay) */
.header--transparent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,.15);
}

.header--transparent .logo {
  color: #fff;
}

.header--transparent .nav a {
  color: rgba(255,255,255,.9);
}

.header--transparent .nav a::after {
  background: #fff;
}

.header--transparent .nav a:hover {
  color: #fff;
}

.header--transparent .mobile-toggle {
  color: #fff;
}

.header--transparent .nav.active {
  background: rgba(30,5,40,.95);
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
}

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

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

.nav a {
  color: var(--text);
  font-weight: 500;
  font-size: .95rem;
  transition: color var(--transition);
  position: relative;
}

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

.nav a:hover,
.nav a.active {
  color: #FFFFFF;
}

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

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
}

.mobile-toggle .material-icons-outlined {
  font-size: 28px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 70px;
  background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),
              url('../img/hero.webp') center/cover no-repeat;
  color: #fff;
}

.hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 20px;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
}

.hero-desc {
  font-size: 1.2rem;
  margin-bottom: 32px;
  opacity: .95;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.hero-badge {
  background: rgba(123,45,139,.35);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-badge .material-icons-outlined {
  font-size: 20px;
  color: #CE93D8;
}

/* Hero short (subpages) */
.hero--short {
  min-height: 240px;
  padding-top: 70px;
}

.hero--short .container {
  padding: 48px 20px 36px;
}

.hero--short h1 {
  font-size: 2.1rem;
}

/* ===== Booking Widget ===== */
.booking-section {
  padding: 60px 0;
  background: var(--bg);
}

/* ===== How It Works ===== */
.how-it-works {
  background: var(--bg);
}

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

.step-card {
  text-align: center;
  padding: 32px 20px;
  position: relative;
  background: var(--bg-light);
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 16px;
  box-shadow: 0 4px 12px rgba(123,45,139,.3);
}

.step-card .material-icons-outlined {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 12px;
}

.step-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text);
}

.step-card p {
  color: var(--text-secondary);
  font-size: .92rem;
}

.step-connector {
  position: absolute;
  top: 44px;
  right: -16px;
  color: var(--primary-light);
  font-size: 28px;
  z-index: 1;
}

/* ===== Offers Section ===== */
.offers-section {
  background: var(--bg-light);
}

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

.offer-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 40px 28px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
  border-top: 4px solid var(--primary);
}

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

.offer-card .icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.offer-card .icon-circle .material-icons-outlined {
  font-size: 32px;
  color: #fff;
}

.offer-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--text);
}

.offer-card p {
  color: var(--text-secondary);
  font-size: .93rem;
  line-height: 1.6;
}

/* ===== Why Rent Section ===== */
.why-rent {
  background: var(--bg);
}

.why-rent-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: center;
}

.why-rent-text .section-title {
  text-align: left;
}

.why-rent-text p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.why-rent-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.why-rent-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-light);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--primary-dark);
  border: 1px solid var(--border);
}

.why-rent-tag .material-icons-outlined {
  font-size: 18px;
  color: var(--success);
}

.why-rent-img img {
  width: 400px;
  height: auto;
  border-radius: var(--radius-lg);
  margin: 0 auto;
}

/* ===== Prices Section ===== */
.prices-section {
  background: var(--bg-light);
}

.prices-intro {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
  color: var(--text-secondary);
  line-height: 1.7;
}

.price-types {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.price-type-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 28px 20px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  border-bottom: 3px solid var(--primary);
}

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

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

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

.price-type-card .price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.price-type-card .price small {
  font-size: .78rem;
  font-weight: 400;
  color: var(--text-secondary);
}

.tips-list {
  margin: 0 auto 48px;
  padding: 28px 32px;
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.tips-list h3 {
  font-size: 1.15rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tips-list h3 .material-icons-outlined {
  color: var(--accent);
}

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

.tips-list li {
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-secondary);
  font-size: .95rem;
}

.tips-list li .material-icons-outlined {
  font-size: 20px;
  color: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
}

.price-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.price-table thead {
  background: var(--primary);
  color: #fff;
}

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

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

.price-table tbody tr:hover {
  background: var(--bg-light);
}

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

/* ===== Reviews Section ===== */
.reviews-section {
  background: var(--bg);
}

.reviews-overview {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 48px;
  padding: 32px;
  background: var(--bg-light);
  border-radius: var(--radius);
}

.reviews-score {
  text-align: center;
}

.reviews-score .big-score {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.reviews-score .stars {
  color: var(--star);
  font-size: 1.4rem;
  margin: 8px 0;
}

.reviews-score .count {
  color: var(--text-secondary);
  font-size: .9rem;
}

.reviews-bars {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 240px;
}

.bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  color: var(--text-secondary);
}

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

.bar-row .bar-fill {
  height: 100%;
  background: var(--star);
  border-radius: 4px;
}

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

.review-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  border-top: 3px solid var(--primary-light);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.review-info h4 {
  font-size: .95rem;
  margin-bottom: 2px;
}

.review-info .review-city {
  font-size: .82rem;
  color: var(--text-light);
}

.review-stars {
  color: var(--star);
  margin-bottom: 10px;
  font-size: .9rem;
}

.review-text {
  color: var(--text-secondary);
  font-size: .9rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ===== Traffic Rules Section ===== */
.traffic-rules {
  background: var(--bg-light);
}

.traffic-full {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 36px 40px;
  margin-bottom: 32px;
  box-shadow: var(--shadow);
}

.traffic-full-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.traffic-full-header .material-icons-outlined {
  font-size: 32px;
  color: var(--primary);
}

.traffic-full-header h3 {
  font-size: 1.3rem;
}

.traffic-full p {
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.traffic-full ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 24px;
}

.traffic-full ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .93rem;
  color: var(--text-secondary);
  padding: 4px 0;
}

.traffic-full ul li .material-icons-outlined {
  font-size: 18px;
  color: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
}

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

.traffic-col-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}

.traffic-col-card .material-icons-outlined {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 12px;
}

.traffic-col-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.traffic-col-card p {
  color: var(--text-secondary);
  font-size: .93rem;
  line-height: 1.6;
}

/* ===== Attractions Section ===== */
.attractions-section {
  background: var(--bg);
}

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

.attraction-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.attraction-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.attraction-icon-wrap .material-icons-outlined {
  font-size: 28px;
  color: #fff;
}

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

.attraction-card p {
  font-size: .87rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.attraction-meta {
  display: flex;
  gap: 16px;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

.attraction-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.attraction-meta-item .material-icons-outlined {
  font-size: 16px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.attraction-meta-text {
  display: flex;
  flex-direction: column;
}

.meta-label {
  font-size: .7rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .03em;
}

.meta-value {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
}

/* ===== Popular Cars Section ===== */
.popular-cars {
  background: var(--bg-light);
}

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

.car-card {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
}

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

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

.car-img img {
  max-height: 160px;
  object-fit: contain;
}

.car-category-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: #fff;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 600;
}

.car-body {
  padding: 24px;
}

.car-body h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
}

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

.car-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--text-secondary);
}

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

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

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

.car-price .price-amount small {
  font-size: .8rem;
  font-weight: 400;
  color: var(--text-secondary);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
}

.btn-primary:hover {
  background: var(--accent-light);
  color: #fff;
  transform: translateY(-1px);
}

.btn-primary .material-icons-outlined {
  font-size: 18px;
}

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

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

.faq-item {
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  overflow: hidden;
  border-left: 4px solid transparent;
  transition: border-color var(--transition);
}

.faq-item.active {
  border-left-color: var(--primary);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: .97rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  font-family: var(--font);
  transition: background var(--transition);
}

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

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

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

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

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 20px 16px;
  color: var(--text-secondary);
  font-size: .92rem;
  line-height: 1.7;
}

/* ===== Footer Locations ===== */
.footer-locations {
  background: var(--bg-light);
  padding: 40px 0 28px;
  border-bottom: 1px solid var(--border);
}

.footer-locations-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 28px;
  text-align: center;
}

.footer-locations-title .material-icons-outlined {
  color: var(--accent);
  font-size: 24px;
}

.footer-locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px 16px;
}

.footer-locations-grid a {
  color: #616161;
  font-size: .9rem;
  padding: 6px 0;
  display: block;
  text-decoration: none;
  transition: color .25s;
}

.footer-locations-grid a:hover {
  color: var(--primary);
}

/* ===== Footer ===== */
.footer {
  background: #f5f5f5;
  color: #616161;
  padding: 48px 0 24px;
}

.footer-content {
  text-align: center;
}

.footer-logo {
  margin-bottom: 8px;
}

.footer-logo img {
  height: 40px;
  width: auto;
  margin: 0 auto 8px;
  opacity: 1;
  filter: invert(1);
}

.footer-copyright {
  font-size: .85rem;
  margin-bottom: 12px;
  color: #757575;
}

.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
  padding: 10px 24px;
  border-radius: 24px;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  margin: 4px 0 20px;
  transition: opacity .25s, transform .2s;
}

.footer-instagram:hover {
  opacity: .88;
  transform: translateY(-2px);
  color: #fff;
}

.footer-instagram svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  flex-shrink: 0;
}

.footer-seo {
  max-width: 700px;
  margin: 0 auto 24px;
  font-size: .82rem;
  color: #9e9e9e;
  line-height: 1.7;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.footer-links a {
  color: #616161;
  font-size: .85rem;
  transition: color var(--transition);
}

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

/* ===== Inner Page Styles ===== */
.page-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 100;
}

.page-content {
  padding: 64px 0;
}

.page-content h2 {
  font-size: 1.5rem;
  margin: 32px 0 12px;
  color: var(--text);
}

.page-content h3 {
  font-size: 1.15rem;
  margin: 24px 0 10px;
}

.page-content p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.75;
}

.page-content ul {
  list-style: disc;
  padding-left: 24px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.page-content ul li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* About page */
.about-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 48px 0;
}

.about-block {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--primary);
}

.about-block .material-icons-outlined {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 16px;
}

.about-block h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.about-block p {
  color: var(--text-secondary);
  font-size: .93rem;
  margin: 0;
}

.about-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.about-step {
  text-align: center;
  padding: 24px 16px;
  background: var(--bg-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.about-step h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.about-step p {
  font-size: .87rem;
  color: var(--text-secondary);
  margin: 0;
}

/* Contacts */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-item .material-icons-outlined {
  font-size: 28px;
  color: var(--primary);
  flex-shrink: 0;
}

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

.contact-item p, .contact-item a {
  color: var(--text-secondary);
  font-size: .93rem;
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--primary);
}

.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-wrapper iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

/* Category pages */
.category-features {
  background: var(--bg-light);
}

.category-why {
  background: var(--bg);
}

/* ===== Contacts Page ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 8px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-icon {
  font-size: 26px !important;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-label {
  font-size: .78rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 4px;
}

.contact-value {
  font-size: .97rem;
  color: var(--text);
  font-weight: 500;
}

.contact-value a {
  color: var(--primary);
}

.contact-value a:hover {
  color: var(--primary-dark);
}

.contact-info-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 20px 24px;
  border-left: 4px solid var(--primary-light);
}

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

.contact-info-note p {
  color: var(--text-secondary);
  font-size: .88rem;
  line-height: 1.65;
  margin: 0;
}

.contact-map-block h3 {
  color: var(--text);
}

.map-actions {
  margin-top: 20px;
  text-align: center;
}

/* ===== Privacy Policy Page ===== */
.privacy-content {
  margin: 0 auto;
}

.privacy-updated {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  font-size: .9rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  border-left: 4px solid var(--primary-light);
}

.privacy-updated .material-icons-outlined {
  font-size: 20px;
  color: var(--primary);
}

.privacy-block {
  margin-bottom: 36px;
}

.privacy-block h2 {
  font-size: 1.3rem;
  color: var(--primary-dark);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--bg-alt);
}

.privacy-block p {
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 14px;
  font-size: .95rem;
}

.privacy-block ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
}

.privacy-block ul li {
  color: var(--text-secondary);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 8px;
}

.privacy-block a {
  color: var(--primary);
}

.privacy-block a:hover {
  color: var(--primary-dark);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(1, 1fr); }
  .step-connector { display: none; }
  .why-rent-inner { grid-template-columns: 1fr; }
  .why-rent-img { display: none; }
  .price-types { grid-template-columns: repeat(1, 1fr); }
  .about-steps { grid-template-columns: repeat(1, 1fr); }
}

@media (max-width: 900px) {
  .offers-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .traffic-cols { grid-template-columns: 1fr; }
  .attractions-grid { grid-template-columns: repeat(2, 1fr); }
  .cars-grid { grid-template-columns: 1fr; }
  .about-blocks { grid-template-columns: 1fr; }
  .contacts-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-locations-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .footer-locations-grid { grid-template-columns: repeat(1, 1fr); }
  .section { padding: 56px 0; }
  .section-title { font-size: 1.6rem; }
  .hero h1 { font-size: 1.8rem; }
  .hero-desc { font-size: 1rem; }
  .hero-badge { font-size: .82rem; padding: 8px 14px; }
  .hero--short h1 { font-size: 1.6rem; }
  .traffic-full ul { grid-template-columns: 1fr; }
  .reviews-overview { flex-direction: column; gap: 20px; }

  .nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    padding: 24px 20px;
    gap: 0;
    z-index: 999;
  }

  .nav.active {
    display: flex;
    background: rgba(30,5,40,.97);
  }

  .nav a {
    padding: 12px 0;
    color: rgba(255,255,255,.9);
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-size: 1rem;
  }

  .nav a:hover,
  .nav a.active {
    color: #fff;
  }

  .mobile-toggle {
    display: block;
  }

  .header--transparent .nav {
    background: rgba(30,5,40,.97);
  }

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

@media (max-width: 480px) {
  .footer-locations-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.5rem; }
  .hero--short h1 { font-size: 1.35rem; }
  .price-types { grid-template-columns: 1fr; }
  .about-steps { grid-template-columns: 1fr; }
  .tips-list { padding: 20px 16px; }
}
