
/* ================= style erste oben mit menü  ================= */

/* ================= RESET ================= */
*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Inter',sans-serif;
background:#e9e9e9;
overflow-x:hidden;
}

/* ================= HEADER ================= */

header{
position:absolute;
top:0;
left:0;
width:100%;
padding:30px 8%;
display:flex;
justify-content:space-between;
align-items:center;
z-index:1000;
color:white;
}

/* ===== LOGO ===== */

.logo{
display:flex;
align-items:center;
gap:14px;
}

.logo svg{
width:45px;
height:45px;
}

.logo-text{
display:flex;
flex-direction:column;
line-height:1.1;
}

.logo-text .top{
font-weight:800;
font-size:22px;
letter-spacing:1px;
}

.logo-text .bottom{
font-weight:600;
font-size:12px;
letter-spacing:3px;
}

/* ===== NAV ===== */

nav{
display:flex;
align-items:center;
gap:40px;
}

nav a{
color:white;
text-decoration:none;
font-weight:500;
}

/* ===== Dropdown ===== */

.dropdown{
position:relative;
}

.dropdown-menu{
position:absolute;
top:45px;
left:0;
background:white;
padding:20px;
border-radius:15px;
box-shadow:0 20px 40px rgba(0,0,0,0.25);
display:none;
min-width:220px;
animation:fadeIn 0.2s ease;
}

.dropdown-menu a{
display:block;
color:black;
margin-bottom:12px;
}

.dropdown.active .dropdown-menu{
display:block;
}

@keyframes fadeIn{
from{opacity:0; transform:translateY(10px);}
to{opacity:1; transform:translateY(0);}
}

/* ===== NAV BUTTON ===== */

.nav-btn{
background:black;
padding:12px 25px;
border-radius:30px;
}

/* ===== HAMBURGER ===== */

.hamburger{
display:none;
flex-direction:column;
gap:6px;
cursor:pointer;
}

.hamburger span{
width:25px;
height:3px;
background:white;
transition:0.3s;
}

.hamburger.active span:nth-child(1){
transform:rotate(45deg) translateY(8px);
}

.hamburger.active span:nth-child(2){
opacity:0;
}

.hamburger.active span:nth-child(3){
transform:rotate(-45deg) translateY(-8px);
}

/* ===== MOBILE MENU ===== */

.mobile-menu{
position:fixed;
top:0;
right:-100%;
width:75%;
height:100%;
background:#111;
padding:120px 40px;
display:flex;
flex-direction:column;
gap:30px;
transition:0.4s;
z-index:999;
}

.mobile-menu.active{
right:0;
}

.mobile-menu a{
color:white;
font-size:20px;
text-decoration:none;
}

/* ================= HERO ================= */

.hero{
  min-height: 60vh; /* vorher 75vh */
  background: url("../img/nachm.png") center/cover no-repeat;
  background-color:black;

  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  color:white;

  border-bottom-left-radius:60px;
  border-bottom-right-radius:60px;

  position:relative;
  padding:120px 20px 80px 20px; /* oben Platz für Header */
}


.hero::before{
content:"";
position:absolute;
inset:0;
background: rgba(0,0,0,0.25);

border-bottom-left-radius:80px;
border-bottom-right-radius:80px;
}


.hero-content{
position:relative;
max-width:1100px;
padding:0 20px;
}

.badge{
display:inline-block;
padding:8px 20px;
background:rgba(255,255,255,0.2);
border-radius:30px;
margin-bottom:30px;
font-size:14px;
}

.hero h1{
  font-size: clamp(36px,5vw,70px); /* vorher zu riesig */
  margin-bottom:20px;
}

.hero p{
  margin-bottom:30px;
  font-size:16px;
}


/* ===== CTA BUTTON ===== */

.cta{
display:inline-flex;
align-items:center;
gap:12px;
background:black;
color:white;
padding:18px 55px;
border-radius:50px;
font-size:18px;
font-weight:600;
letter-spacing:1px;
text-transform:uppercase;
transition:all 0.3s ease;
border:2px solid black;
}

.cta:hover{
background:white;
color:black;
transform:scale(1.05);
font-weight:700;
}

.cta:active{
transform:scale(0.98);
}

/* ================= FEATURES CARD ================= */

.features{
position:relative;
z-index:5;
width:85%;
margin:-100px auto 120px;
background:white;
padding:60px;
border-radius:30px;
box-shadow:0 30px 60px rgba(0,0,0,0.15);
display:flex;
justify-content:space-between;
gap:50px;
}

