/* Ziltrip Mauritius - tweakcn Theme + Custom Styles */

/* ========================================
   CSS RESET & BASE
   ======================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* ========================================
   FONTS
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Fira+Code:wght@300..700&display=swap');

/* ========================================
   TWEAKCN THEME VARIABLES - Light Blue & White
   ======================================== */
:root {
  /* Light Mode Colors - Light Blue Theme */
  --background: #ffffff;
  --foreground: #1a3a52;
  --card: #f0f7ff;
  --card-foreground: #1a3a52;
  --popover: #f0f7ff;
  --popover-foreground: #1a3a52;
  --primary: #4a90e2;
  --primary-foreground: #ffffff;
  --secondary: #e8f2ff;
  --secondary-foreground: #1a3a52;
  --muted: #d1e0f0;
  --muted-foreground: #5a7a92;
  --accent: #7cb3ff;
  --accent-foreground: #1a3a52;
  --destructive: #ef4444;
  --destructive-foreground: #ffffff;
  --border: #d1e0f0;
  --input: #e8f2ff;
  --ring: #4a90e2;
  --chart-1: #4a90e2;
  --chart-2: #2563eb;
  --chart-3: #1e40af;
  --chart-4: #7cb3ff;
  --chart-5: #93c5fd;
  --sidebar: #f0f7ff;
  --sidebar-foreground: #1a3a52;
  --sidebar-primary: #4a90e2;
  --sidebar-primary-foreground: #ffffff;
  --sidebar-accent: #7cb3ff;
  --sidebar-accent-foreground: #1a3a52;
  --sidebar-border: #d1e0f0;
  --sidebar-ring: #4a90e2;
  --footer-bg: #1a3a52;
  --footer-fg: #ffffff;

  /* Typography */
  --font-sans: 'Montserrat', ui-sans-serif, system-ui, sans-serif;
  --font-serif: Georgia, Cambria, "Times New Roman", Times, serif;
  --font-mono: 'Fira Code', ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  /* Spacing */
  --radius: 0.35rem;
}

/* Dark Mode - Deep Blue Theme */
.dark {
  --background: #0f1f2e;
  --foreground: #e8f2ff;
  --card: #1a3a52;
  --card-foreground: #e8f2ff;
  --popover: #1a3a52;
  --popover-foreground: #e8f2ff;
  --primary: #7cb3ff;
  --primary-foreground: #0f1f2e;
  --secondary: #2a4a6a;
  --secondary-foreground: #e8f2ff;
  --muted: #3a5a7a;
  --muted-foreground: #b0c8e0;
  --accent: #5a8fdd;
  --accent-foreground: #e8f2ff;
  --destructive: #ef4444;
  --destructive-foreground: #ffffff;
  --border: #2a4a6a;
  --input: #2a4a6a;
  --ring: #7cb3ff;
  --chart-1: #7cb3ff;
  --chart-2: #60a5fa;
  --chart-3: #93c5fd;
  --chart-4: #4a90e2;
  --chart-5: #2563eb;
  --sidebar: #1a3a52;
  --sidebar-foreground: #e8f2ff;
  --sidebar-primary: #7cb3ff;
  --sidebar-primary-foreground: #0f1f2e;
  --sidebar-accent: #5a8fdd;
  --sidebar-accent-foreground: #e8f2ff;
  --sidebar-border: #2a4a6a;
  --sidebar-ring: #7cb3ff;
  --footer-bg: #0f1f2e;
  --footer-fg: #e8f2ff;
}

/* ========================================
   BASE STYLES
   ======================================== */
body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* ========================================
   HEADER / NAVIGATION
   ======================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--card);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--muted-foreground);
}

.logo-image {
  height: 7rem;
  width: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo:hover .logo-image {
  transform: scale(1.05);
}

.nav-desktop {
  display: none;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--foreground);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--card);
  border-bottom: 1px solid var(--border);
  padding: 1rem;
}

