/**
* Template Name: Impact
* Updated: Mar 10 2023 with Bootstrap v5.2.3
* Template URL: https://bootstrapmade.com/impact-bootstrap-business-website-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Set main reusable colors and fonts using CSS variables
--------------------------------------------------------------*/
/* Fonts */
:root {
  --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Montserrat", sans-serif;
  --font-secondary: "Poppins", sans-serif;
  /* brand */
  --color-primary: #ffffff;
  /* primary = white */
  --color-secondary: #0C274B;
  /* secondary = logo blue */

  /* text / neutrals */
  --color-default: #1d1d1d;
  /* standard text on white sections */
  --color-dark: #020207;
  /* very dark background */
  --color-light: #F6F6F6;
  /* light section background */
  --color-white: #ffffff;
  /* optional: hover tint for brand */
  --color-secondary-hover: #123a70;
}


/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
}

a {
  color: var(--color-secondary);
  text-decoration: none;
}

a:hover {
  color: var(--color-secondary-hover);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.sections-bg {
  background-color: var(--color-light);
}

.section-header {
  text-align: center;
  padding-bottom: 60px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-header h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-secondary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-header p {
  margin-bottom: 0;
  color: #6f6f6f;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs .page-header {
  padding: 60px 0 60px 0;
  min-height: 20vh;
  position: relative;
  background-color: var(--color-secondary);
}

.breadcrumbs .page-header h2 {
  font-size: 56px;
  font-weight: 500;
  color: #fff;
  font-family: var(--font-secondary);
}

.breadcrumbs .page-header p {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs nav {
  background-color: var(--color-light);
  padding: 20px 0;
}

.breadcrumbs nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-default);
}

.breadcrumbs nav ol a {
  color: var(--color-secondary);
  transition: 0.3s;
}

.breadcrumbs nav ol a:hover {
  text-decoration: underline;
}

.breadcrumbs nav ol li+li {
  padding-left: 10px;
}

.breadcrumbs nav ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--color-secondary);
  content: "/";
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background: var(--color-secondary);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: var(--color-secondary-hover);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #fff;
  border-color: var(--color-secondary) transparent var(--color-secondary) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.topbar {
  background: var(--color-dark);
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
  padding: 0;
}

.topbar .contact-info i {
  font-style: normal;
  color: #fff;
  line-height: 0;
}

.topbar .contact-info i a,
.topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}

@media (max-width: 575px) {
  .topbar .contact-info i a,
  .topbar .contact-info i span {
    font-size: 13px;
  }
}

.topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.topbar .contact-info i a:hover {
  color: #fff;
  text-decoration: underline;
}

.topbar .social-links a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.topbar .social-links a:hover {
  color: #fff;
}

.header {
  transition: all 0.5s;
  z-index: 997;
  height: 90px;
  background-color: #ffffff !important;
}

.header.sticked {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 70px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: #0C274B !important; /* Logo-Blau */
  font-family: var(--font-primary);
}

.header .logo h1 span {
  color: rgba(255,255,255,0.85); /* subtle */
}

.sticked-header-offset {
  margin-top: 70px;
}

section {
  scroll-margin-top: 70px;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar { padding: 0; }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li { position: relative; }

  .navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--color-primary); /* underline is white */
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }

  .navbar .dropdown ul li { min-width: 200px; }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
    color: var(--color-secondary); /* dropdown links = brand */
  }

  .navbar .dropdown ul a i { font-size: 12px; }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-secondary-hover);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul { left: -90%; }
  .navbar .dropdown .dropdown:hover>ul { left: -100%; }
}

@media (min-width: 1280px) {
  .mobile-nav-show,
  .mobile-nav-hide { display: none; }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(12, 39, 75, 0.95); /* UPDATED */
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .getstarted,
  .navbar .getstarted:focus {
    background: var(--color-primary); /* white button */
    padding: 8px 20px;
    border-radius: 4px;
    margin: 15px;
    color: var(--color-secondary); /* brand text */
  }

  .navbar .getstarted:hover,
  .navbar .getstarted:focus:hover {
    color: #fff;
    background: var(--color-secondary-hover);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    background-color: rgba(2,2,7,0.5); /* UPDATED */
    border: 1px solid rgba(255,255,255,0.15); /* UPDATED */
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: rgba(255, 255, 255, 0.8);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin-right: 10px;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active { overflow: hidden; }

  .mobile-nav-active .navbar { right: 0; }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(2, 2, 7, 0.75); /* UPDATED */
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
.about h3 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 20px;
  font-family: var(--font-secondary);
}

.about .call-us {
  left: 10%;
  right: 10%;
  bottom: 0;
  background-color: #fff;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: center;
}

.about .call-us h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}

.about .call-us p {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-secondary);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 10px 30px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--color-secondary);
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--color-secondary) 50%, rgba(12, 39, 75, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(12, 39, 75, 0.55);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.about .play-btn:hover:after {
  border-left: 15px solid var(--color-secondary);
  transform: scale(20);
}

@keyframes pulsate-btn {
  0% { transform: scale(0.6, 0.6); opacity: 1; }
  100% { transform: scale(1, 1); opacity: 0; }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients { padding: 40px 0; }

.clients .swiper { padding: 10px 0; }

.clients .swiper-slide img { transition: 0.3s; }

.clients .swiper-slide img:hover { transform: scale(1.1); }

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #ddd;
  opacity: 1;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-secondary);
}

/*--------------------------------------------------------------
# Stats Counter Section
--------------------------------------------------------------*/
.stats-counter { padding: 40px 0; }

.stats-counter .stats-item {
  padding: 20px 0;
  border-bottom: 1px solid #e4e4e4;
}

.stats-counter .stats-item .purecounter {
  min-width: 90px;
  padding-right: 15px;
}

.stats-counter .stats-item i {
  font-size: 44px;
  line-height: 0;
  margin-right: 15px;
}

.stats-counter .stats-item span {
  font-size: 40px;
  display: block;
  font-weight: 700;
  color: var(--color-secondary);
  line-height: 40px;
}