.feature{
text-align:center;
flex:1;
}

.feature-icon{
width:90px;
height:90px;
background:black;
border-radius:50%;
margin:0 auto 20px;
display:flex;
align-items:center;
justify-content:center;
color:white;
font-size:28px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

nav{
display:none;
}

.hamburger{
display:flex;
}

.features{
flex-direction:column;
}

.hero h1{
font-size:42px;
}

}
/* ================= style erste oben mit menü  ================= */

/* ================= ABOUT SECTION ================= */

.about-section{
display:flex;
justify-content:center;
align-items:center;
gap:120px;
padding:120px 8%;
background:#e9e9e9;
}

.about-left{
flex:1;
display:flex;
justify-content:center;
}

.image-wrapper{
position:relative;
width:500px;
}

.img-large{
width:100%;
border-radius:30px;
display:block;
}

.img-small{
position:absolute;
bottom:-40px;
right:-40px;
width:220px;
border-radius:25px;
box-shadow:0 20px 40px rgba(0,0,0,0.25);
}

/* ===== RIGHT SIDE ===== */

.about-right{
flex:1;
max-width:650px;
}

.subtitle{
color:#1f5f4b;
font-weight:700;
letter-spacing:1px;
}

.about-right h2{
font-size:36px;
font-weight:800;
margin:20px 0;
line-height:1.2;
}

.about-right p{
margin-bottom:20px;
font-size:17px;
line-height:1.6;
color:#333;
}

.about-buttons{
margin-top:30px;
display:flex;
gap:20px;
flex-wrap:wrap;
}

/* BUTTONS */

.btn-black{
background:black;
color:white;
padding:14px 30px;
border-radius:40px;
text-decoration:none;
transition:0.3s;
}

.btn-black:hover{
background:white;
color:black;
border:2px solid black;
}

.btn-outline{
border:2px solid black;
padding:14px 30px;
border-radius:40px;
text-decoration:none;
color:black;
transition:0.3s;
}

.btn-outline:hover{
background:black;
color:white;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

.about-section{
flex-direction:column;
gap:80px;
}

.image-wrapper{
width:100%;
max-width:500px;
}

.img-small{
right:0;
bottom:-30px;
width:180px;
}

}
/* ================= bis hier about sektion ================= */


/* ================= SERVICE SECTION ================= */

.service-section{
display:flex;
gap:120px;
padding:120px 8%;
align-items:center;
background:#f4f4f4;
}

.service-left{
flex:1;
max-width:650px;
}

.service-subtitle{
color:#1f5f4b;
font-weight:700;
letter-spacing:1px;
}

.service-left h2{
font-size:38px;
font-weight:800;
margin:20px 0;
line-height:1.2;
}

.service-left p{
margin-bottom:20px;
font-size:17px;
line-height:1.6;
color:#333;
}

/* ===== CHECK LIST ===== */

.service-list{
margin:30px 0;
}

.check-item{
margin-bottom:12px;
font-weight:500;
}

/* ===== BUTTONS ===== */

.service-buttons{
margin-top:20px;
display:flex;
gap:20px;
flex-wrap:wrap;
}

/* ===== RIGHT SIDE IMAGE ===== */

.service-right{
flex:1;
display:flex;
justify-content:center;
}

.image-box{
position:relative;
width:500px;
}

.service-img{
width:100%;
border-radius:30px;
display:block;
}

/* ===== PHONE BOX ===== */

.phone-box{
position:absolute;
bottom:40px;
left:-40px;
background:black;
color:white;
padding:25px 30px;
border-radius:20px;
font-size:18px;
box-shadow:0 20px 40px rgba(0,0,0,0.3);
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

.service-section{
flex-direction:column;
gap:80px;
}

.image-box{
width:100%;
max-width:500px;
}

.phone-box{
left:20px;
bottom:20px;
}

}
/* ================= bis hier her SERVICE SECTION ================= */
/* ================= CAR KEY SECTION ================= */

.car-key-section{
display:flex;
gap:120px;
padding:120px 8%;
align-items:center;
background:#ffffff;
}

.car-left{
flex:1;
display:flex;
justify-content:center;
}

.car-image-box{
position:relative;
width:500px;
}

.car-img{
width:100%;
border-radius:30px;
display:block;
}

/* ===== Badge ===== */

