/* ==========================================================================
   AquaKids-rn.de: Grunddesign
   Modern, freundlich, kindgerecht: sonniger Schwimmtag als Farbwelt.
   ========================================================================== */

:root {
  --color-primary: #17a3c9;
  --color-primary-dark: #0b6fa8;
  --color-accent: #34c9b7;
  --color-coral: #ff9770;
  --color-yellow: #ffd166;
  --color-bg: #ffffff;
  --color-bg-alt: #eaf7fb;
  --color-white: #ffffff;
  --color-text: #22323c;
  --color-text-light: #5c7480;
  --color-border: #d9f0f5;
  --color-whatsapp: #25d366;
  --color-whatsapp-dark: #1ebe57;
  --radius: 18px;
  --shadow: 0 10px 26px rgba(11, 111, 168, 0.12);
  --shadow-hover: 0 16px 34px rgba(11, 111, 168, 0.18);
  --max-width: 1100px;
  --font-heading: "Baloo 2", "Segoe UI", Roboto, sans-serif;
  --font-body: "Nunito", "Segoe UI", Roboto, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
}

h1, h2, h3, h4,
.logo,
.step-number,
.price-card .price {
  font-family: var(--font-heading);
  font-weight: 700;
}

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

a {
  color: var(--color-primary-dark);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Scroll-Reveal ---------- */

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

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Header ---------- */

header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  color: var(--color-primary-dark);
  text-decoration: none;
}

.logo .logo-emoji {
  font-size: 1.6rem;
}

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
}

nav.main-nav a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 700;
  font-size: 0.96rem;
}

nav.main-nav a:hover {
  color: var(--color-primary-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--color-primary-dark);
  color: var(--color-white);
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  white-space: nowrap;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--color-primary-dark);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--color-bg-alt) 0%, var(--color-bg) 75%);
  padding: 70px 0 60px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff0e6;
  color: #b5501f;
  font-weight: 700;
  font-size: 0.86rem;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.availability-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-coral);
  flex-shrink: 0;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.15;
  margin: 0 0 14px;
  color: var(--color-primary-dark);
}

.hero p.lead {
  font-size: 1.15rem;
  color: var(--color-text-light);
  margin-bottom: 26px;
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Dezente schwebende Wasserblasen */

.bubble-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.bubble-field span {
  position: absolute;
  bottom: -60px;
  display: block;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), rgba(52, 201, 183, 0.25));
  animation: float-up linear infinite;
}

.bubble-field span:nth-child(1) { left: 8%;  width: 18px; height: 18px; animation-duration: 34s; animation-delay: 0s; }
.bubble-field span:nth-child(2) { left: 22%; width: 12px; height: 12px; animation-duration: 26s; animation-delay: 1.5s; }
.bubble-field span:nth-child(3) { left: 68%; width: 22px; height: 22px; animation-duration: 42s; animation-delay: 0.5s; }
.bubble-field span:nth-child(4) { left: 80%; width: 14px; height: 14px; animation-duration: 30s; animation-delay: 3s; }
.bubble-field span:nth-child(5) { left: 45%; width: 10px; height: 10px; animation-duration: 37s; animation-delay: 2s; }

@keyframes float-up {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  4%   { opacity: 0.8; }
  96%  { opacity: 0.8; }
  100% { transform: translateY(-2200px) translateX(12px); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .bubble-field span {
    animation: none;
    opacity: 0;
  }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.02rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

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

.btn-primary {
  background: var(--color-primary-dark);
  color: var(--color-white);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: #095a89;
}

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

.btn-whatsapp {
  background: var(--color-whatsapp);
  color: var(--color-white);
}

.btn-whatsapp:hover {
  background: var(--color-whatsapp-dark);
}

.btn-coral {
  background: var(--color-coral);
  color: var(--color-white);
  box-shadow: var(--shadow);
}

.btn-coral:hover {
  background: #ff8253;
}

.section-cta {
  text-align: center;
  margin-top: 32px;
}

.abzeichen-promo {
  text-align: center;
  max-width: 560px;
  margin: -8px auto 28px;
  background: #fff4e8;
  color: #b5501f;
  padding: 12px 20px;
  border-radius: var(--radius);
}

/* ---------- Image placeholders (bis eigene Fotos eingefügt werden) ---------- */

.img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  background: repeating-linear-gradient(
    135deg,
    var(--color-bg-alt),
    var(--color-bg-alt) 12px,
    #ffffff 12px,
    #ffffff 24px
  );
  border: 2px dashed var(--color-accent);
  border-radius: var(--radius);
  color: var(--color-text-light);
  font-size: 0.9rem;
  padding: 20px;
  min-height: 220px;
}

.img-placeholder .emoji {
  font-size: 2.2rem;
}

.hero .img-placeholder {
  min-height: 280px;
}

.ueber-mich-foto {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 0%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.ueber-mich-galerie {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  max-width: 260px;
  margin: 12px auto 0;
}

.ueber-mich-galerie img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.hero-illustration svg {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.wave-divider {
  line-height: 0;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 44px;
}

.has-bubbles {
  position: relative;
  overflow: hidden;
}

.has-bubbles .bubble-field span {
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), rgba(23, 163, 201, 0.2));
}

/* ---------- Sections ---------- */

section {
  padding: 64px 0;
}

section.alt {
  background: var(--color-bg-alt);
}

.section-title {
  text-align: center;
  font-size: 2rem;
  color: var(--color-primary-dark);
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-light);
  max-width: 620px;
  margin: 0 auto 40px;
}

