/* Farbpalette aus dem Logo */
:root {
  --brand-blue:     #047AC4;
  --brand-red:      #DB3736;
  --brand-light:    #EAF3FB;
  --brand-dark:     #035699;
  --text-dark:      #333333;
  --text-light:     #FFFFFF;
  --bg-page:        #FFFFFF;
}

/* Reset & Basis */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  height: 100%;
}
body {
  font-family: 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-page);
}

/* Wrapper für Sticky Footer */
.all {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main {
  flex: 1;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Blauer Streifen am Seitenanfang */
.brand-stripe {
  height: 4px;
  background: var(--brand-blue);
  width: 100%;
}

/* Obere Infobar */
.top-bar {
  background: var(--brand-light);
  color: var(--text-dark);
  text-align: center;
}
.top-bar .container {
  padding: 0.3rem 0;
}
.top-bar a {
  color: var(--brand-blue);
  text-decoration: underline;
}

/* Header / Navigation */
.site-header {
  background: var(--brand-light);
  border-bottom: 1px solid var(--brand-dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  animation: fadeInDown 0.6s ease-out;
  /* Kein margin-top nötig, da .all den Flow übernimmt */
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(1rem + 1px) 0;
}
.logo img {
  max-height: 50px;
}

/* Hauptnavigation */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  transition: transform 0.3s ease;
}
.main-nav a {
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  position: relative;
  color: var(--brand-blue);
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-red);
  transition: width 0.3s ease;
}
.main-nav a:hover::after,
.main-nav .active a::after {
  width: 100%;
}

/* Hamburger-Icon */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: relative;
  margin-right: 1rem;
}
.hamburger,
.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background: var(--text-dark);
  transition: 0.3s ease;
}
.hamburger {
  top: 50%;
  transform: translateY(-50%);
}
.hamburger::before {
  top: -8px;
}
.hamburger::after {
  top: 8px;
}
.mobile-menu-toggle.active .hamburger {
  background: transparent;
}
.mobile-menu-toggle.active .hamburger::before {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-toggle.active .hamburger::after {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .main-nav ul {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--brand-light);
    flex-direction: column;
    transform: scaleY(0);
    transform-origin: top;
  }
  .main-nav ul.open {
    transform: scaleY(1);
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ========== Hero ========== */
.hero {
  position: relative;
  background: url('/src/img/index/ba.jpg') center/cover no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
}
.hero-content {
  position: relative;
  color: #fff;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* ========== Buttons ========== */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background .3s, transform .1s;
}
.btn-primary {
  background: var(--brand-blue);
  color: #fff;
}
.btn-secondary {
  background: var(--brand-red);
  color: #fff;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}

/* ========== Über uns ========== */
.about {
  padding: 3rem 0;
  text-align: center;
}
.about h2 {
  color: var(--brand-blue);
  font-size: 2rem;
  margin-bottom: 1rem;
}
.about p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-dark);
}

/* ========== Unsere Leistungen ========== */
.services {
  padding: 4rem 0;
}
.services h2 {
  text-align: center;
  color: var(--brand-blue);
  margin-bottom: 2rem;
}
.services-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.service-card {
  background: #fff;
  padding: 2rem 1.5rem;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform .3s, box-shadow .3s;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.service-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
}

/* ========== Galerie-Vorschau ========== */
.gallery-preview {
  padding: 4rem 0;
  text-align: center;
}
.gallery-preview h2 {
  color: var(--brand-blue);
  font-size: 2rem;
  margin-bottom: 2rem;
  position: relative;
}
.gallery-preview h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--brand-red);
  margin: 0.5rem auto 0;
}
.gallery-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-bottom: 2rem;
}
.gallery-item {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.9);
  transition: filter 0.3s ease;
}
.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.gallery-item:hover img {
  filter: brightness(1);
}
.gallery-cta {
  text-align: center;
}
.gallery-cta .btn-secondary {
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
}

/* ========== Kontakt-CTA ========== */
.cta-contact {
  background: var(--brand-light);  /* zuvor var(--brand-dark) */
  color: var(--brand-dark);
  padding: 4rem 0;
  text-align: center;
}
.cta-contact h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.cta-contact p {
  margin-bottom: 2rem;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .about {
    padding: 2rem 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================
   Fuhrpark-Seite
   ========================= */
.fleet {
  padding: 4rem 0;
}
.fleet h1 {
  text-align: center;
  color: var(--brand-blue);
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
.fleet-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
}

/* Einzelne Fahrzeug-Karte */
.fleet-item {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform .3s, box-shadow .3s;
}
.fleet-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.fleet-item h2 {
  font-size: 1.25rem;
  color: var(--brand-dark);
  margin-bottom: 1rem;
  text-align: center;
}

/* Fahrzeugbilder */
.fleet-item img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 1rem;
}
.no-image {
  width: 100%;
  height: 180px;
  background: var(--brand-light);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  margin-bottom: 1rem;
  font-style: italic;
}

/* Spezifikationsliste */
.specs-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  width: 100%;
}
.specs-list li {
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
.specs-list strong {
  color: var(--brand-blue);
}

/* Traglastdiagramm */
.loadchart img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin-top: auto; /* schiebt das Diagramm ans Ende */
}
.no-chart {
  width: 100%;
  padding: 1rem;
  background: #f2f2f2;
  border-radius: 4px;
  text-align: center;
  color: #777;
  font-style: italic;
  margin-top: auto;
}