.mobile-menu.open {
  display: block;
}

@media (min-width: 768px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted-foreground);
  border-bottom: 1px solid var(--border);
}

.mobile-nav-link:last-child {
  border-bottom: none;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--foreground);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  padding: 2rem;
  max-width: 800px;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 480px) {
  .hero-ctas {
    flex-direction: row;
    justify-content: center;
  }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
}

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

.btn-outline {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline:hover {
  background-color: white;
  color: var(--foreground);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.section-subtitle {
  text-align: center;
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* ========================================
   WELCOME / ABOUT SECTION
   ======================================== */
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .welcome-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.welcome-content h2 {
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .welcome-content h2 {
    font-size: 2.25rem;
  }
}

.welcome-content p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.welcome-features {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.feature-text {
  font-weight: 500;
}

.welcome-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background-color: var(--muted);
}

.welcome-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================
   VEHICLE CARDS
   ======================================== */
.vehicles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .vehicles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .vehicles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.vehicle-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
}

.vehicle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.1);
}

.vehicle-image {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--muted) 0%, var(--accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}

.vehicle-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.vehicle-image img {
  max-width: 95%;
  max-height: 95%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: brightness(1.01) contrast(1.03);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.vehicle-card:hover .vehicle-image img {
  transform: scale(1.05);
  filter: brightness(1.05) contrast(1.08);
}

.vehicle-info {
  padding: 1.5rem;
}

/* .vehicle-category - Replaced with .vehicle-subtitle (below model name) */

.vehicle-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.vehicle-subtitle {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.vehicle-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.vehicle-specs {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: var(--muted-foreground);
}

.spec-icon {
  width: 1rem;
  height: 1rem;
}

.vehicle-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.vehicle-card .btn {
  width: 100%;
}

/* ========================================
   CATEGORY CARDS (Homepage)
   ======================================== */
.category-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.1);
}

.category-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  color: var(--primary);
}

.category-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.category-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

/* ========================================
   HELP / CONTACT SECTION
   ======================================== */
.help-section {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.help-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .help-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .help-grid {
    grid-template-columns: 1fr 1fr 1.5fr;
  }
}

.help-column h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
  opacity: 0.8;
}

.contact-text {
  font-size: 0.9375rem;
  opacity: 0.9;
}

.contact-text a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-text a:hover {
  opacity: 0.8;
}

/* ========================================
   FORMS
   ======================================== */
.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  background-color: var(--background);
  border: 1px solid var(--input);
  border-radius: var(--radius);
  color: var(--foreground);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--ring);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* Dark form inputs (for help section) */
.help-section .form-input,
.help-section .form-textarea,
.help-section .form-select {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.help-section .form-input::placeholder,
.help-section .form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.help-section .form-input:focus,
.help-section .form-textarea:focus,
.help-section .form-select:focus {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.help-section .btn-secondary {
  background-color: white;
  color: var(--primary);
}

.help-section .btn-secondary:hover {
  opacity: 0.9;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background-color: var(--footer-bg);
  color: var(--footer-fg);
  border-top: 1px solid rgba(76, 144, 226, 0.2);
  padding: 1.5rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-link {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #7cb3ff;
}

/* ========================================
   VEHICLE DETAIL PAGE
   ======================================== */
.vehicle-detail {
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .vehicle-detail {
    padding: 4rem 0;
  }
}

.vehicle-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .vehicle-detail-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: start;
  }
}

.vehicle-detail-image {
  background: linear-gradient(135deg, var(--accent) 0%, var(--muted) 100%);
  border-radius: calc(var(--radius) * 3);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.12),
    0 0 1px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  background-clip: padding-box;
}

.vehicle-detail-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 70%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0.02) 100%);
  pointer-events: none;
  z-index: 1;
}

.vehicle-detail-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: calc(var(--radius) * 3);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.04);
  pointer-events: none;
  z-index: 2;
}