.stats-counter .stats-item p {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action .container {
  background: linear-gradient(rgba(2, 2, 7, 0.55), rgba(2, 2, 7, 0.55)), url("../img/cta-bg.jpg") center center;
  background-size: cover;
  padding: 100px 60px;
  border-radius: 15px;
  overflow: hidden;
}

.call-to-action h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.call-to-action p { color: #fff; margin-bottom: 20px; }

.call-to-action .play-btn {
  width: 94px;
  height: 94px;
  margin-bottom: 20px;
  background: radial-gradient(var(--color-secondary) 50%, rgba(12, 39, 75, 0.4) 52%);
  border-radius: 50%;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.call-to-action .play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(12, 39, 75, 0.55);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.call-to-action .play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.call-to-action .play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.call-to-action .play-btn:hover:after {
  border-left: 15px solid var(--color-secondary);
  transform: scale(20);
}

.call-to-action .cta-btn {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 48px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.call-to-action .cta-btn:hover {
  background: var(--color-secondary);
  border: 2px solid var(--color-secondary);
}


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap { padding-left: 10px; }

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px;
  margin: 30px 10px;
  box-shadow: 0px 0 15px rgba(0, 0, 0, 0.1);
  position: relative;
  background: #fff;
  border-radius: 10px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  margin-right: 15px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #000;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .stars { margin: 10px 0; }

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: var(--color-secondary); /* UPDATED (valid CSS!) */
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-secondary);
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap { padding-left: 0; }
  .testimonials .testimonial-item { padding: 30px; margin: 15px; }
  .testimonials .testimonial-item .testimonial-img { position: static; left: auto; }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Clients Slider (Unsere Kunden)
--------------------------------------------------------------*/
.clients {
  padding: 70px 0;
  background: #fff;
}

.clients .clients-slider {
  position: relative;
  padding: 10px 0 35px;
}

.clients .swiper-slide {
  height: auto;
}

/* Card */
.clients .client-card {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
  padding: 22px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(13, 41, 74, 0.08); /* dunkles Alpha-Blau transparent */
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.clients .client-card:hover {
  transform: translateY(-3px);
  border-color: rgba(13, 41, 74, 0.18);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.10);
}

/* Logo Bild */
.clients .client-card img {
  max-width: 100%;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: none; /* du hast weiße Hintergründe -> so bleibt’s sauber */
}

/* Dots */
.clients .clients-pagination {
  margin-top: 18px;
  position: relative;
}

.clients .clients-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  opacity: 0.25;
}

.clients .clients-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

/* Pfeile */
.clients .clients-nav {
  position: absolute;
  top: 50%;
  left: -10px;
  right: -10px;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.clients .clients-prev,
.clients .clients-next {
  pointer-events: all;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(13, 41, 74, 0.12);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
  font-size: 26px;
  line-height: 1;
  display: grid;
  place-items: center;
  color: var(--color-secondary); /* dein Alpha-Blau */
  transition: transform 150ms ease, background 150ms ease;
}

.clients .clients-prev:hover,
.clients .clients-next:hover {
  transform: scale(1.05);
  background: #fff;
}

@media (max-width: 575px) {
  .clients .client-card {
    height: 105px;
  }
  .clients .client-card img {
    max-height: 62px;
  }
  .clients .clients-nav {
    display: none; /* auf Handy -> wischen ist nicer */
  }
}
/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img { width: 100%; }

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.7);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-secondary);
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.2);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.6);
}

@media (max-width: 575px) {
  .portfolio-details .swiper-button-prev,
  .portfolio-details .swiper-button-next { display: none; }
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-secondary);
  left: 0;
  bottom: 0;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
  font-size: 16px;
}

.portfolio-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: #9c9c9c;
  font-size: 12px;
}

.portfolio-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--color-secondary);
  color: var(--color-primary);
  border-radius: 50px;
  transition: 0.3s;
}

/* FIXED (was broken in your screenshot) */
.portfolio-details .portfolio-info .btn-visit:hover {
  background: var(--color-secondary-hover);
  color: var(--color-primary);
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p { padding: 0; }

.portfolio-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: white;
  height: 100%;
  margin-bottom: 50px;
}

.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid #fff;
  float: left;
  margin: 0 10px 0 0;
}

.portfolio-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  color: var(--color-secondary);
  font-size: 26px;
  line-height: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.portfolio-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(108, 117, 125, 0.15);
  background: #fff;
  height: 100%;
  position: relative;
  border-radius: 15px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
  color: #555555;
  text-align: center;
}