/* ---------- Warum privater Unterricht (Benefits) ---------- */

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.benefit-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.benefit-item h3 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--color-text);
}

/* ---------- Über mich ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.qualifications {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
}

.qualification-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  font-weight: 600;
}

/* ---------- Fahrtkosten-Gebiete ---------- */

.zone-map-wrap {
  max-width: 800px;
  margin: 0 auto 24px;
  text-align: center;
}

#zone-leaflet-map {
  width: 100%;
  height: 520px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 4px solid var(--color-white);
}

.zone-place-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-primary-dark);
  border: 2px solid #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.zone-place-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.74rem;
  color: var(--color-primary-dark);
  background: #ffffff;
  border: none;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(11, 111, 168, 0.25);
  padding: 4px 11px;
}

.zone-place-label::before {
  display: none;
}

#zone-leaflet-map .leaflet-control-zoom {
  border: none;
  box-shadow: var(--shadow);
  border-radius: 12px;
  overflow: hidden;
}

#zone-leaflet-map .leaflet-control-zoom a {
  width: 32px;
  height: 32px;
  line-height: 32px;
  font-size: 18px;
  color: var(--color-primary-dark);
  background: var(--color-white);
}

#zone-leaflet-map .leaflet-control-zoom a:hover {
  background: var(--color-bg-alt);
}

#zone-leaflet-map .leaflet-control-attribution {
  font-size: 0.68rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 8px 0 0 0;
}

.zone-map-caption {
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--color-text-light);
  font-style: italic;
}

.zone-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 24px;
  max-width: 720px;
  margin: 0 auto;
}

.zone-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
}

.zone-dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---------- Wo & wann ich unterrichte (Bäder-Zeitplan) ---------- */

.pool-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.pool-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.94rem;
}

.pool-dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}

.pool-a { background: var(--color-primary); }
.pool-b { background: var(--color-accent); }
.pool-c { background: var(--color-coral); }

.schedule-table-wrap {
  overflow-x: auto;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
}

table.schedule-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  text-align: center;
}

table.schedule-table th,
table.schedule-table td {
  padding: 10px;
  border: 1px solid var(--color-border);
  font-size: 0.9rem;
}

table.schedule-table th {
  font-family: var(--font-heading);
  color: var(--color-primary-dark);
  background: var(--color-bg-alt);
}

table.schedule-table th:first-child,
table.schedule-table td:first-child {
  text-align: left;
  font-weight: 700;
  white-space: nowrap;
}

table.schedule-table td.slot {
  border-radius: 8px;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.78rem;
}

/* ---------- Angebot (Cards) ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

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

.card .emoji {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.card h3 {
  margin: 6px 0 10px;
  color: var(--color-primary-dark);
}

.card p {
  color: var(--color-text-light);
  font-size: 0.96rem;
  margin: 0 0 18px;
}

.card .btn {
  padding: 10px 22px;
  font-size: 0.92rem;
}

.leistungen-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
  color: var(--color-text-light);
  font-size: 0.94rem;
}

.leistungen-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

.leistungen-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
}

.leistungen-list li:last-child {
  margin-bottom: 0;
}

.kurs-toggle {
  cursor: pointer;
}

.kurs-toggle summary {
  cursor: pointer;
  list-style: none;
}

.kurs-toggle summary::-webkit-details-marker {
  display: none;
}

.kurs-toggle summary h3 {
  position: relative;
  display: inline-block;
}

.kurs-toggle summary h3::after {
  content: "▾";
  display: inline-block;
  margin-left: 6px;
  transition: transform 0.2s ease;
}

.kurs-toggle[open] summary h3::after {
  transform: rotate(180deg);
}

.kurs-subline {
  display: inline-block;
  background: var(--color-yellow);
  color: var(--color-text);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.kurs-toggle .leistungen-list {
  margin-top: 16px;
}

/* ---------- Preise ---------- */

