/* ============================================================
   SCHELKO Allround Handwerk & Hausmeisterservice
   Design: "Handwerk mit Herz" – Organisch-Warm
   Farben: Himmelblau #381fd0 | Apfelgrün #16de49 | Weiß #FFF
   Fonts:  Nunito Sans (Headlines) + Open Sans (Body)
   ============================================================ */

/* ── Lokale Schriftarten (DSGVO-konform) ────────────────────── */
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/nunito-sans-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/nunito-sans-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/nunito-sans-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('fonts/nunito-sans-800.woff2') format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/open-sans-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/open-sans-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/open-sans-600.woff2') format('woff2');
}

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

:root {
  --blue: #381fd0;
  --blue-dark: #2a17a0;
  --blue-light: #eceafc;
  --green: #16de49;
  --green-dark: #12c540;
  --green-light: #e6fbec;
  --dark: #1a1a2e;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --warm-white: #fafaf8;
  --white: #ffffff;
  --radius: 1rem;
  --radius-sm: 0.5rem;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.2;
  font-weight: 800;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul { list-style: none; }

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

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


/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.btn-green {
  background: var(--green);
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-size: 1.05rem;
  box-shadow: var(--shadow-md);
}
.btn-green:hover {
  background: var(--green-dark);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-size: 1.05rem;
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

.btn-green-full {
  background: var(--green);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  width: 100%;
}
.btn-green-full:hover {
  background: var(--green-dark);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}


/* ── Navigation ─────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.75rem 0;
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo img {
  height: 48px;
  width: auto;
}

.navbar-links {
  display: none;
  align-items: center;
  gap: 2rem;
}
.navbar-links a {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--white);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}
.navbar-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: width var(--transition);
}
.navbar-links a:hover::after {
  width: 100%;
}
.navbar.scrolled .navbar-links a {
  color: var(--dark);
}
.navbar-links a:hover {
  color: var(--blue);
}

.navbar-cta {
  display: none;
}

.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--white);
}
.navbar.scrolled .mobile-toggle {
  color: var(--dark);
}
.mobile-toggle svg {
  width: 28px;
  height: 28px;
}

.mobile-menu {
  display: none;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--gray-200);
  padding: 1rem;
}
.mobile-menu.open {
  display: block;
}
.mobile-menu a {
  display: block;
  padding: 0.75rem 1rem;
  font-weight: 600;
  color: var(--dark);
  border-radius: var(--radius-sm);
}
.mobile-menu a:hover {
  background: var(--blue-light);
}
.mobile-menu .btn-green {
  width: 100%;
  margin-top: 0.5rem;
}

@media (min-width: 1024px) {
  .navbar-links { display: flex; }
  .navbar-cta { display: block; }
  .mobile-toggle { display: none; }
  .navbar-logo img { height: 52px; }
}


/* ── Hero Section ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,26,46,0.82), rgba(26,26,46,0.5), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 7rem 0 4rem;
  max-width: 640px;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(22,222,73,0.2);
  color: var(--green);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 50px;
  border: 1px solid rgba(22,222,73,0.3);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero h1 .accent {
  color: var(--green);
}

.hero-text {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  max-width: 540px;
  line-height: 1.8;
}

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

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 3rem;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  font-weight: 500;
}
.hero-trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--green);
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .hero h1 { font-size: 3.2rem; }
  .hero-buttons { flex-direction: row; }
  .hero-content { padding: 8rem 0 5rem; }
}
@media (min-width: 1024px) {
  .hero h1 { font-size: 3.75rem; }
}


/* ── Wave Dividers ──────────────────────────────────────────── */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-bottom: -1px;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}
@media (min-width: 640px) {
  .wave-divider svg { height: 80px; }
}


/* ── Section Shared ─────────────────────────────────────────── */
.section {
  padding: 4rem 0;
}
@media (min-width: 640px) {
  .section { padding: 5rem 0; }
}

.section-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.section-badge-blue {
  background: var(--blue-light);
  color: var(--blue);
}
.section-badge-green {
  background: var(--green-light);
  color: var(--green);
}

.section-title {
  font-size: 2rem;
  color: var(--blue);
  margin-bottom: 1rem;
}
.section-subtitle {
  color: var(--gray-600);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto;
}
.text-center { text-align: center; }

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


/* ── Services Section ───────────────────────────────────────── */
.bg-warm { background: var(--warm-white); }
.bg-white { background: var(--white); }

.services-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3.5rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
}