.pricing .icon {
  margin: 30px auto 30px auto;
  width: 70px;
  height: 70px;
  background: var(--color-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  transform-style: preserve-3d;
}

.pricing .icon i {
  color: #fff;
  font-size: 28px;
  transition: ease-in-out 0.3s;
  line-height: 0;
}

.pricing .icon::before {
  position: absolute;
  content: "";
  height: 86px;
  width: 86px;
  border-radius: 50%;
  background: rgba(12, 39, 75, 0.25);
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.pricing .icon::after {
  position: absolute;
  content: "";
  height: 102px;
  width: 102px;
  border-radius: 50%;
  background: rgba(12, 39, 75, 0.12);
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-2px);
}

.pricing h4 {
  font-size: 48px;
  color: var(--color-secondary);
  font-weight: 700;
  font-family: var(--font-secondary);
  margin-bottom: 0;
  text-align: center;
}

.pricing h4 sup { font-size: 28px; }

.pricing h4 span {
  color: rgba(108, 117, 125, 0.8);
  font-size: 18px;
  font-weight: 400;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: #6c757d;
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul i {
  color: var(--color-secondary);
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na { color: rgba(108, 117, 125, 0.5); }
.pricing ul .na i { color: rgba(108, 117, 125, 0.5); }
.pricing ul .na span { text-decoration: line-through; }

.pricing .buy-btn {
  display: inline-block;
  padding: 10px 40px;
  border-radius: 50px;
  color: var(--color-secondary);
  border: 1px solid rgba(12, 39, 75, 0.25);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-primary);
  transition: 0.3s;
}

.pricing .buy-btn:hover {
  background: var(--color-secondary);
  color: #fff;
}

.pricing .featured {
  z-index: 10;
  border: 3px solid var(--color-secondary);
}

@media (min-width: 992px) {
  .pricing .featured { transform: scale(1.15); }
}

/*--------------------------------------------------------------
# Frequently Asked Questions Section
--------------------------------------------------------------*/
.faq .content h3 { font-weight: 400; font-size: 34px; }
.faq .content h4 { font-size: 20px; font-weight: 700; margin-top: 5px; }
.faq .content p { font-size: 15px; color: #6c757d; }

.faq .accordion-item {
  border: 0;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
}

.faq .accordion-item:last-child { margin-bottom: 0; }
.faq .accordion-collapse { border: 0; }

.faq .accordion-button {
  padding: 20px 50px 20px 20px;
  font-weight: 600;
  border: 0;
  font-size: 18px;
  line-height: 24px;
  color: var(--color-default);
  text-align: left;
  background: #fff;
  box-shadow: none;
  border-radius: 10px;
}

.faq .accordion-button .num {
  padding-right: 10px;
  font-size: 20px;
  line-height: 0;
  color: var(--color-secondary);
}

.faq .accordion-button:not(.collapsed) {
  color: var(--color-secondary);
  border-bottom: 0;
  box-shadow: none;
}

.faq .accordion-button:after {
  position: absolute;
  right: 20px;
  top: 20px;
}

.faq .accordion-body {
  padding: 0 40px 30px 45px;
  border: 0;
  border-radius: 10px;
  background: #fff;
  box-shadow: none;
}

/*--------------------------------------------------------------
# Recent Blog Posts Section
--------------------------------------------------------------*/
.recent-posts article {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.recent-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.recent-posts .post-category {
  font-size: 16px;
  color: #6f6f6f;
  margin-bottom: 10px;
}

.recent-posts .title {
  font-size: 22px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.recent-posts .title a {
  color: var(--color-default);
  transition: 0.3s;
}

.recent-posts .title a:hover {
  color: var(--color-secondary);
}

.recent-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.recent-posts .post-author { font-weight: 600; margin-bottom: 5px; }
.recent-posts .post-date { font-size: 14px; color: #3c3c3c; margin-bottom: 0; }

/* --------------------------------------------------------------
# Contact (Modern) — Map left / Form right
-------------------------------------------------------------- */
.contact-modern {
  padding: 70px 0;
  background: #fff;
}

.contact-modern .contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  margin-top: 28px;
}

.contact-modern .map-card,
.contact-modern .form-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(13, 41, 74, 0.10);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.contact-modern .map-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(13, 41, 74, 0.08);
}

.contact-modern .map-kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(13, 41, 74, 0.65);
  margin-bottom: 4px;
}

.contact-modern .map-title strong {
  display: block;
  font-size: 16px;
  color: var(--color-secondary);
  line-height: 1.2;
}

.contact-modern .map-sub {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: rgba(13, 41, 74, 0.70);
}

.contact-modern .map-open {
  white-space: nowrap;
  font-size: 13px;
  color: var(--color-secondary);
  text-decoration: none;
  border: 1px solid rgba(13, 41, 74, 0.14);
  padding: 8px 10px;
  border-radius: 12px;
  transition: background 160ms ease, transform 160ms ease;
}

.contact-modern .map-open:hover {
  background: rgba(13, 41, 74, 0.06);
  transform: translateY(-1px);
}

/* Map embed keeps nice ratio */
.contact-modern .map-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  background: #f7f8fa;
}

.contact-modern .map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Form */
.contact-modern .form-head {
  padding: 18px 18px 0;
}

.contact-modern .form-head h3 {
  margin: 0 0 6px;
  font-size: 20px;
  color: var(--color-secondary);
}

.contact-modern .form-head p {
  margin: 0 0 14px;
  color: rgba(13, 41, 74, 0.70);
}

.contact-modern .contact-formspree {
  padding: 0 18px 18px;
}

.contact-modern .form-label {
  font-size: 13px;
  margin-bottom: 6px;
  color: rgba(13, 41, 74, 0.80);
}

.contact-modern .form-control,
.contact-modern .form-select {
  border-radius: 14px;
  border: 1px solid rgba(13, 41, 74, 0.14);
  padding: 12px 14px;
  box-shadow: none;
}

.contact-modern .form-control:focus,
.contact-modern .form-select:focus {
  border-color: rgba(13, 41, 74, 0.35);
  box-shadow: 0 0 0 4px rgba(13, 41, 74, 0.08);
}

.contact-modern textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

/* Submit button (matches your theme) */
.contact-modern .btn-contact-submit {
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 14px 18px;
  background: var(--color-secondary);
  color: #fff;
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
  box-shadow: 0 14px 26px rgba(13, 41, 74, 0.18);
}

.contact-modern .btn-contact-submit:hover {
  background: var(--color-secondary-hover, var(--color-secondary));
  transform: translateY(-1px);
}

.contact-modern .form-note {
  margin: 10px 0 0;
  font-size: 12px;
  color: rgba(13, 41, 74, 0.60);
  text-align: center;
}

/* Alerts */
.contact-modern .form-alert {
  margin: 14px 18px 0;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 13px;
}

.contact-modern .form-alert--success {
  background: rgba(46, 204, 113, 0.12);
  border: 1px solid rgba(46, 204, 113, 0.22);
  color: rgba(20, 120, 60, 0.95);
}

.contact-modern .form-alert--error {
  background: rgba(231, 76, 60, 0.10);
  border: 1px solid rgba(231, 76, 60, 0.20);
  color: rgba(150, 40, 30, 0.95);
}

/* Mobile: Map first, then form */
@media (max-width: 991px) {
  .contact-modern .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-modern .map-embed {
    aspect-ratio: 16 / 12;
  }
}


@keyframes animate-loading {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Hero Section (UPDATED: white background instead of black) */
.hero {
  width: 100%;
  position: relative;
  background: var(--color-primary); /* = white */
  padding: 60px 0 0 0;
}

.hero h2 {
  color: var(--color-secondary); /* Logo-Blau */
}

.hero p {
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

/* Button: blau statt weiß (weil Hintergrund jetzt weiß ist) */
.hero .btn-get-started {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 16px 34px;           /* größer */
  min-height: 52px;
  border-radius: 999px;         /* moderner pill button */

  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.3px;

  color: #fff;
  background: var(--color-secondary);
  border: 2px solid var(--color-secondary);

  box-shadow: 0 10px 25px rgba(12, 39, 75, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.hero .btn-get-started:hover {
  background: var(--color-secondary-hover);
  border-color: var(--color-secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(12, 39, 75, 0.32);
}

.hero .btn-get-started:active {
  transform: translateY(0px);
  box-shadow: 0 10px 25px rgba(12, 39, 75, 0.22);
}

.hero .btn-get-started:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(12, 39, 75, 0.25), 0 10px 25px rgba(12, 39, 75, 0.22);
}

/* "Watch Video" auf weiß: dunkel/blau statt weiß */
.hero .btn-watch-video {
  color: var(--color-secondary);
}

.hero .btn-watch-video i {
  color: rgba(12, 39, 75, 0.6);
}

.hero .btn-watch-video:hover i {
  color: var(--color-secondary);
}


/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog .blog-pagination {
  margin-top: 30px;
  color: #555555;
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
  border-radius: 10px;
}

.blog .blog-pagination li a {
  color: var(--color-default);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
  background: var(--color-secondary);
  color: #fff;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  color: #fff;
}

/* --------------------------------------------------------------
# Footer (Modern / Legal) - CLEAN VERSION
-------------------------------------------------------------- */
.footer-modern {
  background: var(--color-secondary); /* Alpha-Blau */
  color: rgba(255, 255, 255, 0.86);
  padding: 54px 0 18px;
}

.footer-modern a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.footer-modern a:hover {
  opacity: 0.9;
}

.footer-modern .footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1.25fr 0.9fr 0.9fr;
  gap: 34px;
  align-items: start;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-modern .footer-logo img {
  height: 52px;
  width: auto;
  display: block;
}

.footer-modern .footer-tagline {
  margin: 12px 0 18px;
  font-weight: 700;
  color: #fff;
}

.footer-modern .footer-meta p {
  margin: 6px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
}

.footer-modern .footer-title {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}

.footer-modern .footer-list,
.footer-modern .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-modern .footer-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  margin: 10px 0;
  font-size: 14px;
  line-height: 1.35;
}

.footer-modern .footer-ico {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  font-size: 16px;
  opacity: 0.95;
}

.footer-modern .footer-links li {
  margin: 10px 0;
  font-size: 14px;
}

.footer-modern .footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-modern .footer-links a:hover {
  transform: translateX(2px);
}

/* Social Buttons */
.footer-modern .footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-modern .social-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
  font-weight: 700;
  user-select: none;
}

.footer-modern .social-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
}

/* Bottom bar */
.footer-modern .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding-top: 16px;
}

.footer-modern .footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
}

.footer-modern .footer-legal {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-modern .footer-legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.footer-modern .footer-legal a:hover {
  border-bottom-color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 992px) {
  .footer-modern .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-modern {
    padding: 44px 0 14px;
  }

  .footer-modern .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-modern .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}





/* ==================================================
   HEADER & NAVIGATION – WHITE HEADER / BLUE LINKS
   ================================================== */

/* Header: weißer Balken */
.header {
  background-color: #ffffff !important;
  height: 90px;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

/* Header beim Scrollen (sticky) */
.header.sticked {
  background-color: #ffffff !important;
  height: 70px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.08);
}

/* Logo-Text (falls Textlogo genutzt wird) */
.header .logo h1 {
  color: #0C274B !important; /* Logo-Blau */
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.8px;
}

/* ==================================================
   DESKTOP NAVIGATION
   ================================================== */
@media (min-width: 1280px) {

  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar > ul > li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }

  /* Nav-Reiter: Standard (blau auf weiß) */
  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    padding: 0 3px;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 600;
    color: #0C274B !important; /* Logo-Blau */
    background: none !important;
    transition: 0.3s;
    position: relative;
  }

  /* Hover & Active: Text bleibt blau */
  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover > a {
    color: #0C274B !important;
    background: none !important;
  }

  /* Unterstrich-Linie: blau */
  .navbar > ul > li > a:before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #0C274B; /* Logo-Blau */
    visibility: hidden;
    transition: all 0.3s ease-in-out;
  }

  /* Unterstrich sichtbar bei Hover & Active */
  .navbar a:hover:before,
  .navbar li:hover > a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }
}

