/* ========================================
   WIE NEU AUTOAUFBEREITUNG
   Modern Design System – Blue / Green / Orange
   ======================================== */

:root {
  --primary: #d4af37;         /* Gold */
  --primary-light: #e5c158;   /* Light Gold */
  --secondary: #d4af37;       /* Gold */
  --accent: #d4af37;          /* Gold */
  --ink: #ffffff;             /* White */
  --ink-soft: #f0f0f0;        /* Light Gray */

  --bg: #1a1a1a;              /* Dark */
  --bg-light: #2a2a2a;        /* Light Dark */
  --bg-dark: #0a0a0a;

  --text: #ffffff;
  --text-secondary: #d0d0d0;
  --text-tertiary: #999999;
  --border: #404040;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-border: rgba(255, 255, 255, 0.08);

  --radius: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}

/* Reset */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background:
    radial-gradient(1200px 550px at 85% -10%, rgba(212, 175, 55, 0.18), transparent 55%),
    radial-gradient(900px 500px at -10% 15%, rgba(255, 255, 255, 0.08), transparent 50%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

section {
  scroll-margin-top: 100px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', -apple-system, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

p { color: var(--text); }

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  font-family: inherit;
  letter-spacing: 0.02em;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #000000;
  border-color: var(--primary);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background-color: var(--secondary);
  color: #000000;
  border-color: var(--secondary);
}

.btn-secondary:hover {
  background-color: var(--primary-light);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background-color: rgba(212, 175, 55, 0.1);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

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

/* ========================================
   PROMO BANNER
   ======================================== */
.promo-banner {
  background: linear-gradient(90deg, #b8860b, #d4af37);
  color: #ffffff;
  overflow: hidden;
  white-space: nowrap;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 101;
}

.promo-banner-track {
  display: inline-block;
  padding-left: 100%;
  animation: promo-scroll 12s linear infinite;
}

.promo-banner-track span {
  display: inline-block;
  padding: 0.75rem 2rem;
}

@keyframes promo-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========================================
   HEADER / NAVIGATION
   ======================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 14, 14, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.45);
  box-shadow: var(--shadow-sm);
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.96);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.32);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.3rem;
}

.logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-text {
  color: var(--primary);
  letter-spacing: 0.03em;
}

.nav-cta {
  border: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12), 0 10px 25px rgba(212, 175, 55, 0.4);
  animation: cta-pulse 3s ease-in-out infinite;
}

@keyframes cta-pulse {
  0%, 100% {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12), 0 10px 25px rgba(212, 175, 55, 0.4);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.2), 0 14px 30px rgba(212, 175, 55, 0.52);
  }
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.site-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.site-nav a {
  color: var(--text);
  font-weight: 500;
  transition: color 0.3s ease;
}

.site-nav a:hover {
  color: var(--primary);
  text-decoration: none;
}

.site-nav button {
  color: var(--text);
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
    box-shadow: var(--shadow);
  }

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

  .site-nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .site-nav a,
  .site-nav button {
    color: var(--text);
  }
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
  background-image: url('../assets/hero-bg.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.hero-background {
  display: none;
}

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

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.5) 48%, rgba(0, 0, 0, 0.08) 78%);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  border-radius: 50%;
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #f7f1df;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-title {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9), 0 0 10px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 600px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.hero-note {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 1.8rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-stat {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  padding: 0.85rem 0.9rem;
  backdrop-filter: blur(4px);
}

.hero-stat strong {
  display: block;
  color: #f5deb0;
  font-size: 1.15rem;
}

.hero-stat span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.8rem;
}