.car-badge{
position:absolute;
bottom:40px;
right:40px;
background:black;
color:white;
padding:25px 30px;
border-radius:20px;
font-size:20px;
font-weight:600;
box-shadow:0 20px 40px rgba(0,0,0,0.3);
}

/* ===== Right Side ===== */

.car-right{
flex:1;
max-width:650px;
}

.car-subtitle{
color:#1f5f4b;
font-weight:700;
letter-spacing:1px;
}

.car-right h2{
font-size:38px;
font-weight:800;
margin:20px 0;
line-height:1.2;
}

.car-right p{
margin-bottom:20px;
font-size:17px;
line-height:1.6;
color:#333;
}

.car-right h3{
margin:30px 0 15px;
font-weight:700;
}

/* ===== Check List ===== */

.car-list{
margin-bottom:20px;
}

.car-check{
position:relative;
padding-left:35px;
margin-bottom:12px;
}

.car-check::before{
content:"✔";
position:absolute;
left:0;
top:0;
width:22px;
height:22px;
background:black;
color:white;
font-size:14px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

.car-key-section{
flex-direction:column;
gap:80px;
}

.car-image-box{
width:100%;
max-width:500px;
}

.car-badge{
right:20px;
bottom:20px;
}

}

/* ================= CAR KEY SECTION ende ================= */
/* ================= SECURITY SECTION ================= */

.security-section{
padding:120px 8%;
background:#f3f3f3;
}

.security-container{
display:flex;
align-items:center;
gap:120px;
background:#f9f9f9;
padding:80px;
border-radius:40px;
}

/* ===== LEFT IMAGE ===== */

.security-left{
flex:1;
}

.security-img{
width:100%;
border-radius:30px 120px 30px 30px; /* oben rechts stark rund */
display:block;
}

/* ===== RIGHT TEXT ===== */

.security-right{
flex:1;
max-width:650px;
}

.security-right h2{
font-size:38px;
font-weight:800;
margin-bottom:20px;
line-height:1.2;
}

.security-right p{
margin-bottom:20px;
font-size:17px;
line-height:1.6;
color:#333;
}

.security-buttons{
margin-top:30px;
display:flex;
gap:20px;
flex-wrap:wrap;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

.security-container{
flex-direction:column;
gap:60px;
padding:50px;
}

.security-img{
border-radius:30px;
}

}
/* ================= security section ende ================= */
/* ================= PRICE SECTION ================= */

.price-section{
padding:120px 8%;
background:#f3f3f3;
}

.price-container{
display:flex;
align-items:center;
gap:120px;
background:#f9f9f9;
padding:80px;
border-radius:40px;
}

/* ===== LEFT IMAGE ===== */

.price-left{
flex:1;
}

.price-img{
width:100%;
border-radius:30px 120px 30px 30px; /* oben rechts stark rund */
display:block;
}

/* ===== RIGHT TEXT ===== */

.price-right{
flex:1;
max-width:650px;
}

.price-right h2{
font-size:38px;
font-weight:800;
margin-bottom:20px;
line-height:1.2;
}

.price-right p{
margin-bottom:20px;
font-size:17px;
line-height:1.6;
color:#333;
}

.price-buttons{
margin-top:30px;
display:flex;
gap:20px;
flex-wrap:wrap;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

.price-container{
flex-direction:column;
gap:60px;
padding:50px;
}

.price-img{
border-radius:30px;
}

}
/* ================= price section ende ================= */
/* ================= LOCAL SECTION ================= */

.local-section{
display:flex;
gap:160px;
padding:140px 8%;
background:#ffffff;
align-items:flex-start;
}

.local-left{
flex:1;
max-width:500px;
}

.local-subtitle{
color:#1f5f4b;
font-weight:700;
letter-spacing:1px;
}

.local-left h2{
font-size:42px;
font-weight:800;
margin-top:20px;
line-height:1.2;
}

.local-right{
flex:1;
max-width:650px;
}

.local-right p{
margin-bottom:25px;
font-size:18px;
line-height:1.7;
color:#333;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

.local-section{
flex-direction:column;
gap:60px;
padding:100px 8%;
}

.local-left h2{
font-size:32px;
}

}
/* ================= local section ende ================= */

/* ================= SINGLE IMAGE SECTION ================= */

.single-gallery-section{
    padding:120px 8%;
    background:#e9e9e9;
}

.single-gallery-wrapper{
    max-width:1400px;
    margin:0 auto;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 25px 60px rgba(0,0,0,0.15);
}