.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Weißes Overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.65);
  z-index: 1;
}

/* Inhalt über Overlay */
.hero .container,
.hero .container-fluid {
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .hero .btn-get-started {
    width: auto;                /* kompakt bleiben */
    max-width: 260px;           /* verhindert zu breite Darstellung */
    padding: 12px 22px;         /* weniger horizontaler Druck */
    font-size: 15px;
    white-space: nowrap;        /* kein Umbruch im Button */
    margin-bottom: 32px;        /* Luft zur nächsten Section */
  }

  /* Button-Wrapper sauber zentrieren */
  .hero .d-flex {
    justify-content: center !important;
  }
}


@media (max-width: 575px) {
  .clients .client-card {
    height: 90px;
    padding: 14px;
    margin: 0 auto; /* zentriert die Card */
    max-width: 240px; /* verhindert „Breitziehen“ */
  }

  .clients .client-card img {
    max-height: 52px;
  }
}
.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.9);
  font-size: 15px;
}

.footer-contact i {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  margin-top: 2px;
}

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

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

/* Footer Contact: saubere Ausrichtung */
.footer-contact p {
  display: flex;
  align-items: center;          /* Icon & Text auf eine Linie */
  gap: 12px;
  margin: 0 0 14px 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  line-height: 1.35;
}

/* Icon: feste Breite für perfekte Spalten-Ausrichtung */
.footer-contact i {
  width: 22px;                  /* sorgt für saubere vertikale Linie */
  min-width: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.70);
}

/* Links: bleiben IMMER weiß/lesbar */
.footer-contact a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

/* Hover: nicht blau auf blau -> nur leicht “heller” */
.footer-contact a:hover {
  color: rgba(255, 255, 255, 1);
  opacity: 0.9;
}

/* Optional: Fokus auch sauber (Accessibility) */
.footer-contact a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.35);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Hero Logo wirklich kleiner machen (override) */
#hero .hero-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

#hero .hero-logo img {
  width: auto !important;
  max-width: 380px !important; /* Desktop */
  height: auto !important;
}

@media (max-width: 768px) {
  #hero .hero-logo img {
    max-width: 240px !important; /* Handy */
  }
}

.services-video {
  width: 100%;
  max-width: 520px; /* verhindert "langgezogen" */
  height: auto;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}


/* ==============================
   Fensterreinigung (Service Detail) Section
   ============================== */

.service-detail {
  padding: 70px 0;
}

.service-detail .section-header p {
  max-width: 980px;
  margin: 0 auto;
  line-height: 1.7;
  color: #2f2f2f;
}

/* LEFT Image Box */
.service-detail-media {
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(13, 41, 74, 0.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.service-detail-media img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
}

/* RIGHT "Cube" Box */
.service-detail-cube {
  height: 100%;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(13, 41, 74, 0.10);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-detail-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(13, 41, 74, 0.06);
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.2px;
  margin-bottom: 14px;
}

.service-detail-cube h3 {
  margin: 0 0 12px 0;
  font-weight: 800;
  font-size: 26px;
  color: var(--color-default);
}

.service-detail-cube p {
  margin: 0 0 18px 0;
  color: #2f2f2f;
  line-height: 1.7;
}

/* optional: kleine Hinweiszeile (Variation) */
.service-detail-note {
  margin: 0 0 18px 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(13, 41, 74, 0.04);
  border: 1px solid rgba(13, 41, 74, 0.08);
  color: #2f2f2f;
  line-height: 1.6;
}

/* Check list */
.service-detail-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px 0;
  display: grid;
  gap: 10px;
}

.service-detail-list li {
  position: relative;
  padding-left: 28px;
  color: #2f2f2f;
  line-height: 1.5;
}

.service-detail-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--color-secondary);
  position: absolute;
  left: 0;
  top: 7px;
}

/* CTA Button */
.service-detail-actions {
  margin-top: auto;
}

.service-detail-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  max-width: 380px;

  padding: 14px 18px;
  border-radius: 999px;

  background: var(--color-secondary);
  color: #fff !important;           /* Fix: Text bleibt IMMER sichtbar */
  font-weight: 700;
  text-decoration: none;

  box-shadow: 0 10px 22px rgba(13, 41, 74, 0.22);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;

  -webkit-user-select: none;        /* Fix gegen “Swipe Text verschwindet”-Bug */
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.service-detail-btn:hover,
.service-detail-btn:focus,
.service-detail-btn:active {
  color: #fff !important;           /* Fix: auch bei active/focus bleibt Text weiß */
  background: var(--color-secondary-hover);
  transform: translateY(-2px);
  text-decoration: none;
}

