/* ==========================================================================
   RIVIERARENT - Modern Premium 3D Glassmorphic Stylesheet
   Matching Reference Layout 1-in-1 with Luxury Micro-interactions
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --bg-gradient: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 40%, #f0f4ff 70%, #dbeafe 100%);
  --card-bg: rgba(255, 255, 255, 0.85);
  --card-glass: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.9);
  --primary-blue: #2563eb;
  --primary-gradient: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  --accent-orange: #ff5722;
  --accent-coral: linear-gradient(135deg, #ff6b4a 0%, #ff4757 100%);
  --accent-glow: rgba(37, 99, 235, 0.35);
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --border-light: rgba(226, 232, 240, 0.8);
  --shadow-soft: 0 10px 30px -5px rgba(37, 99, 235, 0.08), 0 4px 12px -2px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 20px 40px -10px rgba(37, 99, 235, 0.18), 0 8px 24px -4px rgba(0, 0, 0, 0.08);
  --radius-xl: 32px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-pill: 9999px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-gradient);
  color: var(--text-dark);
  min-height: 100vh;
  padding: 24px 16px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow-x: hidden;
  position: relative;
}

/* Background Floating 3D Elements */
.bg-floating-elements {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.6;
  animation: floatOrb 12s infinite ease-in-out alternate;
}

.orb-1 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.5) 0%, rgba(168, 85, 247, 0) 70%);
  top: -50px;
  left: -50px;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, rgba(14, 165, 233, 0) 70%);
  bottom: 10%;
  right: -100px;
  animation-delay: -4s;
}

.orb-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.35) 0%, rgba(244, 114, 182, 0) 70%);
  top: 40%;
  left: -80px;
  animation-delay: -7s;
}

@keyframes floatOrb {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(40px) scale(1.08); }
}

/* Main Outer Container Box */
.main-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1320px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  padding: 24px;
  overflow: hidden;
}

/* Header & Navigation Bar */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-pill);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
  margin-bottom: 24px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

.brand-icon {
  width: 36px;
  height: 36px;
  background: var(--primary-gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  box-shadow: 0 8px 16px var(--accent-glow);
}

.brand-name span {
  color: var(--primary-blue);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-link a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  position: relative;
  padding: 6px 0;
}

.nav-link a:hover,
.nav-link.active a {
  color: var(--primary-blue);
}

.nav-link.active a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-blue);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-ghost {
  background: transparent;
  color: var(--primary-blue);
}

.btn-ghost:hover {
  background: rgba(37, 99, 235, 0.08);
}

.btn-primary {
  background: var(--primary-gradient);
  color: #fff;
  box-shadow: 0 8px 20px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.45);
}

.btn-coral {
  background: var(--accent-coral);
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 71, 87, 0.35);
}

.btn-coral:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 71, 87, 0.45);
}

/* Hero Section */
.hero-section {
  position: relative;
  background: linear-gradient(145deg, rgba(238, 242, 255, 0.9) 0%, rgba(224, 231, 255, 0.8) 100%);
  border-radius: var(--radius-lg);
  padding: 40px 32px 48px 32px;
  border: 1px solid var(--glass-border);
  overflow: hidden;
  margin-bottom: 30px;
}

.hero-curved-bg {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(circle, rgba(147, 197, 253, 0.3) 0%, rgba(199, 210, 254, 0.1) 70%);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  transform: rotate(-15deg);
  pointer-events: none;
}

.hero-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text-side {
  max-width: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-blue);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
  margin-bottom: 16px;
}

.hero-badge-icon {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10b981;
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.hero-title span {
  background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* Glass Search Bar Widget */
.hero-search-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 16px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.search-inputs-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
}

.search-field-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 12px;
  background: rgba(248, 250, 252, 0.8);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.search-field-group:focus-within {
  border-color: var(--primary-blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.search-field-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

.search-field-select,
.search-field-input {
  border: none;
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  outline: none;
  font-family: inherit;
  width: 100%;
}

.hero-search-btn {
  height: 100%;
  padding: 0 22px;
  font-size: 14px;
}

.search-tags-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  padding-top: 8px;
  border-top: 1px solid var(--border-light);
}

.search-tag-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  margin-right: 2px;
}

.tag-pill {
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  background: rgba(241, 245, 249, 0.9);
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
}

.tag-pill:hover,
.tag-pill.active {
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary-blue);
  border-color: rgba(37, 99, 235, 0.3);
}

/* Hero Visual Stage Right Side */
.hero-visual-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
  border: 4px solid rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.hero-image-wrapper:hover {
  transform: scale(1.02);
}

.hero-image-wrapper img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.hero-floating-card {
  position: absolute;
  bottom: -15px;
  left: -15px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  animation: floatCard 6s infinite ease-in-out alternate;
}

@keyframes floatCard {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

.floating-card-icon {
  width: 40px;
  height: 40px;
  background: #eff6ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary-blue);
}

.floating-card-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--text-dark);
}

.floating-card-subtitle {
  font-size: 11px;
  font-weight: 600;
  color: #10b981;
}

