/* ═══════════════════════════════════════════════════════
   Rudolf KFZ Meisterbetrieb – Stylesheet
   Font: Barlow / Barlow Condensed
   Theme: Clean White
   ═══════════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --red:        #E30613;
  --red-dark:   #C40511;
  --dark:       #1a1a1a;
  --dark-2:     #222222;
  --dark-3:     #2a2a2a;
  --gray:       #f5f5f5;
  --gray-2:     #e8e8e8;
  --text:       #1a1a1a;
  --text-light: #6b6b6b;
  --white:      #ffffff;
  --border:     #e0e0e0;
  --shadow:     0 2px 16px rgba(0,0,0,0.06);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.1);
  --radius:     0.5rem;
  --radius-lg:  0.75rem;
  --transition: 0.22s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden; /* Verhindert horizontales Scrollen auf Mobile */
  width: 100%;
}

body {
  font-family: 'Barlow', Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
  overflow-x: hidden; /* Verhindert horizontales Scrollen auf Mobile */
  width: 100%;
  max-width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Barlow Condensed', Helvetica, Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; object-fit: cover; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Layout ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 6rem 0; }
.section--dark { background: var(--gray); color: var(--text); }
.section--gray { background: var(--gray); }

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}

.section__tag {
  display: inline-block;
  background: rgba(233,69,96,0.1);
  color: var(--red);
  font-family: 'Barlow', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}

.section__title {
  font-family: 'Barlow Condensed', Helvetica, sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--text);
}

.section--dark .section__title { color: var(--text); }

.section__desc {
  color: var(--text-light);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
}

.section--dark .section__desc { color: var(--text-light); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  border-radius: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  text-align: center;
  justify-content: center;
  max-width: 100%; /* Verhindert überstehende Buttons auf Mobile */
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(233,69,96,0.3);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--white);
}

.btn--outline-dark {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn--outline-dark:hover { border-color: var(--red); color: var(--red); }

.btn--lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn--full { width: 100%; }

button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* ══════════════ HEADER / NAV ══════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 8px rgba(0,0,0,0.08);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 72px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  flex-shrink: 0;
}

.header.scrolled .nav__logo { color: var(--text); }

.nav__logo-img {
  height: 90px;
  width: auto;
  display: block;
}

/* Mobile logo size - BIGGER for better visibility */
@media (max-width: 768px) {
  .nav__logo-img {
    height: 70px;
  }
}

.logo-icon {
  font-size: 1.6rem;
  color: var(--red);
  line-height: 1;
}

.logo-main {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: inherit;
  line-height: 1.1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.logo-sub {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 400;
}

.header.scrolled .logo-sub { color: var(--text-light); }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
}

.nav__link {
  color: rgba(255,255,255,0.75);
  font-family: 'Barlow', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.5rem 1rem;
  transition: color var(--transition);
  text-transform: uppercase;
}

.nav__link:hover { color: var(--white); }

.header.scrolled .nav__link { color: var(--text-light); }
.header.scrolled .nav__link:hover { color: var(--red); }

.nav__cta { flex-shrink: 0; margin-left: 1rem; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.5rem;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 0;
  transition: all var(--transition);
}
.header.scrolled .nav__burger span { background: var(--text); }

/* ══════════════ HERO ══════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--dark);
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.5;
  filter: grayscale(15%);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13,13,13,0.88) 0%,
    rgba(13,13,13,0.6) 55%,
    rgba(233,69,96,0.08) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 5rem 0;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  font-family: 'Barlow', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.4rem 1rem;
  margin-bottom: 1.75rem;
  animation: fadeInDown 0.6s ease;
  margin-left: auto;
  margin-right: auto;
}

.hero__title {
  font-family: 'Barlow Condensed', Helvetica, sans-serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.highlight { color: var(--red); }

.hero__subtitle {
  font-family: 'Barlow', sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
  animation: fadeInUp 0.6s ease 0.3s both;
  justify-content: center;
}

.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.4s both;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.stat strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
}
.stat span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  color: rgba(255,255,255,0.35);
  font-size: 0.7rem;
  font-family: 'Barlow', sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2.5s infinite;
}

/* ══════════════ INFO BANNER ══════════════ */
.info-banner {
  background: var(--white);
  padding: 2rem 0 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

.info-banner__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  border-left: 1px solid var(--border);
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--text);
  padding: 0.75rem 1.25rem;
  border-right: 1px solid var(--border);
}