.service-detail-btn:focus-visible {
  outline: 3px solid rgba(13, 41, 74, 0.28);
  outline-offset: 3px;
}

/* Responsive */
@media (max-width: 991px) {
  .service-detail-cube {
    padding: 26px;
  }

  .service-detail-cube h3 {
    font-size: 22px;
  }

  .service-detail-media img {
    min-height: 260px;
  }

  .service-detail-btn {
    max-width: 100%;
  }
}

/* =========================================================
   Abwechslung nur für Gebäudereinigung (optional)
   -> leicht anderer “Look”, aber im Rahmen
========================================================= */
.service-detail--building .service-detail-badge {
  background: rgba(13, 41, 74, 0.08);
}

.service-detail--building .service-detail-media {
  border-color: rgba(13, 41, 74, 0.10);
}

/* Responsive */
@media (max-width: 991px) {
  .service-detail-cube {
    padding: 26px;
  }

  .service-detail-cube h3 {
    font-size: 22px;
  }

  .service-detail-media img {
    min-height: 260px;
  }

  .service-detail-btn {
    max-width: 100%;
  }
}

.navbar .nav-link {
  position: relative;
  padding: 8px 0;
  font-weight: 600;
  color: #0d294a;
  transition: color 0.2s ease;
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background-color: var(--color-secondary);
  transition: width 0.3s ease;
}

.navbar .nav-link.active {
  color: var(--color-secondary);
}

.navbar .nav-link.active::after {
  width: 100%;
}

/* ===== Legal Pages (Impressum / Datenschutz) ===== */

.legal-page {
  padding: 80px 0;
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.75;
  color: #2f2f2f;
}

.legal-content h4 {
  margin-top: 32px;
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--color-default);
}

.legal-content p {
  margin-bottom: 10px;
}

/* Header Logo Centered */
.header .logo {
  justify-content: center;
}

/* Footer */
.footer-modern {
  background: #0d294a;
  color: #fff;
  padding: 60px 0 20px;
}

.footer-logo {
  max-width: 160px;
  margin-bottom: 12px;
}

.footer-text {
  opacity: 0.9;
  font-size: 14px;
}

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

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

.footer-links a {
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 40px;
  font-size: 13px;
  opacity: 0.8;
}

/* Impressum: Header Logo zentriert */
.impressum-page #header .container-xl {
  justify-content: center !important;
}

/*--------------------------------------------------------------
# Our Services Section (CLEAN + EINHEITLICH)
--------------------------------------------------------------*/
.services { padding: 60px 0; }

.services p,
.services .section-description,
.section-header p {
  color: #2f2f2f;
  font-weight: 400;
  line-height: 1.7;
}

/* ===== Service Card (einheitlich) ===== */
.services .service-item{
  background: #fff;
  border-radius: 14px;
  overflow: hidden; /* Bild übernimmt die runden Ecken */
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.services .service-item:hover{
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Bild oben */
.services .service-item .service-media{
  width: 100%;
  height: 190px;
  background: #f4f6f9;
  border-bottom: 1px solid rgba(13, 41, 74, 0.08);
}

.services .service-item .service-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Content-Padding */
.services .service-item h3,
.services .service-item p{
  padding-left: 32px;
  padding-right: 32px;
}

.services .service-item h3{
  margin: 22px 0 14px 0;
  padding-bottom: 8px;
  font-size: 22px;
  font-weight: 700;
  display: inline-block;
  border-bottom: 4px solid #eeeeee;
  color: var(--color-default);
  transition: 0.3s;
}

.services .service-item:hover h3{
  border-color: var(--color-secondary);
}

.services .service-item p{
  margin: 0 0 18px 0;
  color: #2b2b2b;
  font-size: 15px;
  line-height: 1.6;
}

/* Button unten */
.services .service-item .service-btn{
  margin: 0 32px 28px 32px;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--color-secondary);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  border: 2px solid var(--color-secondary);
  transition: 0.25s ease;
  text-decoration: none;
}

.services .service-item .service-btn:hover{
  background: #fff;
  color: var(--color-secondary);
  border-color: var(--color-secondary);
}

/* Mobile */
@media (max-width: 575px){
  .services .service-item .service-media{ height: 160px; }

  .services .service-item h3,
  .services .service-item p{
    padding-left: 22px;
    padding-right: 22px;
  }

  .services .service-item .service-btn{
    margin: 0 22px 22px 22px;
    width: calc(100% - 44px);
  }
}


.hygiene-section{
  padding: 70px 0;
  background: #fff;
}

.hygiene-cube{
  max-width: 980px;
  margin: 0 auto;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(13, 41, 74, 0.10);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  padding: 34px;
}

.hygiene-cube h3{
  margin: 0 0 14px 0;
  font-weight: 800;
  font-size: 24px;
  color: var(--color-default);
}

.hygiene-list{
  list-style: none;
  padding: 0;
  margin: 0 0 22px 0;
  display: grid;
  gap: 10px;
}

.hygiene-list li{
  position: relative;
  padding-left: 28px;
  color: #2f2f2f;
  line-height: 1.6;
}

.hygiene-list li::before{
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--color-secondary);
  position: absolute;
  left: 0;
  top: 8px;
}

.hygiene-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--color-secondary);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid var(--color-secondary);
  transition: .25s ease;
}

.hygiene-btn:hover{
  background: #fff;
  color: var(--color-secondary);
}

@media (max-width: 575px){
  .hygiene-cube{
    padding: 24px;
  }
  .hygiene-btn{
    width: 100%;
  }
}
/*--------------------------------------------------------------
# Vorteile Section
--------------------------------------------------------------*/
.benefits {
  padding: 70px 0;
}

.benefits.section-bg {
  background: #f6f6f6;
}

.benefits .section-header p {
  max-width: 980px;
  margin: 0 auto;
  line-height: 1.7;
  color: #2f2f2f;
}

/* Main cube */
.benefits-cube {
  height: 100%;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(13, 41, 74, 0.10);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  padding: 34px;
  display: flex;
  flex-direction: column;
}

.benefits-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(13, 41, 74, 0.06);
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2px;
  margin-bottom: 14px;
}

.benefits-cube h3 {
  margin: 0 0 12px 0;
  font-weight: 800;
  font-size: 26px;
  color: var(--color-default);
}

.benefits-cube p {
  margin: 0 0 18px 0;
  color: #2f2f2f;
  line-height: 1.7;
}

/* Check list */
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px 0;
  display: grid;
  gap: 12px;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #2f2f2f;
  line-height: 1.55;
}

.benefits-list li i {
  margin-top: 2px;
  font-size: 18px;
  color: var(--color-secondary);
}

/* CTA Button */
.benefits-actions {
  margin-top: auto;
}