.hero-trust {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .hero {
    padding: 3rem 0;
    min-height: auto;
    background-attachment: scroll;
  }

  .hero-title {
    font-size: 2rem;
  }

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

  .hero-ctas {
    flex-direction: column;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-trust {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ========================================
   FEATURES SECTION
   ======================================== */

.features-section {
  padding: 4rem 0;
  background: var(--bg-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--surface-border);
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}

.feature-card:hover {
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  margin-bottom: 0.5rem;
}

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

/* ========================================
   SERVICES SECTION
   ======================================== */

.services-section {
  padding: 4rem 0;
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}

.service-card:hover {
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
  transform: translateY(-4px);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  margin-bottom: 1rem;
  color: var(--primary);
}

.service-card ul {
  list-style: none;
}

.service-card li {
  padding: 0.4rem 0;
  color: var(--text);
  font-size: 0.95rem;
}

/* ========================================
   WHY SECTION
   ======================================== */

.why-section {
  padding: 4rem 0;
  background: var(--bg-light);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.why-card {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--primary);
}

.why-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  margin-bottom: 1rem;
}

.why-card h3 {
  margin-bottom: 0.5rem;
}

/* ========================================
   TEAM SECTION
   ======================================== */

.team-section {
  padding: 4rem 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}

.team-card:hover {
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
  transform: translateY(-4px);
}

.team-image {
  width: 150px;
  height: 150px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
}

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

.team-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.team-role {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-bio {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.team-contact {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.team-contact a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.team-contact a:hover {
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-color: var(--primary);
}

@media (max-width: 768px) {
  .team-card {
    padding: 1.5rem;
  }

  .team-image {
    width: 120px;
    height: 120px;
  }
}

/* ========================================
   SECTION HEADER
   ======================================== */

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.section-header p {
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-secondary);
}

/* ========================================
   PACKAGES SECTION
   ======================================== */

.packages-section {
  padding: 4rem 0;
  background: var(--bg-light);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.package-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}

.package-card:hover {
  border-color: rgba(212, 175, 55, 0.58);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.25);
}

.package-card .btn {
  margin-top: 1.5rem;
  width: 100%;
}

.btn-whatsapp {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #1fbe5e, #118a7d);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 0.65rem;
}

.btn-whatsapp:hover {
  text-decoration: none;
  color: #ffffff;
  box-shadow: 0 0 18px rgba(31, 190, 94, 0.45);
}

.package-card.featured {
  border-color: var(--primary-light);
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.35);
}

.package-label {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.package-price {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 1.5rem 0;
}

.price-original {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-decoration: line-through;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.duration {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.package-features {
  list-style: none;
  margin: 1.5rem 0;
}

.package-features li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Zusatzleistungen / Additional Services */
.additional-services {
  margin-top: 3rem;
  background: var(--bg-light);
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--primary);
}

.additional-services .review-toggle {
  color: white;
  font-size: 1.05rem;
  padding: 0.25rem 0;
}

.additional-services .services-panel {
  padding-top: 1rem;
}

.additional-services-note {
  color: var(--text);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.services-table-wrapper {
  overflow-x: auto;
}

.services-table {
  width: 100%;
  border-collapse: collapse;
}

.services-table thead tr {
  background: var(--bg);
  border-bottom: 2px solid var(--primary);
}

.services-table th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  color: rgb(253, 252, 252);
}

.services-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.services-table tr:hover {
  background: rgba(212, 175, 55, 0.1);
}

/* ========================================
   PROCESS SECTION
   ======================================== */

.process-section {
  padding: 4rem 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.step {
  text-align: center;
  position: relative;
}

.step::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 100px;
  background: var(--border);
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
}

.step:first-child::after {
  display: none;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.step h3 {
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr;
  }

  .step::after {
    display: none;
  }
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials-section {
  padding: 4rem 0;
  background: var(--bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--surface-border);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(6px);
}

.stars {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  letter-spacing: 0.2rem;
  color: var(--primary);
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.testimonial-card strong {
  color: white;
  display: block;
  font-size: 0.95rem;
}

.location {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ========================================
   GALLERY SECTION
   ======================================== */

.gallery-section {
  padding: 4rem 0;
  background: var(--bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.car-showcase-list {
  margin-top: 2rem;
  display: grid;
  gap: 1.5rem;
}

.car-showcase {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 16px;
  padding: 1rem;
}

.car-showcase-toggle {
  width: 100%;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.car-showcase-toggle:hover {
  border-color: rgba(212, 175, 55, 0.6);
  background: rgba(212, 175, 55, 0.1);
}

.car-showcase-toggle-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.car-showcase-toggle-text strong {
  color: var(--primary);
  font-size: 1.08rem;
}

.car-showcase-toggle-text small {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.car-showcase-toggle-icon {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  line-height: 1;
  color: var(--primary);
  background: rgba(0, 0, 0, 0.34);
}

.car-showcase-panel {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.car-showcase.open .car-showcase-panel {
  max-height: 5000px;
  opacity: 1;
}

.car-showcase-header {
  padding: 0.45rem 0.4rem 1rem;
}

.car-showcase-header h3 {
  color: var(--primary);
  margin-bottom: 0.3rem;
}

.car-showcase-header p {
  color: var(--text-secondary);
}

.car-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.car-shot {
  margin: 0;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.14);
  overflow: hidden;
}

.gallery-slider {
  position: relative;
  margin-top: 2rem;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 16px;
  padding: 1rem;
  overflow: hidden;
}

.gallery-track {
  position: relative;
  min-height: 0;
}

.gallery-slide {
  display: none;
  border-radius: 12px;
  overflow: hidden;
}

.gallery-slide.active {
  display: block;
  animation: fadeInSlide 0.5s ease;
}

.gallery-visual {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  padding: 0.7rem;
  border: 1px solid rgba(212, 175, 55, 0.26);
  background:
    radial-gradient(120% 90% at 50% -5%, rgba(212, 175, 55, 0.2), transparent 58%),
    linear-gradient(145deg, #141414 0%, #1d1d1d 45%, #101010 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 30px rgba(0, 0, 0, 0.28);
}

.gallery-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, rgba(255, 255, 255, 0.018) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.018) 50%, rgba(255, 255, 255, 0.018) 75%, transparent 75%, transparent);
  background-size: 20px 20px;
  opacity: 0.55;
  pointer-events: none;
}

.gallery-photo {
  width: 100%;
  height: auto;
  max-height: 72vh;
  object-fit: contain;
  display: block;
  border-radius: 8px;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.gallery-caption {
  padding: 1rem 1rem 0.5rem;
}

.gallery-caption h3 {
  color: var(--primary);
  margin-bottom: 0.35rem;
}

.gallery-caption p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.gallery-nav {
  position: absolute;
  top: 44%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.52);
  color: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}

.gallery-nav.prev {
  left: 18px;
}

.gallery-nav.next {
  right: 18px;
}

.gallery-nav:hover {
  background: rgba(212, 175, 55, 0.9);
  color: #141414;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.gallery-dots .dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.gallery-dots .dot.active {
  background: var(--primary);
  transform: scale(1.12);
}

@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.gallery-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 12px 24px rgba(212, 175, 55, 0.18);
}

.gallery-image {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(255, 255, 255, 0.05));
}

.gallery-placeholder {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(255, 255, 255, 0.05));
}

.gallery-placeholder.alt {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(212, 175, 55, 0.2));
}

.gallery-image span {
  color: white;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
  padding: 0.6rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
}

.gallery-content {
  padding: 1.25rem;
}

.gallery-content h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.gallery-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

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

  .car-showcase-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
  padding: 4rem 0;
  background: linear-gradient(130deg, #b68b1d 0%, #d4af37 45%, #e8cc77 100%);
  color: white;
  text-align: center;
}

.cta-section .btn-primary {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.coverage-section {
  padding: 60px 20px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.04)),
    #161616;
  color: #fff;
}

.coverage-inner {
  max-width: 800px;
  margin: 0 auto;
}

.coverage-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #cccccc;
  margin-top: 20px;
}

.cta-content h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact-section {
  padding: 4rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.contact-form .form-group label {
  color: #ffffff;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem;
  border: 2px solid #d0d0d0;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  color: #1a1a1a;
  background: #ffffff;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-block {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
}

.contact-icon {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.contact-block h3 {
  margin-bottom: 0.5rem;
}

.contact-block p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.contact-block a {
  color: var(--primary);
  font-weight: 500;
}

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

/* ========================================
   LEGAL PAGES
   ======================================== */

.legal-section {
  padding: 4rem 0;
  min-height: 80vh;
}

.legal-section h1 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--primary);
}

.legal-content {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid #e0e0e0;
  line-height: 1.8;
  color: #333333;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 0.5rem;
}

.legal-content h3 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: #b8860b;
}

.legal-content p {
  margin-bottom: 1rem;
  color: #333333;
}

.legal-content ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
  color: #444444;
}

.legal-content a {
  color: var(--primary);
  font-weight: 500;
  text-decoration: underline;
}

.legal-content a:hover {
  text-decoration: none;
}

.legal-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.legal-footer a {
  display: inline-block;
  margin-top: 1rem;
  color: var(--primary);
  font-weight: 600;
  transition: all 0.3s ease;
}

.legal-footer a:hover {
  text-decoration: none;
  transform: translateX(-5px);
}

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

  .legal-section h1 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .legal-content {
    padding: 1.5rem;
  }

  .legal-content h2 {
    font-size: 1.3rem;
  }

  .legal-content h3 {
    font-size: 1rem;
  }
}