/* Responsive Anpassungen */
@media (max-width: 600px) {
  .fleet-grid {
    grid-template-columns: 1fr;
  }
  .fleet-item {
    padding: 1rem;
  }
}
  


/* ========== Services Hero ========== */
.services-hero {
  position: relative;
  background: url('/src/img/leistungen/lb.jpg') center/cover no-repeat;
  height: 50vh;
  display: flex;
  align-items: center;
}
.services-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
}
.services-hero-content {
  position: relative;
  color: #fff;
  text-align: center;
  width: 100%;
}
.services-hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.services-hero-content p {
  font-size: 1.1rem;
}

/* ========== Service Cards ========== */
.service-cards {
  display: grid;
  gap: 2rem;
  padding: 3rem 0;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
}
.service-card {
  background: #fff;
  border-radius: 8px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform .3s, box-shadow .3s;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.service-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
}
.service-card h2 {
  color: var(--brand-blue);
  margin-bottom: 0.5rem;
}
.service-card p {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ========== Service Details ========== */
.service-details {
  padding: 3rem 0;
}
.service-detail {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.service-detail .detail-image,
.service-detail .detail-content {
  flex: 1 1 300px;
}
.service-detail.detail-right {
  flex-direction: row-reverse;
}
.detail-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.detail-content h3 {
  font-size: 1.75rem;
  color: var(--brand-dark);
  margin-bottom: 1rem;
}
.detail-content p {
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.detail-content ul {
  list-style: disc inside;
  font-size: 0.95rem;
  line-height: 1.5;
}
.detail-content ul li {
  margin-bottom: 0.5rem;
}

/* ========== Abschluss-CTA ========== */
.service-cta {
  background: var(--brand-light);
  color: var(--brand-dark);
  padding: 4rem 0;
  text-align: center;
}
.service-cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.service-cta p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}
.service-cta .btn-primary {
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
  .service-detail {
    flex-direction: column;
    text-align: center;
  }
  .service-detail.detail-right {
    flex-direction: column;
  }
  .service-detail .detail-image,
  .service-detail .detail-content {
    width: 100%;
  }
}



.cookie-tool-hero {
  text-align: center;
  padding: 4rem 0;
  background: linear-gradient(135deg, #0f1a40 0%, #000 100%);
}

.cookie-tool-hero h1 {
  font-size: 2.5rem;
  color: var(--lb);
  margin-bottom: 1rem;
}

.cookie-tool-hero hr {
  width: 50%;
  margin: 1rem auto;
  border: none;
  height: 2px;
  background: var(--b);
}

.cookie-tool-hero p {
  font-size: 1.2rem;
  color: #ccc;
  margin-top: 1rem;
}


.cookie-tool-container {
  padding: 2rem 0;
  text-align: left;
}

.cookie-tool-container h2,
.cookie-tool-container h3 {
  color: var(--lb);
  margin-bottom: 1rem;
}

.cookie-tool-container p {
  color: #ccc;
  margin-bottom: 2rem;
}

.cookie-section {
  margin-bottom: 2rem;
}

.cookie-option {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.cookie-option input[type="checkbox"] {
  width: auto;
  height: auto;
  margin-top: 0.3rem;
  cursor: pointer;
}

.cookie-option label {
  font-size: 1rem;
  color: var(--white);
  line-height: 1.5;
}

.cookie-option a {
  color: var(--lb);
  text-decoration: underline;
  font-size: 0.9rem;
}

.cookie-option a:hover {
  color: var(--b);
}

.cookie-submit {
  margin-top: 2rem;
}

.cookie-submit .glow {
  background: var(--lb);
  color: #000;
  font-weight: 701;
  font-size: 1rem;
  padding: 0.7rem 1.2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.cookie-submit .glow:hover {
  background: var(--b);
  color: #fff;
  transform: translateY(-2px);
}

.cookie-submit .glow:active {
  transform: translateY(0);
}

.cookie-tool {
  background: #abc6ff80;
  color: #000;
  padding: 2rem;
  font-size: 1rem;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.7);
}

.cookie-tool .container {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-tool h2,
.cookie-tool h3 {
  color: var(--lb);
  margin-bottom: 1rem;
}

.cookie-tool p {
  color: #ccc;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.cookie-tool a {
  color: var(--lb);
  text-decoration: underline;
  font-size: 0.95rem;
}

.cookie-tool a:hover {
  color: var(--b);
}

.cookie-tool .col-6 {
  padding: 0;
}

.cookie-tool .col-2,
.cookie-tool .col-4,
.cookie-tool .col-6 {
  box-sizing: border-box;
}


.cookie-tool .col-4 {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}


.cookie-tool .col-4 .col-2 {
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
}


.cookie-tool button {
  background: var(--lb);
  color: #000;
  font-weight: 701;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
  font-size: 0.9rem;
}

.cookie-tool button:hover {
  background: var(--b);
  color: #fff;
  transform: translateY(-2px);
}

.cookie-tool button:active {
  transform: translateY(0);
}


@media (max-width: 600px) {
  .cookie-tool .col-4 {
    flex-direction: column;
    gap: 0.5rem;
  }

  .cookie-tool button {
    width: 33%;
    text-align: center;
  }
}


/* Galerie – Grid, Hover & Modal */
.gallery-page {
  padding: 3rem 0;
}
.gallery-container h1 {
  text-align: center;
  color: var(--brand-blue);
  margin-bottom: 2rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(calc(200px * 1.3), 1fr));
  gap: 1rem;
}
.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: brightness(0.95);
}
.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}
.modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}
.modal-content img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
}