.benefits-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 380px;
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--color-secondary);
  color: #fff !important;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
  box-shadow: 0 10px 22px rgba(13, 41, 74, 0.22);
}

.benefits-btn:hover {
  background: var(--color-secondary-hover);
  transform: translateY(-2px);
}

/* Right side mini cards */
.benefits-side {
  height: 100%;
  display: grid;
  gap: 16px;
}

.benefits-mini {
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(13, 41, 74, 0.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
  padding: 22px;
}

.benefits-mini h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 800;
  color: var(--color-default);
}

.benefits-mini h4 i {
  color: var(--color-secondary);
  font-size: 18px;
}

.benefits-mini p {
  margin: 0;
  color: #2f2f2f;
  line-height: 1.65;
}

/* Responsive */
@media (max-width: 991px) {
  .benefits-cube {
    padding: 26px;
  }

  .benefits-cube h3 {
    font-size: 22px;
  }

  .benefits-btn {
    max-width: 100%;
  }
}

/* Service Card Bild (quer & modern) */
.services .service-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 18px;
}

.services .service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Mobile etwas kompakter */
@media (max-width: 575px) {
  .services .service-image {
    height: 150px;
  }
}


/* Gebäudereinigung – grauer Section-Hintergrund */
.service-detail--building {
  background-color: #f6f6f6;
}
.service-detail--maintenance {
  background-color: #f6f6f6;
}
/* ==============================
   TOP HEADER / INFO BAR – FARBE
   ============================== */

.topbar,
.header-top {
  background-color: var(--color-secondary) !important; /* euer Blau */
  color: #fff;
}

/* Icons & Links im Topbar */
.topbar a,
.topbar i {
  color: #fff !important;
}

/* Optional: Hover leicht heller */
.topbar a:hover {
  opacity: 0.85;
}

/* =========================
   Quality section "Cube"
   ========================= */
.quality-cube{
  height: 100%;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(13, 41, 74, 0.10);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  padding: 34px;
  display: flex;
  flex-direction: column;
}

.quality-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(13, 41, 74, 0.06);
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 14px;
  width: fit-content;
}

.quality-badge i{
  font-size: 16px;
  line-height: 1;
}

.quality-cube h3{
  margin: 0 0 12px 0;
  font-weight: 800;
  font-size: 24px;
  color: var(--color-default);
}

.quality-cube p{
  margin: 0 0 14px 0;
  color: #2f2f2f;
  line-height: 1.7;
}

.quality-list{
  list-style: none;
  padding: 0;
  margin: 6px 0 16px 0;
  display: grid;
  gap: 10px;
}

.quality-list li{
  position: relative;
  padding-left: 28px;
  color: #2f2f2f;
  line-height: 1.5;
}

.quality-list li::before{
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--color-secondary);
  position: absolute;
  left: 0;
  top: 7px;
}

.quality-note{
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(13, 41, 74, 0.08);
}

.quality-actions{
  margin-top: auto;
  padding-top: 12px;
}

.quality-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 380px;
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--color-secondary);
  color: #fff !important;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
  box-shadow: 0 10px 22px rgba(13, 41, 74, 0.22);
}

.quality-btn:hover{
  background: var(--color-secondary-hover);
  transform: translateY(-2px);
}

@media (max-width: 991px){
  .quality-cube{ padding: 26px; }
  .quality-cube h3{ font-size: 22px; }
  .quality-btn{ max-width: 100%; }
}


/* ================================
   Mobile Menu (modern, slide-in)
================================== */

.mobile-nav-toggle{
  display: none;
  border: 0;
  background: rgba(255,255,255,.92);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
  color: var(--color-secondary);
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
}

.mobile-nav-toggle i{ display:block; }

/* Overlay */
.mobile-nav-overlay{
  position: fixed;
  inset: 0;
  background: rgba(13, 41, 74, 0.55);
  backdrop-filter: blur(3px);
  z-index: 9997;
}

/* Panel */
.mobile-nav{
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(88vw, 360px);
  background: #fff;
  z-index: 9998;

  transform: translateX(110%);
  transition: transform 260ms ease;
  box-shadow: -18px 0 40px rgba(0,0,0,.18);

  display: flex;
  flex-direction: column;
}

.mobile-nav.is-open{
  transform: translateX(0);
}

.mobile-nav-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px;
  border-bottom: 1px solid rgba(13,41,74,.10);
}

.mobile-nav-title{
  font-weight: 800;
  font-size: 16px;
  color: var(--color-default);
}

.mobile-nav-close{
  border: 0;
  background: rgba(13, 41, 74, 0.06);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  color: var(--color-secondary);
  display: grid;
  place-items: center;
  font-size: 22px;
}

.mobile-nav-body{
  padding: 12px 10px 18px;
  overflow: auto;
}

.mobile-nav-link{
  display: block;
  padding: 12px 12px;
  margin: 6px 6px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  color: var(--color-default);
  transition: background 160ms ease, transform 160ms ease;
}

.mobile-nav-link:hover{
  background: rgba(13, 41, 74, 0.06);
  transform: translateX(2px);
}

.mobile-nav-divider{
  height: 1px;
  background: rgba(13, 41, 74, 0.10);
  margin: 10px 12px;
}

/* Body lock when menu open */
body.mobile-nav-open{
  overflow: hidden;
}

/* Show button on mobile */
@media (max-width: 991px){
  .mobile-nav-toggle{ display: inline-flex; }

  /* Optional: dein Desktop-Navbar ausblenden auf mobil */
  #navbar{ display:none; }
}


/* ================================
   ABOUT – Premium Card (Balanced)
================================ */
.about-premium .row.align-items-stretch > [class*="col-"]{
  display: flex;
}

/* Left image container – keeps height nice and matches card */
.about-premium .about-media{
  width: 100%;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(13, 41, 74, 0.10);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.about-premium .about-media img{
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

/* Right premium card */
.about-premium .about-card{
  width: 100%;
  height: 100%;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(13, 41, 74, 0.10);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  padding: 30px 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  position: relative;
  overflow: hidden;
}

/* subtle accent */
.about-premium .about-card::before{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 220px at 10% 0%, rgba(13,41,74,0.08), transparent 60%);
  pointer-events: none;
}

.about-premium .about-card-head{
  position: relative;
}

.about-premium .about-pill{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(13, 41, 74, 0.06);
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2px;
  margin-bottom: 14px;
}

.about-premium .about-pill-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--color-secondary);
  box-shadow: 0 0 0 4px rgba(13, 41, 74, 0.12);
}

.about-premium .about-card h3{
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 800;
  color: var(--color-default);
}

.about-premium .about-lead{
  margin: 0 0 18px;
  color: #2f2f2f;
  line-height: 1.7;
  font-size: 15.5px;
}