.info-item svg { color: var(--red); flex-shrink: 0; }

.info-item strong {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 0.7rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 0.15rem;
}

.info-item span, .info-item a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text);
}

.info-item a:hover { color: var(--red); }

/* ══════════════ GALLERY ══════════════ */
.gallery { padding: 0; }

.gallery__grid {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; /* Momentum scrolling for iOS */
  scrollbar-width: thin;
  scrollbar-color: var(--red) var(--dark);
  gap: 4px;
  /* Removed scroll-snap for butter-smooth free scrolling */
}

.gallery__grid::-webkit-scrollbar {
  height: 6px;
}

.gallery__grid::-webkit-scrollbar-track {
  background: var(--dark);
}

.gallery__grid::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 3px;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  cursor: grab;
  background: var(--gray);
  flex: 0 0 300px;
  height: 360px;
  /* Removed scroll-snap for smoother free scrolling */
  transition: transform 0.2s ease;
}

.gallery__item:active {
  cursor: grabbing;
}

.gallery__item:first-child {
  flex: 0 0 450px;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.3s ease;
  filter: brightness(0.92);
}

.gallery__item:hover img {
  transform: scale(1.04);
  filter: brightness(1);
}

.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}

.gallery__item:hover .gallery__item-overlay { opacity: 1; }

.gallery__item-label {
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Gallery Navigation */
.gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(233, 69, 96, 0.9);
  color: var(--white);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background 0.2s, transform 0.2s;
  opacity: 0;
  pointer-events: none;
}

.gallery:hover .gallery__nav {
  opacity: 1;
  pointer-events: auto;
}

.gallery__nav:hover {
  background: var(--red);
  transform: translateY(-50%) scale(1.1);
}

.gallery__nav--prev { left: 1rem; }
.gallery__nav--next { right: 1rem; }

@media (max-width: 768px) {
  .gallery__nav {
    opacity: 1;
    pointer-events: auto;
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
  .gallery__nav--prev { left: 0.5rem; }
  .gallery__nav--next { right: 0.5rem; }
}

/* Placeholder wenn kein Bild vorhanden */
.gallery__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-family: 'Barlow', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gallery__placeholder svg { opacity: 0.3; }

/* ══════════════ SERVICES ══════════════ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-card {
  background: var(--white);
  padding: 2rem 1.75rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.service-card:hover { background: var(--gray); }
.service-card:hover::after { transform: scaleX(1); }

.service-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-card__icon i {
  font-size: 2.25rem;
  color: var(--red);
  transition: transform 0.2s ease;
}

.service-card:hover .service-card__icon i {
  transform: scale(1.1);
}

.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.service-card__tag {
  display: inline-block;
  border: 1px solid var(--border);
  color: var(--text-light);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.7rem;
}

.service-card--cta {
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card--cta::after { display: none; }
.service-card--cta:hover { background: var(--red-dark); }

.service-card__cta-content { text-align: center; }
.service-card--cta h3 { color: var(--white); margin-bottom: 0.75rem; }
.service-card--cta p { color: rgba(255,255,255,0.8); margin-bottom: 1.5rem; }
.service-card--cta .btn--primary { background: var(--white); color: var(--red); border-color: var(--white); }
.service-card--cta .btn--primary:hover { background: var(--gray); }

/* ══════════════ ÜBER UNS ══════════════ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about__text {
  color: var(--text-light);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1.25rem;
}
.about__text strong { color: var(--text); font-weight: 600; }

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-top: 1.75rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-light);
}

.feature__check {
  color: var(--red);
  font-weight: 700;
  font-size: 0.9rem;
}

.about__visual { display: flex; flex-direction: column; gap: 1.25rem; }

.about__card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.75rem;
}

.about__card--main {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.mechanic-icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(233,69,96,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(233,69,96,0.04);
}

.about-stat {
  color: var(--text-light);
  font-size: 0.875rem;
  font-weight: 300;
  margin-bottom: 0.35rem;
}
.about-stat strong { color: var(--text); font-weight: 600; }

.about__card--hours h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.hours-table td {
  padding: 0.4rem 0;
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
}

.hours-table td:last-child { text-align: right; font-weight: 500; color: var(--text); }
.hours-table--compact td { color: var(--text-light); }
.hours-table--compact td:last-child strong { color: var(--text); }

.closed { color: #f87171 !important; }

.hours-note {
  font-size: 0.72rem;
  color: var(--text-light);
  margin-top: 0.75rem;
  font-weight: 300;
}

/* ══════════════ BOOKING ══════════════ */
.booking__wrapper {
  max-width: 820px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.booking__steps {
  display: flex;
  align-items: center;
  padding: 1.25rem 2rem;
  background: var(--text);
  gap: 0.5rem;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  flex: none;
}

.step__num {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  background: transparent;
  transition: all var(--transition);
}

.step span {
  font-family: 'Barlow', sans-serif;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.3);
  white-space: nowrap;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.step.active .step__num {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.step.active span { color: rgba(255,255,255,0.7); }

.step.done .step__num {
  background: #10b981;
  border-color: #10b981;
  color: var(--white);
}

.step__line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 1.35rem;
  min-width: 20px;
}

.booking__form-wrapper { padding: 2.5rem; }

.booking__step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  color: var(--text);
}

.hidden { display: none !important; }

/* Service selection */
.service-select__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.service-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 0.75rem;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  font-family: 'Barlow', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  background: var(--white);
}

