@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Inter', Arial, sans-serif;
  line-height:1.6;
  color:#1f2937;
  background:#ffffff;
}

.container{
  width:90%;
  max-width:1200px;
  margin:0 auto;
}

/* HEADER */

.header{
  background:#ffffff;
  box-shadow:0 2px 10px rgba(0,0,0,0.06);
  position:sticky;
  top:0;
  z-index:1000;
}

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  padding:14px 0;
}

.logo{
  display:flex;
  align-items:center;
  text-decoration:none;
}

.logo-text{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}

.logo-am{
  font-size:18px;
  font-weight:700;
  color:#1f2d3d;
}

.logo-name{
  font-size:18px;
  font-weight:700;
  color:#1f2d3d;
}

.logo-sub{
  font-size:13px;
  color:#4b5563;
}

.nav{
  display:flex;
  align-items:center;
  margin-left:auto;
}

.nav > ul{
  display:flex;
  align-items:center;
  gap:30px;
  list-style:none;
  margin:0;
  padding:14px 22px;
  background:#eaf6fd;
  border-radius:16px;
}

.nav > ul > li{
  position:relative;
}

.nav > ul > li > a{
  text-decoration:none;
  color:#1f2d3d;
  font-size:16px;
  font-weight:600;
  display:flex;
  align-items:center;
  gap:6px;
  white-space:nowrap;
  padding:8px 0;
}

.nav > ul > li > a:hover,
.nav > ul > li > a.active{
  color:#2f7f7c;
}

.dropdown > a::after{
  content:"▼";
  font-size:10px;
  margin-top:2px;
}

.dropdown-menu{
  display:none;
  position:absolute;
  top:100%;
  left:0;
  min-width:220px;
  background:#ffffff;
  border-radius:10px;
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
  padding:8px 0;
  z-index:9999;
}

.dropdown-menu li{
  list-style:none;
}

.dropdown-menu li a{
  display:block;
  padding:10px 16px;
  text-decoration:none;
  color:#1f2d3d;
  font-size:15px;
}

.dropdown-menu li a:hover{
  background:#f3f8fc;
  color:#2f7f7c;
}

.dropdown:hover .dropdown-menu{
  display:block;
}

.call-btn{
  background:#2fb6c4;
  color:#ffffff !important;
  padding:14px 26px;
  border-radius:14px;
  font-weight:700;
  font-size:16px;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-width:160px;
  height:54px;
  line-height:1;
  transition:background 0.3s ease;
}

.call-btn:hover{
  background:#25a8b7;
}

/* HERO */

.hero{
  padding:60px 0;
}

.hero-grid{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:50px;
}

.hero-image{
  flex:1;
  max-width:48%;
}

.hero-image img{
  width:100%;
  height:460px;
  object-fit:cover;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,0.12);
  display:block;
}

.hero-text{
  flex:1;
  max-width:48%;
}

.small-title{
  margin-bottom:14px;
  font-size:18px;
  color:#4b5563;
  font-weight:600;
}

.hero-text h1{
  font-size:48px;
  line-height:1.2;
  margin-bottom:22px;
  color:#1f2937;
}

.hero-text p{
  font-size:18px;
  margin-bottom:20px;
  color:#4b5563;
}

/* BUTTONS */

.btn{
  display:inline-block;
  background:#2fb6c4;
  color:#ffffff;
  padding:12px 22px;
  border-radius:8px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.btn:hover{
  opacity:0.92;
}

.btn.primary{
  background:#2fb6c4;
  color:#ffffff;
}

.btn.secondary{
  background:#6ec1e4;
  color:#ffffff;
}

/* SECTION TITLE */

.section-title{
  text-align:center;
  margin-bottom:30px;
}

.section-title h1,
.section-title h2{
  font-size:32px;
  margin-bottom:10px;
  color:#1f2937;
}

.section-title p{
  font-size:16px;
  color:#6b7280;
}

/* FEATURES */

.features{
  padding:80px 0;
}

.features h2{
  text-align:center;
  font-size:34px;
  margin-bottom:40px;
  color:#0f172a;
}

.features-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.feature-box{
  background:#ffffff;
  padding:28px;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,0.10);
  text-align:center;
}

.feature-box h3{
  margin-bottom:12px;
  font-size:22px;
  color:#2f7f7c;
}

.feature-box p{
  font-size:15px;
  color:#666666;
  line-height:1.7;
}

/* SERVICES */

.services{
  padding:80px 0;
  text-align:center;
}

.services h2{
  font-size:34px;
  margin-bottom:40px;
  color:#0f172a;
}