/* checklist with real checks */
.about-premium .about-checklist{
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 10px;
  position: relative;
}

.about-premium .about-checklist li{
  position: relative;
  padding-left: 30px;
  color: #1f2a36;
  line-height: 1.55;
  font-weight: 600;
}

.about-premium .about-checklist li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--color-secondary);
  box-shadow: 0 10px 18px rgba(13,41,74,0.20);
}

.about-premium .about-checklist li::after{
  content: "✓";
  position: absolute;
  left: 4px;
  top: 0px;
  font-size: 13px;
  font-weight: 900;
  color: #fff;
}

/* body text with better spacing */
.about-premium .about-card-body{
  position: relative;
  padding-top: 12px;
  border-top: 1px solid rgba(13, 41, 74, 0.10);
}

.about-premium .about-card-body p{
  margin: 12px 0 0;
  color: #2f2f2f;
  line-height: 1.75;
  font-size: 15px;
}

/* footer CTA */
.about-premium .about-card-footer{
  position: relative;
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.about-premium .about-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--color-secondary);
  border: 2px solid var(--color-secondary);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: 0.25s ease;
  min-width: 220px;
}

.about-premium .about-cta:hover{
  background: #fff;
  color: var(--color-secondary);
}

.about-premium .about-note{
  color: rgba(0,0,0,0.55);
  font-weight: 600;
  font-size: 13px;
}

/* Responsive: image and card stack nicely */
@media (max-width: 991px){
  .about-premium .about-media img{
    min-height: 260px;
  }
  .about-premium .about-card{
    padding: 24px 20px 20px;
  }
  .about-premium .about-cta{
    width: 100%;
    min-width: 0;
  }
}

/* =========================================================
   Service Detail Sections: Alternierende Hintergründe
   Wunsch: Unterhaltsreinigung = grau, danach weiß/grau/weiß/grau
   ========================================================= */

/* Standard: weiß */
.service-detail{
  background: #fff;
}

/* Unterhaltsreinigung bleibt immer grau */
#unterhaltsreinigung.service-detail{
  background: #f6f6f6;
}

/* Ab der NÄCHSTEN service-detail nach Unterhaltsreinigung alternieren:
   1. danach = weiß, 2. danach = grau, 3. danach = weiß, 4. danach = grau ...
*/
#unterhaltsreinigung.service-detail ~ .service-detail:nth-of-type(even){
  background: #f6f6f6;
}


/* ================================
   Sticky Header (ohne Topbar)
================================ */

/* Topbar scrollt normal weg */
#topbar {
  position: relative;
  z-index: 998;
}

/* Header bleibt sticky */
#header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #ffffff;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

/* leichter Schatten beim Scrollen */
#header.sticked {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* ===== HERO SIMPLE (ohne Card) ===== */
.hero.hero--simple {
  width: 100%;
  position: relative;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  padding: 80px 0 40px 0;
  overflow: hidden;
}

/* Overlay: macht das Bild klar & lesbar */
.hero.hero--simple::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0.70) 0%,
    rgba(255,255,255,0.55) 45%,
    rgba(255,255,255,0.35) 100%
  );
  z-index: 1;
}

/* Inhalt über Overlay */
.hero.hero--simple .container {
  position: relative;
  z-index: 2;
}

/* Blaue Überschrift (Farbschema) */
.hero.hero--simple .hero-title {
  color: var(--color-secondary);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
}

/* optional: das Wort/Span stärker betonen */
.hero.hero--simple .hero-title span {
  color: var(--color-secondary);
}

/* Intro Text */
.hero.hero--simple .hero-intro {
  color: #2f2f2f;
  line-height: 1.7;
  max-width: 56ch;
  margin-bottom: 18px;
}

/* Logo rechts gleiche Größe wie Index */
.hero.hero--simple .hero-logo img {
  width: 100%;
  max-width: 440px;
  height: auto;
  display: inline-block;
}

/* Mobile Fix */
@media (max-width: 991px) {
  .hero.hero--simple {
    padding: 65px 0 30px 0;
  }

  .hero.hero--simple .hero-title {
    font-size: 30px;
  }

  .hero.hero--simple .hero-logo img {
    max-width: 320px;
    margin-top: 12px;
  }
}

/* =========================
   HERO – DIENSTLEISTUNGEN (clean, ohne Cube/Card)
   ========================= */

.hero.hero--services {
  width: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0 40px 0;
  overflow: hidden;
}

/* Overlay für gute Lesbarkeit */
.hero.hero--services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0.70) 0%,
    rgba(255,255,255,0.55) 45%,
    rgba(255,255,255,0.35) 100%
  );
  z-index: 1;
}

.hero.hero--services .container {
  position: relative;
  z-index: 2;
}

/* Überschrift */
.services-hero-title {
  color: var(--color-secondary);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 12px 0;
}

.services-hero-title span {
  color: var(--color-secondary);
}

/* Text */
.services-hero-text {
  color: #2f2f2f;
  line-height: 1.7;
  max-width: 58ch;
  margin: 0 0 18px 0;
}

/* Button */
.services-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 34px;
  min-height: 52px;
  border-radius: 999px;

  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.3px;

  color: #fff;
  background: var(--color-secondary);
  border: 2px solid var(--color-secondary);

  box-shadow: 0 10px 25px rgba(12, 39, 75, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.services-hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(12, 39, 75, 0.32);
  color: #fff;
}

/* Logo wie auf Index */
.hero.hero--services .hero-logo img {
  width: 100%;
  max-width: 440px;
  height: auto;
  display: inline-block;
}

/* Mobile: zentriert + genug Abstand (kein Schneiden) */
@media (max-width: 991px) {
  .hero.hero--services {
    padding: 65px 0 30px 0;
  }

  .services-hero-title {
    font-size: 30px;
  }

  .services-hero-text {
    font-size: 15px;
    margin-bottom: 16px;
  }

  .hero.hero--services .hero-logo img {
    max-width: 320px;
    margin-top: 12px;
  }
}

/* =========================
   TOPBAR FIX (sehr kleine Screens)
   iPhone SE / Galaxy S8 etc.
   ========================= */
@media (max-width: 400px) {
  #topbar .container {
    flex-wrap: wrap;
    gap: 6px 10px;
  }

  #topbar .contact-info {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: nowrap; /* wir kürzen lieber, statt 2 Zeilen Chaos */
    min-width: 0;      /* wichtig für ellipsis in flex */
  }

  #topbar .contact-info i {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-width: 0;      /* wichtig */
    white-space: nowrap;
  }

  /* Email kürzen statt überlappen */
  #topbar .contact-info i.bi-envelope a {
    display: inline-block;
    max-width: 170px;  /* feinjustierbar */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 12px;
    line-height: 1.2;
  }

  /* Telefon kompakter */
  #topbar .contact-info i.bi-phone a {
    font-size: 12px;
    line-height: 1.2;
  }
}