.service-option:hover { border-color: var(--red); background: rgba(233,69,96,0.03); }

.service-option.selected {
  border-color: var(--red);
  background: rgba(233,69,96,0.06);
  color: var(--red);
}

.service-option__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}

.service-option__icon i {
  color: currentColor;
  transition: transform 0.2s;
}

.service-option:hover .service-option__icon i {
  transform: scale(1.1);
}

/* DateTime picker */
.datetime-picker {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.form-label {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.6rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0;
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}

.form-input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(233,69,96,0.08);
}

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

.slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem;
  max-height: 240px;
  overflow-y: auto;
}

.slots-placeholder {
  grid-column: 1/-1;
  color: var(--text-light);
  font-size: 0.875rem;
  text-align: center;
  padding: 2rem;
  font-weight: 300;
}

.slot-btn {
  padding: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 0;
  background: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: all var(--transition);
}

.slot-btn:hover:not(:disabled) { border-color: var(--red); color: var(--red); }

.slot-btn.selected {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.slot-btn:disabled {
  background: var(--gray);
  color: #ccc;
  cursor: not-allowed;
  text-decoration: line-through;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.form-group--full { grid-column: 1 / -1; }

.booking__nav {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

/* Success / Error */
.booking__success, .booking__error {
  text-align: center;
  padding: 2.5rem;
}

.success-icon {
  width: 60px;
  height: 60px;
  background: #d1fae5;
  color: #059669;
  font-size: 1.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.error-icon {
  width: 60px;
  height: 60px;
  background: #fee2e2;
  color: #dc2626;
  font-size: 1.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.booking__success h3, .booking__error h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.booking__success p { color: var(--text-light); margin-bottom: 1.5rem; font-weight: 300; }

.booking__summary {
  background: var(--gray);
  padding: 1.25rem;
  margin: 1.5rem 0;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 2;
}

.ics-download {
  margin-top: 1rem;
}

/* ══════════════ REVIEWS ══════════════ */
.rating-overview {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  font-weight: 300;
}

.rating-stars { color: #f59e0b; font-size: 1.1rem; }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 3rem;
}

.review-card {
  background: var(--white);
  padding: 1.75rem;
  transition: background var(--transition);
}

.review-card:hover { background: var(--gray); }

.review-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  background: var(--red);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-card__header strong {
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
}

.stars { color: #f59e0b; font-size: 0.8rem; }

.review-card p {
  color: var(--text-light);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  font-style: italic;
}

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

.reviews__cta p { color: var(--text-light); font-weight: 300; }

.reviews__cta .btn--outline {
  color: var(--text);
  border-color: var(--border);
}
.reviews__cta .btn--outline:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(233,69,96,0.04);
}

/* ══════════════ CONTACT ══════════════ */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.contact__map {
  height: 560px;
  overflow: hidden;
  background: var(--gray);
  width: 100%;
}

/* ══════════════ FOOTER ══════════════ */
.footer {
  background: var(--white);
  color: var(--text);
  padding: 4rem 0 0;
  border-top: 1px solid var(--border);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.footer__brand p {
  color: var(--text-light);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  margin: 1rem 0;
}

.footer .nav__logo { color: var(--text); }
.footer .logo-sub { color: var(--text-light); }

.footer__rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-light);
}
.footer__rating span:first-child { color: #f59e0b; }

.footer__links h4, .footer__contact h4 {
  font-family: 'Barlow', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.footer__links ul li { margin-bottom: 0.6rem; }

.footer__links a {
  color: var(--text-light);
  font-size: 0.875rem;
  font-weight: 300;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--red); }

.footer__contact p {
  color: var(--text-light);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 0.4rem;
}
.footer__contact a { color: var(--text-light); }
.footer__contact a:hover { color: var(--red); }

.footer__bottom { padding: 1.25rem 0; }

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-light);
}

.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a { color: var(--text-light); }
.footer__legal a:hover { color: var(--red); }

/* ══════════════ SCROLL TOP ══════════════ */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 42px;
  height: 42px;
  background: var(--red);
  color: var(--white);
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 999;
}

.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--red-dark); transform: translateY(-2px); }

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

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ══════════════ RESPONSIVE ══════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .info-banner__grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact__grid { grid-template-columns: 1fr; }
  .contact__map { height: 320px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .gallery__grid { gap: 3px; }
  .gallery__item { flex: 0 0 250px; height: 280px; }
  .gallery__item:first-child { flex: 0 0 350px; }
}

