/* ===============================
   CLEAN24 SAAR – BLUE BRAND THEME
   =============================== */

:root {
  --brand: #fdfdfd; /*Buttons*/
  --brand-600: #60abdd; /**/
  --brand-700: #ec720d; /**/
  --ink: #60abdd; /*Logo obere*/
  --bg: #ffffff; /**/
  --surface: #181818; /**/
  --surface-alt: #60abdd; /**/
  --accent: #fafafa; /**/ 
  --text: #080808; /**/
  --muted: #000000; /**/
  --border: #60abdd; /**/
  --shadow: 0 10px 30px rgba(0, 0, 0, .06);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html {
  zoom: 1.0; /* 0.9 = 90% Zoom | 1.1 = 110% Zoom */
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: #FFFFFF;
  background: var(--bg);
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.row {
  display: flex;
  align-items: center;
}

.wrap {
  flex-wrap: wrap;
}

.gap-sm {
  gap: 12px;
}

.between {
  justify-content: space-between;
}

/* ===== Topbar ===== */

.topbar {
  display: none;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: var(--ink);
  color: #e5e7eb;
  font-size: 14px;
  padding: 6px 0;
}

@media (min-width: 768px) {
  .topbar {
    display: block;
  }
}

.topbar a {
  color: #e5e7eb;
  text-decoration: none;
}

.topbar a:hover {
  color: var(--accent);
}

/* ===== Header / Navigation ===== */

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.nav {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.logo-img {
  height: 150px;
  width: auto;
  display: block;
}

.brand-name {
  color: #FFFFFF;
  font-weight: 700;
  margin-left: 10px;
}

.nav-links {
  display: none;
  gap: 24px;
  align-items: center;
}

.nav-links a {
  color: #E5EDF5;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

.nav-links a:hover {
  color: #FFFFFF;
}

.nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #FFFFFF;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
  .nav-toggle {
    display: none;
  }
}

/* ===== Buttons ===== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  transition: transform .06s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.btn-primary {
  background: var(--brand);
  color: #111827;
  border-color: var(--brand);
  box-shadow: 0 6px 16px rgba(0, 0, 0, .12);
}

.btn-primary:hover {
  background: var(--brand-600);
  border-color: var(--brand-600);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
}
/* ==== Individueller Button: Angebot anfordern (nur dieser) ==== */
.btn-angebot {
  background: #ffffff; /* Orange aus deiner Farbpalette */
  color: #000000; /* Weißer Text */
  border-color: #ffffff;
  font-family: 'Inter', sans-serif; /* Oder eine andere Schrift, z. B. 'Poppins' */
  font-weight: 700;
  letter-spacing: 0.5px;
}

.btn-angebot:hover {
  background: #60abdd; /* etwas helleres Orange beim Hover */
  border-color: #ffffff;
  color: #000000;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(236, 114, 13, 0.25);
}

.btn-outline {
  background: transparent;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, .6);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .12);
}

/* ===== Hero (Video) ===== */

.hero-video {
  position: relative;
  height: 600px;
  min-height: 50vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #FFFFFF;
  isolation: isolate;
  padding-top: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 29, 46, .55) 0%, rgba(15, 29, 46, .45) 40%, rgba(15, 29, 46, .62) 100%), radial-gradient(60% 80% at 50% 70%, rgba(39, 76, 119, .18) 0%, rgba(39, 76, 119, 0) 60%);
  z-index: 1;
}

.hero-center {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 16px 80px;
  text-align: center;
}

.hero-video h1 {
  margin: 0 0 12px;
  line-height: 1.15;
  font-weight: 800;
  font-size: 36px;
}

@media (min-width: 900px) {
  .hero-video h1 {
    font-size: 48px;
  }
}

.lead-light {
  color: rgba(255, 255, 255, .92);
}

.bullets-light {
  color: rgba(255, 255, 255, .9);
}

.bullets-light li {
  margin: 6px 0;
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, .6);
  color: #FFFFFF;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, .12);
}

.center-buttons {
  justify-content: center;
}

/* ===== Sektionen ===== */

.section {
  padding: 64px 0;
  background: #FFFFFF;
  color: #000000;
}

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

.section h2 {
  font-size: 28px;
  margin: 0 0 14px;
  position: relative;
}

.section h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin-top: 10px;
  background: var(--brand);
  border-radius: 999px;
}
.section .container.narrow.center {
  max-width: 980px;
  padding-left: 20px;
  padding-right: 20px;
}
.section .container.narrow.center h1 {
  font-size: 34px;
  line-height: 1.2;
  margin-top: 8px;
  margin-bottom: 10px;
}
.section .container.narrow.center > p.muted {
  font-size: 16px;
  color: #111827;
  opacity: 0.9;
  margin-top: 0;
  margin-bottom: 18px;
}