/* =========================================================
   COOKIE BANNER – SLIM FOOTER VERSION (FINAL)
   ========================================================= */

/* Overlay komplett deaktiviert */
.cookie-overlay{
  display: none !important;
}

/* Banner = echter Footer-Balken */
.cookie-banner{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;

  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-top: 1px solid rgba(13, 41, 74, 0.12);
  box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.10);

  padding: 14px 28px;

  transform: translateY(120%);
  transition: transform 220ms ease;
}

.cookie-banner.is-open{
  transform: translateY(0);
}

.cookie-banner[hidden]{
  display: block !important;
}

/* INNER GRID – horizontal */
.cookie-banner .cookie-inner{
  max-width: 1400px;          /* viel Platz in die LÄNGE */
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
}

/* TEXT LINKS */
.cookie-banner .cookie-text{
  font-size: 14px;
  line-height: 1.45;
  color: #2f2f2f;
}

.cookie-banner .cookie-text strong{
  color: var(--color-default);
}

.cookie-banner .cookie-text a{
  color: var(--color-secondary);
  font-weight: 700;
  text-decoration: none;
}

.cookie-banner .cookie-text a:hover{
  text-decoration: underline;
}

/* CHECKBOXEN – INLINE */
.cookie-banner .cookie-options{
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}

.cookie-banner .cookie-options label{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #2f2f2f;
}

.cookie-banner .cookie-options input{
  width: 16px;
  height: 16px;
  accent-color: var(--color-secondary);
}

/* BUTTONS RECHTS */
.cookie-banner .cookie-actions{
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.cookie-banner button{
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

/* AKZEPTIEREN */
#cookieAccept{
  background: var(--color-secondary);
  color: #fff;
  border: 2px solid var(--color-secondary);
  box-shadow: 0 8px 20px rgba(13, 41, 74, 0.18);
}

#cookieAccept:hover{
  transform: translateY(-1px);
}

/* ABLEHNEN */
#cookieReject{
  background: #fff;
  color: var(--color-secondary);
  border: 2px solid rgba(13, 41, 74, 0.18);
}

#cookieReject:hover{
  transform: translateY(-1px);
}

/* SAVE (falls genutzt) */
#cookieSave{
  background: rgba(13, 41, 74, 0.06);
  color: var(--color-secondary);
}

/* Close Button komplett raus */
#cookieClose{
  display: none;
}


/* Entfernt das kleine Alpha/Icon links komplett */
.cookie-banner .cookie-logo,
.cookie-banner .cookie-icon,
.cookie-banner .cookie-mark,
.cookie-banner .cookie-brand,
.cookie-banner .cookie-badge,
.cookie-banner .cookie-header-icon {
  display: none !important;
}


/* Button-Basis */
.cookie-banner .cookie-btn{
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

/* Primary (für Accept + Save) */
.cookie-banner .cookie-btn--primary{
  background: var(--color-secondary);
  color: #fff;
  border: 2px solid var(--color-secondary);
  box-shadow: 0 8px 20px rgba(13, 41, 74, 0.18);
}

.cookie-banner .cookie-btn--primary:hover{
  transform: translateY(-1px);
  background: var(--color-secondary);
  color: #fff;
}


.cookie-banner .cookie-privacy-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;

  font-size: 13px;
  font-weight: 800;
  color: var(--color-secondary);
  text-decoration: none;

  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(13, 41, 74, 0.06);
  border: 1px solid rgba(13, 41, 74, 0.14);
}

.cookie-banner .cookie-privacy-link::before{
  content: "ⓘ";
  font-weight: 900;
  opacity: 0.9;
}

.cookie-banner .cookie-privacy-link:hover{
  background: rgba(13, 41, 74, 0.10);
  text-decoration: none;
}

/* ===============================
   COOKIE ACTIONS (Buttons)
   =============================== */

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 14px;
}

/* Buttons Grundstil */
.cookie-btn {
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

/* Primary */
.cookie-btn--primary {
  background: var(--color-secondary);
  color: #fff;
}

.cookie-btn--primary:hover {
  background: #0a2548;
}

/* Outline (Auswahl speichern) */
.cookie-btn--outline {
  background: #fff;
  color: var(--color-secondary);
  border-color: var(--color-secondary);
}

.cookie-btn--outline:hover {
  background: var(--color-secondary);
  color: #fff;
}

/* Ghost */
.cookie-btn--ghost {
  background: #f2f4f7;
  color: #1f2937;
}

.cookie-btn--ghost:hover {
  background: #e6e9ee;
}

/* ===============================
   DATENSCHUTZ-LINK (SEPARAT!)
   =============================== */

.cookie-legal {
  margin-top: 18px;              /* <-- DER WICHTIGE ABSTAND */
  text-align: center;
}

.cookie-legal a {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-secondary);
  text-decoration: underline;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.cookie-legal a:hover {
  opacity: 1;
}

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

@media (max-width: 575px) {
  .cookie-actions {
    gap: 10px;
  }

  .cookie-btn {
    width: 100%;
    max-width: 320px;
  }

  .cookie-legal {
    margin-top: 22px; /* extra Luft auf Mobile */
  }
}


/* =========================
   MOBILE – bleibt flach, nicht kastenartig
   ========================= */
@media (max-width: 768px){
  .cookie-banner{
    padding: 16px;
  }

  .cookie-banner .cookie-inner{
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }

  .cookie-banner .cookie-options,
  .cookie-banner .cookie-actions{
    justify-content: center;
    flex-wrap: wrap;
  }

  .cookie-banner button{
    width: auto;
    min-width: 160px;
  }
}

body.cookie-lock { overflow: hidden; }


/* =========================
   BLOG MODAL – Media Fix (kein Abschneiden)
   ========================= */

.blog-modal__media{
  width: 100%;
  height: auto !important;              /* falls irgendwo eine feste Höhe gesetzt ist */
  min-height: 0 !important;
  padding: 16px;
  background: #f6f7f9;
  border-radius: 14px;
  overflow: hidden;                      /* runde Ecken behalten */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* WICHTIG: globale img Regeln überschreiben (z.B. height:100%) */
.blog-modal__media img{
  width: 100% !important;
  height: auto !important;               /* verhindert Cropping durch height:100% */
  max-width: 100%;
  max-height: 360px;                     /* mehr Platz damit Logos komplett reinpassen */
  object-fit: contain !important;        /* niemals abschneiden */
  object-position: center !important;
  display: block;
}

/* Optional: wenn du viel "Höhe" im Modal willst, kannst du das erhöhen */
@media (min-width: 992px){
  .blog-modal__media img{
    max-height: 420px;
  }
}

/* Mobile */
@media (max-width: 575px){
  .blog-modal__media{
    padding: 12px;
  }
  .blog-modal__media img{
    max-height: 260px;
  }
}