.vehicle-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 0;
  filter: brightness(1.02) contrast(1.05);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.vehicle-detail-image:hover img {
  transform: scale(1.03);
}

.vehicle-detail-info h1 {
  font-size: 2rem;
  margin-bottom: 0.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.vehicle-detail-subtitle {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .vehicle-detail-info h1 {
    font-size: 2.75rem;
  }
}

/* .vehicle-detail-category - Replaced with .vehicle-detail-subtitle (below model name) */

.vehicle-detail-description {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  line-height: 1.8;
  font-size: 1rem;
}

/* Specs Cards Grid */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .specs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.spec-card {
  background-color: var(--secondary);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.5);
  padding: 1.25rem;
  text-align: center;
  transition: all 0.3s ease;
}

.spec-card:hover {
  border-color: var(--primary);
  background-color: var(--card);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.spec-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.spec-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.spec-unit {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  font-weight: 500;
}

/* Table fallback for additional specs */
.specs-table {
  width: 100%;
  margin: 2.5rem 0;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.5);
  overflow: hidden;
}

.specs-table tr {
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 0;
}

.specs-table tr:last-child {
  border-bottom: none;
}

.specs-table td {
  padding: 1rem;
  flex: 1;
}

.specs-table td:first-child {
  font-weight: 600;
  color: var(--foreground);
  flex: 0 0 35%;
  background-color: var(--secondary);
  border-right: 1px solid var(--border);
}

.specs-table td:last-child {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Features List */
.features-list {
  margin: 2.5rem 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.feature-item-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
}

.feature-check {
  width: 1.375rem;
  height: 1.375rem;
  flex-shrink: 0;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.75rem;
}

.feature-text-detail {
  color: var(--foreground);
  font-size: 0.9375rem;
  font-weight: 500;
}

.vehicle-detail-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.08) 0%, rgba(124, 179, 255, 0.04) 100%);
  border: 1px solid rgba(74, 144, 226, 0.15);
  border-radius: calc(var(--radius) * 1.5);
  letter-spacing: -0.01em;
}

.vehicle-detail-ctas {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 480px) {
  .vehicle-detail-ctas {
    grid-template-columns: 1fr 1fr;
  }
}

.vehicle-detail-ctas .btn {
  width: 100%;
  font-size: 1rem;
  padding: 1.125rem 1.5rem;
  border-radius: calc(var(--radius) * 1.5);
  font-weight: 600;
}

/* Related Vehicles */
.related-vehicles {
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 2px solid var(--border);
}

.related-vehicles h2 {
  font-size: 1.875rem;
  margin-bottom: 2.5rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .related-vehicles h2 {
    font-size: 2.25rem;
  }
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1.5fr;
  }
}

.contact-info-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.contact-info-card h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.contact-info-text h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-info-text p {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
}

.contact-info-text a {
  color: var(--foreground);
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

.contact-form-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.contact-form-card h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

/* ========================================
   BREADCRUMB
   ======================================== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.breadcrumb a {
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: var(--foreground);
}

.breadcrumb-separator {
  opacity: 0.5;
}

.breadcrumb-current {
  color: var(--foreground);
  font-weight: 500;
}

/* ========================================
   PAGE HEADER
   ======================================== */
.page-header {
  padding: 3rem 0;
  text-align: center;
  background-color: var(--secondary);
}

@media (min-width: 768px) {
  .page-header {
    padding: 4rem 0;
  }
}

.page-header h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
}

.page-header p {
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 0 auto;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* ========================================
   PLACEHOLDER IMAGES
   ======================================== */
.placeholder-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--muted) 0%, var(--accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

/* ========================================
   DARK MODE TOGGLE (Optional)
   ======================================== */
.theme-toggle {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--foreground);
  border-radius: var(--radius);
  transition: background-color 0.2s ease;
}

.theme-toggle:hover {
  background-color: var(--secondary);
}

.theme-toggle svg {
  width: 1.25rem;
  height: 1.25rem;
}