.price-grid[hidden] {
  display: none;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 24px;
  max-width: 940px;
  margin: 0 auto;
}

.price-card {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--color-accent);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.price-card-savings {
  position: absolute;
  top: -12px;
  right: 16px;
  background: var(--color-coral);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.price-card-total {
  font-size: 0.86rem;
  color: var(--color-text-light);
}

.price-card-goal {
  margin-top: 10px;
  font-size: 0.86rem;
  color: var(--color-text-light);
  border-top: 1px dashed #dbe4e8;
  padding-top: 10px;
}

.preis-umschalter {
  display: flex;
  justify-content: center;
  gap: 6px;
  background: var(--color-bg-alt);
  padding: 6px;
  border-radius: 999px;
  max-width: 380px;
  margin: 0 auto 32px;
}

.preis-tab {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 18px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-primary-dark);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.preis-tab.active {
  background: var(--color-primary-dark);
  color: var(--color-white);
  box-shadow: var(--shadow);
}

.form-modus-umschalter {
  display: flex;
  gap: 6px;
  background: var(--color-bg-alt);
  padding: 5px;
  border-radius: 999px;
}

.form-modus-tab {
  flex: 1;
  border: none;
  background: transparent;
  padding: 9px 14px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--color-primary-dark);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.form-modus-tab.active {
  background: var(--color-primary-dark);
  color: var(--color-white);
}

.price-note-small {
  font-size: 0.86rem;
  opacity: 0.85;
}

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

.price-card.featured {
  border-top-color: var(--color-coral);
}

.price-card .price {
  font-size: 2.2rem;
  color: var(--color-primary-dark);
  margin: 10px 0;
}

.price-card .price span {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-light);
}

.price-card-toggle {
  text-align: left;
  cursor: pointer;
}

.price-card-toggle summary {
  cursor: pointer;
  list-style: none;
  text-align: center;
}

.price-card-toggle summary::-webkit-details-marker {
  display: none;
}

.price-card-toggle summary h3 {
  position: relative;
}

.price-card-toggle summary h3::after {
  content: "▾";
  display: inline-block;
  margin-left: 6px;
  transition: transform 0.2s ease;
  color: var(--color-primary);
}

.price-card-toggle[open] summary h3::after {
  transform: rotate(180deg);
}

.price-toggle-bullets {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--color-text-light);
  font-size: 0.92rem;
}

.price-toggle-bullets li {
  margin-bottom: 6px;
}

.price-toggle-bullets li:last-child {
  margin-bottom: 0;
}

.price-toggle-btn {
  display: inline-block;
  margin-top: 14px;
  pointer-events: none;
}

.kennenlern-termine {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 2px dashed var(--color-bg-alt);
}

.kennenlern-termine-empty {
  color: var(--color-text-light);
  font-size: 0.9rem;
  margin: 0;
}

.kennenlern-termin-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-bg-alt);
  font-size: 0.9rem;
}

.kennenlern-termin-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.kennenlern-termin-item strong {
  font-family: var(--font-heading);
  color: var(--color-primary-dark);
}

.kennenlern-termin-item span {
  color: var(--color-text-light);
}

.pool-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.pool-card {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
  border-top: 4px solid var(--color-primary);
}

.pool-card h3 {
  margin: 0 0 8px;
  color: var(--color-primary-dark);
}

.pool-card-maps {
  display: inline-block;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--color-primary);
  margin-bottom: 12px;
  text-decoration: none;
}

.pool-card-maps:hover {
  text-decoration: underline;
}

.pool-card p {
  margin: 6px 0;
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.pool-card p strong {
  color: var(--color-primary-dark);
}

.price-toggle-grid {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 2px dashed var(--color-bg-alt);
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.price-toggle-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  font-size: 0.88rem;
}

.price-toggle-item strong {
  font-family: var(--font-heading);
  color: var(--color-primary-dark);
  font-size: 1rem;
  white-space: nowrap;
}

.price-note {
  text-align: center;
  color: var(--color-text-light);
  margin-top: 24px;
  font-size: 0.92rem;
}

.abzeichen-subtitle {
  text-align: center;
  color: var(--color-primary-dark);
  font-size: 1.2rem;
  margin: 46px 0 24px;
}

/* ---------- Ablauf ---------- */

.steps-wrap {
  position: relative;
}

.steps-wave-bg {
  display: none;
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  z-index: 0;
  opacity: 0.5;
}

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

.step {
  text-align: center;
  padding: 10px;
}

.step-number {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-primary-dark);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin: 0 auto 14px;
  box-shadow: var(--shadow);
}