/* Mobil */
@media (max-width: 768px) {
  /* Verhindert horizontales Scrollen */
  html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
  }
  /* Navigation */
  .nav__menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    padding: 0.5rem 0 1rem;
    gap: 0;
    z-index: 999;
    border-top: 1px solid var(--border);
    max-width: 100vw;
    overflow-x: hidden;
  }
  .nav__menu.open { display: flex; }
  .nav__link {
    display: block;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
    color: var(--text);
  }
  .nav__link:hover { color: var(--red); }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  /* Mobile header always white background */
  .header { background: rgba(255,255,255,0.95); }
  .header .nav__logo { color: var(--text); }
  .header .logo-sub { color: var(--text-light); }
  .header .nav__burger span { background: var(--text); }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero__title { font-size: clamp(2.5rem, 10vw, 4rem); }
  .hero__subtitle { font-size: 1rem; }
  .hero__actions { 
    flex-direction: column; 
    gap: 0.75rem; 
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100%;
  }
  .hero__actions .btn { 
    width: 100%; 
    max-width: 320px;
    justify-content: center; 
    margin-left: auto;
    margin-right: auto;
  }
  .hero__stats { gap: 1rem; padding-top: 1.5rem; }
  .hero__scroll { display: none; }

  /* Info Banner */
  .info-banner__grid { grid-template-columns: 1fr; border-left: none; }
  .info-banner { padding: 1rem 0 2rem 0; }
  .info-item { padding: 1rem 1.25rem; border-right: none; border-bottom: 1px solid var(--border); }
  .info-item:last-child { border-bottom: none; }

  /* Galerie */
  .gallery__grid { gap: 2px; }
  .gallery__item { flex: 0 0 200px; height: 200px; }
  .gallery__item:first-child { flex: 0 0 280px; }

  /* Leistungen */
  .services__grid { grid-template-columns: 1fr 1fr; gap: 1px; }

  /* Über uns */
  .about__features { grid-template-columns: 1fr; }
  .about__grid { gap: 2rem; }
  .about__card--main { flex-direction: column; gap: 1rem; text-align: center; }

  /* Buchung */
  .booking__steps { gap: 0.15rem; padding: 1rem; }
  .step span { display: none; }
  .step__num { width: 26px; height: 26px; font-size: 0.8rem; }
  .booking__form-wrapper { padding: 1.25rem; }
  .booking__step-title { font-size: 1.1rem; }
  .service-select__grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .service-option { padding: 1rem 0.5rem; font-size: 0.8rem; }
  .service-option__icon { width: 40px; height: 40px; }
  .service-option__icon svg { width: 28px; height: 28px; }
  .datetime-picker { grid-template-columns: 1fr; gap: 1.25rem; }
  .slots-grid { grid-template-columns: repeat(4, 1fr); gap: 0.35rem; }
  .slot-btn { padding: 0.5rem 0.25rem; font-size: 0.78rem; }
  .form-grid { grid-template-columns: 1fr; }
  /* 16px min verhindert iOS-Zoom beim Tippen */
  .form-input { font-size: 16px; }
  .booking__nav { flex-direction: column-reverse; gap: 0.5rem; }
  .booking__nav .btn { width: 100%; justify-content: center; }

  /* Kontakt */
  .contact__map { height: 280px; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* Kleines Mobilgerät */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .section { padding: 3.5rem 0; }
  .section__title { font-size: 1.75rem; }
  
  /* KVA Button noch kompakter */
  .btn--lg {
    max-width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
  
  /* KVA Section responsive */
  section[style*="background:var(--gray,#f5f5f5)"] {
    padding: 2.5rem 0 !important;
  }
  section[style*="background:var(--gray,#f5f5f5)"] .container {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    text-align: center;
    padding: 0 1rem !important;
  }
  section[style*="background:var(--gray,#f5f5f5)"] > .container > div:first-child {
    margin-bottom: 1rem;
  }
  section[style*="background:var(--gray,#f5f5f5)"] h2 {
    font-size: clamp(1.3rem, 4vw, 1.8rem) !important;
  }
  section[style*="background:var(--gray,#f5f5f5)"] p {
    font-size: 0.85rem !important;
  }
  section[style*="background:var(--gray,#f5f5f5)"] > .container > div:last-child {
    justify-self: center;
  }
  section[style*="background:var(--gray,#f5f5f5)"] .btn--lg {
    max-width: 260px;
  }

  /* Galerie 1 Spalte - SWIPE MUST WORK */
  .gallery__item { flex: 0 0 280px; height: 240px; }
  .gallery__item:first-child { flex: 0 0 280px; }
  .gallery__grid {
    overflow-x: auto; /* SWIPE enable - do NOT change to hidden! */
    -webkit-overflow-scrolling: touch;
  }

  /* Leistungen 1 Spalte */
  .services__grid { grid-template-columns: 1fr; }
  .service-card { padding: 1.5rem; }

  /* Stats horizontal → vertikal */
  .hero__stats { flex-direction: column; gap: 0.75rem; padding-top: 1.25rem; }
  .stat-divider { width: 40px; height: 1px; }

  /* Buchung */
  .service-select__grid { grid-template-columns: repeat(2, 1fr); }
  .slots-grid { grid-template-columns: repeat(3, 1fr); }
  .booking__summary { font-size: 0.82rem; }
  .booking__form-wrapper { padding: 1rem; }

  /* Buttons größere Touch-Targets */
  .btn { 
    min-height: 48px; 
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
  }
  .btn--lg { 
    min-height: 52px;
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
  }
  /* KVA Button kürzer auf Mobile */
  .btn--lg {
    max-width: 280px;
  }

  /* Info Banner */
  .info-banner__grid { border-left: none; }
  .info-item { border-right: none; border-bottom: 1px solid var(--border); }
  .info-item:last-child { border-bottom: none; }

  /* Über uns */
  .about__card { padding: 1.25rem; }

  /* Footer */
  .footer { padding: 2.5rem 0 0; }
  .footer__links, .footer__contact { display: none; }
}