.single-gallery-wrapper img{
    width:100%;
    height:auto;           /* wichtig → Bild bleibt komplett sichtbar */
    display:block;
    object-fit:contain;    /* zeigt immer das ganze Bild */
    transition:0.5s ease;
}

/* Optional leichter Hover Effekt */
.single-gallery-wrapper:hover img{
    transform:scale(1.02);
}

/* Responsive */
@media(max-width:992px){

.single-gallery-section{
    padding:80px 5%;
}

.single-gallery-wrapper{
    border-radius:20px;
}

}
/* sinle image  css ende ---------------- */
/* ================= CONTACT SECTION ================= */

.contact-section{
    padding:140px 8%;
    background:#e9e9e9;
    text-align:center;
}

.contact-header{
    max-width:800px;
    margin:0 auto 80px;
}

.contact-header h2{
    font-size:42px;
    margin-bottom:20px;
    font-weight:700;
}

.contact-header p{
    font-size:18px;
    color:#555;
    line-height:1.6;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:40px;
    max-width:1300px;
    margin:0 auto;
}

.contact-card{
    background:#f2f2f2;
    padding:50px 30px;
    border-radius:30px;
    transition:0.3s ease;
}

.contact-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,0.1);
}

.contact-icon{
    width:80px;
    height:80px;
    background:black;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 25px;
    font-size:28px;
    color:white;
}

.contact-card h3{
    font-size:20px;
    margin-bottom:10px;
}

.contact-card p{
    color:#444;
}

/* ================= RESPONSIVE ================= */

@media(max-width:1200px){
    .contact-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .contact-grid{
        grid-template-columns:1fr;
    }

    .contact-header h2{
        font-size:32px;
    }
}

/* ================= ende contact  ================= */
/* ================= FOOTER ================= */

.footer{
    background:#000;
    color:white;
    padding:120px 8% 40px;
}

.footer-wrapper{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.5fr;
    gap:60px;
    max-width:1400px;
    margin:0 auto 60px;
}

.footer-col h4{
    margin-bottom:25px;
    font-size:18px;
}

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

.footer-col ul li{
    margin-bottom:15px;
    color:#bbb;
    cursor:pointer;
    transition:0.3s;
}

.footer-col ul li:hover{
    color:white;
}


.footer-brand p{
    margin-top:20px;
    color:#bbb;
    line-height:1.6;
}

.footer-logo{
    font-size:22px;
    font-weight:700;
    display:flex;
    align-items:center;
    gap:10px;
}

.footer-contact-item{
    display:flex;
    align-items:flex-start;
    gap:15px;
    margin-bottom:25px;
}

.footer-contact-item strong{
    display:block;
    margin-bottom:5px;
}

.footer-contact-item p{
    margin:0;
    color:#bbb;
}

.footer-bottom{
    border-top:1px solid #222;
    padding-top:25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    color:#aaa;
    max-width:1400px;
    margin:0 auto;
}

/* ================= RESPONSIVE ================= */

@media(max-width:1200px){
    .footer-wrapper{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:768px){

    .footer-wrapper{
        grid-template-columns:1fr;
    }

    .footer-bottom{
        flex-direction:column;
        gap:15px;
        text-align:center;
    }

}

/* ===== Dropdown Desktop ===== */
/* ================= DROPDOWN ================= */

.dropdown{
    position:relative;
}

/* ===== Desktop Dropdown ===== */

.dropdown-menu{
    position:absolute;
    top:45px;
    left:0;
    background:white;
    padding:20px;
    border-radius:15px;
    box-shadow:0 20px 40px rgba(0,0,0,0.25);
    display:none;
    min-width:220px;
    animation:fadeIn 0.2s ease-in-out;
}

.dropdown-menu a{
    display:block;
    color:black;
    margin-bottom:12px;
    text-decoration:none;
}

/* Öffnet nur per JS (active Klasse) */
.dropdown.active .dropdown-menu{
    display:block;
}

/* ===== MOBILE ===== */

@media(max-width:992px){

    nav{
        display:none;
    }

    .mobile-menu .dropdown{
        width:100%;
    }

    .mobile-menu .dropdown-menu{
        position:relative;
        top:0;
        background:#222;
        box-shadow:none;
        border-radius:0;
        padding:10px 0;
        display:none;
    }

    .mobile-menu .dropdown-menu a{
        color:white;
        padding:10px 0;
        display:block;
    }

    .mobile-menu .dropdown.active .dropdown-menu{
        display:block;
    }

}

/* ===== Animation ===== */

@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(10px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* ===== Dropdown Desktop ende===== */





/* ---------- Modal ---------- */
/* ========================= */
/* ===== MODAL STYLE ======= */
/* ========================= */

/* ========================= */
/* ===== MODAL SYSTEM ====== */
/* ========================= */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
  z-index: 9999;
  backdrop-filter: blur(6px);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px 28px 22px;
  max-width: 540px;
  width: 95%;
  box-shadow: 0 25px 70px rgba(0,0,0,0.25);
  transform: translateY(20px) scale(.95);
  transition: transform .25s ease;
}

.modal-overlay.active .modal-box {
  transform: translateY(0) scale(1);
}

/* Header */
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  margin: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.4rem;
}