.services h2::after{
  content:"";
  display:block;
  width:70px;
  height:4px;
  background:#2fb6c4;
  margin:14px auto 0;
  border-radius:2px;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.service-card{
  display:block;
  background:#ffffff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.10);
  transition:transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration:none;
  color:#1f2937;
}

.service-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

.service-card img{
  width:100%;
  height:200px;
  object-fit:cover;
  display:block;
}

.service-card h3{
  margin:15px 0 10px;
  font-size:22px;
  color:#0f172a;
}

.service-card p{
  padding:0 20px 20px;
  font-size:14px;
  color:#666666;
}

/* CONTACT PAGE */

.contact-page{
  padding:70px 0;
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  align-items:start;
}

.contact-info,
.contact-form{
  background:#ffffff;
  padding:30px;
  border-radius:18px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.contact-info h2,
.contact-form h2{
  margin-bottom:16px;
  color:#1f2937;
}

.contact-info p{
  margin-bottom:10px;
  color:#4b5563;
}

.contact-info .btn{
  display:inline-block;
  margin-top:12px;
  margin-right:10px;
}

.contact-form label{
  display:block;
  margin-top:12px;
  margin-bottom:6px;
  font-weight:600;
  color:#1f2937;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:12px 14px;
  border:1px solid #d1d5db;
  border-radius:10px;
  font-size:15px;
}

.contact-form textarea{
  min-height:140px;
  resize:vertical;
}

.contact-form button{
  margin-top:18px;
  background:#2fb6c4;
  color:#ffffff;
  border:none;
  padding:12px 20px;
  border-radius:10px;
  font-weight:600;
  cursor:pointer;
}

.contact-form button:hover{
  background:#25a8b7;
}

/* FOOTER */

.footer{
  background:linear-gradient(180deg,#0f172a 0%,#111d34 100%);
  color:white;
  padding:56px 0 28px;
  margin-top:56px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.1fr 1.5fr .9fr;
  gap:34px;
  align-items:start;
}

.footer h3,
.footer h4{
  margin-bottom:14px;
}

.footer h4{
  font-size:18px;
}

.footer p{
  color:#d7e2f0;
  margin-bottom:10px;
}

.footer a{
  color:#d7e2f0;
  text-decoration:none;
  transition:color .25s ease, transform .25s ease;
}

.footer a:hover{
  color:#ffffff;
}

.footer-box ul{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-link-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px 28px;
}

.footer-link-grid li{
  margin:0;
}

.footer-link-grid a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:4px 0;
}

.footer-link-grid a::before{
  content:"›";
  color:#6ec1e4;
  font-weight:700;
}

.footer-contact p{
  display:flex;
  align-items:center;
  gap:8px;
}

.footer-bottom{
  margin-top:32px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,0.12);
  text-align:center;
}

.footer-bottom p{
  color:#cbd5e1;
  margin:0;
  font-size:14px;
}

/* RESPONSIVE */

@media(max-width:900px){

  .navbar{
    flex-direction:column;
    align-items:flex-start;
  }

  .nav > ul{
    flex-wrap:wrap;
    gap:14px;
    padding:12px 16px;
  }

  .hero-grid{
    flex-direction:column;
  }

  .hero-image,
  .hero-text{
    max-width:100%;
  }

  .hero-image img{
    height:auto;
  }

  .services-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .features-grid{
    grid-template-columns:1fr;
  }

  .contact-grid{
    grid-template-columns:1fr;
  }

  .footer-grid{
    grid-template-columns:1fr;
  }

  .footer-link-grid{
    grid-template-columns:1fr;
    gap:6px;
  }
}

@media(max-width:600px){

  .services-grid{
    grid-template-columns:1fr;
  }

  .features-grid{
    grid-template-columns:1fr;
  }

  .hero-text h1{
    font-size:32px;
  }

  .hero-text p{
    font-size:16px;
  }

  .small-title{
    font-size:18px;
  }
  
     .stage{
      width:min(1200px,95vw);
      display:flex;
      align-items:center;
      justify-content:center;
      padding:20px;
    }

    svg{
      width:min(1000px,92vw);
      height:auto;
      overflow:visible;
      filter:
        drop-shadow(0 0 10px rgba(0,170,255,.18))
        drop-shadow(0 0 34px rgba(0,120,255,.10));
    }

    .logo-group{
      animation:intro 1.1s ease forwards;
      transform:translateY(18px) scale(.96);
      opacity:0;
      transform-origin:center;
    }

    .glow-oval{
      animation:glowPulse 3s ease-in-out infinite;
      transform-origin:center;
    }

    .stars .star{
      animation:twinkle 2s ease-in-out infinite;
      transform-origin:center;
    }
    .stars .star:nth-child(2){animation-delay:.5s}
    .stars .star:nth-child(3){animation-delay:1s}

    .leaf{
      animation:leafFloat 3.2s ease-in-out infinite;
      transform-origin:center;
    }
    .leaf.l2{animation-delay:.45s}

    .swish1{animation:linePulse 2.8s ease-in-out infinite}
    .swish2{animation:linePulse 2.8s ease-in-out infinite .35s}

    .shine{
      animation:shineSweep 5s ease-in-out infinite 1.4s;
    }

    /* دوران المكنسة حول مركز الشعار */
    .orbit-system{
      transform-origin:600px 270px;
      animation:orbit 8s linear infinite;
    }

    .broom{
      filter:drop-shadow(0 0 8px rgba(255,210,120,.35));
    }

    .reinigung{
      letter-spacing:7px;
      animation:fadeIn 1.3s ease forwards .9s;
      opacity:0;
    }

    .am{
      animation:fadeIn 1.1s ease forwards .6s;
      opacity:0;
    }

    @keyframes intro{
      to{
        opacity:1;
        transform:translateY(0) scale(1);
      }
    }

    @keyframes fadeIn{
      to{opacity:1}
    }

    @keyframes glowPulse{
      0%,100%{opacity:.45;transform:scale(1)}
      50%{opacity:.9;transform:scale(1.05)}
    }

    @keyframes twinkle{
      0%,100%{opacity:.35;transform:scale(.8)}
      50%{opacity:1;transform:scale(1.15)}
    }

    @keyframes leafFloat{
      0%,100%{transform:translateY(0) rotate(0deg)}
      50%{transform:translateY(-3px) rotate(-4deg)}
    }

    @keyframes linePulse{
      0%,100%{opacity:.85;transform:scaleX(1)}
      50%{opacity:1;transform:scaleX(1.03)}
    }

    @keyframes shineSweep{
      0%{transform:translateX(-420px) skewX(-18deg);opacity:0}
      10%{opacity:.9}
      28%{transform:translateX(420px) skewX(-18deg);opacity:.9}
      29%,100%{opacity:0}
    }

    @keyframes orbit{
      from{transform:rotate(0deg)}
      to{transform:rotate(360deg)}
    }

    @media (max-width:768px){
      svg{width:96vw}
    }
}
.logo{
display:flex;
align-items:center;
text-decoration:none;
line-height:1;
}

.logo-svg{
display:block;
width:280px;
max-width:100%;
height:auto;
overflow:visible;
}

.logo-group{
animation:logoIntro 1s ease forwards;
transform:translateY(10px) scale(.97);
opacity:0;
transform-origin:center;
}

.glow-oval{
animation:glowPulse 3s ease-in-out infinite;
transform-origin:center;
}

.stars .star{
animation:twinkle 2s ease-in-out infinite;
transform-origin:center;
}

.stars .star:nth-child(2){
animation-delay:.5s;
}

.stars .star:nth-child(3){
animation-delay:1s;
}

.leaf{
animation:leafFloat 3.2s ease-in-out infinite;
transform-origin:center;
}

.leaf.l2{
animation-delay:.45s;
}

.swish1{
animation:linePulse 2.8s ease-in-out infinite;
}

.swish2{
animation:linePulse 2.8s ease-in-out infinite .35s;
}

.shine{
animation:shineSweep 5s ease-in-out infinite 1.4s;
}

.reinigung{
letter-spacing:7px;
animation:fadeIn 1.3s ease forwards .9s;
opacity:0;
}

.am{
animation:fadeIn 1.1s ease forwards .6s;
opacity:0;
}

@keyframes logoIntro{
to{
opacity:1;
transform:translateY(0) scale(1);
}
}

@keyframes fadeIn{
to{
opacity:1;
}
}

@keyframes glowPulse{
0%,100%{
opacity:.45;
transform:scale(1);
}
50%{
opacity:.9;
transform:scale(1.05);
}
}

@keyframes twinkle{
0%,100%{
opacity:.35;
transform:scale(.8);
}
50%{
opacity:1;
transform:scale(1.15);
}
}

@keyframes leafFloat{
0%,100%{
transform:translateY(0) rotate(0deg);
}
50%{
transform:translateY(-3px) rotate(-4deg);
}
}

@keyframes linePulse{
0%,100%{
opacity:.85;
transform:scaleX(1);
}
50%{
opacity:1;
transform:scaleX(1.03);
}
}

@keyframes shineSweep{
0%{
transform:translateX(-420px) skewX(-18deg);
opacity:0;
}
10%{
opacity:.9;
}
28%{
transform:translateX(420px) skewX(-18deg);
opacity:.9;
}
29%,100%{
opacity:0;
}
}

/* ===== Added content sections ===== */
.hero-actions{display:flex;gap:14px;flex-wrap:wrap}.page-hero{padding-bottom:30px}.content-section{padding:40px 0 20px}.content-section-light{background:#f8fbfe}.content-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:30px}.content-card{background:#ffffff;padding:30px;border-radius:20px;box-shadow:0 10px 30px rgba(0,0,0,0.08)}.content-card h2{font-size:28px;color:#0f172a;margin-bottom:18px}.check-list{list-style:none;padding:0;margin:0}.check-list li{position:relative;padding-left:28px;margin-bottom:14px;color:#4b5563}.check-list li::before{content:"✔";position:absolute;left:0;top:0;color:#2fb6c4;font-weight:700}.cta-section{padding:50px 0 20px}.cta-box{background:linear-gradient(135deg,#0f172a 0%, #15314f 100%);color:#ffffff;border-radius:24px;padding:34px;display:flex;justify-content:space-between;gap:24px;align-items:center;box-shadow:0 16px 40px rgba(15,23,42,0.20)}.cta-box h2{font-size:34px;line-height:1.2;margin-bottom:12px}.cta-box p{color:#dbe7f5;margin:0}.cta-eyebrow{color:#89e7f0 !important;font-size:15px;font-weight:700;text-transform:uppercase;letter-spacing:1px;margin-bottom:10px !important}.cta-actions{display:flex;gap:14px;flex-wrap:wrap}.dropdown-menu a.active{background:#f3f8fc;color:#2f7f7c;font-weight:700}.footer{margin-top:30px}@media(max-width:900px){.content-grid{grid-template-columns:1fr}.cta-box{flex-direction:column;align-items:flex-start}}@media(max-width:600px){.cta-box{padding:24px}.cta-box h2{font-size:28px}}
/* HOME PAGE ENHANCEMENTS */
.hero-home{
  padding:58px 0 42px;
}

.hero-grid-home{
  gap:40px;
}

.hero-text-home p strong,
.section-heading p strong,
.seo-text-grid p strong{
  color:#1f2937;
}

.hero-image-home img{
  height:520px;
}

.stats-strip{
  padding:14px 0 44px;
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.stat-box{
  position:relative;
  min-height:220px;
  overflow:hidden;
  border-radius:26px;
  padding:28px 24px 26px;
  color:#ffffff;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  box-shadow:0 16px 38px rgba(15,23,42,.10);
  transition:transform .35s ease, box-shadow .35s ease, filter .35s ease;
}

.stat-box::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg, rgba(255,255,255,.14), rgba(255,255,255,.03));
  pointer-events:none;
}

.stat-box::after{
  content:"";
  position:absolute;
  width:130px;
  height:130px;
  right:-28px;
  top:-30px;
  border-radius:50%;
  background:rgba(255,255,255,.12);
  pointer-events:none;
}

.stat-box:hover{
  transform:translateY(-10px) scale(1.01);
  box-shadow:0 24px 48px rgba(15,23,42,.16);
  filter:saturate(1.05);
}

.stat-number{
  position:absolute;
  top:22px;
  left:24px;
  font-size:42px;
  line-height:1;
  font-weight:300;
  letter-spacing:.03em;
  color:rgba(255,255,255,.78);
}

.stat-box strong{
  position:relative;
  display:block;
  font-size:27px;
  line-height:1.15;
  margin-bottom:12px;
  color:#ffffff;
}

.stat-text{
  position:relative;
  display:block;
  color:rgba(255,255,255,.92);
  font-size:16px;
  line-height:1.7;
  max-width:24ch;
}

.stat-box-professionell{
  background:linear-gradient(135deg,#1b57b1 0%, #123f92 100%);
}

.stat-box-zuverlaessig{
  background:linear-gradient(135deg,#49a4ff 0%, #2f7fbf 100%);
}

.stat-box-hygienisch{
  background:linear-gradient(135deg,#213b8f 0%, #1f4e79 100%);
}

.stat-box-lokal{
  background:linear-gradient(135deg,#79c7ff 0%, #52a9ee 100%);
  color:#123a5a;
}

.stat-box-lokal .stat-number,
.stat-box-lokal strong,
.stat-box-lokal .stat-text{
  color:#103a60;
}

.stat-box-lokal .stat-text{
  color:rgba(16,58,96,.88);
}

.section-heading{
  max-width:900px;
  margin-bottom:28px;
}

.section-heading.center{
  margin-left:auto;
  margin-right:auto;
  text-align:center;
}

.section-kicker{
  font-size:15px;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:#2f7f7c;
  margin-bottom:10px;
}

.section-heading h2,
.info-card h2,
.why-us-section h2,
.extra-services-section h2,
.seo-text-section h2{
  font-size:36px;
  line-height:1.2;
  margin-bottom:16px;
  color:#1f2937;
}

.section-heading p,
.info-card p,
.why-us-section p,
.extra-service-box p,
.seo-text-grid p{
  color:#526071;
  font-size:17px;
}

.services-home{
  padding:42px 0 20px;
}

.service-highlight-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}

.service-highlight-card{
  background:#fff;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  border:1px solid #edf2f7;
}

.service-highlight-card img{
  width:100%;
  height:270px;
  object-fit:cover;
  display:block;
}

.service-highlight-content{
  padding:22px;
}

.service-highlight-content h3,
.benefit-box h3,
.extra-service-box h3{
  font-size:22px;
  color:#1f2937;
  margin-bottom:10px;
}

.problem-solution-section,
.why-us-section,
.extra-services-section,
.seo-text-section{
  padding:58px 0;
}

.problem-solution-grid,
.why-us-grid,
.seo-text-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
}

.info-card{
  border-radius:22px;
  padding:30px;
}

.info-card.negative{
  background:#fff8f8;
  border:1px solid #f2dede;
}

.info-card.positive{
  background:#f5fbf8;
  border:1px solid #d7ede1;
}

.problem-list li::marker{
  color:#d34b4b;
}

.check-list{
  padding-left:20px;
}

.check-list li{
  margin-bottom:10px;
  color:#344256;
}

.benefit-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
  margin-top:22px;
}

.benefit-box,
.extra-service-box{
  background:#fff;
  border:1px solid #e7eef5;
  border-radius:18px;
  padding:20px;
  box-shadow:0 6px 18px rgba(0,0,0,0.04);
}

.extra-service-card{
  padding:0;
  overflow:hidden;
}

.extra-service-card img{
  width:100%;
  height:240px;
  object-fit:cover;
  display:block;
}

.extra-service-content{
  padding:22px;
}

.side-image-stack{
  display:grid;
  gap:18px;
}

.side-image-stack img{
  width:100%;
  height:280px;
  object-fit:cover;
  border-radius:22px;
  box-shadow:0 10px 28px rgba(0,0,0,0.08);
}

.extra-services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:28px;
}

.seo-text-section{
  background:#f8fbfd;
}

.cta-section-strong{
  padding-top:58px;
}

@media (max-width: 992px){
  .hero-grid-home,
  .problem-solution-grid,
  .why-us-grid,
  .seo-text-grid,
  .service-highlight-grid,
  .extra-services-grid,
  .stats-grid{
    grid-template-columns:1fr;
  }

  .benefit-grid{
    grid-template-columns:1fr;
  }

  .hero-image,
  .hero-text{
    max-width:100%;
  }

  .hero-grid{
    flex-direction:column-reverse;
  }
}


/* PROFESSIONAL BACKGROUND + EXTRA SERVICES */
body{
  background:
    radial-gradient(circle at top left, rgba(111, 192, 228, 0.18), transparent 32%),
    radial-gradient(circle at top right, rgba(47, 182, 196, 0.12), transparent 26%),
    linear-gradient(180deg, #f4f8fc 0%, #eef4f9 48%, #f5f8fb 100%);
}

.hero-home,
.problem-solution-section,
.seo-text-section{
  background:transparent;
}

.services-home,
.why-us-section,
.extra-services-section,
.cta-section-strong,
.content-section,
.detail-info-section,
.gallery-section{
  background:transparent;
}

.stats-strip,
.services-home .container,
.problem-solution-section .container,
.why-us-section .container,
.extra-services-section .container,
.seo-text-section .container,
.cta-box,
.content-card,
.detail-panel{
  background:rgba(255,255,255,0.78);
  backdrop-filter: blur(8px);
}

.stats-strip,
.services-home .container,
.problem-solution-section .container,
.why-us-section .container,
.extra-services-section .container,
.seo-text-section .container{
  border:1px solid rgba(220,231,241,0.9);
  border-radius:28px;
  box-shadow:0 18px 50px rgba(30, 64, 97, 0.08);
  padding:30px;
}

.extra-service-link{
  display:block;
  text-decoration:none;
  color:inherit;
  transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.extra-service-card{
  position:relative;
}

.extra-service-card img{
  transition:transform .55s ease, filter .35s ease;
}

.extra-service-link:hover{
  transform:translateY(-8px);
  box-shadow:0 24px 46px rgba(15, 23, 42, 0.16);
  border-color:#cfe6f8;
}

.extra-service-link:hover img{
  transform:scale(1.08);
  filter:saturate(1.05);
}

.extra-service-content{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.service-more{
  display:inline-flex;
  align-items:center;
  gap:8px;
  width:max-content;
  margin-top:4px;
  padding:10px 16px;
  border-radius:999px;
  background:linear-gradient(135deg, #1f4e79, #2f7fbf);
  color:#fff;
  font-size:14px;
  font-weight:700;
  letter-spacing:.01em;
}

.service-more::after{
  content:'→';
  font-size:16px;
}

/* DETAIL PAGES */

.detail-info-section{
  padding:10px 0 58px;
}

.detail-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:28px;
}

.detail-panel{
  padding:30px;
  border:1px solid rgba(220,231,241,0.9);
  border-radius:24px;
  box-shadow:0 18px 40px rgba(15, 23, 42, 0.08);
}

.detail-panel h2{
  font-size:30px;
  margin-bottom:14px;
  color:#163047;
}

.detail-panel p,
.detail-panel li{
  color:#526071;
  font-size:17px;
}

.detail-panel ul{
  padding-left:20px;
}

.detail-panel li{
  margin-bottom:10px;
}

.detail-badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:20px;
}

.detail-badge{
  padding:9px 14px;
  border-radius:999px;
  background:#e9f5fd;
  color:#1f4e79;
  font-weight:700;
  font-size:14px;
}

.gallery-section{
  padding:0 0 58px;
}

.gallery-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:18px;
}

.gallery-grid img{
  width:100%;
  height:100%;
  min-height:220px;
  object-fit:cover;
  border-radius:22px;
  box-shadow:0 14px 34px rgba(15,23,42,.11);
  display:block;
}

.gallery-grid img:first-child{
  min-height:460px;
}

@media (max-width: 992px){
  .detail-grid,
  .gallery-grid{
    grid-template-columns:1fr;
  }

  .gallery-grid img:first-child{
    min-height:320px;
  }

  .stats-strip,
  .services-home .container,
  .problem-solution-section .container,
  .why-us-section .container,
  .extra-services-section .container,
  .seo-text-section .container{
    padding:22px;
  }
}


/* NAV WITHOUT EXTRAS */
.nav > ul{
  gap:26px;
}

/* PROFESSIONAL HOME CARDS */
.service-highlight-card,
.extra-service-link{
  transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.service-highlight-card{
  position:relative;
}

.service-highlight-card img{
  transition:transform .55s ease, filter .35s ease;
}

.service-highlight-card:hover{
  transform:translateY(-8px);
  box-shadow:0 24px 46px rgba(15, 23, 42, 0.14);
  border-color:#cfe6f8;
}

.service-highlight-card:hover img{
  transform:scale(1.06);
  filter:saturate(1.04);
}

.extra-services-section .section-heading{
  max-width:980px;
}

.extra-services-section .section-heading p:last-child{
  max-width:840px;
  margin:0 auto;
}

.extra-service-card{
  min-height:100%;
}

.extra-service-content h3{
  margin-bottom:6px;
}

.extra-service-content p{
  min-height:108px;
}

@media (max-width: 992px){
  .extra-service-content p{
    min-height:auto;
  }
}


.service-highlight-grid-six{
  grid-template-columns:repeat(3,1fr);
}

.service-highlight-link{
  display:block;
  text-decoration:none;
  color:inherit;
}

.service-highlight-link .service-more{
  display:inline-flex;
  margin-top:8px;
  font-weight:700;
  color:#1f4e79;
}

@media (max-width: 992px){
  .service-highlight-grid-six{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width: 640px){
  .service-highlight-grid-six{
    grid-template-columns:1fr;
  }
}


/* === Clean corporate color refresh 2026 === */
:root{
  --bg-white:#FFFFFF;
  --bg-light:#F5F7FA;
  --bg-light-2:#F7F7F7;
  --primary:#1F4E79;
  --secondary:#2F7FBF;
  --hover:#163A5A;
  --text:#333333;
  --muted:#666666;
  --footer:#E9EEF3;
  --card-border:#dbe5ef;
  --soft-shadow:0 10px 28px rgba(31,78,121,0.08);
  --hover-shadow:0 18px 36px rgba(31,78,121,0.16);
}

html{scroll-behavior:smooth;}
body{
  background:var(--bg-white);
  color:var(--text);
}

.header{
  background:#ffffff;
  box-shadow:0 2px 14px rgba(31,78,121,0.08);
}

.nav > ul{
  background:var(--bg-light);
  border:1px solid rgba(31,78,121,0.08);
}

.nav > ul > li > a,
.logo-am,
.logo-name,
.hero-text h1,
h1,h2,h3,h4,
.section-heading h2,
.content-card h2,
.footer h3,
.footer h4{
  color:var(--primary);
}

.logo-sub,
.small-title,
.hero-text p,
p, li, span{
  color:var(--text);
}

.nav > ul > li > a:hover,
.nav > ul > li > a.active,
.dropdown-menu li a:hover,
.footer a:hover,
a:hover{
  color:var(--secondary);
}

.dropdown-menu{
  border:1px solid rgba(31,78,121,0.10);
  box-shadow:0 12px 28px rgba(31,78,121,0.10);
}

.dropdown-menu li a:hover,
.dropdown-menu a.active{
  background:var(--bg-light);
  color:var(--secondary);
}

.call-btn,
.btn,
.btn.primary,
button,
input[type="submit"],
.contact-form button{
  background:var(--secondary);
  color:#ffffff !important;
  border-radius:10px;
  box-shadow:0 8px 20px rgba(47,127,191,0.18);
}

.call-btn:hover,
.btn:hover,
.btn.primary:hover,
button:hover,
input[type="submit"]:hover,
.contact-form button:hover{
  background:var(--hover);
}

.btn.secondary{
  background:#ffffff;
  color:var(--primary) !important;
  border:1px solid rgba(31,78,121,0.16);
  box-shadow:0 8px 20px rgba(31,78,121,0.08);
}

.btn.secondary:hover{
  background:var(--bg-light);
  color:var(--secondary) !important;
}

.hero,
.page-hero,
.content-section,
.cta-section{
  background:var(--bg-white);
}

.services,
.extra-services-section,
.content-section-light,
.contact-section,
.stats-strip{
  background:var(--bg-light);
}

.section-kicker,
.service-more,
.cta-eyebrow{
  color:var(--secondary) !important;
}

.stat-box,
.service-highlight-card,
.extra-service-card,
.content-card,
.contact-card,
.info-card,
.form-card,
.about-card{
  background:#ffffff;
  border:1px solid var(--card-border);
  box-shadow:var(--soft-shadow);
}

.stat-box::before{
  background:linear-gradient(90deg,var(--secondary),var(--primary));
}

.stat-box strong{
  color:var(--primary);
}

.stat-box span,
.service-highlight-content p,
.extra-service-content p,
.content-card p,
.footer p,
.footer-contact p,
.check-list li{
  color:var(--muted);
}

.stat-box:hover,
.service-highlight-card:hover,
.extra-service-card:hover,
.content-card:hover{
  transform:translateY(-10px);
  box-shadow:var(--hover-shadow);
}

.service-highlight-card img,
.extra-service-card img{
  transition:transform .45s ease;
}

.service-highlight-card:hover img,
.extra-service-card:hover img{
  transform:scale(1.08);
}

.content-section-light,
.contact-section{
  background:var(--bg-light);
}

.check-list li::before{
  color:var(--secondary);
}

.cta-box{
  background:linear-gradient(135deg,#1F4E79 0%, #2F7FBF 100%);
}

.cta-box p{color:#eef5fb;}

.footer{
  background:var(--footer);
  border-top:1px solid rgba(31,78,121,0.08);
}

.footer-link-grid a{
  background:rgba(255,255,255,0.65);
  border:1px solid rgba(31,78,121,0.08);
}

.footer-link-grid a::before{
  color:var(--secondary);
}

.footer-bottom{
  border-top:1px solid rgba(31,78,121,0.10);
}

.contact-form input,
.contact-form textarea,
form input,
form textarea{
  border:1px solid rgba(31,78,121,0.16);
  background:#ffffff;
}

.contact-form input:focus,
.contact-form textarea:focus,
form input:focus,
form textarea:focus{
  outline:none;
  border-color:var(--secondary);
  box-shadow:0 0 0 4px rgba(47,127,191,0.12);
}

@media (max-width: 900px){
  .nav > ul{background:#ffffff; border:none;}
}


/* Final polish */
.service-more{
  background:linear-gradient(135deg,#2F7FBF 0%, #1F4E79 100%) !important;
  color:#FFFFFF !important;
  border:0;
  box-shadow:0 8px 18px rgba(31,78,121,0.18);
}
.service-more::after{color:#FFFFFF;}
.service-highlight-link .service-more,
.extra-service-link .service-more{color:#FFFFFF !important;}

.footer{
  background:#E9EEF3 !important;
  color:#333333;
  padding:42px 0 18px;
  margin-top:56px;
}
.footer-clean{
  display:grid;
  grid-template-columns:1.4fr .9fr;
  gap:28px;
  align-items:start;
}
.footer-brand{
  font-size:22px;
  font-weight:700;
  color:#1F4E79 !important;
  margin-bottom:10px;
}
.footer-company p,
.footer-contact p,
.footer-bottom p{
  color:#555555 !important;
}
.footer-contact a,
.footer-legal a{
  color:#2F7FBF !important;
  text-decoration:none;
  transition:all .25s ease;
}
.footer-contact a:hover,
.footer-legal a:hover{
  color:#163A5A !important;
}
.footer-legal{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin-top:18px;
}
.footer-legal a{
  display:inline-flex;
  align-items:center;
  padding:8px 14px;
  background:rgba(255,255,255,0.7);
  border:1px solid rgba(31,78,121,0.10);
  border-radius:999px;
}
.footer-bottom{
  margin-top:18px;
  padding-top:18px;
  border-top:1px solid rgba(31,78,121,0.10);
  text-align:center;
}

.contact-modern-section{
  padding:62px 0 72px;
}
.contact-modern-wrap{
  display:grid;
  grid-template-columns:1fr 1.05fr;
  gap:34px;
  align-items:stretch;
  background:linear-gradient(135deg,#dff1ff 0%, #bfe0ff 45%, #dff0ff 100%);
  border-radius:34px;
  padding:38px;
  box-shadow:0 20px 44px rgba(31,78,121,0.12);
}
.contact-modern-intro h1{
  font-size:64px;
  line-height:1.02;
  color:#163A5A;
  margin-bottom:18px;
}
.contact-modern-intro p{
  font-size:18px;
  line-height:1.75;
  color:#2d4a62;
}
.contact-modern-details{margin-top:26px;}
.contact-modern-details p{margin-bottom:10px;}
.contact-modern-details a{color:#1F4E79; text-decoration:none;}
.contact-modern-formbox{
  background:rgba(255,255,255,0.5);
  border:1px solid rgba(31,78,121,0.10);
  border-radius:28px;
  padding:28px;
  backdrop-filter:blur(4px);
}
.contact-modern-form label{
  display:block;
  margin:0 0 8px;
  font-weight:600;
  color:#163A5A;
}
.contact-modern-form input,
.contact-modern-form textarea{
  width:100%;
  border:1px solid rgba(31,78,121,0.22);
  background:#f8fcff;
  border-radius:12px;
  padding:14px 16px;
  font-size:16px;
  margin-bottom:16px;
}
.contact-modern-form input:focus,
.contact-modern-form textarea:focus{
  outline:none;
  border-color:#2F7FBF;
  box-shadow:0 0 0 4px rgba(47,127,191,0.12);
}
.contact-modern-form button{
  min-width:160px;
  background:linear-gradient(135deg,#2F7FBF 0%, #1F4E79 100%);
  color:#fff;
  border:none;
  border-radius:12px;
  padding:14px 28px;
  font-size:17px;
  font-weight:700;
  cursor:pointer;
  box-shadow:0 10px 22px rgba(31,78,121,0.16);
  transition:transform .25s ease, box-shadow .25s ease;
}
.contact-modern-form button:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(31,78,121,0.22);
}

.legal-page{padding:56px 0 72px;}
.legal-card{
  max-width:980px;
  background:#fff;
  border-radius:28px;
  padding:40px 42px;
  box-shadow:0 18px 40px rgba(31,78,121,0.10);
}
.legal-card h1{
  font-size:42px;
  color:#1F4E79;
  margin-bottom:18px;
}
.legal-card h2{
  color:#163A5A;
  font-size:24px;
  margin:28px 0 10px;
}
.legal-card p,
.legal-card li{
  color:#444;
  line-height:1.8;
}
.legal-card a{color:#2F7FBF;}

@media (max-width: 992px){
  .contact-modern-wrap,
  .footer-clean{grid-template-columns:1fr;}
  .contact-modern-intro h1{font-size:48px;}
}
@media (max-width: 640px){
  .contact-modern-wrap{padding:22px; border-radius:22px;}
  .contact-modern-intro h1{font-size:38px;}
  .legal-card{padding:26px 20px; border-radius:20px;}
  .footer{padding-top:32px;}
}


/* ===== readability fixes March 2026 ===== */
.stats-strip .stat-box,
.stats-strip .stat-box.stat-box-professionell,
.stats-strip .stat-box.stat-box-zuverlaessig,
.stats-strip .stat-box.stat-box-hygienisch,
.stats-strip .stat-box.stat-box-lokal{
  background:linear-gradient(135deg,#2F7FBF 0%, #1F4E79 100%) !important;
  color:#ffffff !important;
  border:0 !important;
}

.stats-strip .stat-box::before{
  background:linear-gradient(135deg,rgba(255,255,255,.10),rgba(255,255,255,.02)) !important;
}

.stats-strip .stat-box::after{
  background:rgba(255,255,255,.12) !important;
}

.stats-strip .stat-number,
.stats-strip .stat-box strong,
.stats-strip .stat-text,
.stats-strip .stat-box span,
.stats-strip .stat-box p{
  color:#ffffff !important;
  text-shadow:0 1px 1px rgba(0,0,0,.12);
}

.stats-strip .stat-number{
  color:rgba(255,255,255,.88) !important;
}

.cta-box,
.cta-section .cta-box,
.cta-section-strong .cta-box{
  background:linear-gradient(135deg,#2F7FBF 0%, #1F4E79 100%) !important;
  color:#ffffff !important;
  border:0 !important;
}

.cta-box h2,
.cta-box h3,
.cta-box .cta-title,
.cta-box p,
.cta-box .cta-eyebrow,
.cta-box span,
.cta-box strong{
  color:#ffffff !important;
  text-shadow:0 1px 1px rgba(0,0,0,.10);
}

.cta-box p{
  opacity:1 !important;
}

.cta-box .btn.secondary{
  background:#ffffff !important;
  color:#1F4E79 !important;
  border:1px solid rgba(255,255,255,.7) !important;
}

.cta-box .btn.secondary:hover{
  background:#eef5fb !important;
  color:#163A5A !important;
}
.page-hero .hero-image {
  display: flex !important;
  justify-content: center !important;
  align-items: flex-start !important;
  padding: 0 !important;
  margin: 0 !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

.page-hero .hero-image img,
.page-hero .about-img {
  width: 100% !important;
  max-width: 420px !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 18px !important;
  object-fit: cover !important;
  background: transparent !important;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
  .features{
  margin:40px 0 60px;
}

.features-box{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.feature{
  background:#ffffff;
  border:1px solid #dbe5ef;
  border-radius:12px;
  padding:14px 20px;
  font-weight:600;
  color:#1F4E79;
  box-shadow:0 8px 20px rgba(31,78,121,0.08);
  transition:0.2s;
}

.feature:hover{
  transform:translateY(-3px);
}
}
.footer{
  background:linear-gradient(180deg,#0f172a,#1F4E79);
  color:#ffffff;
  padding:40px 0 20px;
  margin-top:60px;
}

.footer-content{
  display:flex;
  justify-content:space-between;
  gap:40px;
  flex-wrap:wrap;
}

.footer-left h3{
  font-size:22px;
  margin-bottom:10px;
}

.footer-left p{
  color:#cbd5e1;
  max-width:420px;
}

.footer-right p{
  margin-bottom:8px;
  color:#e2e8f0;
}

.footer-bottom{
  margin-top:25px;
  padding-top:15px;
  border-top:1px solid rgba(255,255,255,0.1);
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:10px;
  font-size:14px;
}

.footer-bottom a{
  color:#cbd5e1;
  text-decoration:none;
}

.footer-bottom a:hover{
  color:#ffffff;
}