/* ========================================
   MODAL STYLES
   ======================================== */

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal.open {
  display: flex;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.modal-content {
  position: relative;
  background: white;
  border-radius: var(--radius-lg);
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  width: 90%;
  color: #1a1a1a;
}

.modal-content h2 {
  margin-bottom: 2rem;
  color: #1a1a1a;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #333333;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: #000000;
}

/* Booking Form */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.booking-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-section h3 {
  font-size: 1.1rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.package-selection {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.package-option {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border: 2px solid #d0d0d0;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
}

.package-option input[type="radio"] {
  margin-top: 0.25rem;
  cursor: pointer;
  accent-color: var(--primary);
  width: 20px;
  height: 20px;
}

.package-option:hover {
  border-color: var(--primary);
  background: #f9f5e7;
}

.package-option input[type="radio"]:checked + .option-label {
  color: var(--primary);
  font-weight: 600;
}

/* ========== REVIEW FORM ========== */
.review-form-wrapper {
  margin-top: 3rem;
  padding: 1.25rem;
  background: var(--bg-light);
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
}

.review-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: white;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0.25rem 0;
  text-align: left;
}

.review-toggle-icon {
  font-size: 1.2rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.review-form-panel {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.review-form-wrapper.open .review-form-panel,
.additional-services.open .services-panel {
  display: block;
}

.review-form-wrapper.open .review-toggle-icon,
.additional-services.open .review-toggle-icon {
  transform: rotate(45deg);
}

.review-form-wrapper > .review-form-panel > p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.review-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.review-form .form-group {
  display: flex;
  flex-direction: column;
}

.review-form label {
  color: white;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.review-form input[type="text"],
.review-form input[type="email"],
.review-form textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  color: white;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.review-form input[type="text"]:focus,
.review-form input[type="email"]:focus,
.review-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.review-form input::placeholder,
.review-form textarea::placeholder {
  color: var(--text-tertiary);
}

/* ========== STAR RATING ========== */
.star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 0.5rem;
  font-size: 1.8rem;
}

.star-rating input {
  display: none;
}

.star-rating .star {
  cursor: pointer;
  color: var(--text-tertiary);
  transition: all 0.2s ease;
  user-select: none;
}

.star-rating input:checked ~ .star,
.star-rating .star:hover,
.star-rating input:checked ~ .star:hover {
  color: var(--primary);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.star-rating input:hover ~ .star {
  color: var(--primary);
}

/* ========== REVIEW NOTE ========== */
.review-note {
  color: var(--text-secondary);
  font-size: 0.85rem;
  text-align: center;
  margin-top: -0.5rem;
}

/* ========== RESPONSIVE REVIEW FORM ========== */
@media (max-width: 768px) {
  .review-form-wrapper {
    padding: 1rem;
    margin-top: 2rem;
  }

  .star-rating {
    font-size: 1.5rem;
    gap: 0.3rem;
  }
}

.option-label {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.option-label strong {
  color: #1a1a1a;
}

.option-label small {
  color: #555555;
  font-weight: normal;
}

.extras-selection {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.extra-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border: 1px solid #d0d0d0;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
}

.extra-option input[type="checkbox"] {
  cursor: pointer;
  accent-color: var(--primary);
  width: 18px;
  height: 18px;
}

.extra-option:hover {
  background: #f9f5e7;
  border-color: var(--primary);
}

.extra-option input[type="checkbox"]:checked + span {
  color: var(--primary);
  font-weight: 600;
}

.extra-option span {
  flex: 1;
  color: #1a1a1a;
}

.extra-price {
  color: var(--accent);
  font-weight: 600;
  white-space: nowrap;
}

.consent-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.consent-option {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  border: 1px solid #d0d0d0;
  border-radius: var(--radius);
  background: #fafafa;
}

.consent-option input[type="checkbox"] {
  margin-top: 0.2rem;
  cursor: pointer;
  accent-color: var(--primary);
  width: 18px;
  height: 18px;
}

.consent-option span {
  color: #1a1a1a;
  line-height: 1.5;
}

.consent-option a {
  color: var(--primary);
  text-decoration: underline;
}

.consent-hint {
  margin-top: -0.25rem;
  font-size: 0.9rem;
  color: #666666;
}

.booking-summary {
  background: #f5f5f5;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 2px solid #d0d0d0;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid #d0d0d0;
  color: #333333;
}

.summary-row.discount {
  color: var(--secondary);
  font-weight: 600;
  background: rgba(5, 150, 105, 0.05);
  padding: 0.75rem;
  margin: 0 -1.5rem 0 -1.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.summary-row.total {
  border-bottom: none;
  border-top: 2px solid var(--primary);
  padding-top: 1rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
  margin-top: 0.5rem;
}

/* ========================================
   FOOTER
   ======================================== */

.site-footer {
  background: var(--bg-dark);
  color: white;
  padding: 3rem 0 1rem;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 20px;
  z-index: 110;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: linear-gradient(140deg, #1bc85b, #128c7e);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.whatsapp-float:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: white;
  margin-bottom: 1rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: white;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.1rem; }

  .container {
    padding: 0 1rem;
  }

  .packages-grid,
  .services-grid,
  .features-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .package-card.featured {
    transform: scale(1);
  }

  .modal-content {
    width: 95%;
    padding: 1.5rem;
  }

  .gallery-track {
    min-height: 0;
  }

  .gallery-visual {
    height: auto;
    padding: 0.55rem;
  }

  .gallery-photo {
    max-height: 60vh;
  }

  .gallery-nav {
    width: 38px;
    height: 38px;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 14px;
    padding: 0.72rem 0.9rem;
    font-size: 0.9rem;
  }

  .booking-section h3 {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.3rem; }

  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .btn-large {
    padding: 0.8rem 1.5rem;
  }

  .hero {
    padding: 2rem 0;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-trust {
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.85rem;
  }

  .hero-note {
    margin-bottom: 1rem;
  }

  .gallery-visual {
    height: auto;
    padding: 0.45rem;
  }

  .gallery-photo {
    max-height: 52vh;
  }

  .gallery-caption h3 {
    font-size: 1rem;
  }

  .car-showcase {
    padding: 0.75rem;
  }

  .car-showcase-toggle {
    padding: 0.75rem 0.8rem;
    gap: 0.6rem;
  }

  .car-showcase-toggle-text strong {
    font-size: 1rem;
  }

  .car-showcase-toggle-text small {
    font-size: 0.84rem;
    line-height: 1.35;
  }

  .car-showcase-toggle-icon {
    width: 28px;
    height: 28px;
    font-size: 1.05rem;
  }

  .services-section,
  .packages-section,
  .features-section {
    padding: 2rem 0;
  }

  .contact-grid {
    gap: 2rem;
  }

  .modal-content {
    padding: 1.25rem;
  }

  .booking-section {
    gap: 0.75rem;
  }

  .package-option,
  .extra-option {
    padding: 0.5rem;
  }
}