.step h4 {
  margin: 0 0 6px;
  color: var(--color-primary-dark);
}

.step p {
  color: var(--color-text-light);
  font-size: 0.92rem;
  margin: 0;
}

@media (min-width: 901px) {
  .steps-wave-bg {
    display: block;
  }
}

/* ---------- FAQ ---------- */

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  color: var(--color-text);
}

.faq-question .chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--color-primary-dark);
}

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

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.35s ease;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 320px;
  opacity: 1;
  padding: 0 24px 22px;
}

.faq-answer p {
  margin: 0;
  color: var(--color-text-light);
}

.faq-compact {
  padding: 32px 0;
}

.faq-compact .section-title {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.faq-compact .section-subtitle {
  margin-bottom: 20px;
  font-size: 0.86rem;
}

.faq-compact .faq-list {
  max-width: 520px;
}

.faq-compact .faq-item {
  box-shadow: none;
  border: 1px solid #e3edf1;
  margin-bottom: 8px;
}

.faq-compact .faq-question {
  padding: 12px 16px;
  font-size: 0.88rem;
  font-family: var(--font-body);
  font-weight: 700;
}

.faq-compact .faq-answer,
.faq-compact .faq-item.open .faq-answer {
  padding-left: 16px;
  padding-right: 16px;
}

.faq-compact .faq-answer p {
  font-size: 0.84rem;
}

/* ---------- Kontakt / Formular ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info .btn-whatsapp {
  margin-top: 10px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--color-text-light);
}

.phone-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 20px;
  margin-top: 22px;
}

.phone-box .phone-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.phone-box .phone-number {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  white-space: nowrap;
  text-decoration: none;
  margin-bottom: 4px;
}

.phone-box .phone-number:hover {
  text-decoration: underline;
}

.phone-box p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-light);
}

form.booking-form {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 0.94rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.96rem;
  background: var(--color-bg-alt);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 1px;
}

.form-hint {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-top: 14px;
}

.form-group-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
}

.form-group-checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--color-primary-dark);
  flex-shrink: 0;
}

.form-group-checkbox label {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-text-light);
}

.form-status {
  margin-top: 14px;
  font-size: 0.9rem;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--color-bg-alt);
  color: var(--color-primary-dark);
  display: none;
}

.form-status.visible {
  display: block;
}

/* ---------- Floating WhatsApp Button ---------- */

.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: var(--color-whatsapp);
  color: var(--color-white);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  z-index: 200;
  text-decoration: none;
  transition: transform 0.15s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

/* ---------- Footer ---------- */

footer.site-footer {
  background: var(--color-primary-dark);
  color: #d7ecf5;
  padding: 40px 0 24px;
  margin-top: 40px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

footer.site-footer a {
  color: #ffffff;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom {
  text-align: center;
  margin-top: 26px;
  font-size: 0.85rem;
  color: #a9cdda;
}

/* ---------- Rechtliche Seiten (Impressum/Datenschutz) ---------- */

.legal-page {
  padding: 50px 0 70px;
}

.legal-page h1 {
  color: var(--color-primary-dark);
}

.legal-page h2 {
  margin-top: 34px;
  color: var(--color-primary-dark);
  font-size: 1.2rem;
}

.legal-page .notice {
  background: #fff3e0;
  border-left: 4px solid var(--color-accent);
  padding: 14px 18px;
  border-radius: 8px;
  margin: 20px 0 34px;
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .hero-inner,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  nav.main-nav {
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    background: var(--color-white);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
    display: none;
    flex-direction: column;
  }

  nav.main-nav.open {
    display: flex;
  }

  nav.main-nav ul {
    flex-direction: column;
    padding: 20px;
    gap: 16px;
  }

  .menu-toggle {
    display: block;
  }

  .btn-nav-cta {
    padding: 8px 14px;
    font-size: 0.82rem;
  }

  .logo {
    font-size: 1.05rem;
  }

  .card-grid,
  .price-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .faq-question {
    padding: 16px 18px;
    font-size: 0.96rem;
  }

  .faq-item.open .faq-answer {
    padding: 0 18px 18px;
  }
}
