body {
  margin: 0;
  width: 100vw;
  box-sizing: content-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
}

.Headercontainer {
  width: 100vw;
  height: 80px;
  display: flex;
  align-items: center;
  background-color: #ff6b1a;
  gap: 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.Logo {
  height: 50px;
  margin-left: 100px;
}

.Menu-Container {
  display: flex;
  align-items: center;
  gap: 45px;
  margin: 0 auto;
}

.Menu-item {
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.3rem;
}

.Menu-item:hover {
  color: #333333;
  transform: scale(1.05);
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  padding: 8px 12px;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ff6b1a;
  min-width: 200px;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  font-size: 1.3rem;
}

.dropdown-content a {
  display: block;
  padding: 10px 14px;
  color: white;
  text-decoration: none;
  font-weight: normal;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.dropdown-content a:hover {
  background: #e65a00;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropbtn:hover {
  color: #333333;
  transform: scale(1.05);
}

/* Optional: rechts im Header ausrichten */
.nav-cta { margin-left: auto; /* falls Container Flex ist */ }

/* Transparenter CTA ohne Farbakzent */
.btn-call{
  display:inline-flex; align-items:center; justify-content:center;
  padding:.55rem .95rem; border-radius:12px; text-decoration:none;
  color:#fff;                                 /* Text weiß */
  background:rgba(255,255,255,.16);           /* halbtransparent */
  border:1px solid rgba(255,255,255,.28);
  backdrop-filter:blur(4px);
  transition:background .2s ease, transform .15s ease;
  margin-left: auto;
  white-space: nowrap;                         /* kein Umbruch */
  max-width: 40vw;                             /* ragt nicht aus der Navbar */
  font-size: clamp(.9rem, 1.4vw, 1rem);        /* skaliert leicht mit */
}

.btn-call:hover{ background:rgba(255,255,255,.26); transform:translateY(-1px); }
.btn-call:focus-visible{ outline:2px solid #fff; outline-offset:2px; }

/* Stufenweise kompakter */
@media (max-width: 1024px){
  .btn-call{ padding:.5rem .85rem; }
}
@media (max-width: 768px){
  .btn-call{ padding:.45rem .75rem; font-size:.9rem; max-width: 36vw; }
}

/* Smartphone: Button ausblenden */
@media (max-width: 600px){
  .btn-call{ display:none; }
}

.site-footer{
  background:#1f2937; /* slate-800 */
  color:#e5e7eb;      /* slate-200 */
  padding:48px 16px 20px;
}
.footer-inner{
  max-width:1200px; margin:0 auto;
  display:grid; gap:24px;
  grid-template-columns: repeat(3, minmax(220px,1fr));
  align-items:start;
}
.site-footer a{ color:#e5e7eb; text-decoration:none; }
.site-footer a:hover{ color:#ff6b1a; }

.brand img{ height:40px; display:block; }
.tagline{ margin:10px 0 16px; color:#cbd5e1; }

.socials{ display:flex; gap:10px; }
.soc{
  width:36px; height:36px; display:inline-flex; align-items:center; justify-content:center;
  background:#111827; border:1px solid #374151; border-radius:10px; transition:transform .15s ease, background .2s ease, border-color .2s ease;
}
.soc:hover{ transform:scale(1.08); background:#0b1220; border-color:#ff6b1a; }
.soc svg{ width:18px; height:18px; fill:#e5e7eb; }

.f-col h3{ margin:0 0 10px; font-size:1.05rem; color:#fff; }
.f-links{ list-style:none; margin:0; padding:0; display:grid; gap:8px; }
.f-links a{ color:#cbd5e1; }
.f-links a:hover{ color:#ff6b1a; }

.addr{ font-style:normal; color:#cbd5e1; margin:0 0 6px; }
.contact a{ display:inline-block; margin:0 0 2px; }
.hours{ color:#cbd5e1; margin:8px 0 10px; }

.quick{ display:flex; flex-wrap:wrap; gap:10px; }
.quick a{
  padding:.4rem .7rem; border:1px solid #374151; border-radius:10px;
  background:#111827; font-weight:600; font-size:.95rem;
}
.quick a:hover{ border-color:#ff6b1a; background:#0b1220; }

.footer-bottom{
  max-width:1200px; margin:24px auto 0; padding-top:16px;
  border-top:1px solid #374151; text-align:center; color:#9ca3af;
}

/* Responsiv */
@media (max-width: 900px){
  .footer-inner{ grid-template-columns:1fr 1fr; }
}
@media (max-width: 600px){
  .footer-inner{ grid-template-columns:1fr; text-align:center; }
  .socials, .quick{ justify-content:center; }
}

.bewertung-section {
  position: relative;
  width: 100%;
  height: 60vh; /* Höhe anpassbar */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.bewertung-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Bild füllt Container */
  z-index: 1;
  filter: brightness(40%); 
}

.bewertung-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
}

.bewertung-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #ff6b1a;
  margin-bottom: 12px;
}

.bewertung-content p {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: #fff;
}

.bewertung-text-section {
  padding: 60px 20px;
  background: #f8fafc; /* heller Hintergrund */
  display: flex;
  justify-content: center;
  text-align: center;
}

.bewertung-text-container {
  max-width: 900px;
  text-align: left;
  background: #fff;               /* Card-Hintergrund */
  border-radius: 16px;            /* abgerundete Ecken */
  box-shadow: 0 4px 12px rgba(0,0,0,0.1); /* Grundschatten */
  padding: 32px;
  text-align: center;
  transition: transform 0.3s ease, 
              box-shadow 0.3s ease; /* für Hover-Effekt */
}

.bewertung-text-container:hover {
  transform: translateY(-6px);    /* leicht anheben */
  box-shadow: 0 10px 28px rgba(0,0,0,0.18); /* stärkerer Schatten */
}

.bewertung-text-container h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #ff6b1a; /* Orange Akzent */
  margin-bottom: 20px;
}

.bewertung-text-container p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 18px;
}


.bewertung-fakten {
  position: relative;
  background: url('../img/Klassisches\ rotes\ Auto.png') no-repeat center/cover;
  padding: 80px 20px;
  color: #fff;
}

.bewertung-fakten-2{
  position: relative;
  background: url('../img/Inspektor\ vor\ Ort.png') no-repeat center/cover;
  padding: 80px 20px;
  color: #fff;
}

.bewertung-fakten .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5); /* Verdunkelung für bessere Lesbarkeit */
}

.bewertung-fakten .content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  z-index: 2;
}

.bewertung-fakten h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 40px;
  color: #fff;
}

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

.bewertung-fakten .grid-item {
  background: rgba(255,255,255,0.25);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: transform .3s ease, box-shadow .3s ease;
}

.bewertung-fakten .grid-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

.bewertung-fakten .grid-item img {
  width: 48px;
  margin-bottom: 16px;
}

.bewertung-fakten .grid-item p {
  font-size: 1rem;
  line-height: 1.6;
}


.kfz-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.kfz-cards .card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 24px;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}

.kfz-cards .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.kfz-cards h3 {
  color: #ff6b1a;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.kfz-cards p {
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}

.ServiceBTN {
  border-radius: 25px;
    border: solid 2px white;
    background-color: #ff6b1a;
    padding: 10px;
    color: white;
    font-weight: bold;
    margin: 40px 0 60px 0;
    font-size: 1.5rem;
}

.ServiceBTN:hover {
    background-color: #334155;
}

.Kfz-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ===== Basis ===== */
html, body { overflow-x: hidden; }

/* Dropdown – Desktop/Tablet Standard */
.dropdown         { position: relative; }
.dropbtn          { cursor: pointer; }
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: #ff6b1a;
  box-shadow: 0 2px 6px rgba(0,0,0,.15);
  z-index: 700;
}
.dropdown-content a {
  display: block;
  padding: 10px;
  margin: 0;
  text-decoration: none;
  color: #333;
  border: 0;
  border-radius: 0;
}
.dropdown-content a:hover { background: #f0f0f0; }
.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content { display: block; }

/* ========= ≤ 900px ========= */
@media (max-width: 900px) {
  .Menu-Container {
    margin: 0;
    max-width: 100%;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
  }
  .Menu-item, .dropbtn {
    font-size: 1rem;
    padding: 6px 8px;
    line-height: 1.2;
    white-space: nowrap;
  }
}

/* ========= ≤ 768px ========= */
@media (max-width: 768px) {
  .Headercontainer { height: 64px; gap: 12px; }
  .Logo { height: 40px; margin-left: 0; }

  .Menu-Container {
    flex-wrap: wrap;
    gap: 20px;
    margin: 0 12px;
    justify-content: center;
  }

  .Menu-item, .dropbtn { font-size: 1rem; padding: 6px 10px; }

  .carousel-item { height: 48vh; min-height: 280px; }
  .sliderIMG { max-height: none; }
  .hero-caption { top: auto; transform: none; padding: 16px; }

  .info-container { max-width: 92vw; padding: 20px; margin: 24px auto; text-align: center; }
  .info-container h2 { font-size: 1.6rem; }
  .info-container p  { font-size: 1rem; }
  .info-text-container { padding: 0 6px; }

  .Service-container h2 { margin: 20px; font-size: 2rem; }
  .Service-card { grid-template-columns: 1fr; width: min(720px, 94vw); gap: 16px; margin-bottom: 28px; }
  .Card { padding: 12px; }
  .accordion-heading { font-size: 1rem; }

  .Partner-title { font-size: clamp(1.4rem, 5vw, 2rem); }
  .img-grid { grid-template-columns: 1fr; gap: 16px; padding: 10px; }

  .Ansprechpartner-title { font-size: 2rem; }
  .text-section p { font-size: 1.1rem; }
  .Profile-card { width: 92vw; }
  .Profile-img  { margin: 16px; }

  .bewertung-title { font-size: 2rem; }
  .t-item { min-height: auto; padding: 20px; }

  .KontaktSection { padding: 36px 14px; }
  .kontakt-grid  { grid-template-columns: 1fr; gap: 20px; }
  .form-row      { grid-template-columns: 1fr; gap: 12px; }

  .btn-primary, .btn-icon { width: 100%; }
  .site-footer { padding: 36px 16px 18px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

/* ========= ≤ 600px ========= */
@media (max-width: 600px) {
  body, .Headercontainer { width: 100%; }
  .Headercontainer { height: 56px; padding: 0 10px; justify-content: space-between; gap: 12px; }
  .Logo { height: 32px; }
  .Menu-Container { margin: 0; max-width: 100%; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
  .Menu-item, .dropbtn { font-size: .95rem; padding: 6px; line-height: 1.2; }
}

/* ========= ≤ 560px ========= */
@media (max-width: 560px) {
  .Logo { height: 36px; }
  .Menu-Container { gap: 14px; }

  .SliderBTN, .info-BTN { padding: 8px 10px; font-size: .95rem; }
  .bewertung-title { font-size: 1.6rem; }

  .quick a { padding: .35rem .6rem; font-size: .9rem; }

  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .socials, .quick { justify-content: center; }
}

/* ========= ≤ 480px ========= */
@media (max-width: 480px) {
  .bewertung-title { font-size: 1.5rem; }
  .t-item blockquote { font-size: .95rem; }
}

/* ========= ≤ 400px ========= */
@media (max-width: 400px) {
  .Headercontainer { height: 58px; }
  .Logo { height: 32px; margin-left: 12px; }

  .Menu-item, .dropbtn { font-size: .95rem; }

  .Service-container h2 { font-size: 1.6rem; }
  .bewertung-title     { font-size: 1.4rem; }
  .Partner-title       { font-size: 1.3rem; }

  .info-text h3 { font-size: 1rem; }
  .info-text p  { font-size: .9rem; }
}

/* ===== Testimonials ===== */
.t-slider { max-width: 92vw; margin: 0 auto; }
.t-item   { word-break: break-word; }

@media (max-width: 768px) {
  .Bewertung-container { padding: 40px 12px; }
  .bewertung-title     { font-size: 1.8rem; margin-bottom: 16px; }
  .t-item { min-height: auto; padding: 20px; }
  .t-item blockquote { font-size: 1rem; line-height: 1.55; }
  .t-stars { font-size: 18px; letter-spacing: 1px; }
  .t-dots { gap: 8px; padding: 12px 0 16px; }
}

/* ===== Mobile Dropdown (Checkbox-Toggle, ohne JS) =====
   HTML vor .dropbtn einfügen:
   <input type="checkbox" class="dd-toggle" hidden> */
@media (max-width: 768px) {
  .dropdown { position: relative; }
  .dd-toggle { position: absolute; opacity: 0; pointer-events: none; }

  .dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    min-width: 200px;
    width: max-content;
    background: #ff6b1a;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,.15);
    z-index: 1100;
    overflow: hidden;
  }

  .dd-toggle:checked + .dropbtn + .dropdown-content { display: block; }

  .dropdown-content a {
    display: block;
    padding: 12px 14px;
    text-decoration: none;
    color: #fff !important;
    border-bottom: 1px solid rgba(255,255,255,.2);
  }
  .dropdown-content a:last-child { border-bottom: none; }
  .dropdown-content a:hover { background: rgba(0,0,0,.1); }
}

/* ===== iPhone-Breite: Menüpunkte in einer Zeile ===== */
@media (max-width: 420px) {
  .Headercontainer{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    padding: 0 8px;
    gap: 8px;
  }
  .Logo{ height: 28px; margin: 0; flex: 0 0 auto; }
  .Menu-Container{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1 1 auto;
    gap: 8px;
    flex-wrap: nowrap;
    min-width: 0;
  }
  .Menu-Container > *{ flex: 0 0 auto; }
  .Menu-item, .dropbtn{
    font-size: .9rem;
    padding: 6px 6px;
    line-height: 1;
    white-space: nowrap;
  }
}

@media (max-width: 600px) {
  .ServiceBTN {
    font-size: 0.9rem;       /* kleinere Schrift */
    padding: 10px 18px;      /* weniger Innenabstand */
    width: 70%;              /* schmaler, an Bildschirm angepasst */
    display: block;
    margin: 12px auto;       /* zentriert */
  }
}

@media (max-width: 600px) {
  .kfz-cards {
    grid-template-columns: 1fr;  /* Alle Cards untereinander */
    gap: 16px;                   /* etwas kleinerer Abstand */
    padding: 0 12px;             /* schmaleres Padding */
  }

  .kfz-cards .card {
    padding: 20px;               /* etwas kompakter */
  }

  .kfz-cards h3 {
    font-size: 1.1rem;           /* Titel leicht verkleinern */
  }

  .kfz-cards p {
    font-size: 0.95rem;          /* Text besser für kleine Displays */
    line-height: 1.5;
  }
}

/* Basis: Inhalte linksbündig */
.site-footer,
.footer-inner,
.footer-bottom { text-align: left; }

/* Smartphone & kleine Tablets: NICHT zentrieren */
@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;  /* eine Spalte */
    text-align: left;            /* statt center */
  }
  .socials,
  .quick { justify-content: flex-start; } /* statt center */
  .footer-bottom { text-align: left; }
}

@media (max-width: 560px) {
  .footer-inner { text-align: left; }
  .socials,
  .quick { justify-content: flex-start; }
}