.service-card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}
.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-image img {
  transform: scale(1.05);
}

.service-card-placeholder {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, var(--blue-light), var(--green-light));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.service-card-placeholder svg {
  width: 48px;
  height: 48px;
  color: rgba(56,31,208,0.3);
  margin-bottom: 0.75rem;
}
.service-card-placeholder p {
  font-size: 0.85rem;
  color: var(--gray-400);
  font-style: italic;
  text-align: center;
}

.service-card-body {
  padding: 1.5rem;
}

.service-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.service-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-icon-box svg {
  width: 24px;
  height: 24px;
  color: var(--blue);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
}

.service-card-body > p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.placeholder-hint {
  font-size: 0.75rem;
  color: var(--gray-400);
  font-style: italic;
}

@media (min-width: 1024px) {
  .service-card {
    flex-direction: row;
    align-items: stretch;
  }
  .service-card.reverse {
    flex-direction: row-reverse;
  }
  .service-card-image,
  .service-card-placeholder {
    width: 50%;
    height: 320px;
    flex-shrink: 0;
  }
  .service-card-body {
    width: 50%;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .service-card h3 { font-size: 1.4rem; }
}


/* ── About Section ──────────────────────────────────────────── */
.about-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}

.about-portrait {
  width: 100%;
  max-width: 360px;
  position: relative;
}
.about-portrait-box {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blue-light), var(--green-light));
  border: 2px dashed rgba(56,31,208,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  overflow: hidden;
}
.about-portrait-icon {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  color: rgba(56,31,208,0.35);
}
.about-portrait-box p {
  font-size: 0.85rem;
  color: var(--gray-400);
  font-style: italic;
  text-align: center;
}
.about-portrait-box .sub {
  font-size: 0.75rem;
  color: var(--gray-300);
  margin-top: 0.25rem;
}

.about-decor-1 {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 96px;
  height: 96px;
  background: var(--green-light);
  border-radius: var(--radius);
  z-index: -1;
}
.about-decor-2 {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 64px;
  height: 64px;
  background: var(--blue-light);
  border-radius: 12px;
  z-index: -1;
}

.about-text p {
  color: var(--gray-600);
  margin-bottom: 1rem;
  line-height: 1.8;
}
.about-text strong {
  color: var(--dark);
}

.about-values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 2rem;
}
.about-value-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--warm-white);
  border-radius: 12px;
}
.about-value-item svg {
  width: 20px;
  height: 20px;
  color: var(--green);
  flex-shrink: 0;
}
.about-value-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
}

@media (min-width: 640px) {
  .about-values { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .about-grid {
    flex-direction: row;
    gap: 4rem;
  }
  .about-portrait { width: 42%; }
  .about-content { width: 58%; }
}


/* ── References / Gallery ───────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3.5rem;
}
.gallery-item {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(56,31,208,0.05), rgba(22,222,73,0.05));
  border: 2px dashed rgba(56,31,208,0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  transition: border-color var(--transition);
}
.gallery-item:hover {
  border-color: rgba(56,31,208,0.3);
}
.gallery-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
  color: rgba(56,31,208,0.35);
}
.gallery-item p {
  font-size: 0.85rem;
  color: var(--gray-400);
  font-style: italic;
  text-align: center;
}
.gallery-item .sub {
  font-size: 0.75rem;
  color: var(--gray-300);
  margin-top: 0.25rem;
}

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


/* ── Contact Section ────────────────────────────────────────── */
.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 1000px;
  margin: 3.5rem auto 0;
}

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

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--warm-white);
  border-radius: 12px;
  border: 1px solid var(--gray-200);
}
.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg {
  width: 22px;
  height: 22px;
  color: var(--blue);
}
.contact-info-card .label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
}
.contact-info-card .value {
  font-weight: 700;
  color: var(--blue);
}
.contact-info-card .hint {
  font-size: 0.75rem;
  color: var(--gray-400);
  font-style: italic;
}