.modal-close {
  cursor: pointer;
  font-size: 20px;
  color: #777;
  transition: .2s ease;
}

.modal-close:hover {
  color: var(--accent);
}

/* Subtitle */
.modal-subtitle {
  margin: 14px 0 20px;
  color: #666;
  font-size: 0.95rem;
}

/* Grid */
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}

/* Service Items */
.service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #f4f6f9;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  cursor: pointer;
  transition: all .25s ease;
  font-weight: 500;
  text-align: left;
}

.service-item img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.service-item:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(193,18,31,0.25);
}

.service-item.active-service {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

/* Close Button */
.modal-close-btn {
  width: 100%;
  background: #555;
  color: white;
  border: none;
  padding: 12px 0;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 500;
  transition: .2s ease;
}

.modal-close-btn:hover {
  background: #333;
}

/* Mobile */
@media (max-width: 500px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .modal-box {
    padding: 22px;
  }
}


.contact-modal-box form {
  display: grid;
  gap: 14px;
}

.contact-modal-box input,
.contact-modal-box textarea {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
}


.global-success {
  position: fixed;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  background: #e8f8ee;
  color: #1e7d3c;
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  z-index: 9999;
  animation: fadeInSuccess .3s ease;
}

@keyframes fadeInSuccess {
  from { opacity: 0; transform: translate(-50%, -10px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}



/* =========================  modal ende */

/* ===============================
   HERO MOBILE MINI FIX
================================= */
@media (max-width: 768px) {

  /* Hero bleibt wie bei dir */
  .hero {
      padding-top: 120px;
      min-height: auto;
      padding-bottom: 40px;   /* weniger Platz unten */
      overflow: visible;
  }

  /* CTA sauber wie Desktop */
  .cta {
      display: inline-block;
      width: auto;            /* NICHT 90% */
      max-width: none;
      margin: 14px 0 0 0;     /* wenig Abstand */
      padding: 12px 24px;
      font-size: 0.9rem;
      border-radius: 999px;
      white-space: nowrap;    /* verhindert Umbruch */
  }

}
@media (max-width: 768px) {

  .hero {
      padding-top: 120px;
      padding-bottom: 60px; /* genug Platz */
      overflow: visible;
  }

  .hero-content {
      position: relative;
      z-index: 5;
  }

  .cta {
      display: inline-block;
      margin-top: 16px;
      padding: 12px 24px;
      font-size: 0.9rem;
      border-radius: 999px;
      position: relative;
      z-index: 10;
  }

  /* WICHTIG: nächste Section darf NICHT hochziehen */
  .feature,
  .features {
      margin-top: 40px;
  }

}

/* CTA kleiner auf Mobile  - jetzt anrufen button - fürs handy endeeeeeeee */

/* =============================
   CAR KEY SECTION (2 Cards) - 2 bilder da und text da runter 
============================= */

.car-key-section {
  padding: 5rem 0;
  background: var(--bg-dark);
}

.car-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.car-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}

.car-card-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.car-card-content {
  padding: 2rem;
}

.car-card-content h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.car-card-content p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.car-card .btn-black {
  margin-top: 1.2rem;
  display: inline-block;
}

/* =============================
   MOBILE OPTIMIERT
============================= */

@media (max-width: 900px) {

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

  .car-card-img {
    height: 220px;
  }

  .car-card-content {
    padding: 1.6rem;
  }

}
/* =============================
   CAR KEY SECTION (2 Cards) - 2 bilder da und text da runter  endeeeee
============================= */
/* =============================
   hero mobile bild 
============================= */
@media (max-width: 768px){

  .hero{
    min-height: 50vh;
    padding:100px 20px 60px 20px;
    border-bottom-left-radius:40px;
    border-bottom-right-radius:40px;
  }

  .hero h1{
    font-size: 34px;
  }

  .cta{
    padding:14px 28px;
    font-size:14px;
  }

}
/* =============================
   hero mobile bild  ende
============================= */


/* Überschrift "Unsere Leistungen im Überblick" */
.overview-title{
  margin-top: 18px;
  font-size: 20px;
  font-weight: 800;
}

/* Grid optisch wie im Screenshot (Linie unten) */
.overview-grid{
  margin-top: 14px;
}

.overview-grid div{
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 14px;
  line-height: 1.45;
}

/* letzter Text (Stadtteile) */
.service-area-note{
  margin-top: 18px;
  color: #555;
}

/* Mobile Feinschliff */
@media (max-width: 992px){
  .overview-title{
    font-size: 18px;
  }
}




.weekend-section{
  padding: 80px 0;
}

.weekend-container{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}

.weekend-left h2{
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 25px;
}

.weekend-left p{
  margin-bottom: 18px;
  line-height: 1.6;
  color: #444;
}

.weekend-left h3{
  margin-top: 25px;
  margin-bottom: 18px;
  font-weight: 800;
}

.weekend-list{
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
}

.weekend-list div{
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.weekend-btn{
  margin-top: 10px;
}

/* Bild */
.weekend-right{
  text-align: right;
}

.weekend-img{
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* ======================
   MOBILE OPTIMIERUNG
====================== */

@media (max-width: 992px){

  .weekend-container{
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .weekend-right{
    text-align: center;
  }

  .weekend-left h2{
    font-size: 26px;
  }

  .weekend-section{
    padding: 60px 20px;
  }

}


/* ================= TRUST SECTION ================= */

.trust-section{
  padding: 80px 0;
}

.trust-container{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.trust-card{
  background: #f7f7f7;
  border-radius: 28px;
  overflow: hidden;
  padding-bottom: 35px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.trust-img{
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
}

.trust-content{
  padding: 35px;
}

.trust-content h3{
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
}

.trust-content p{
  margin-bottom: 15px;
  line-height: 1.6;
  color: #444;
}

.trust-btn{
  margin-top: 15px;
}

/* ================= MOBILE ================= */

@media (max-width: 992px){

  .trust-container{
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .trust-img{
    height: 250px;
  }

  .trust-content{
    padding: 25px;
  }

  .trust-content h3{
    font-size: 22px;
  }

}


/* ================= FOOTER DESIGN ================= */

.footer {
    background: #0f0f0f;
    color: #e5e5e5;
    padding: 80px 5% 40px;
    font-family: 'Inter', sans-serif;
}

.footer-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 60px;
}

/* Logo */
.footer-logo {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.footer-brand p {
    color: #bdbdbd;
    line-height: 1.6;
    font-size: 14px;
}

/* Headings */
.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

/* Entfernt blau */
.footer a {
    color: #cfcfcf;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

/* Hover Effekt */
.footer a:hover {
    color: #e63946;   /* dein Rot */
    padding-left: 6px;
}

/* Kontaktbereich */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 14px;
}

.footer-contact-item strong {
    color: #ffffff;
}

/* Bottom Bar */
.footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    font-size: 13px;
    color: #888;
}

/* Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 60px 20px 30px;
    }

    .footer-wrapper {
        gap: 40px;
    }
}


/* ================= COOKIE BANNER ================= */

.cookie-banner {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1100px;
    z-index: 9999;
    animation: cookieSlideUp 0.5s ease;
}

/* Glass Container */
.cookie-inner {
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

/* Text */
.cookie-text {
    font-size: 14px;
    line-height: 1.6;
    color: #d5d5d5;
    max-width: 700px;
}

/* Link im Text */
.cookie-text a {
    color: #e63946;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.cookie-text a:hover {
    opacity: 0.8;
}

/* Buttons Wrapper */
.cookie-actions {
    display: flex;
    gap: 15px;
}

/* Buttons allgemein */
.cookie-actions .btn {
    padding: 12px 22px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: 0.3s ease;
}

/* Accept Button (Rot Premium) */
#acceptCookies {
    background: linear-gradient(135deg, #e63946, #c1121f);
    color: white;
}

#acceptCookies:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(230,57,70,0.4);
}

/* Decline Button (Outline) */
.btn-secondary {
    background: transparent;
    color: #cfcfcf;
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.05);
}

/* Animation */
@keyframes cookieSlideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .cookie-inner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
        flex-direction: column;
    }

    .cookie-actions .btn {
        width: 100%;
    }
}