.muted {
  color: var(--muted);
}

.small {
  font-size: 12px;
}

/* ===== Cards ===== */

.grid {
  display: grid;
  gap: 16px;
}

.cards {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 24px;
}

.card {
  border: 1px solid var(--border);
  background: #FFFFFF;
  border-radius: 16px;
  transition: box-shadow .2s ease, transform .15s ease, border-color .2s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(39, 76, 119, .35);
  box-shadow: 0 10px 24px rgba(39, 76, 119, .18);
}

.card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 12px;
}

.card h3 {
  margin: 12px 0 6px;
  font-size: 18px;
}

/* =============================
   Vorteile – Zweispaltiges Layout
   ============================= */
/* =============================
   Vorteile – Zweispaltiges Layout mit blauem Hintergrund
   ============================= */
#vorteile {
  background: #60abdd; /* Dein Blau */
  color: #ffffff; /* Weißer Text auf Blau */
  padding: 80px 0;
}

#vorteile h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #ffffff; /* Weißer Titel */
}

/* Grundlayout */
.vorteil-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 80px;
  background: rgba(255, 255, 255, 0.1); /* Leicht transparente Box */
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.vorteil-bild img {
  width: 100%;
  max-width: 400px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.vorteil-text {
  flex: 1;
}

.vorteil-text h3 {
  margin-top: 0;
  font-size: 24px;
  color: #ffffff;
}

/* Umgekehrte Reihenfolge (unten) */
.vorteil-block.reverse {
  flex-direction: row-reverse;
  text-align: right;
}

/* Mobile Ansicht */
@media (max-width: 768px) {
  .vorteil-block {
    flex-direction: column;
    text-align: center;
  }

  .vorteil-block.reverse {
    flex-direction: column;
    text-align: center;
  }

  .vorteil-bild img {
    max-width: 300px;
    margin-bottom: 16px;
  }

  #vorteile {
    padding: 60px 0;
  }
}


/* ===== Formulare ===== */

.form {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
  margin-top: 18px;
} 

/* Grid klar auf 2 Spalten ab Desktop */
@media (min-width: 900px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 16px;
  }
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 8px;
}

.form-field input,
.form-field textarea {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  font: inherit;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0 12px;
  font-size: 14px;
}

/* ===== Footer ===== */

.footer {
  background: var(--ink);
  color: #ffffff;
  margin-top: 16px;
}

.footer a {
  color: #ffffff;
  text-decoration: none;
}

.footer a:hover {
  color: var(--brand);
}

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

.icon {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #000102;
  border-radius: 12px;
}
.footer-bottom {
  border-top: 5px solid #ffffff;
  padding: 14px 0;
}

/* ===== WhatsApp Button ===== */

.whatsapp {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #22c55e;
  color: #FFFFFF;
  font-size: 28px;
  text-decoration: none;
  box-shadow: var(--shadow);
}

/* ===== Mobile Menü ===== */

.mobile-open .nav-links {
  display: grid;
  gap: 12px;
  position: absolute;
  left: 0;
  right: 0;
  top: 64px;
  background: #60abdd;
  border-bottom: 1px solid var(--border);
  padding: 16px;
}

@media (min-width: 768px) {
  .mobile-open .nav-links {
    display: flex;
    position: static;
    border: none;
    padding: 0;
  }
}

/* ===== Modale ===== */

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  color: #000000;
}

.modal[aria-hidden="false"] {
  display: block;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 29, 46, .6);
  backdrop-filter: blur(2px);
}

.modal__dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(860px, 92vw);
  max-height: 80vh;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
}

.modal__close {
  position: absolute;
  right: 12px;
  top: 10px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #FFFFFF;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.modal__body {
  margin-top: 8px;
  overflow: auto;
  padding-right: 6px;
}

.body--modal-open {
  overflow: hidden;
}

.modal__body::-webkit-scrollbar {
  width: 10px;
}

.modal__body::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 16px;
}

.modal__body::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 16px;
}

/* ===== Select-Style ===== */

