/* ── Variablen ───────────────────────────────── */
:root {
  --yellow:      #f5c200;
  --yellow-dark: #d4a800;
  --dark:        #0f172a;
  --dark-2:      #1e293b;
  --dark-3:      #334155;
  --gray:        #6b7280;
  --gray-light:  #f8fafc;
  --border:      #e5e7eb;
  --white:       #ffffff;
  --green:       #22c55e;
  --red:         #ef4444;
  --amber:       #f59e0b;
  --radius:      12px;
  --shadow:      0 2px 12px rgba(0,0,0,.08);
  --shadow-md:   0 4px 24px rgba(0,0,0,.12);
  --transition:  .18s ease;
}

/* ── Reset / Base ────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1e293b;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── Container ───────────────────────────────── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 720px; margin: 0 auto; padding: 0 24px; }

/* ── Buttons ─────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 600; padding: 12px 24px;
  border-radius: var(--radius); transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--yellow); color: #0f172a;
  box-shadow: 0 4px 14px rgba(245,194,0,.35);
}
.btn-primary:hover { background: var(--yellow-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(245,194,0,.4); }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: transparent; color: var(--dark);
  border: 2px solid var(--border);
}
.btn-secondary:hover { border-color: var(--yellow); color: var(--yellow); }

.btn-white {
  background: var(--white); color: var(--yellow);
  box-shadow: 0 4px 14px rgba(0,0,0,.15);
}
.btn-white:hover { background: #fefce8; }

.btn-lg { font-size: 17px; padding: 15px 32px; border-radius: 14px; }
.btn-sm { font-size: 13px; padding: 8px 16px; }
.btn-block { width: 100%; justify-content: center; }

/* ── Navbar ──────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; gap: 16px;
}
.navbar-brand {
  display: flex; align-items: center; gap: 10px;
  font-size: 18px; font-weight: 800; color: var(--dark);
  flex-shrink: 0;
}
.navbar-brand:hover { color: var(--yellow); }
.navbar-brand svg { width: 32px; height: 32px; color: var(--yellow); }
.navbar-links { display: flex; align-items: center; gap: 4px; }
.navbar-link {
  padding: 8px 16px; font-size: 14px; font-weight: 500;
  color: var(--gray); border-radius: 8px; transition: var(--transition);
}
.navbar-link:hover { color: var(--yellow); background: #fefce8; }
.navbar-cta { margin-left: 8px; }

/* ── Sprachumschalter (Dropdown) ─────────────── */
.lang-dropdown { position: relative; display: inline-block; }
.lang-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 10px; border-radius: 10px; color: var(--gray);
  font-size: 13px; font-weight: 600; transition: var(--transition);
  border: 1px solid transparent;
}
.lang-toggle:hover { color: var(--yellow); background: #fefce8; border-color: var(--border); }
.lang-globe { font-size: 16px; line-height: 1; }
.lang-chevron { transition: transform var(--transition); opacity: .7; }
.lang-dropdown.open .lang-chevron { transform: rotate(180deg); }

.lang-menu {
  position: absolute; right: 0; top: calc(100% + 6px);
  min-width: 190px; background: #fff; border: 1px solid var(--border);
  border-radius: 12px; box-shadow: var(--shadow-md); padding: 6px;
  z-index: 200; display: none; flex-direction: column;
}
.lang-menu.open { display: flex; }
.lang-item {
  display: flex; align-items: center; gap: 10px; width: 100%;
  padding: 9px 12px; border-radius: 8px; font-size: 14px;
  color: #374151; text-align: left; transition: var(--transition);
}
.lang-item:hover { background: #fefce8; color: var(--dark); }
.lang-item.active { background: #fefce8; color: var(--dark); font-weight: 600; }
.lang-flag { font-size: 17px; line-height: 1; }
.lang-check { margin-left: auto; color: var(--yellow); }

/* Im mobilen Menü als volle Breite darstellen */
.navbar-mobile .lang-dropdown { display: block; }
.navbar-mobile .lang-toggle { width: 100%; justify-content: flex-start; }
.navbar-mobile .lang-menu { position: static; box-shadow: none; margin-top: 6px; min-width: 0; }
.navbar-burger {
  display: none; padding: 8px; border-radius: 8px;
  color: var(--gray); transition: var(--transition);
}
.navbar-burger:hover { background: var(--gray-light); }
.navbar-burger svg { width: 24px; height: 24px; }
.navbar-mobile {
  display: none; border-top: 1px solid var(--border); padding: 12px 0;
}
.navbar-mobile.open { display: block; }
.navbar-mobile a {
  display: block; padding: 11px 16px; font-size: 14px; font-weight: 500;
  color: #374151; border-radius: 8px; transition: var(--transition);
}
.navbar-mobile a:hover { background: #fefce8; color: var(--yellow); }
.navbar-mobile .btn { margin: 8px 16px 4px; width: calc(100% - 32px); }

/* ── Hero ────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, #1e3a5f 55%, var(--dark) 100%);
  color: #fff; padding: 96px 0 80px; text-align: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,194,0,.15); color: #fde047;
  border: 1px solid rgba(245,194,0,.3);
  font-size: 13px; font-weight: 600; padding: 6px 16px;
  border-radius: 999px; margin-bottom: 28px; letter-spacing: .3px;
}
.hero-badge .dot {
  width: 8px; height: 8px; background: var(--yellow); border-radius: 50%;
}
.hero h1 {
  font-size: clamp(32px, 5vw, 58px); font-weight: 900; line-height: 1.15;
  margin-bottom: 20px; color: #fff; letter-spacing: -.5px;
}
.hero h1 span { color: var(--yellow); }
.hero p {
  font-size: 18px; color: #94a3b8; max-width: 560px;
  margin: 0 auto 40px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Stats Bar ───────────────────────────────── */
.stats-bar { background: var(--yellow); padding: 28px 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  text-align: center; color: #fff;
}
.stat { padding: 8px; }
.stat + .stat { border-left: 1px solid rgba(255,255,255,.3); }
.stat-num { font-size: 30px; font-weight: 900; line-height: 1; }
.stat-label { font-size: 13px; opacity: .85; margin-top: 4px; }

/* ── Section ─────────────────────────────────── */
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-dark { background: var(--dark); color: #fff; }
.section-gray { background: var(--gray-light); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 {
  font-size: clamp(26px, 4vw, 40px); font-weight: 800;
  color: inherit; letter-spacing: -.3px; margin-bottom: 12px;
}
.section-header p { font-size: 17px; color: var(--gray); }
.section-dark .section-header p { color: #94a3b8; }

/* ── Cards ───────────────────────────────────── */
.cards { display: grid; gap: 20px; }
.cards-3 { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.cards-4 { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 16px; padding: 28px;
  box-shadow: var(--shadow); transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); border-color: rgba(245,194,0,.3); transform: translateY(-2px); }
.card-icon { font-size: 40px; margin-bottom: 16px; }
.card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.card p { font-size: 14px; color: var(--gray); line-height: 1.65; }
.card-price { margin-top: 16px; font-size: 14px; font-weight: 600; color: var(--yellow); }

/* ── Step cards (How it works) ───────────────── */
.steps-grid { display: grid; gap: 24px; grid-template-columns: repeat(3, 1fr); max-width: 860px; margin: 0 auto; }
.step-card { text-align: center; padding: 36px 24px; background: #fff; border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--shadow); }
.step-num {
  width: 48px; height: 48px; background: #fefce8;
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.step-num svg { width: 24px; height: 24px; color: var(--yellow); }
.step-label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--yellow); margin-bottom: 6px; }
.step-card h3 { font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--gray); }

/* ── Trust items ─────────────────────────────── */
.trust-grid { display: grid; gap: 8px; grid-template-columns: repeat(4, 1fr); max-width: 900px; margin: 0 auto; text-align: center; }
.trust-item { padding: 32px 16px; }
.trust-item .icon { font-size: 40px; margin-bottom: 12px; }
.trust-item h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.trust-item p { font-size: 13px; color: #94a3b8; }

/* ── Reviews ─────────────────────────────────── */
.review-card { background: var(--gray-light); border: 1px solid var(--border); border-radius: 16px; padding: 24px; }
.stars { color: var(--yellow); font-size: 18px; margin-bottom: 12px; }
.review-text { font-size: 14px; color: #374151; font-style: italic; line-height: 1.7; margin-bottom: 14px; }
.review-author { font-size: 13px; font-weight: 600; color: var(--dark); }
.review-service { font-size: 12px; color: var(--gray); margin-top: 2px; }

/* ── CTA Banner ──────────────────────────────── */
.cta-banner { background: var(--yellow); padding: 64px 0; text-align: center; }
.cta-banner h2 { font-size: 32px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.cta-banner p { font-size: 17px; color: rgba(255,255,255,.85); margin-bottom: 32px; }

/* ── Booking Steps Indicator ─────────────────── */
.step-indicator {
  display: flex; align-items: center; margin-bottom: 40px;
}
.si-step { display: flex; align-items: center; gap: 8px; }
.si-circle {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.si-circle.active { background: var(--yellow); color: #fff; }
.si-circle.done { background: var(--green); color: #fff; }
.si-circle.inactive { background: #e5e7eb; color: #9ca3af; }
.si-label { font-size: 13px; font-weight: 600; }
.si-label.active { color: var(--yellow); }
.si-label.done { color: var(--green); }
.si-label.inactive { color: #9ca3af; }
.si-line { flex: 1; height: 2px; margin: 0 12px; background: #e5e7eb; }
.si-line.done { background: var(--green); }
.si-line.active { background: linear-gradient(90deg, var(--green), #e5e7eb); }

/* ── Booking Service Cards ───────────────────── */
.service-radio { display: none; }
.service-label {
  display: flex; align-items: flex-start; gap: 16px; padding: 18px 20px;
  background: #fff; border: 2px solid var(--border); border-radius: 14px;
  cursor: pointer; transition: var(--transition); margin-bottom: 10px;
}
.service-label:hover { border-color: rgba(245,194,0,.4); background: #fefce8; }
.service-radio:checked + .service-label { border-color: var(--yellow); background: #fefce8; }
.service-check {
  width: 20px; height: 20px; border-radius: 6px; border: 2px solid #d1d5db;
  flex-shrink: 0; margin-top: 2px; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.service-radio:checked + .service-label .service-check {
  background: var(--yellow); border-color: var(--yellow);
}
.service-radio:checked + .service-label .service-check::after {
  content: ''; width: 5px; height: 9px; margin-top: -2px;
  border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.service-info h4 { font-size: 15px; font-weight: 600; color: var(--dark); margin-bottom: 2px; }
.service-info p { font-size: 13px; color: var(--gray); }
.service-meta { margin-top: 6px; font-size: 12px; color: var(--gray); display: flex; gap: 12px; }
.service-meta strong { color: var(--yellow); }

/* ── Time Slots ──────────────────────────────── */
.slots-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(80px,1fr)); gap: 8px; }
.slot-btn {
  padding: 10px 4px; font-size: 14px; font-weight: 600; text-align: center;
  border: 2px solid var(--border); border-radius: 10px;
  background: #fff; color: #374151; transition: var(--transition);
}
/* Free = green, bookable */
.slot-free { cursor: pointer; border-color: #86efac; background: #f0fdf4; color: #15803d; }
.slot-free:hover { border-color: var(--green); background: #dcfce7; }
.slot-btn.selected { background: var(--green); border-color: var(--green); color: #fff; }
/* Reserved = red, not selectable */
.slot-reserved {
  border-color: #fecaca; background: #fef2f2; color: #b91c1c;
  cursor: not-allowed; opacity: .85; text-decoration: line-through;
}
/* Legend */
.slots-legend { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 4px 0 14px; font-size: 13px; color: #374151; }
.slots-legend-item { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.slot-dot { width: 16px; height: 16px; border-radius: 5px; border: 2px solid; display: inline-block; flex-shrink: 0; }
.slot-dot-free { border-color: var(--green); background: #dcfce7; }
.slot-dot-reserved { border-color: #ef4444; background: #fee2e2; }
.slot-dot-holiday { border-color: var(--amber); background: #fef3c7; }
/* Closed / holiday day banner */
.day-closed {
  background: #fffbeb; border: 1px solid #fde68a; border-left: 4px solid var(--amber);
  border-radius: 10px; padding: 14px 16px; color: #92400e; font-size: 14px; line-height: 1.6;
}

/* ── Form ────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-row { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.form-label .hint { font-weight: 400; color: var(--gray); }
.form-label .req { color: var(--red); font-weight: 700; }
.required-note { font-size: 13px; color: var(--gray); margin-bottom: 16px; }
.required-note .req { color: var(--red); font-weight: 700; }
.hsn-help {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  background: var(--gray-light); border: 1px solid var(--border);
  border-radius: 12px; padding: 16px; margin: 4px 0 8px;
}
.hsn-help-text { flex: 1 1 200px; }
.hsn-help-text strong { display: block; font-size: 14px; color: var(--dark); margin-bottom: 4px; }
.hsn-help-text p { font-size: 13px; color: var(--gray); line-height: 1.6; }
.hsn-help-img { width: 180px; max-width: 100%; height: auto; flex-shrink: 0; }
.fee-box {
  background: #fffbeb; border: 1px solid #fde68a; border-left: 4px solid var(--amber);
  border-radius: 10px; padding: 14px 16px; color: #92400e;
}
.fee-box strong { display: block; font-size: 14px; margin-bottom: 4px; }
.fee-box p { font-size: 13px; line-height: 1.6; }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 12px 16px; font-size: 15px; font-family: inherit;
  border: 2px solid var(--border); border-radius: 10px; background: #fff;
  color: var(--dark); transition: var(--transition); outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(245,194,0,.12);
}
.form-textarea { resize: vertical; }
.form-error { font-size: 12px; color: var(--red); margin-top: 5px; }
.form-hint { font-size: 11px; color: var(--gray); margin-top: 4px; }

.input-box {
  background: #fff; border: 2px solid var(--border); border-radius: 10px;
  padding: 12px 16px; transition: var(--transition);
  display: flex; align-items: center; gap: 12px;
}
.input-box:focus-within { border-color: var(--yellow); }

/* ── Info Box ────────────────────────────────── */
.info-box {
  background: #fefce8; border: 1px solid rgba(245,194,0,.3);
  border-radius: 12px; padding: 16px 20px; font-size: 14px; color: #78640a;
}
.info-box strong { color: var(--yellow); }
.alert-success { background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 12px; padding: 16px 20px; font-size: 14px; color: #15803d; }
.alert-error { background: #fef2f2; border: 1px solid #fca5a5; border-radius: 12px; padding: 16px 20px; font-size: 14px; color: #991b1b; }

/* ── Summary Box (Step 3) ────────────────────── */
.summary-box {
  background: var(--dark); color: #fff; border-radius: 16px; padding: 24px;
  margin-bottom: 32px;
}
.summary-box .label { font-size: 11px; color: #64748b; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.summary-box .value { font-size: 22px; font-weight: 800; }
.summary-box .sub { color: var(--yellow); font-weight: 600; font-size: 16px; margin-top: 2px; }
.summary-box .divider { border-top: 1px solid #1e293b; margin: 16px 0; }
.summary-box .detail { font-size: 14px; color: #94a3b8; }
.summary-box .detail strong { color: #e2e8f0; }

/* ── Booking Detail / Success ────────────────── */
.success-icon {
  width: 80px; height: 80px; background: #dcfce7; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 24px;
}
.success-icon svg { width: 40px; height: 40px; color: var(--green); }
.booking-card {
  background: #fff; border: 2px solid var(--border); border-radius: 20px;
  padding: 28px; box-shadow: var(--shadow); text-align: left; margin-bottom: 24px;
}
.booking-card-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.bc-field .bc-label { font-size: 11px; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px; }
.bc-field .bc-value { font-size: 14px; font-weight: 600; color: var(--dark); }
.bc-field .bc-sub { font-size: 12px; color: var(--gray); }
.bc-field .bc-orange { font-size: 13px; font-weight: 600; color: var(--yellow); }
.status-badge {
  padding: 4px 12px; border-radius: 999px; font-size: 12px; font-weight: 700;
}
.badge-pending { background: #fef3c7; color: #92400e; }
.badge-confirmed { background: #dcfce7; color: #15803d; }
.badge-cancelled { background: #fee2e2; color: #991b1b; }
.badge-completed { background: #dbeafe; color: #1e40af; }

/* ── Services List ───────────────────────────── */
.service-row {
  display: flex; align-items: center; gap: 16px; padding: 18px 22px;
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  box-shadow: var(--shadow); transition: var(--transition); margin-bottom: 10px;
}
.service-row:hover { box-shadow: var(--shadow-md); border-color: rgba(245,194,0,.3); }
.service-row .sr-info { flex: 1; }
.service-row .sr-name { font-size: 15px; font-weight: 600; color: var(--dark); margin-bottom: 3px; }
.service-row .sr-desc { font-size: 13px; color: var(--gray); }
.service-row .sr-meta { display: flex; gap: 16px; margin-top: 6px; font-size: 12px; color: var(--gray); }
.service-row .sr-price { font-weight: 600; color: var(--yellow); }

/* ── About ───────────────────────────────────── */
.about-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #1e3a5f 55%, var(--dark) 100%);
  color: #fff; padding: 72px 0; text-align: center;
}
.about-hero h1 { font-size: clamp(28px, 4vw, 48px); font-weight: 900; margin-bottom: 12px; }
.about-hero p { font-size: 17px; color: #94a3b8; }
.stat-box { border-radius: 16px; padding: 28px 24px; text-align: center; }
.stat-box .sb-num { font-size: 36px; font-weight: 900; }
.stat-box .sb-label { font-size: 13px; margin-top: 4px; }
.hours-table { border-top: 1px solid var(--border); }
.hours-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 13px 0; border-bottom: 1px solid var(--border); font-size: 14px;
}
.hours-row .day { font-weight: 600; color: var(--dark); }
.hours-row .time { color: var(--gray); }
.hours-row .closed { color: var(--red); font-weight: 600; }

/* ── Page Header ─────────────────────────────── */
.page-hero {
  background: var(--dark); color: #fff; padding: 56px 0; text-align: center;
}
.page-hero h1 { font-size: clamp(26px, 4vw, 44px); font-weight: 900; margin-bottom: 10px; }
.page-hero p { font-size: 16px; color: #94a3b8; }

/* ── Footer ──────────────────────────────────── */
.footer { background: var(--dark); color: #94a3b8; padding: 56px 0 0; margin-top: 80px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 40px; margin-bottom: 40px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-brand svg { width: 28px; height: 28px; color: var(--yellow); }
.footer-brand span { font-size: 18px; font-weight: 800; color: #fff; }
.footer-desc { font-size: 14px; line-height: 1.7; }
.footer h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 16px; letter-spacing: .3px; }
.footer ul li { margin-bottom: 10px; font-size: 14px; }
.footer a:hover { color: var(--yellow); }
.footer-contact li { display: flex; align-items: flex-start; gap: 8px; }
.footer-bottom { border-top: 1px solid #1e293b; padding: 20px 0; text-align: center; font-size: 12px; color: #475569; }

/* ── Divider / Misc ──────────────────────────── */
.divider { height: 1px; background: var(--border); margin: 24px 0; }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.w-full { width: 100%; }

/* ── Responsive ──────────────────────────────── */
@media (max-width: 768px) {
  .navbar-links { display: none; }
  .navbar-burger { display: flex; }
  .hero { padding: 64px 0 56px; }
  .hero p { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .stats-grid { font-size: 14px; }
  .stat-num { font-size: 22px; }
  .section { padding: 56px 0; }
  .section-header { margin-bottom: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .booking-card-row { grid-template-columns: 1fr; }
  .step-indicator { gap: 4px; }
  .si-label { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .steps-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Hero Split (mit Bild) ───────────────────────────── */
.hero-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
.hero-split-text { text-align: left; }
.hero-split-text .hero-actions { justify-content: flex-start; }
.hero-split-img {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  aspect-ratio: 4/3;
}
.hero-split-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* ── Card mit Bild ───────────────────────────────────── */
.card-img {
  width: 100%; height: 180px; object-fit: cover;
  border-radius: 10px; margin-bottom: 16px;
}

/* ── Galerie ─────────────────────────────────────────── */
.gallery-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.gallery-item {
  border-radius: 16px; overflow: hidden; aspect-ratio: 4/3;
  box-shadow: var(--shadow); border: 1px solid var(--border);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .3s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

/* ── About: Team-/Inhaberbild ────────────────────────── */
.about-figure {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center;
  margin: 32px 0;
}
.about-figure img { width: 100%; height: auto; border-radius: 16px; box-shadow: var(--shadow-md); }
@media (max-width: 768px) {
  .about-figure { grid-template-columns: 1fr; gap: 20px; }
}

/* ── About Bild ──────────────────────────────────────── */
.about-photo {
  width: 100%; height: auto; border-radius: 16px; object-fit: cover;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
}

/* ── Autoglas Banner ─────────────────────────────────── */
.autoglas-banner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-md); margin-bottom: 60px;
}
.autoglas-banner-img { aspect-ratio: 16/10; }
.autoglas-banner-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.autoglas-banner-text {
  background: var(--dark); color: #fff;
  padding: 48px 40px; display: flex; flex-direction: column; justify-content: center;
}
.autoglas-banner-text h2 { font-size: 26px; font-weight: 800; margin-bottom: 12px; }
.autoglas-banner-text p { color: #94a3b8; line-height: 1.7; margin-bottom: 24px; }

@media (max-width: 768px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-split-img { display: none; }
  .hero-split-text { text-align: center; }
  .hero-split-text .hero-actions { justify-content: center; }
  .autoglas-banner { grid-template-columns: 1fr; }
  .autoglas-banner-img { display: none; }
  .autoglas-banner-text { padding: 32px 24px; }
}

/* ── Cookie-Hinweis ──────────────────────────── */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 400;
  background: var(--dark); color: #e2e8f0;
  border: 1px solid var(--dark-3); border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,.28);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner-inner {
  max-width: 960px; margin: 0 auto; padding: 16px 20px;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.cookie-banner-text { flex: 1 1 320px; font-size: 13px; line-height: 1.6; color: #cbd5e1; }
.cookie-banner-text a { color: var(--yellow); text-decoration: underline; }
.cookie-banner #cookie-accept { flex-shrink: 0; white-space: nowrap; }
@media (max-width: 560px) {
  .cookie-banner-inner { flex-direction: column; align-items: stretch; }
  .cookie-banner #cookie-accept { width: 100%; }
}

/* ── RTL (Arabisch) ──────────────────────────── */
[dir="rtl"] .hero-split-text { text-align: right; }
[dir="rtl"] .hero-split-text .hero-actions { justify-content: flex-start; }
[dir="rtl"] .lang-dd-menu { right: auto; left: 0; }
[dir="rtl"] .lang-dd-item { text-align: right; }
@media (max-width: 768px) {
  [dir="rtl"] .hero-split-text { text-align: center; }
}