/* Categories Section Grid (2x5 matching reference) */
.categories-section {
  margin-bottom: 36px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.category-tile {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 18px 12px;
  text-align: center;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.category-tile:hover {
  transform: translateY(-5px);
  background: #ffffff;
  box-shadow: var(--shadow-hover);
  border-color: rgba(37, 99, 235, 0.3);
}

.category-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: var(--transition);
}

.tile-blue { background: #eff6ff; color: #2563eb; }
.tile-orange { background: #fff7ed; color: #f97316; }
.tile-teal { background: #f0fdf4; color: #0d9488; }
.tile-purple { background: #faf5ff; color: #9333ea; }
.tile-red { background: #fef2f2; color: #ef4444; }

.category-tile:hover .category-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.category-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
}

/* Featured Fleet Section */
.fleet-section {
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1px solid var(--glass-border);
  margin-bottom: 36px;
}

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

.section-title-group h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

.section-title-group p {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.filter-tabs {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(241, 245, 249, 0.8);
  padding: 4px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-light);
}

.filter-btn {
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  border: none;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: #ffffff;
  color: var(--primary-blue);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Fleet Cards Grid (4x2 matching reference) */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.fleet-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

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

.card-img-wrapper {
  position: relative;
  width: 100%;
  height: 170px;
  overflow: hidden;
  background: #f1f5f9;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.fleet-card:hover .card-img-wrapper img {
  transform: scale(1.08);
}

.card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: var(--radius-pill);
}

.card-wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-size: 14px;
  transition: var(--transition);
}

.card-wishlist-btn:hover {
  background: #fff;
  transform: scale(1.1);
}

.card-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-car-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.card-rating-row {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.rating-stars {
  color: #fbbf24;
}

.card-specs-flex {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.spec-chip {
  background: rgba(241, 245, 249, 0.9);
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 600;
  padding: 3px 6px;
  border-radius: 4px;
}

.card-footer-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--border-light);
}

.price-box {
  display: flex;
  flex-direction: column;
}

.price-val {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--primary-blue);
}

.price-unit {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-light);
}

/* Calculator Section */
.calculator-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 36px;
  position: relative;
  overflow: hidden;
}

.calc-glow {
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.25) 0%, transparent 60%);
  pointer-events: none;
}

.calc-info h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.2;
}

.calc-info p {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.calc-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

.calc-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #e2e8f0;
}

.check-icon {
  width: 22px;
  height: 22px;
  background: rgba(37, 99, 235, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  font-weight: 800;
}

.calc-card-widget {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.calc-field-group {
  margin-bottom: 14px;
}

.calc-field-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.calc-input, .calc-select {
  width: 100%;
  padding: 10px 14px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  outline: none;
  font-family: inherit;
}

.calc-result-box {
  background: rgba(37, 99, 235, 0.15);
  border: 1px dashed rgba(59, 130, 246, 0.4);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  margin-bottom: 16px;
}

.total-label {
  font-size: 12px;
  color: #94a3b8;
}

.total-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #60a5fa;
}

/* Stats Bar & Testimonials */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
  margin-bottom: 36px;
  text-align: center;
}

.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 2px;
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.author-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-dark);
}

.author-tag {
  font-size: 11px;
  color: var(--text-muted);
}

.testimonial-text {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
  font-style: italic;
}

/* FAQ Section */
.faq-section {
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1px solid var(--glass-border);
  margin-bottom: 36px;
}

.faq-title {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
  text-align: center;
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

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

.faq-answer {
  padding: 0 20px 16px 20px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

/* Footer Section */
.site-footer {
  background: #0f172a;
  color: #94a3b8;
  border-radius: var(--radius-lg);
  padding: 36px 28px 20px 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 28px;
  margin-bottom: 28px;
}

.footer-col h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 13px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: #3b82f6;
}

.legal-details-box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 14px;
  font-size: 11px;
  line-height: 1.6;
  color: #cbd5e1;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-details-box strong {
  color: #fff;
}

.anpc-badges-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.anpc-badge-link {
  display: inline-block;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: #60a5fa;
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(96, 165, 250, 0.3);
}

.anpc-badge-link:hover {
  background: rgba(96, 165, 250, 0.2);
}

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
}

/* Modals & Cookies */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-container {
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 650px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 28px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  position: relative;
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #f1f5f9;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  max-width: 380px;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(16px);
  color: #fff;
  padding: 16px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 12px;
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-content-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .calculator-section { grid-template-columns: 1fr; }
  .footer-top-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  body { padding: 8px 4px; }
  .main-wrapper { padding: 12px; border-radius: 20px; }
  .site-header { padding: 10px 14px; margin-bottom: 16px; }
  .brand-logo { font-size: 18px; }
  .brand-icon { width: 30px; height: 30px; font-size: 15px; }
  .nav-links { display: none; }
  .btn-ghost { display: none; }
  .btn { padding: 8px 14px; font-size: 12px; }
  .hero-section { padding: 20px 14px; border-radius: 16px; }
  .hero-title { font-size: 28px; }
  .hero-subtitle { font-size: 13px; }
  .search-inputs-row { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); padding: 16px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-top-grid { grid-template-columns: 1fr; }
  .footer-bottom-bar { flex-direction: column; gap: 10px; text-align: center; }
  .cookie-banner { left: 16px; right: 16px; max-width: none; }
}