.form-field select {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  font: inherit;
  background: #FFFFFF;
  color: var(--text);
  width: 100%;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 22px) calc(50% - 3px), calc(100% - 16px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.form-field select:focus {
  outline: 3px solid rgba(39, 76, 119, .25);
  outline-offset: 2px;
}

.form-field select option[disabled] {
  color: #9ca3af;
}

/* ===== Flip-Karten – stabile Höhe & sauberer Flow ===== */

.cards .service-flip {
  height: 360px;
}

@media (min-width: 900px) {
  .cards .service-flip {
    height: 400px;
  }
}

/* ==== Flip-Karten (Vorderseite → Rückseite) ==== */

.service-flip {
  perspective: 1200px;
  cursor: pointer;
}

.service-flip .flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform .6s ease;
  border: 1px solid var(--border);
  border-radius: 16px;
  color: #000000;
  
}

.service-flip .flip-face {
  position: absolute;
  inset: 0;
  display: grid;
  gap: 8px;
  padding: 16px;
  background: #FFFFFF;
  border-radius: 16px;
  backface-visibility: hidden;
}

.service-flip .flip-front img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 12px;
}

.service-flip .flip-back {
  transform: rotateY(180deg);
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: 24px;
}

.service-flip.is-flipped .flip-inner {
  transform: rotateY(180deg);
}

/* leichte Hover-Interaktion */
.service-flip:hover .flip-inner {
  box-shadow: var(--shadow);
}

/* Tastatur-Fokus sichtbar */
.service-flip:focus-visible .flip-inner {
  outline: 3px solid rgba(39, 76, 119, .25);
  outline-offset: 3px;
}

/* ===== Instagram Feed (über Footer) ===== */
.instagram-section {
  background: #ffffff;
  padding-top: 80px;
  padding-bottom: 80px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.instagram-section h2 {
  text-align: center;
  margin-bottom: 8px;
}

.instagram-section p.muted {
  text-align: center;
  margin-bottom: 32px;
  color: var(--muted);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.insta-post {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}

.insta-post:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .14);
}

.insta-post a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.insta-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.insta-caption {
  padding: 12px;
  font-size: 14px;
  color: var(--muted);
  max-height: 96px;
  overflow: hidden;
}

.insta-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px 14px;
  font-size: 12px;
  color: #6b7280;
}

/* Skeleton-Loader, damit nichts springt */
.skeleton {
  background: #ffffff;
}

.insta-skel-img {
  height: 250px;
  background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 37%, #e5e7eb 63%);
  background-size: 400% 100%;
  animation: skel 1.2s ease-in-out infinite;
}

.insta-skel-caption {
  height: 56px;
  margin: 12px;
  border-radius: 10px;
  background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 37%, #e5e7eb 63%);
  background-size: 400% 100%;
  animation: skel 1.2s ease-in-out infinite;
}

@keyframes skel {
  0%   { background-position: 100% 50% }
  100% { background-position: 0% 50% }
}

/* Kontakt 2 – Layout */
.contact2-section {
  padding: 64px 0;
  background: #ffffff;
  color: #000000;
}

.contact2-container {
  width: min(1100px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact2-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact2-kicker {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  color: #ffffff;
  margin: 0;
}

.contact2-title {
  font-size: 36px;
  line-height: 1.2;
  margin: 0;
}

.contact2-sub {
  color: #000000;
  margin: 0 0 12px 0;
}

.contact2-list {
  display: grid;
  gap: 18px;
  margin-top: 8px;
}

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

.contact2-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: #11161c;
  border: 1px solid #1f2730;
  border-radius: 10px;
  font-size: 18px;
}

.contact2-label {
  font-weight: 600;
  margin-bottom: 2px;
}

.contact2-link {
  color: #000000;
  text-decoration: none;
}

.contact2-link:hover {
  text-decoration: underline;
}

.contact2-address {
  font-style: normal;
  color: #000000;
  margin: 0;
}

.contact2-right {
  width: 100%;
}

.contact2-mapwrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #11161c;
  border: 1px solid #ffffff;
  border-radius: 14px;
  overflow: hidden;
}

.contact2-map {
  width: 100%;
  height: 100%;
  border: 0;
  
}

/* Responsive */
@media (max-width: 900px) {
  .contact2-container {
    grid-template-columns: 1fr;
  }
  .contact2-mapwrap {
    aspect-ratio: 4 / 3;
  }
}

/* ============================
   MOBILE-ONLY OVERRIDES
   greift nur bis 768px breite
   ============================ */
