/* ===== VloraCar - Aurora Design Theme ===== */
/* Unique design: deep violet gradients, glassmorphism, geometric accents */

/* --- CSS Custom Properties --- */
:root {
  --primary: #7B2FF2;
  --primary-dark: #5A1DB8;
  --primary-light: #A76BFF;
  --secondary: #00D4AA;
  --secondary-dark: #00B894;
  --accent: #FF6B6B;
  --dark: #1A0A2E;
  --dark-soft: #2D1B4E;
  --text: #2E2E3A;
  --text-light: #6B6B80;
  --text-muted: #9A9AB0;
  --bg: #FAFAFF;
  --bg-alt: #F3EEFF;
  --bg-card: #FFFFFF;
  --white: #FFFFFF;
  --border: rgba(123, 47, 242, 0.1);
  --shadow-sm: 0 2px 8px rgba(26, 10, 46, 0.06);
  --shadow-md: 0 8px 30px rgba(26, 10, 46, 0.1);
  --shadow-lg: 0 20px 60px rgba(26, 10, 46, 0.15);
  --shadow-glow: 0 0 40px rgba(123, 47, 242, 0.15);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --container: 1200px;
  --header-height: 72px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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 {
  color: var(--dark);
  line-height: 1.3;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

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

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

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 16px auto 0;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(123, 47, 242, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(123, 47, 242, 0.5);
  color: var(--white);
}

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

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-accent {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 212, 170, 0.35);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 212, 170, 0.5);
  color: var(--white);
}

/* ========================================
   HEADER
======================================== */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 0;
  transition: background var(--transition), box-shadow var(--transition);
}

/* On subpages - solid header */
.page-subpage .site-header {
  position: relative;
  background: var(--dark);
  box-shadow: var(--shadow-md);
}

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

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

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

.logo-text span {
  background: linear-gradient(135deg, var(--secondary), #7DFFDA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav-menu a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 18px;
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  text-decoration: none;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   HERO SECTION (Homepage)
======================================== */
.hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 10, 46, 0.75) 0%,
    rgba(26, 10, 46, 0.55) 50%,
    rgba(26, 10, 46, 0.8) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.hero-content h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--secondary), #7DFFDA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.2rem;
  margin-bottom: 36px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
}

.hero-badge:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

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

/* Geometric decorations */
.hero-decor {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  z-index: 1;
  pointer-events: none;
}

.hero-decor-1 {
  width: 400px;
  height: 400px;
  background: var(--secondary);
  top: -100px;
  right: -100px;
}

.hero-decor-2 {
  width: 300px;
  height: 300px;
  background: var(--primary-light);
  bottom: -80px;
  left: -60px;
}

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

.booking-widget-wrapper {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 300px;
}

/* ========================================
   HOW TO RENT SECTION
======================================== */
.how-to-rent {
  background: var(--bg);
}

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

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px; /* center of the 56px step-number circles */
  left: calc(12.5% + 28px); /* start at right edge of first circle */
  width: calc(75% - 56px); /* end at left edge of last circle */
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
  z-index: 0;
}

.step-card {
  position: relative;
  text-align: center;
  z-index: 1;
}

.step-number {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 800;
  box-shadow: 0 6px 20px rgba(123, 47, 242, 0.3);
  position: relative;
}

.step-icon {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 12px;
}

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

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

/* ========================================
   OFFERS / FEATURES SECTION
======================================== */
.offers-section {
  background: linear-gradient(135deg, #F5EEFF 0%, #EDE4FF 50%, #E8F8F5 100%);
}

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

.offer-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

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

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

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

.offer-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  font-size: 28px;
}

.offer-icon.purple {
  background: rgba(123, 47, 242, 0.1);
  color: var(--primary);
}

.offer-icon.teal {
  background: rgba(0, 212, 170, 0.1);
  color: var(--secondary);
}

.offer-icon.coral {
  background: rgba(255, 107, 107, 0.1);
  color: var(--accent);
}

.offer-card h3 {
  margin-bottom: 12px;
}

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

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

.why-rent-content {
  max-width: 900px;
  margin: 0 auto;
}

.why-rent-content p {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  font-weight: 500;
  transition: all var(--transition);
}

.benefit-item:hover {
  background: linear-gradient(135deg, rgba(123, 47, 242, 0.08), rgba(0, 212, 170, 0.08));
  transform: translateX(4px);
}

.benefit-item .material-icons-outlined {
  color: var(--secondary);
  font-size: 22px;
}

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

.pricing-intro {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
  color: var(--text-light);
  font-size: 1.05rem;
}

.price-tips {
  max-width: 800px;
  margin: 0 auto 50px;
  padding: 30px;
  background: linear-gradient(135deg, #F5EEFF 0%, #E8F8F5 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.price-tips h3 {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-tips h3 .material-icons-outlined {
  color: var(--secondary);
}

.price-tips ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-tips li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text);
  font-size: 0.95rem;
}

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

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

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

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

.price-cat-icon {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 12px;
}

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