.contact-hours {
  padding: 1.25rem;
  background: var(--blue);
  border-radius: 12px;
  color: var(--white);
}
.contact-hours h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.contact-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.contact-hours-row .day {
  color: rgba(255,255,255,0.7);
}
.contact-hours-row .time {
  font-weight: 600;
}
.contact-hours .hint {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  margin-top: 0.5rem;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: var(--dark);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(56,31,208,0.15);
}
.form-group textarea {
  resize: none;
  min-height: 130px;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-hint {
  font-size: 0.75rem;
  color: var(--gray-400);
  text-align: center;
}

@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .contact-grid {
    flex-direction: row;
    gap: 4rem;
  }
  .contact-info { width: 42%; }
  .contact-form { width: 58%; }
}


/* ── Form Divider & Click-to-Call Button ───────────────── */
.form-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.25rem 0;
}
.form-divider::before,
.form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}
.form-divider span {
  font-size: 0.85rem;
  color: var(--gray-400);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: transparent;
  color: var(--blue);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  border: 2px solid var(--blue);
  transition: all var(--transition);
  cursor: pointer;
  width: 100%;
}
.btn-call:hover {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.btn-call svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand img {
  height: 56px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}
.footer-brand p {
  color: var(--gray-500);
  font-size: 0.875rem;
  line-height: 1.7;
}

.footer h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.footer ul li {
  margin-bottom: 0.5rem;
}
.footer ul a {
  color: var(--gray-500);
  font-size: 0.875rem;
  transition: color var(--transition);
}
.footer ul a:hover {
  color: var(--green);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.footer-bottom p {
  color: var(--gray-500);
  font-size: 0.75rem;
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  color: var(--gray-500);
  font-size: 0.75rem;
}
.footer-bottom-links a:hover {
  color: var(--gray-300);
}

@media (min-width: 1024px) {
  .footer-grid {
    flex-direction: row;
  }
  .footer-brand { width: 40%; }
  .footer-links-col { width: 25%; }
  .footer-services-col { width: 35%; }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}


/* ── Back to Top ────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--blue-dark);
  transform: translateY(-3px);
}
.back-to-top svg {
  width: 22px;
  height: 22px;
}


/* ── Scroll Animations ──────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ── Legal Pages (Impressum, Datenschutz) ───────────────────── */
.legal-content {
  max-width: 800px;
}
.legal-content h1 {
  font-size: 2rem;
  color: var(--blue);
  margin-bottom: 1.5rem;
}
.legal-content h2 {
  font-size: 1.5rem;
  color: var(--blue);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
}
.legal-content h3 {
  font-size: 1.2rem;
  color: var(--dark);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.legal-content h4 {
  font-size: 1.05rem;
  color: var(--dark);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.legal-content p {
  color: var(--gray-600);
  margin-bottom: 1rem;
  line-height: 1.8;
}
.legal-content a {
  color: var(--blue);
  text-decoration: underline;
}
.legal-content a:hover {
  color: var(--blue-dark);
}
.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-content ul li {
  color: var(--gray-600);
  margin-bottom: 0.5rem;
  line-height: 1.7;
}
@media (min-width: 640px) {
  .legal-content h1 { font-size: 2.5rem; }
}
/* ── DER ULTIMATIVE FORMULAR-FIX ── */

/* 1. Den äußeren Container zwingen, die volle Spaltenbreite zu nutzen */
.contact-form-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    padding-right: 0 !important; /* Entfernt eventuelle Lücken rechts */
}

/* 2. Das Formular selbst auf volle Breite */
.contact-form {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
}

/* 3. Alle Felder UND der Senden-Button auf 100% */
.contact-form input, 
.contact-form textarea, 
.contact-form .btn-green-full,
.form-group {
    width: 100% !important;
    display: block !important;
    box-sizing: border-box !important;
}

/* 4. Den Senden-Button (btn-green-full) explizit anpassen */
.btn-green-full {
    margin-top: 1.25rem !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
}

/* 5. Den Anruf-Button und Trenner synchronisieren */
.btn-call, .form-divider {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}