/* =========================
   Impressum-Seite
   ========================= */
.impressum-container {
  background: var(--bg-page);
  padding: 3rem 0;
}

.impressum-content {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  background: var(--brand-light);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.impressum-content h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--brand-blue);
  text-align: center;
}

.impressum-content h2 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--brand-dark);
  border-bottom: 2px solid var(--brand-red);
  padding-bottom: 0.3rem;
}

.impressum-content address,
.impressum-content p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
}

.impressum-content address {
  font-style: normal;
}

.impressum-content a {
  color: var(--brand-blue);
  text-decoration: underline;
}

.impressum-content a:hover {
  color: var(--brand-dark);
}

/* Responsive */
@media (max-width: 768px) {
  .impressum-content {
    padding: 1.5rem;
  }
  .impressum-content h1 {
    font-size: 1.75rem;
  }
}


/* =========================
   Datenschutz-Seite
   ========================= */
.datenschutz-container {
  background: var(--bg-page);
  padding: 3rem 0;
}

.datenschutz-content {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  background: var(--brand-light);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.datenschutz-content h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--brand-blue);
  text-align: center;
}

.datenschutz-content h2 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--brand-dark);
  border-bottom: 2px solid var(--brand-red);
  padding-bottom: 0.3rem;
}

.datenschutz-content h3 {
  font-size: 1.1rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  color: var(--brand-dark);
}

.datenschutz-content h4 {
  font-size: 1rem;
  margin-top: 0.8rem;
  margin-bottom: 0.3rem;
  color: var(--brand-dark);
}

.datenschutz-content p,
.datenschutz-content ul,
.datenschutz-content address {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
}

.datenschutz-content address {
  font-style: normal;
}

.datenschutz-content a {
  color: var(--brand-blue);
  text-decoration: underline;
}

.datenschutz-content a:hover {
  color: var(--brand-dark);
}

/* Responsive */
@media (max-width: 768px) {
  .datenschutz-content {
    padding: 1.5rem;
  }
  .datenschutz-content h1 {
    font-size: 1.75rem;
  }
}

/* ======================================================
   Kontaktformular – Vollständiges Styling inkl. Mobile
   ====================================================== */

/* 1) Page-Wrapper */
.kunden-nachricht-page {
  background: var(--bg-page);
  padding: 3rem 0;
  overflow-x: hidden; /* verhindert horizontales Scrollen */
}

/* 2) Card-Container */
.kunden-nachricht-page .container {
  background: #e3f2fd;
  padding: 2rem 1rem;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
  max-width: 900px;
  width: 90%;
  margin: 0 auto;
  box-sizing: border-box;
}

/* 3) Intro/Header */
.kunden-nachricht-page .intro-container {
  text-align: center;
  margin-bottom: 1.5rem;
}
.kunden-nachricht-page .intro-container h1 {
  font-size: 2rem;
  color: var(--brand-blue);
  margin-bottom: 0.5rem;
}
.kunden-nachricht-page .intro-container p {
  font-size: 1rem;
  color: var(--text-dark);
}