.price-cat-card .price-range {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.price-cat-card .price-unit {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Pricing table */
.pricing-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.pricing-table-wrapper h3 {
  margin-bottom: 20px;
  text-align: center;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  font-size: 0.95rem;
}

.pricing-table thead th {
  background: linear-gradient(135deg, var(--dark), var(--dark-soft));
  color: var(--white);
  padding: 16px 18px;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}

.pricing-table tbody tr {
  transition: background var(--transition);
}

.pricing-table tbody tr:nth-child(even) {
  background: rgba(123, 47, 242, 0.02);
}

.pricing-table tbody tr:hover {
  background: rgba(123, 47, 242, 0.06);
}

.pricing-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.pricing-table .price-cell {
  font-weight: 700;
  color: var(--primary);
}

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

.reviews-overview {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
  padding: 30px;
  background: linear-gradient(135deg, var(--dark), var(--dark-soft));
  border-radius: var(--radius-xl);
  color: var(--white);
}

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

.reviews-score .big-score {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--secondary), #7DFFDA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.reviews-score .score-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-top: 2px;
}

.reviews-meta {
  text-align: left;
}

.stars-display {
  display: flex;
  gap: 4px;
  margin-bottom: 6px;
}

.stars-display .material-icons-outlined {
  color: #FFD700;
  font-size: 24px;
}

.reviews-meta .total-reviews {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

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

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

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

.review-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.1;
  font-family: Georgia, serif;
  line-height: 1;
}

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

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

.review-info .review-name {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.95rem;
}

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

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}

.review-stars .material-icons-outlined {
  color: #FFD700;
  font-size: 18px;
}

.review-text {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

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

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

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

.destination-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: transform var(--transition);
}

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

.destination-card:hover::after {
  transform: scaleX(1);
}

.destination-card h3 {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.destination-card h3 .material-icons-outlined {
  color: var(--primary);
  font-size: 22px;
  margin-top: 2px;
}

.destination-card p {
  color: var(--text-light);
  font-size: 0.92rem;
  margin-bottom: 14px;
}

.destination-meta {
  display: flex;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

.destination-meta .material-icons-outlined {
  font-size: 16px;
  color: var(--primary);
}

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

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

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

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

.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: transform var(--transition);
}

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

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

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

.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(--primary);
}

.car-card-footer {
  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(--primary);
}

.car-price span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
}

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

.faq-list {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item:hover {
  border-color: rgba(123, 47, 242, 0.2);
}

.faq-item.active {
  box-shadow: var(--shadow-sm);
  border-color: rgba(123, 47, 242, 0.25);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  color: var(--dark);
  gap: 16px;
  user-select: none;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question .material-icons-outlined {
  color: var(--primary);
  font-size: 24px;
  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 0.4s ease, padding 0.3s ease;
}

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

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

/* ========================================
   FOOTER
======================================== */
.site-footer {
  background: linear-gradient(135deg, var(--dark), var(--dark-soft));
  color: rgba(255, 255, 255, 0.7);
  padding: 50px 0 0;
}

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

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

.footer-seo-text {
  max-width: 500px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
}

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

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

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

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

/* ========================================
   SUBPAGE STYLES
======================================== */
.page-hero {
  background: linear-gradient(135deg, var(--dark), var(--dark-soft));
  padding: 60px 0;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 12px;
}

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

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

.page-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
}

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

.page-content p {
  color: var(--text-light);
  font-size: 1.02rem;
  line-height: 1.8;
}

.page-content ul {
  margin: 16px 0;
  padding-left: 0;
}

.page-content ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--text-light);
}

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

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

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

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

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

.about-feature p {
  font-size: 0.92rem;
}

/* How it works steps */
.about-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 40px 0;
}

.about-step {
  text-align: center;
  padding: 24px 16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.about-step-num {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1rem;
}

.about-step h3 {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.about-step p {
  font-size: 0.88rem;
}

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

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  margin-bottom: 16px;
}

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

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

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

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

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

/* Privacy policy */
.privacy-content h2 {
  font-size: 1.4rem;
}

.privacy-content h3 {
  margin-top: 24px;
  margin-bottom: 8px;
  font-size: 1.15rem;
}

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

  .steps-grid::before {
    display: none;
  }

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

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

  .footer-top {
    flex-direction: column;
    gap: 24px;
  }

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

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  /* Mobile navigation */
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    inset: 0;
    background: rgba(26, 10, 46, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
    z-index: 999;
  }

  .nav-menu.open {
    opacity: 1;
    pointer-events: all;
  }

  .nav-menu a {
    font-size: 1.3rem;
    padding: 12px 32px;
  }

  .hero {
    min-height: 500px;
    padding: 120px 0 60px;
  }

  .hero-badges {
    gap: 10px;
  }

  .hero-badge {
    padding: 8px 14px;
    font-size: 0.85rem;
  }

  .steps-grid,
  .offers-grid,
  .destinations-grid,
  .top-cars-grid,
  .price-categories {
    grid-template-columns: 1fr;
  }

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

  .reviews-overview {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

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

  .stars-display {
    justify-content: center;
  }

  .benefits-list {
    grid-template-columns: 1fr;
  }

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

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

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

  .footer-links {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .pricing-table {
    font-size: 0.85rem;
  }

  .pricing-table thead th,
  .pricing-table td {
    padding: 10px 12px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: auto;
    padding: 100px 0 40px;
  }

  .hero-description {
    font-size: 1rem;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}