@media (max-width: 768px) {

  html {
    font-size: 16px;
  }

  body {
    line-height: 1.55;
  }

  .container {
    max-width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }

  /* header / nav */
  .nav {
    height: 60px;
  }

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

  .brand-name {
    font-size: 16px;
    margin-left: 8px;
  }

  .nav-links {
    gap: 12px;
  }

  .mobile-open .nav-links {
    top: 60px;
    padding: 12px;
  }

  .nav-links a {
    font-size: 15px;
    padding: 6px 2px;
  }

  .nav-toggle {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  /* hero */
  .hero-video {
    height: 420px;
    min-height: 45vh;
    padding-top: 0;
  }

  .hero-center {
    padding-top: 36px;
    padding-bottom: 48px;
  }

  .hero-video h1 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .lead-light {
    font-size: 16px;
  }

  /* sektionen */
  .section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section h2 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .section h2::after {
    width: 48px;
    height: 3px;
    margin-top: 8px;
  }

  /* grids und cards */
  .grid {
    gap: 12px;
  }

  .cards {
   grid-template-columns: repeat(2, 1fr);
    margin-top: 16px;
  }

  .card h3 {
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 4px;
  }

  .card img {
    aspect-ratio: 16 / 10;
  }

  /* flip-karten */
  .cards .service-flip {
    height: 320px;
  }

  .service-flip .flip-front img {
    height: 160px;
  }

 .service-flip .flip-face h3 {
  font-size: 16px;
  line-height: 1.3;
}

.service-flip .flip-face p {
  font-size: 14px;
  line-height: 1.45;
}

.service-flip .flip-back {
  font-size: 14px;
}

.service-flip .flip-back h3 {
  font-size: 16px;
}

.service-flip .flip-back p {
  font-size: 14px;
}

  /* formular */
  .form {
    margin-top: 12px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-field {
    gap: 6px;
    margin-bottom: 10px;
  }

  .form-field input {
    padding-top: 12px;
    padding-bottom: 12px;
    min-height: 44px;
    font-size: 16px;
  }

  .form-field textarea {
    padding-top: 12px;
    padding-bottom: 12px;
    min-height: 140px;
    font-size: 16px;
  }

  .form-field select {
    min-height: 44px;
    font-size: 16px;
    background-position: calc(100% - 22px) 50% , calc(100% - 16px) 50%;
  }

  .checkbox {
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
  }

  .btn {
    width: 100%;
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 16px;
  }

  /* instagram */
  .instagram-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .instagram-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .insta-img {
    height: 220px;
  }

  .insta-caption {
    font-size: 14px;
    max-height: 84px;
  }

  /* kontakt 2 layout (zusätzlich zu deinem 900px-breakpoint) */
  .contact2-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact2-title {
    font-size: 28px;
    line-height: 1.25;
  }

  .contact2-mapwrap {
    aspect-ratio: 4 / 3;
  }

  /* footer */
  /* ==== Mobiler Footer (Farben beibehalten) ==== */
.footer {
  background: var(--ink); /* dein blau */
  color: #ffffff;
  text-align: center;
  padding-top: 32px;
  padding-bottom: 28px;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 0;
}

.footer .brand {
  flex-direction: column;
  align-items: center;
}

.footer .brand-name {
  margin-left: 0;
  margin-top: 6px;
  font-size: 16px;
  color: #ffffff;
}

.footer .muted {
  color: #f1f1f1;
  font-size: 14px;
  max-width: 260px;
  margin: 0 auto;
  line-height: 1.4;
}

.footer .label {
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  font-size: 15px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin: 4px 0;
}

.footer a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
}

.footer a:hover {
  color: #000000; /* kontrast beim hover */
}

.footer .icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  color: #ffffff;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin: 0 6px;
  transition: all 0.2s ease;
}

.footer .icon:hover {
  background: #ffffff;
  color: #60abdd;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.4);
  margin-top: 20px;
  padding-top: 10px;
  font-size: 12px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  line-height: 1.3;
}

.footer-bottom span {
  display: block;
  text-align: center;
}

  /* modale */
  .modal__dialog {
    width: 92vw;
    max-height: 86vh;
    padding-left: 16px;
    padding-right: 16px;
  }

  .modal__close {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .modal__body {
    padding-right: 4px;
  }

  /* whatsapp-fab */
  .whatsapp {
    right: 12px;
    bottom: 12px;
    width: 52px;
    height: 52px;
    font-size: 26px;
  }
}

/* ============================
   VERY SMALL PHONES (≤ 375px)
   feintuning für ganz kleine
   ============================ */
@media (max-width: 375px) {

  .hero-video {
    height: 360px;
  }

  .hero-video h1 {
    font-size: 24px;
  }

  .cards .service-flip {
    height: 300px;
  }

  .insta-img {
    height: 200px;
  }
}