/* 4) Erfolg- / Fehlernachrichten */
.success-message,
.error-message {
  max-width: 900px;
  margin: 1rem auto;
  padding: 1rem 1.25rem;
  border-radius: 6px;
  font-size: 0.95rem;
  line-height: 1.4;
  box-sizing: border-box;
}
.success-message {
  background: #e6f4ff;
  border-left: 4px solid var(--brand-blue);
  color: var(--text-dark);
}
.error-message {
  background: #ffecea;
  border-left: 4px solid var(--brand-red);
  color: var(--text-dark);
}

/* 5) Formular-Grid – Default: einspaltig */
form#kontakt-formular {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
  min-width: 0; /* ermöglicht korrektes Schrumpfen */
}
form#kontakt-formular .form-group {
  min-width: 0; /* verhindert, dass Grid-Items breiter als ihr Container werden */
}

/* Desktop (ab 768px): zwei Spalten */
@media (min-width: 768px) {
  form#kontakt-formular {
    grid-template-columns: repeat(2, 1fr);
  }
  /* Nachricht (Textarea) und Button über volle Breite */
  form#kontakt-formular .full-width,
  form#kontakt-formular .btn-row {
    grid-column: span 2;
  }
  /* Checkbox-Gruppen (7. und 8. .form-group) über volle Breite */
  form#kontakt-formular .form-group:nth-of-type(7),
  form#kontakt-formular .form-group:nth-of-type(8) {
    grid-column: span 2;
  }
}

/* Mobile (bis 767px): einspaltig und korrekt umbrechen */
@media (max-width: 767px) {
  form#kontakt-formular {
    grid-template-columns: 1fr !important;
  }
  form#kontakt-formular .full-width,
  form#kontakt-formular .btn-row {
    grid-column: span 1 !important;
  }
}

/* 6) Entfernen alter <br>-Tags */
form#kontakt-formular br {
  display: none;
}

/* 7) Form-Groups als Flex-Column */
.kunden-nachricht-page .form-group {
  display: flex;
  flex-direction: column;
}

/* 8) Labels */
.kunden-nachricht-page label {
  margin-bottom: 0.4rem;
  font-weight: 500;
  color: var(--text-dark);
}

/* 9) Inputs & Textarea mit rotem Rahmen */
.kunden-nachricht-page input[type="text"],
.kunden-nachricht-page input[type="email"],
.kunden-nachricht-page textarea {
  width: 100%;
  background: #fff;
  border: 1px solid var(--brand-red);
  border-radius: 6px;
  padding: 0.7rem 1rem;
  font-size: 1rem;
  transition: border-color .3s, box-shadow .3s;
  box-sizing: border-box;
}
.kunden-nachricht-page input:focus,
.kunden-nachricht-page textarea:focus {
  border-color: var(--brand-red);
  box-shadow: 0 0 0 3px rgba(219,55,54,0.2);
  outline: none;
}
.kunden-nachricht-page textarea {
  resize: vertical;
  min-height: 150px;
}

/* 10) Checkbox-Labels als Grid (Icon + Text) */
.kunden-nachricht-page .checkbox-label {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.5rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-dark);
  box-sizing: border-box;
}
.kunden-nachricht-page .checkbox-label a {
  color: var(--brand-blue);
  text-decoration: underline;
}
.kunden-nachricht-page .checkbox-label a:hover {
  color: var(--brand-dark);
}

/* 11) Checkbox-Inputs größer & farbiger Akzent */
.kunden-nachricht-page input[type="checkbox"] {
  transform: scale(1.2);
  margin-top: 0.15rem;
  accent-color: var(--brand-blue);
}

/* 12) Button-Row zentriert */
.kunden-nachricht-page .btn-row {
  text-align: center;
  margin-top: 1rem;
}

/* 13) Senden-Button auffällig */
.kunden-nachricht-page .glow {
  background: var(--brand-blue);
  color: var(--text-light);
  padding: 0.75rem 2rem;
  font-size: 1.05rem;
  border-radius: 6px;
  border: none;
  box-shadow: 0 4px 12px rgba(4,122,196,0.3);
  cursor: pointer;
  transition: box-shadow .3s, transform .1s;
}
.kunden-nachricht-page .glow:hover {
  box-shadow: 0 6px 20px rgba(4,122,196,0.5);
}
.kunden-nachricht-page .glow:active {
  transform: scale(0.97);
}



/* Footer */
.site-footer {
  background: var(--brand-dark);  /* dunklerer Ton */
  color: var(--text-light);
  padding: 3rem 0;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}
.footer-column {
  flex: 1 1 200px;
}
.footer-column h2 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  color: var(--text-light);
}
.footer-column a,
.footer-column p {
  color: var(--text-light);
  text-decoration: none;
}
.footer-column a:hover {
  text-decoration: underline;
}

/* Animation */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Utility */
.hidden {
  display: none !important;
}
