:root {
  --color-default: #4EC2F0;
  --color-primary: #4EC2F0;
  --color-secondary: #3BA8D0;
  --primary: #4EC2F0;
  --primaryhover: #3BA8D0;
  --secondary: #4EC2F0;
  --secondaryhover: #3BA8D0;
  --section-bg: #e7eef8;
  --success: #28a745;
  --info: #f8f7e7;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #403f34;
}


:root {
  scroll-behavior: smooth;
}


/* ============================================ */

@font-face {
  font-family: 'Source Sans 3';
  src: url('/assets/fonts/SourceSans3-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
}

@font-face {
  font-family: 'Source Sans 3';
  src: url('/assets/fonts/SourceSans3-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
}

@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/Inter-VariableFont_opsz,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/Inter-Italic-VariableFont_opsz,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
}

:root {
  --font-default: "Inter", 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: "Source Sans 3", sans-serif;
  --font-secondary: "Inter", sans-serif;
}

/* Margin-Top Klassen */
.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 5px;
}

.mt-2 {
  margin-top: 10px;
}

.mt-3 {
  margin-top: 15px;
}

.mt-4 {
  margin-top: 20px;
}

.mt-5 {
  margin-top: 25px;
}

.mt-6 {
  margin-top: 30px;
}

.mt-7 {
  margin-top: 35px;
}

.mt-8 {
  margin-top: 40px;
}

.mt-9 {
  margin-top: 45px;
}

.mt-10 {
  margin-top: 50px;
}

.mt-20 {
  margin-top: 100px;
}

.mt-30 {
  margin-top: 150px;
}

/* Margin-Bottom Klassen */
.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 5px;
}

.mb-2 {
  margin-bottom: 10px;
}

.mb-3 {
  margin-bottom: 15px;
}

.mb-4 {
  margin-bottom: 20px;
}

.mb-5 {
  margin-bottom: 25px;
}

.mb-6 {
  margin-bottom: 30px;
}

.mb-7 {
  margin-bottom: 35px;
}

.mb-8 {
  margin-bottom: 40px;
}

.mb-9 {
  margin-bottom: 45px;
}

.mb-10 {
  margin-bottom: 50px;
}

.mb-20 {
  margin-bottom: 100px;
}


body {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  color: #444444;
}


a {
  font-family: "Inter", Arial, sans-serif;
  text-decoration: none;
  color: var(--primary);
}

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

body {
  font-family: "Inter", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5em
}

h1 {
  font-size: 2.4rem;
}


h2 {
  font-size: 38px;
}

h3 {
  font-size: 1.6rem;
}

h4 {
  font-size: 1.4rem;

}

p {
  font-size: 18px;
  font-family: 'Inter', Arial, sans-serif !important;
}

ul {
  list-style-type: none;
  padding: 0;
}


@media (max-width: 575.98px) {
  h1 {
    font-size: 2.2rem
  }
}

@media (max-width: 350px) {
  * {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
}


.btn-primary-nav {
  background: linear-gradient(to bottom left, var(--primaryhover) 0%, var(--primary) 70%);
  color: var(--primary-inverse);
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
  border-radius: 50px;
  border: none;
  outline: none;
  box-shadow: none;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  padding: 8px 20px;
  color: white;
  text-align: center;
  box-shadow: rgba(0, 0, 0, .2) 0 3px 5px -1px, rgba(0, 0, 0, .14) 0 6px 10px 0, rgba(0, 0, 0, .12) 0 1px 18px 0;
}

.btn-primary-nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top right, var(--primaryhover) 0%, var(--primary) 70%);
  z-index: -1;
  transition: opacity 0.5s ease;
  opacity: 0;
  border-radius: inherit;
  color: white;
}

.btn-primary-nav:hover::before,
.btn-primary-nav.hover::before {
  opacity: 1;
}

.btn-primary-nav:focus,
.btn-primary-nav:active,
.btn-primary-nav:hover {
  border: none;
  outline: none;
  box-shadow: none;
}

.btn-primary-nav:hover:not(.bg-transparent),
.btn-primary-nav.hover:not(.bg-transparent) {
  background-color: var(--primaryhover);
  color: white;
}

@media (max-width: 991px) {

  .btn-primary-nav {
    margin: 12px;
    padding: 8px 16px;
    font-size: 14px;
    white-space: nowrap;
    width: auto;
    display: inline-block;
  }

  .navbar-nav .btn-primary-nav {
    width: auto;
    max-width: 100%;
    margin-left: 12px;
    margin-right: 12px;
  }

  .navbar-nav .nav-item:last-child {
    width: auto;
  }

  .navbar-nav .nav-item:last-child .btn-primary-nav {
    display: inline-block;
    width: auto;
  }
}

@media (max-width: 576px) {
  .btn-primary-nav {
    padding: 6px 12px;
    font-size: 13px;
  }

  .navbar-nav .btn-primary-nav {
    margin-left: 8px;
    margin-right: 8px;
  }
}

.navbar-toggler {
  order: 1;
}

.logo {
  order: 0;
}

.navbar-collapse {
  order: 2;
}

.navbar-toggle-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  padding: 10px;
}

.navbar-toggle-box i {
  line-height: 0;
}

.navbar-default {
  background-color: rgba(255, 255, 255, 0.99);
  transition: all 0.5s ease-in-out;
  padding-top: 14px;
  padding-bottom: 14px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 9999;
}

.navbar .logo {
  max-width: 200px;
  padding-top: 6px;
  padding-bottom: 6px;
}

.navbar-reduce .logo {
  max-width: 180px;
  padding-top: 12px;
  padding-bottom: 12px;
}

@media (max-width: 768px) {

  .navbar .logo {
    padding-left: 10px;
  }

  .navbar .logo {
    max-width: 160px;
  }

  .navbar-reduce .logo {
    max-width: 150px;
  }
}

.navbar-default .nav-search {
  color: #1D1D1B;
  font-size: 1.5rem;
}



.navbar-default.navbar-reduce {
  background-color: rgba(255, 255, 255, 0.99);
  top: 10px;
  right: 20px;
  left: 20px;
  border-radius: 40px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  padding-top: 4px;
  padding-bottom: 4px;
  transition: all 0.5s ease-in-out;
}


.navbar-default.navbar-trans,
.navbar-default.navbar-reduce {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.navbar-default.navbar-trans .nav-item,
.navbar-default.navbar-reduce .nav-item {
  position: relative;

  padding-bottom: 8px;
  margin-left: 0;
  margin-right: 20px;

}

@media (min-width: 768px) {

  .navbar-default.navbar-trans .nav-item,
  .navbar-default.navbar-reduce .nav-item {
    margin-left: 15px;
    padding-bottom: 0;
  }
}

.navbar-default.navbar-trans .nav-link,
.navbar-default.navbar-reduce .nav-link {
  font-size: 1.1rem;
  color: #1D1D1B;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: all 0.1s ease-in-out;
  position: relative;
}

@media (min-width: 992px) {

  .navbar-default.navbar-trans .nav-link:before,
  .navbar-default.navbar-reduce .nav-link:before {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 2px;
    z-index: 0;
    background-color: var(--primaryhover);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.2s ease-out, opacity 0.2s ease-out 0.3s;
  }
}


.navbar-default.navbar-trans .nav-link:hover,
.navbar-default.navbar-reduce .nav-link:hover {
  color: #1D1D1B;
}

.navbar-default.navbar-trans .nav-link:hover:before,
.navbar-default.navbar-reduce .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left;
}

.navbar-default.navbar-trans .show>.nav-link:before,
.navbar-default.navbar-trans .active>.nav-link:before,
.navbar-default.navbar-trans .nav-link.show:before,
.navbar-default.navbar-trans .nav-link.active:before,
.navbar-default.navbar-reduce .show>.nav-link:before,
.navbar-default.navbar-reduce .active>.nav-link:before,
.navbar-default.navbar-reduce .nav-link.show:before,
.navbar-default.navbar-reduce .nav-link.active:before {
  transform: scaleX(1);
}

.navbar-default.navbar-trans .nav-link:before {
  background-color: var(--primaryhover);
}

.navbar-default.navbar-trans .nav-link:hover {
  color: #1D1D1B;
}

.navbar-default.navbar-trans .show>.nav-link,
.navbar-default.navbar-trans .active>.nav-link,
.navbar-default.navbar-trans .nav-link.show,
.navbar-default.navbar-trans .nav-link.active {
  color: var(--primary);
}

.navbar-default.navbar-default.navbar-reduce .nav-link:before {
  background-color: var(--primaryhover);
}

.navbar-default.navbar-default.navbar-reduce .nav-link:hover {
  color: #1D1D1B;
}

.navbar-default.navbar-default.navbar-reduce .show>.nav-link,
.navbar-default.navbar-default.navbar-reduce .active>.nav-link,
.navbar-default.navbar-default.navbar-reduce .nav-link.show,
.navbar-default.navbar-default.navbar-reduce .nav-link.active {
  color: var(--primary);
}

.navbar-default.navbar-reduce {
  transition: all 0.5s ease-in-out;
  padding-top: 4px;
  padding-bottom: 4px;
}

.navbar-default.navbar-reduce .nav-link {
  color: #1D1D1B;
}

.navbar-default.navbar-reduce .nav-link:before {
  background-color: var(--section-bg);
}

.navbar-default.navbar-reduce .nav-link:hover {
  color: #1D1D1B;
}

.navbar-default.navbar-reduce .show>.nav-link,
.navbar-default.navbar-reduce .active>.nav-link,
.navbar-default.navbar-reduce .nav-link.show,
.navbar-default.navbar-reduce .nav-link.active {
  color: #1D1D1B;
}

.navbar-default.navbar-reduce .navbar-brand {
  color: #1D1D1B;
}


.navbar-default .nav-link.dropdown-toggle::after,
.navbar-default.navbar-trans .nav-link.dropdown-toggle::after,
.navbar-default.navbar-reduce .nav-link.dropdown-toggle::after {
  display: inline-block !important;
  margin-left: 0.5em !important;
  vertical-align: 0.255em !important;
  content: "" !important;
  border-top: 0.3em solid currentColor !important;
  border-right: 0.3em solid transparent !important;
  border-bottom: 0 !important;
  border-left: 0.3em solid transparent !important;
  transition: transform 0.3s ease !important;
  opacity: 1 !important;
  visibility: visible !important;
}

@media (hover: hover) and (pointer: fine) {
  .navbar-default .dropdown-toggle[aria-expanded="true"]::after {
    transform: none !important;
  }
}

@media (max-width: 991px) {
  .navbar-default .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg) !important;
  }
}

.navbar-default .dropdown .dropdown-menu {
  border: 1px solid rgba(29, 29, 27, 0.08);
  background: rgba(255, 255, 255, 0.99);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transform: translate3d(-50%, 40px, 0px);
  opacity: 0;
  filter: alpha(opacity=0);
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0;
  border-radius: 12px;
  padding: 6px 0;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1), 0 4px 20px rgba(0, 0, 0, 0.06);
  left: 50%;
  right: auto;
  min-width: 240px;
}

@media (min-width: 768px) {
  .navbar-default .dropdown .dropdown-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate3d(-50%, 40px, 0px);
  }
}

.navbar-default .dropdown .dropdown-menu .dropdown-item {
  padding: 11px 24px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
  font-size: 15px;
  color: #1D1D1B;
  font-family: 'Inter', Arial, sans-serif;
  border-radius: 0;
  position: relative;
  margin: 2px 6px;
  border-radius: 8px;
}

.navbar-default .dropdown .dropdown-menu .dropdown-item:first-child {
  margin-top: 0;
}

.navbar-default .dropdown .dropdown-menu .dropdown-item:last-child {
  margin-bottom: 0;
}

.navbar-default .dropdown .dropdown-menu .dropdown-item:hover {
  background: linear-gradient(135deg, rgba(78, 194, 240, 0.08) 0%, rgba(59, 168, 208, 0.06) 100%);
  color: #4EC2F0;
}

.navbar-default .dropdown .dropdown-menu .dropdown-item.active {
  background: linear-gradient(135deg, rgba(78, 194, 240, 0.12) 0%, rgba(59, 168, 208, 0.1) 100%);
  color: #4EC2F0;
}

.navbar-default .dropdown .dropdown-menu .dropdown-divider {
  margin: 8px 12px;
  border-top: 1px solid rgba(29, 29, 27, 0.08);
  opacity: 0.6;
}

.navbar-default .dropdown:hover .dropdown-menu {
  transform: translate3d(-50%, 0px, 0px);
  visibility: visible;
  opacity: 1;
  filter: alpha(opacity=1);
}

@media (min-width: 768px) {
  .navbar-default .dropdown:hover .dropdown-menu {
    transform: translate3d(-50%, 0px, 0px);
  }
}

@media (hover: hover) and (pointer: fine) {
  .navbar-default .nav-link.dropdown-toggle {
    cursor: default;
  }

  .navbar-default .nav-link.dropdown-toggle:focus {
    outline: none !important;
    box-shadow: none !important;
    color: inherit !important;
    background: transparent !important;
  }

  .navbar-default .nav-link.dropdown-toggle:active {
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
    color: inherit !important;
  }

  .navbar-default .nav-link.dropdown-toggle:focus-visible {
    outline: none !important;
  }

  .navbar-default .nav-link.dropdown-toggle[aria-expanded="true"] {
    color: inherit !important;
    background: transparent !important;
  }

  .navbar-default.navbar-trans .nav-link.dropdown-toggle:focus,
  .navbar-default.navbar-trans .nav-link.dropdown-toggle:active,
  .navbar-default.navbar-trans .nav-link.dropdown-toggle[aria-expanded="true"] {
    color: #1D1D1B !important;
  }

  .navbar-default.navbar-reduce .nav-link.dropdown-toggle:focus,
  .navbar-default.navbar-reduce .nav-link.dropdown-toggle:active,
  .navbar-default.navbar-reduce .nav-link.dropdown-toggle[aria-expanded="true"] {
    color: #1D1D1B !important;
  }

  .navbar-default .dropdown .dropdown-menu {
    pointer-events: auto;
  }

  .navbar-default .dropdown .dropdown-menu .dropdown-item {
    pointer-events: auto;
    cursor: pointer;
  }
}

@media (max-width: 991px) {

  .navbar-nav .nav-item:first-child {
    margin-top: 16px;
  }

  .navbar-default.navbar-trans .nav-link,
  .navbar-default.navbar-reduce .nav-link {
    margin-left: 15px;
  }

  .navbar .logo {
    margin-left: 15px;
    padding-left: 0px;
  }

  .navbar-default.navbar-trans .nav-link:hover,
  .navbar-default.navbar-reduce .nav-link:hover {
    color: inherit;
    transform: none;
  }

  .navbar-default.navbar-trans .nav-link::after,
  .navbar-default.navbar-reduce .nav-link::after {
    display: none;
  }

  .navbar-default .nav-link.dropdown-toggle::after,
  .navbar-default.navbar-trans .nav-link.dropdown-toggle::after,
  .navbar-default.navbar-reduce .nav-link.dropdown-toggle::after {
    display: inline-block !important;
    margin-left: 0.5em !important;
    vertical-align: 0.255em !important;
    content: "" !important;
    border-top: 0.3em solid currentColor !important;
    border-right: 0.3em solid transparent !important;
    border-bottom: 0 !important;
    border-left: 0.3em solid transparent !important;
    transition: transform 0.3s ease !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .navbar-default .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg) !important;
  }

  .navbar-default.navbar-trans .nav-item.dropdown .nav-link.dropdown-toggle[aria-expanded="true"]::before,
  .navbar-default.navbar-reduce .nav-item.dropdown .nav-link.dropdown-toggle[aria-expanded="true"]::before {
    transform: translateY(-25%) rotate(-180deg);
    transition: transform 0.3s ease-in-out;
  }

  .navbar-default .navbar-toggler span {
    background-color: var(--color-primary);
  }

  .navbar-default.navbar-reduce .navbar-toggler span,
  .navbar-default.navbar-trans.show .navbar-toggler span {
    background-color: var(--color-primary);
  }

  .navbar-default .dropdown .dropdown-menu {
    position: static !important;
    float: none !important;
    width: 100% !important;
    margin-top: 0 !important;
    background-color: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(29, 29, 27, 0.1) !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08) !important;
    transform: none !important;
    left: auto !important;
    right: auto !important;
    min-width: auto !important;
    padding: 8px 0 !important;
    display: none !important;
  }

  .navbar-default .dropdown.show .dropdown-menu,
  .navbar-default .dropdown .dropdown-menu.show {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  .navbar-default .dropdown .dropdown-menu .dropdown-item {
    padding: 12px 20px !important;
    margin: 2px 8px !important;
    font-size: 15px !important;
  }

  .navbar-nav .dropdown-menu {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08) !important;
  }
}

.navbar-toggler {
  position: relative;
  background: none;
  border: none;
  box-shadow: none;
  max-width: 200px
}

.navbar-toggler:focus,
.navbar-toggler:active {
  outline: 0;
  background: none;
  border: none;
  box-shadow: none;
}

.navbar-toggler span {
  display: block;
  background-color: var(--primary);
  height: 3px;
  width: 25px;
  margin-top: 4px;
  margin-bottom: 4px;
  transform: rotate(0deg);
  left: 0;
  opacity: 1;
}

.navbar-toggler span:nth-child(1),
.navbar-toggler span:nth-child(3) {
  transition: transform 0.35s ease-in-out;
}

.navbar-toggler:not(.collapsed) span:nth-child(1) {
  position: absolute;
  left: 12px;
  top: 8px;
  transform: rotate(135deg);
  opacity: 0.9;
}

.navbar-toggler:not(.collapsed) span:nth-child(2) {
  height: 12px;
  visibility: hidden;
  background-color: transparent;
}

.navbar-toggler:not(.collapsed) span:nth-child(3) {
  position: absolute;
  left: 12px;
  top: 8px;
  transform: rotate(-135deg);
  opacity: 0.9;
}

@media (max-width: 1200px) and (min-width: 992px) {

  #header .nav-item:first-child {
    display: none;
  }

}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  color: var(--color-default);
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

body.page-leistungen {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

body.page-leistungen main section {
  padding: 60px 0;
}

body.page-leistungen main section:first-of-type {
  padding-top: 80px;
}

body.page-leistungen .faq-premium {
  background: #f8f9fa;
}

.service-gallery-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.service-gallery-image {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-gallery-image:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16), 0 6px 16px rgba(0, 0, 0, 0.12);
}

.service-gallery-image img {
  width: 100%;
  height: auto;
  display: block;
}

.service-gallery-image-single {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-gallery-image-single:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16), 0 6px 16px rgba(0, 0, 0, 0.12);
}

.service-gallery-image-single img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .service-gallery-item {
    gap: 12px;
  }

  .service-gallery-image,
  .service-gallery-image-single {
    border-radius: 12px;
  }
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: 0.3s;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-weight: 600;
}

h2,
h3,
h4,
h5,
h6 {
  color: #1D1D1B;
}

body,
p,
li,
span {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
}

p,
li {
  color: #403f34
}



.btn-primary {
  background: linear-gradient(to bottom left, var(--primaryhover) 0%, var(--primary) 70%);
  color: var(--primary-inverse);
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
  border-radius: 6px;
  border: none;
  outline: none;
  box-shadow: none;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 18px;
  display: inline-block;
  padding: 12px 30px;
  color: white;
  box-shadow: rgba(0, 0, 0, .2) 0 3px 5px -1px, rgba(0, 0, 0, .14) 0 6px 10px 0, rgba(0, 0, 0, .12) 0 1px 18px 0;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top right, var(--primaryhover) 0%, var(--primary) 70%);
  z-index: -1;
  transition: opacity 0.5s ease;
  opacity: 0;
  border-radius: inherit;
  color: white;
}

.btn-primary:hover::before,
.btn-primary.hover::before {
  opacity: 1;
}

.btn-primary:focus,
.btn-primary:active,
.btn-primary:hover {
  border: none;
  outline: none;
  box-shadow: none;
}

.btn-primary:hover:not(.bg-transparent),
.btn-primary.hover:not(.bg-transparent) {
  background-color: var(--primaryhover);
  color: white;
}

/* --------------------------------------------------------------
  OverlayJotform
-------------------------------------------------------------- */
.section-bg-compact {
  padding: 60px 0;
}

@media (max-width: 768px) {
  .section-bg-compact {
    padding: 40px 0;
  }
}

.tp-embed {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.10) 0 10px 30px -12px, rgba(0, 0, 0, 0.08) 0 6px 18px -10px;
}

.tp-embed--jotform {
  min-height: 380px;
  background: transparent;
  box-shadow: none;
}

.tp-embed__content iframe {
  width: 100%;
  min-height: 540px;
  border: none;
  display: block;
}

.tp-embed__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.tp-embed__card {
  max-width: 760px;
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(29, 29, 27, 0.10);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
}

.tp-embed__title {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 10px 0;
}

.tp-embed__text {
  margin: 0 auto;
  max-width: 680px;
  font-size: 16px;
  line-height: 1.55;
}

.tp-embed__actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.tp-embed__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
}


@media (max-width: 576px) {
  .tp-embed__overlay {
    padding: 14px;
  }

  .tp-embed__card {
    padding: 18px 16px;
    border-radius: 14px;
  }

  .tp-embed__title {
    font-size: 20px;
    margin: 0 0 8px 0;
  }

  .tp-embed__text {
    font-size: 14px;
    line-height: 1.5;
  }

  .tp-embed__actions {
    margin-top: 14px;
    gap: 10px;
  }

  .tp-embed__actions .btn-primary {
    font-size: 16px;
    padding: 10px 18px;
    border-radius: 6px;
  }
}

.tp-embed__btn--secondary {
  padding: 12px 24px;
  border-radius: 6px;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 18px;
  background: transparent;
  transition: all 0.25s ease;
}

.tp-embed__btn--secondary:hover {
  background: rgba(78, 194, 240, 0.10);
  color: var(--primaryhover);
  border-color: var(--primaryhover);
}

.tp-embed__btn-link {
  background: transparent;
  border: none;
  padding: 6px 10px;
  font-family: var(--font-secondary);
  font-weight: 700;
  color: var(--primary);
  text-decoration: underline;
}

.tp-embed__btn-link:hover {
  color: var(--primaryhover);
}




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

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

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


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

.section-header p {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 32px;
  }

  section {
    overflow: hidden;
    padding: 80px 0;
  }
}



/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  position: relative;
  padding: 200px 0 140px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(/assets/img/hero-bg.jpg);
  overflow: hidden;
  z-index: 0;
}

.breadcrumbs:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(78, 194, 240, 0.15) 0%, rgba(27, 47, 69, 0.45) 100%);
  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
  z-index: 1;
}

.breadcrumbs-wave {
  position: relative;
  margin-top: -100px;
  z-index: 2;
  overflow: hidden;
}

.breadcrumbs-wave svg {
  display: block;
  width: 100%;
  height: 100px;
}



.breadcrumbs h2 {
  position: relative;
  z-index: 2;
  font-size: 52px;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Source Sans 3', Arial, sans-serif;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 2px 4px rgba(0, 0, 0, 0.2);
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.25));
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  line-height: 1.2;
  text-align: center;
  width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.breadcrumbs ol {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  gap: 12px;
  justify-content: center;
  align-items: center;
  font-family: 'Inter', Arial, sans-serif;
  width: 100%;
  text-align: center;
}

.breadcrumbs ol li {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 8px 20px;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.breadcrumbs ol li::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.breadcrumbs ol li:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2), 0 2px 6px rgba(0, 0, 0, 0.15);
}

.breadcrumbs ol li:hover::before {
  left: 100%;
}

.breadcrumbs ol li+li::before {
  content: '›';
  display: inline-block;
  margin-right: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  font-weight: 300;
  position: static;
  background: none;
  width: auto;
  height: auto;
  transition: none;
}

.breadcrumbs ol li:first-child::before {
  display: none;
}

.breadcrumbs ol a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.breadcrumbs ol a:hover {
  color: #ffffff;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .breadcrumbs {
    padding: 160px 0 100px 0;
  }

  .breadcrumbs h2 {
    font-size: 32px;
    letter-spacing: -0.3px;
    margin-bottom: 16px;
  }

  .breadcrumbs ol {
    gap: 8px;
    font-size: 14px;
    justify-content: center;
    text-align: center;
  }

  .breadcrumbs ol li {
    padding: 6px 16px;
    font-size: 13px;
  }

  .breadcrumbs ol li+li::before {
    margin-right: 8px;
    font-size: 16px;
  }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 24px 0;
}

@media (max-width: 1200px) {
  .header {
    padding: 12px 0;
  }
}

.header.sticked {
  background: rgba(27, 47, 69, 0.9);
  padding: 12px 0;
}

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

.header .logo h1 {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-secondary);
  margin: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  background: url("../img/hero-bg.jpg") top center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding: 140px 0 200px;
  z-index: 3;
  overflow: hidden;
  display: flex;
  align-items: center;
}


@supports (-webkit-touch-callout: none) {
  .hero {
    background-attachment: scroll;
  }
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(29, 29, 27, 0.75) 0%, rgba(29, 29, 27, 0.55) 50%, rgba(29, 29, 27, 0.65) 100%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 1;
}

.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(29, 29, 27, 0.4) 100%);
  z-index: 1;
}


.hero .hero-waves {
  display: block;
  width: 100%;
  height: 110px;
  position: absolute;
  bottom: 0;
  z-index: 2;
}

.hero .wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
  fill: white;
  opacity: 0.6;
}

.hero .wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
  fill: white;
  opacity: 0.4;
}

.hero .wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
  fill: white;
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}



.wipe-effect {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.wipe-effect::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.8) 50%,
      transparent 100%);
  width: 150%;
  transform: translateX(-100%) skew(-20deg);
  animation: wipeStreak 4s ease-in-out forwards;
}

@keyframes wipeStreak {
  0% {
    transform: translateX(-100%) skew(-20deg);
  }

  100% {
    transform: translateX(100%) skew(-20deg);
  }
}

.hero .container {
  position: relative;
  z-index: 3;
  max-width: 1200px;
}

.hero .row {
  position: relative;
}

.hero h1::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(78, 194, 240, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
  filter: blur(40px);
}

.hero p {
  color: white;
}



@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-block;
  padding: 10px 24px;
  background: linear-gradient(135deg, rgba(78, 194, 240, 0.15) 0%, rgba(59, 168, 208, 0.15) 100%);
  border: 1.5px solid rgba(78, 194, 240, 0.3);
  border-radius: 50px;
  animation: fadeInUp 0.8s ease-out 0s forwards;
  opacity: 0;
  color: #4EC2F0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(78, 194, 240, 0.2);
  font-family: 'Source Sans 3', Arial, sans-serif;
}

.hero h1 {
  margin: 0;
  margin-top: 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  font-family: 'Source Sans 3', Arial, sans-serif;
  letter-spacing: -0.5px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4), 0 2px 10px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
  animation: heroTitleFadeIn 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.2s both;
}

@keyframes heroTitleFadeIn {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero blockquote {
  color: rgba(255, 255, 255, 0.95);
  padding-left: 30px;
  font-size: 20px;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
  opacity: 0;
  line-height: 1.7;
  border-left: 4px solid #4EC2F0;
  margin: 40px 0 50px;
  max-width: 700px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero .btn-get-started {
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: var(--color-primary);
}

.hero .btn-get-started:hover {
  background: rgba(86, 184, 230, 0.8);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--color-primary);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: #fff;
}

.hero .btn-watch-video:hover i {
  color: #4EC2F0;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 50px;
  animation: fadeInUp 0.8s ease-out 0.6s forwards;
  opacity: 0;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #4EC2F0 0%, #3BA8D0 100%);
  color: #ffffff;
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(78, 194, 240, 0.4), 0 4px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  border: none;
}

.btn-hero-primary::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: -100%;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
  border-radius: 12px;
}

.btn-hero-primary:hover::before {
  left: 100%;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(78, 194, 240, 0.5), 0 6px 15px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #5DC8F5 0%, #4BB3DD 100%);
  color: #ffffff !important;
}

.btn-hero-primary:active {
  transform: translateY(-1px);
  color: #ffffff !important;
}

.btn-hero-primary:focus {
  color: #ffffff !important;
}

.btn-hero-primary .btn-icon {
  font-size: 20px;
  line-height: 1;
  color: #ffffff !important;
}

.btn-hero-primary .btn-text {
  position: relative;
  z-index: 1;
  color: #ffffff !important;
}

.btn-hero-primary:hover .btn-icon,
.btn-hero-primary:hover .btn-text,
.btn-hero-primary:active .btn-icon,
.btn-hero-primary:active .btn-text,
.btn-hero-primary:focus .btn-icon,
.btn-hero-primary:focus .btn-text {
  color: #ffffff !important;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-hero-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 0;
  background: rgba(255, 255, 255, 0.1);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 12px;
}

.btn-hero-secondary:hover::before {
  width: 100%;
}

.btn-hero-secondary:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.btn-hero-secondary:active {
  transform: translateY(-1px);
}

.btn-hero-secondary .btn-icon {
  font-size: 20px;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.btn-hero-secondary .btn-text {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 42px;
    line-height: 1.2;
  }

  .hero blockquote {
    font-size: 18px;
    padding-left: 20px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
    padding: 16px 30px;
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 90vh;
    padding: 120px 0 150px;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  .hero-badge {
    font-size: 11px;
    padding: 7px 16px;
    margin-bottom: 20px;
  }

  .hero-badge .badge-logo {
    width: 14px;
    height: 14px;
  }

  .hero .hero-waves {
    height: 80px;
  }
}

@supports (-webkit-touch-callout: none) {
  .hero .hero-waves {
    border: none;
    outline: none;
    box-shadow: none;
    margin-bottom: -1px;
    padding: 0;
    line-height: 0;
  }

  .hero .hero-waves svg {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    vertical-align: bottom;
    overflow: visible;
  }

  .hero .wave1 use,
  .hero .wave2 use,
  .hero .wave3 use {
    stroke: none !important;
    stroke-width: 0 !important;
    outline: none;
    border: none;
  }

  .hero .wave1,
  .hero .wave2,
  .hero .wave3 {
    stroke: none !important;
    stroke-width: 0 !important;
    outline: none;
  }

  .hero .wave1 path,
  .hero .wave2 path,
  .hero .wave3 path {
    stroke: none !important;
    stroke-width: 0 !important;
  }

  #wave-path {
    stroke: none !important;
    stroke-width: 0 !important;
  }

  .services-modern {
    margin-top: 0;
  }
}



/*--------------------------------------------------------------
# Modern Services Section
--------------------------------------------------------------*/
.services-modern {
  padding: 120px 0 0;
  background: #ffffff;
  position: relative;
}

.services-header {
  margin-bottom: 80px;
  padding: 0 20px;
}

.services-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: linear-gradient(135deg, rgba(78, 194, 240, 0.1) 0%, rgba(59, 168, 208, 0.1) 100%);
  border: 1.5px solid rgba(78, 194, 240, 0.3);
  border-radius: 50px;
  color: #4EC2F0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-family: 'Source Sans 3', Arial, sans-serif;
}

.badge-logo {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.2));
}

.services-header h2 {
  font-size: 52px;
  font-weight: 700;
  color: #1D1D1B;
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 1.2;
  font-family: 'Source Sans 3', Arial, sans-serif;
}

.services-subtitle {
  font-size: 20px;
  color: #666666;
  line-height: 1.6;
  max-width: 700px;
  margin: 15px auto 0;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
}

.services-leistungen {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 15px;
  color: #666666;
  line-height: 1.6;
  margin-top: 10px;
  margin-bottom: 0;
  font-weight: 400;
  opacity: 0.85;
}

.services-modern .service-item {
  margin-bottom: 0;
  opacity: 1;
  visibility: visible;
}

.services-modern .service-image-wrapper {
  padding: 0;
  overflow: hidden;
}

.services-modern .service-image {
  width: 100%;
  height: 100%;
  min-height: 500px;
  overflow: hidden;
  position: relative;
}

.services-modern .service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: none;
  border-radius: 0;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
  visibility: visible;
}

.services-modern .service-item:hover .service-image img {
  transform: scale(1.05);
}

.service-logo-badge {
  position: absolute;
  bottom: 25px;
  right: 25px;
  width: auto;
  height: auto;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  pointer-events: none;
}

.service-logo-badge .logo-icon {
  width: 70px;
  height: 70px;
  max-width: 70px;
  max-height: 70px;
  min-width: 70px;
  min-height: 70px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  display: block;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3)) drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
  transition: transform 0.4s ease, filter 0.4s ease;
}

.service-item:hover .service-logo-badge {
  transform: scale(1.05);
}

.service-item:hover .service-logo-badge .logo-icon {
  transform: scale(1.05);
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35)) drop-shadow(0 1px 3px rgba(0, 0, 0, 0.25));
}

.service-item .service-image-wrapper.order-lg-2 .service-logo-badge {
  right: 30px;
  left: auto;
}

.services-modern .service-content-wrapper {
  display: flex;
  align-items: center;
  padding: 0;
  opacity: 1;
  visibility: visible;
  min-height: 500px;
}

.services-modern .service-content {
  background: linear-gradient(135deg, #4EC2F0 0%, #3BA8D0 100%);
  color: #ffffff;
  padding: 90px 70px;
  height: 100%;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  will-change: auto;
}

.services-modern .service-content::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.services-modern .service-content h3 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #ffffff;
  line-height: 1.2;
  font-family: 'Source Sans 3', Arial, sans-serif;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  opacity: 1;
  visibility: visible;
}

.services-modern .service-content p {
  font-size: 19px;
  line-height: 1.85;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.98);
  font-family: 'Inter', Arial, sans-serif;
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
  opacity: 1;
  visibility: visible;
}

.service-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

.btn-service-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 35px;
  background: #ffffff;
  color: #4EC2F0;
  font-weight: 600;
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-size: 16px;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25), 0 4px 10px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  border: none;
}

.btn-service-primary::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: -100%;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(78, 194, 240, 0.1), transparent);
  transition: left 0.5s;
  border-radius: 12px;
}

.btn-service-primary:hover::before {
  left: 100%;
}

.btn-service-primary:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35), 0 6px 15px rgba(0, 0, 0, 0.2);
  color: #4EC2F0;
}

.btn-service-primary:active {
  transform: translateY(-1px);
}

.btn-service-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 35px;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-weight: 600;
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-size: 16px;
  text-decoration: none;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-service-link::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 0;
  background: rgba(255, 255, 255, 0.1);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 12px;
}

.btn-service-link:hover::before {
  width: 100%;
}

.btn-service-link:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.btn-service-link:active {
  transform: translateY(-1px);
}

.btn-service-link .btn-text,
.btn-service-primary .btn-text {
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .services-header h2 {
    font-size: 42px;
  }

  .services-subtitle {
    font-size: 18px;
  }

  .services-modern .service-content {
    padding: 70px 50px;
    min-height: auto;
  }

  .services-modern .service-content h3 {
    font-size: 32px;
  }

  .services-modern .service-content p {
    font-size: 17px;
  }

  .services-modern .service-image {
    min-height: 400px;
  }

  .service-logo-badge {
    bottom: 20px;
    right: 20px;
  }

  .service-logo-badge .logo-icon {
    width: 60px;
    height: 60px;
    max-width: 60px;
    max-height: 60px;
    min-width: 60px;
    min-height: 60px;
  }

  .service-item .service-image-wrapper.order-lg-2 .service-logo-badge {
    right: 20px;
    left: auto;
  }
}

@media (max-width: 991px) {
  .service-item {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
  }

  .service-item .row {
    display: flex !important;
    flex-direction: column !important;
    margin: 0 !important;
    gap: 0 !important;
  }

  .service-item .service-image-wrapper,
  .service-item .service-content-wrapper {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
  }

  .service-item .service-content-wrapper {
    display: block !important;
    align-items: stretch !important;
    min-height: auto !important;
  }

  .service-item .service-image-wrapper {
    flex-shrink: 0;
    height: 350px;
    overflow: hidden;
  }

  .service-item .service-image {
    width: 100% !important;
    height: 350px !important;
    min-height: 350px !important;
    max-height: 350px !important;
    display: block !important;
    position: relative !important;
    overflow: hidden !important;
  }

  .service-item .service-image img {
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    max-height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    object-position: center !important;
  }

  .service-item .service-logo-badge {
    position: absolute !important;
    bottom: 15px !important;
    right: 15px !important;
    z-index: 10 !important;
  }

  .service-item .service-logo-badge .logo-icon {
    width: 50px !important;
    height: 50px !important;
    max-width: 50px !important;
    max-height: 50px !important;
    min-width: 50px !important;
    min-height: 50px !important;
  }

  .service-item .service-image-wrapper.order-1,
  .service-item .service-content-wrapper.order-1 {
    order: 1 !important;
  }

  .service-item .service-image-wrapper.order-2,
  .service-item .service-content-wrapper.order-2 {
    order: 2 !important;
  }
}

@media (max-width: 768px) {
  .services-modern {
    padding: 80px 0 0;
  }

  .services-header {
    margin-bottom: 60px;
  }

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

  .services-subtitle {
    font-size: 16px;
  }

  .services-leistungen {
    font-size: 14px;
    margin-top: 8px;
    margin-bottom: 0;
  }

  body.page-leistungen main section {
    padding: 40px 0;
  }

  body.page-leistungen main section:first-of-type {
    padding-top: 60px;
  }

  .services-badge,
  .vorteile-badge,
  .cta-badge {
    font-size: 11px !important;
    padding: 7px 16px !important;
    gap: 6px !important;
    margin-bottom: 20px !important;
  }

  .badge-logo {
    width: 14px !important;
    height: 14px !important;
  }

  .services-modern .service-content {
    padding: 60px 40px;
  }

  .services-modern .service-content h3 {
    font-size: 32px;
  }

  .services-modern .service-content-wrapper {
    display: block !important;
    align-items: stretch !important;
    min-height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .services-modern .service-image-wrapper {
    height: 350px !important;
    overflow: hidden !important;
  }

  .services-modern .service-image {
    width: 100% !important;
    height: 350px !important;
    min-height: 350px !important;
    max-height: 350px !important;
    overflow: hidden !important;
  }

  .services-modern .service-image img {
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    max-height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    object-position: center !important;
  }

  .service-logo-badge {
    bottom: 15px;
    right: 15px;
  }

  .service-logo-badge .logo-icon {
    width: 50px;
    height: 50px;
    max-width: 50px;
    max-height: 50px;
    min-width: 50px;
    min-height: 50px;
  }

  .service-item .service-image-wrapper.order-lg-2 .service-logo-badge {
    right: 15px;
    left: auto;
  }

  .service-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn-service-primary,
  .btn-service-link {
    width: 100%;
    padding: 14px 30px;
    font-size: 15px;
  }
}

.services-cta {
  text-align: center;
  padding: 80px 20px;

}

.services-cta-text {
  font-size: 32px;
  font-weight: 700;
  color: #1D1D1B;
  margin-bottom: 15px;
  font-family: 'Source Sans 3', Arial, sans-serif;
}

.services-cta-subtitle {
  font-size: 18px;
  color: #666666;
  margin-bottom: 40px;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
}

.services-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-services-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: linear-gradient(135deg, #4EC2F0 0%, #3BA8D0 100%);
  color: #ffffff;
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(78, 194, 240, 0.4), 0 4px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  border: none;
}

.btn-services-cta::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: -100%;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
  border-radius: 12px;
}

.btn-services-cta:hover::before {
  left: 100%;
}

.btn-services-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(78, 194, 240, 0.5), 0 6px 15px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #5DC8F5 0%, #4BB3DD 100%);
  color: #ffffff !important;
}

.btn-services-cta:active {
  transform: translateY(-1px);
}

.btn-services-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: rgba(29, 29, 27, 0.05);
  color: #1D1D1B;
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  border: 2px solid rgba(29, 29, 27, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.btn-services-cta-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 0;
  background: rgba(29, 29, 27, 0.05);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 12px;
}

.btn-services-cta-secondary:hover::before {
  width: 100%;
}

.btn-services-cta-secondary:hover {
  transform: translateY(-3px);
  background: rgba(29, 29, 27, 0.08);
  border-color: rgba(29, 29, 27, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  color: #1D1D1B;
}

.btn-services-cta-secondary:active {
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .services-cta {
    padding: 60px 20px;
    margin-top: 40px;
  }

  .services-cta-text {
    font-size: 26px;
  }

  .services-cta-subtitle {
    font-size: 16px;
  }

  .services-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .btn-services-cta,
  .btn-services-cta-secondary {
    width: 100%;
    padding: 14px 30px;
  }
}

.emergency-service-box {
  margin-top: -100px;
}

@media (max-width: 991px) {

  .service-box,
  .service-box.reverse {
    flex-direction: column;
  }

  .service-box {
    margin-bottom: 80px;
  }

  .text-box {
    width: 100%;
    margin: 20px !important
  }

  .image-box {
    width: 100%;
  }

  .emergency-service-box {
    margin-top: -40px;
  }
}

.btn-service {
  background: color-mix(in srgb, var(--primaryhover) 10%, white);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  border-radius: 12px;
  border: 2px solid transparent;
  outline: none;
  box-shadow: none;
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  padding: 12px 22px;
  color: #666;
  text-align: center;
  margin: 0 auto;
  box-shadow: rgba(0, 0, 0, .2) 0 3px 5px -1px, rgba(0, 0, 0, .14) 0 6px 10px 0, rgba(0, 0, 0, .12) 0 1px 18px 0;
}

.btn-service:hover,
.btn-service.hover {
  border: 2px solid white;
  transform: translateY(-1px);
  box-shadow: rgba(0, 0, 0, .3) 0 6px 12px;
}

.btn-service:focus,
.btn-service:active {
  border: 2px solid white;
  outline: none;
  box-shadow: none;
}



/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 32px;
  font-family: var(--font-secondary);
  color: var(--color-secondary);
}

.about .content p {
  margin: 30px 0;
  color: var(--primary);
}

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

.about .content ul li {
  padding: 0 0 15px 26px;
  position: relative;
  font-size: 15px;
  font-weight: 600;
}

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


/*--------------------------------------------------------------
# Bewertungen Section
--------------------------------------------------------------*/
.bewertungen-premium {
  padding: 120px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
}

.bewertungen-header {
  margin-bottom: 80px;
  padding: 0 20px;
}

.bewertungen-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: linear-gradient(135deg, rgba(78, 194, 240, 0.1) 0%, rgba(59, 168, 208, 0.1) 100%);
  border: 1.5px solid rgba(78, 194, 240, 0.3);
  border-radius: 50px;
  color: #4EC2F0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 25px;
  font-family: 'Source Sans 3', Arial, sans-serif;
}

.bewertungen-header h2 {
  font-size: 52px;
  font-weight: 700;
  color: #1D1D1B;
  margin-bottom: 20px;
  line-height: 1.2;
  font-family: 'Source Sans 3', Arial, sans-serif;
}

.bewertungen-subtitle {
  font-size: 20px;
  color: #666666;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
}

.bewertungen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.bewertung-item {
  background: #ffffff;
  border-radius: 20px;
  padding: 35px 30px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.bewertung-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4EC2F0 0%, #3BA8D0 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bewertung-item:hover::before {
  transform: scaleX(1);
}

.bewertung-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(78, 194, 240, 0.15), 0 6px 20px rgba(0, 0, 0, 0.1);
  border-color: rgba(78, 194, 240, 0.2);
}

.bewertung-header-item {
  margin-bottom: 20px;
}

.bewertung-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}

.bewertung-stars .star {
  color: #FFD700;
  font-size: 20px;
  line-height: 1;
}

.bewertung-name {
  font-size: 18px;
  font-weight: 600;
  color: #1D1D1B;
  font-family: 'Source Sans 3', Arial, sans-serif;
}

.bewertung-text {
  font-size: 16px;
  color: #666666;
  line-height: 1.7;
  margin: 0 0 20px 0;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  font-style: italic;
}

.bewertung-datum {
  font-size: 14px;
  color: #999999;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
}

@media (max-width: 991px) {
  .bewertungen-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .bewertungen-header h2 {
    font-size: 42px;
  }

  .bewertungen-subtitle {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .bewertungen-premium {
    padding: 80px 0;
  }

  .bewertungen-header {
    margin-bottom: 60px;
  }

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

  .bewertungen-subtitle {
    font-size: 16px;
  }

  .bewertungen-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .bewertung-item {
    padding: 30px 25px;
  }
}

/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/
.faq-premium {
  padding: 120px 0;
  background: #ffffff;
  position: relative;
}

.faq-header {
  margin-bottom: 80px;
  padding: 0 20px;
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: linear-gradient(135deg, rgba(78, 194, 240, 0.1) 0%, rgba(59, 168, 208, 0.1) 100%);
  border: 1.5px solid rgba(78, 194, 240, 0.3);
  border-radius: 50px;
  color: #4EC2F0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 25px;
  font-family: 'Source Sans 3', Arial, sans-serif;
}

.faq-header h2 {
  font-size: 52px;
  font-weight: 700;
  color: #1D1D1B;
  margin-bottom: 20px;
  line-height: 1.2;
  font-family: 'Source Sans 3', Arial, sans-serif;
}

.faq-subtitle {
  font-size: 20px;
  color: #666666;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.faq-item-premium {
  background: #ffffff;
  border: 2px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  cursor: pointer;
}

.faq-item-premium:hover {
  border-color: rgba(78, 194, 240, 0.3);
  box-shadow: 0 8px 25px rgba(78, 194, 240, 0.1), 0 4px 15px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.faq-question-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 30px;
  gap: 20px;
  cursor: pointer;
}

.faq-question {
  font-size: 18px;
  font-weight: 600;
  color: #1D1D1B;
  line-height: 1.5;
  flex: 1;
  font-family: 'Source Sans 3', Arial, sans-serif;
  transition: color 0.3s ease;
  cursor: pointer;
}

.faq-item-premium:hover .faq-question {
  color: #4EC2F0;
}

.faq-toggle {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666666;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 8px;
  background: rgba(78, 194, 240, 0.05);
}

.faq-toggle svg {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item-premium:hover .faq-toggle {
  color: #4EC2F0;
  background: rgba(78, 194, 240, 0.1);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 30px;
  cursor: pointer;
}

.faq-content-inner {
  padding-bottom: 0;
  transition: padding 0.4s ease;
}

.faq-content p {
  font-size: 16px;
  color: #666666;
  line-height: 1.7;
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  padding-bottom: 0;
  transition: padding 0.4s ease;
  cursor: pointer;
  pointer-events: none;
}

.faq-item-premium.faq-active {
  border-color: rgba(78, 194, 240, 0.4);
  background: linear-gradient(180deg, #ffffff 0%, rgba(78, 194, 240, 0.02) 100%);
  box-shadow: 0 8px 25px rgba(78, 194, 240, 0.15), 0 4px 15px rgba(0, 0, 0, 0.08);
}

.faq-item-premium.faq-active .faq-question {
  color: #4EC2F0;
}

.faq-item-premium.faq-active .faq-content {
  max-height: 500px;
  padding: 0 30px 25px;
}

.faq-item-premium.faq-active .faq-content-inner {
  padding-bottom: 0;
}

.faq-item-premium.faq-active .faq-content p {
  padding-bottom: 0;
}

.faq-item-premium.faq-active .faq-toggle {
  transform: rotate(180deg);
  color: #4EC2F0;
  background: rgba(78, 194, 240, 0.15);
}

.faq-item-premium.faq-active .faq-toggle svg {
  transform: rotate(180deg);
}

@media (max-width: 991px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .faq-header h2 {
    font-size: 42px;
  }

  .faq-subtitle {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .faq-premium {
    padding: 80px 0;
  }

  .faq-header {
    margin-bottom: 60px;
  }

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

  .faq-subtitle {
    font-size: 16px;
  }

  .faq-question-wrapper {
    padding: 20px;
  }

  .faq-question {
    font-size: 16px;
  }

  .faq-item-premium.faq-active .faq-content {
    padding: 0 20px 20px;
  }

  .faq-content {
    padding: 0 20px;
  }
}


/*--------------------------------------------------------------
# Services List Section
--------------------------------------------------------------*/
.services-list .service-item {
  position: relative;
}

.services-list .service-item .icon {
  margin-right: 20px;
}

.services-list .service-item .icon .service-icon {
  width: 44px;
  height: 44px;
}

.services-list .service-item .title {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.services-list .service-item .title a {
  color: var(--color-secondary);
}

.services-list .service-item .title a:hover {
  color: var(--primary);
}

.services-list .service-item .description {
  line-height: 24px;
  font-size: 14px;
}



/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/
.cta-premium {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #1D1D1B 0%, #2a2a28 100%);
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../img/cta-bg.jpg") center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(29, 29, 27, 0.85) 0%, rgba(29, 29, 27, 0.75) 100%);
  z-index: 2;
}

.cta-premium .container {
  position: relative;
  z-index: 3;
}

.cta-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: linear-gradient(135deg, rgba(78, 194, 240, 0.2) 0%, rgba(59, 168, 208, 0.2) 100%);
  border: 1.5px solid rgba(78, 194, 240, 0.4);
  border-radius: 50px;
  color: #4EC2F0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(78, 194, 240, 0.2);
  font-family: 'Source Sans 3', Arial, sans-serif;
}

.cta-premium h2 {
  font-size: 56px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  line-height: 1.2;
  font-family: 'Source Sans 3', Arial, sans-serif;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cta-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  margin-bottom: 50px;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 45px;
  background: linear-gradient(135deg, #4EC2F0 0%, #3BA8D0 100%);
  color: #ffffff;
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(78, 194, 240, 0.4), 0 4px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  border: none;
}

.btn-cta-primary::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: -100%;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
  border-radius: 12px;
}

.btn-cta-primary:hover::before {
  left: 100%;
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(78, 194, 240, 0.5), 0 6px 20px rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, #5DC8F5 0%, #4BB3DD 100%);
  color: #ffffff !important;
}

.btn-cta-primary:active {
  transform: translateY(-1px);
}

.btn-cta-primary .btn-icon {
  font-size: 20px;
  line-height: 1;
  color: #ffffff !important;
}

.btn-cta-primary .btn-text {
  position: relative;
  z-index: 1;
  color: #ffffff !important;
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 45px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-cta-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 0;
  background: rgba(255, 255, 255, 0.1);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 12px;
}

.btn-cta-secondary:hover::before {
  width: 100%;
}

.btn-cta-secondary:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.btn-cta-secondary:active {
  transform: translateY(-1px);
}

.btn-cta-secondary .btn-icon {
  font-size: 20px;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.btn-cta-secondary .btn-text {
  position: relative;
  z-index: 1;
}

.cta-features {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 60px;
}

.cta-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.cta-feature-item .feature-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #4EC2F0 0%, #3BA8D0 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(78, 194, 240, 0.3);
}

@media (max-width: 768px) {
  .cta-premium {
    padding: 100px 0;
  }

  .cta-premium h2 {
    font-size: 42px;
  }

  .cta-subtitle {
    font-size: 18px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    justify-content: center;
    padding: 18px 35px;
    font-size: 16px;
  }

  .cta-features {
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
    align-items: center;
  }

  .cta-feature-item {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .cta-premium h2 {
    font-size: 32px;
  }

  .cta-subtitle {
    font-size: 16px;
  }

  .cta-features {
    align-items: center;
  }

  .cta-feature-item {
    justify-content: center;
  }
}




/*--------------------------------------------------------------
# Vorteile Section
--------------------------------------------------------------*/
.vorteile-premium {
  padding: 120px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
}

.vorteile-header {
  margin-bottom: 80px;
  padding: 0 20px;
}

.vorteile-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: linear-gradient(135deg, rgba(78, 194, 240, 0.1) 0%, rgba(59, 168, 208, 0.1) 100%);
  border: 1.5px solid rgba(78, 194, 240, 0.3);
  border-radius: 50px;
  color: #4EC2F0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 25px;
  font-family: 'Source Sans 3', Arial, sans-serif;
}

.vorteile-header h2 {
  font-size: 52px;
  font-weight: 700;
  color: #1D1D1B;
  margin-bottom: 20px;
  line-height: 1.2;
  font-family: 'Source Sans 3', Arial, sans-serif;
}

.vorteile-subtitle {
  font-size: 20px;
  color: #666666;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
}

.vorteile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.vorteile-item {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 35px;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  will-change: transform, box-shadow;
}

.vorteile-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4EC2F0 0%, #3BA8D0 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vorteile-item:hover::before {
  transform: scaleX(1);
}

.vorteile-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(78, 194, 240, 0.15), 0 6px 20px rgba(0, 0, 0, 0.1);
  border-color: rgba(78, 194, 240, 0.2);
}

.vorteile-item:not(:hover) {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vorteile-icon-wrapper {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, rgba(78, 194, 240, 0.1) 0%, rgba(59, 168, 208, 0.1) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.vorteile-item:hover .vorteile-icon-wrapper {
  background: linear-gradient(135deg, rgba(78, 194, 240, 0.2) 0%, rgba(59, 168, 208, 0.2) 100%);
  transform: scale(1.1) rotate(5deg);
}

.vorteile-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
  transition: all 0.4s ease;
}

.vorteile-item:hover .vorteile-icon {
  filter: drop-shadow(0 4px 12px rgba(78, 194, 240, 0.3));
}

.vorteile-item h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1D1D1B;
  margin-bottom: 15px;
  font-family: 'Source Sans 3', Arial, sans-serif;
}

.vorteile-item p {
  font-size: 16px;
  color: #666666;
  line-height: 1.7;
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
}

@media (max-width: 991px) {
  .vorteile-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .vorteile-header h2 {
    font-size: 42px;
  }

  .vorteile-subtitle {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .vorteile-premium {
    padding: 80px 0;
  }

  .vorteile-header {
    margin-bottom: 60px;
  }

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

  .vorteile-subtitle {
    font-size: 16px;
  }

  .vorteile-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .vorteile-item {
    padding: 35px 30px;
  }

  .vorteile-icon-wrapper {
    width: 80px;
    height: 80px;
  }

  .vorteile-icon {
    width: 45px;
    height: 45px;
  }
}

/*--------------------------------------------------------------
# Services Cards Section
--------------------------------------------------------------*/
.services-cards {
  background: var(--section-bg);
}

.services-cards .card-item {
  border: 1px solid rgba(27, 47, 69, 0.1);
  background: #fff;
  position: relative;
  border-radius: 0;
}

.services-cards .card-item .card-bg {
  min-height: 300px;
  background-size: cover;
  background-repeat: no-repeat;
}

.services-cards .card-item .card-body {
  padding: 30px;
}

.services-cards .card-item h4 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--color-secondary);
}

.services-cards .card-item p {
  color: var(--color-secondary);
  margin: 0;
}



/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  background: transparent;
  padding-bottom: 0;
  margin-bottom: 0;
}

.contact-container {
  display: flex;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  border: 1.5px solid rgba(27, 47, 69, 0.10);
}

.contact-info {
  flex: 0 0 33.333%;
  padding: 30px;
  background: linear-gradient(120deg, rgba(78, 194, 240, 0.1) 0%, #4EC2F0 100%);
  display: flex;
  flex-direction: column;

}

.contact-form {
  flex: 0 0 66.667%;
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.contact-title {
  font-size: 21px !important;
  font-weight: 600;
  line-height: 1.2;
  color: #1D1D1B;
  font-family: 'Source Sans 3', Arial, sans-serif;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-item i {
  font-size: 20px;
  color: white;
  width: 46px;
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20%;
  margin-right: 20px;
  flex-shrink: 0;
  background: linear-gradient(135deg,
      var(--color-primary) 0%,
      var(--color-secondary) 100%);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.contact-header {
  margin-bottom: 60px;
  padding: 0 20px;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: linear-gradient(135deg, rgba(78, 194, 240, 0.1) 0%, rgba(59, 168, 208, 0.1) 100%);
  border: 1.5px solid rgba(78, 194, 240, 0.3);
  border-radius: 50px;
  color: #4EC2F0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 25px;
  font-family: 'Source Sans 3', Arial, sans-serif;
}

.contact-header h2 {
  font-size: 52px;
  font-weight: 700;
  color: #1D1D1B;
  margin-bottom: 20px;
  line-height: 1.2;
  font-family: 'Source Sans 3', Arial, sans-serif;
}

.contact-subtitle {
  font-size: 20px;
  color: #666666;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
}

@media (max-width: 768px) {
  .contact-header h2 {
    font-size: 32px;
  }

  .contact-subtitle {
    font-size: 16px;
  }
}

.info-item .content {
  flex-grow: 1;
  color: #1D1D1B;
  padding: 1px !important;
  text-align: start;
}

.info-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 5px 0;
  color: #1D1D1B;
  font-family: 'Source Sans 3', Arial, sans-serif;
}

.info-item p {
  padding: 0;
  margin: 0;
  font-size: 15px !important;
  color: #666666;
  font-family: 'Inter', Arial, sans-serif;
}

.info-item p a {
  color: #1D1D1B;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-item p a:hover {
  color: #4EC2F0;
}



.php-email-form {
  width: 100%;
}

.php-email-form .form-group {
  margin-bottom: 20px;
}

.php-email-form input,
.php-email-form textarea,
.php-email-form select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.php-email-form input:focus,
.php-email-form textarea:focus,
.php-email-form select:focus {
  border-color: var(--color-primary);
  outline: none;
  box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.2);
}

.php-email-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
  padding-right: 30px;
}

.php-email-form select:hover {
  cursor: pointer;
}

.php-email-form select option {
  padding: 10px;
}

.php-email-form select option[value=""][disabled] {
  color: #999;
}

.php-email-form input {
  height: 44px;
}

.php-email-form textarea {
  resize: none;
  height: 140px;
}


.php-email-form .form-group {
  padding-bottom: 8px;
}

.php-email-form .error-message,
.error-message-modal {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
  border-radius: 8px;
  margin-bottom: 25px;
}

.php-email-form .error-message br+br,
.error-message-modal br+br {
  margin-top: 25px;
}

.php-email-form .sent-message,
.sent-message-modal {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  border-radius: 8px;
  margin-bottom: 25px;
}

.php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 25px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}


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

  100% {
    transform: rotate(360deg);
  }
}



.checkbox-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.checkbox-wrapper input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px !important;
  height: 16px !important;
  border: 1px solid #ddd;
  border-radius: 3px !important;
  outline: none;
  transition: all 0.3s;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0 !important;
  margin-right: 10px;
  margin-top: -2px;
}

.checkbox-wrapper input[type="checkbox"]:checked {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}


.checkbox-wrapper label {
  font-size: 14px;
  color: #1D1D1B;
  cursor: pointer;
  font-family: 'Inter', Arial, sans-serif;
}

.checkbox-wrapper label a {
  color: #1D1D1B;
  text-decoration: none;
  transition: color 0.3s ease;
}

.checkbox-wrapper label a:hover {
  color: #4EC2F0;
}

.checkbox-wrapper2 {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.checkbox-wrapper2 input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px !important;
  height: 16px !important;
  border: 1px solid #ddd;
  border-radius: 3px !important;
  outline: none;
  transition: all 0.3s;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0 !important;
  margin-right: 10px;
  margin-top: -1px;
}

.checkbox-wrapper2 input[type="checkbox"]:checked {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.checkbox-wrapper2 input[type="checkbox"]:checked::before {
  content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="9px" height="9px"><path fill="none" stroke="white" stroke-width="6" d="M1.73 12.91l6.37 6.37L22.79 4.59"/></svg>');
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white !important;
  font-size: 9px;
  font-family: Arial, sans-serif;
  display: inline-block;
  text-shadow: none;
  -webkit-text-fill-color: white;
  margin-top: 1px;
  display: none;
}

.checkbox-wrapper input[type="checkbox"]:hover,
.checkbox-wrapper:hover input[type="checkbox"] {
  border-color: var(--primary);
}

.checkbox-wrapper2 label {
  font-size: 14px;
  color: var(--text-light);
  cursor: pointer;
}


@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-info,
  .contact-form {
    flex: 0 0 100%;
  }


}

@media (max-width: 992px) and (min-width: 576px) {
  .info-item {
    flex-direction: row;
    align-items: center;
  }

  .info-item .content {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .info-item h3 {
    margin: 0 10px 0 0;
  }

  .info-item p {
    margin: 0;
    margin-top: 1.9px;
    margin-left: 10px;
  }

  .contact-md {
    display: none;
  }
}

.address-part:first-child {
  margin-right: 0.25em;
}

.address-part:first-child::after {
  content: ",";
}

.address {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
}

@media (max-width: 600px) and (min-width: 270px) {

  .address-part {
    white-space: nowrap;
  }


  .address-part:first-child::after {
    content: ",\A";
    white-space: pre;
  }
}


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  position: relative;
  color: #1D1D1B;
  background: linear-gradient(90deg, rgba(240, 248, 255, 1) 0%, rgba(235, 245, 255, 1) 100%);
  font-size: 16px;
  padding-bottom: 30px;
  overflow: visible;
  margin-top: 0;
  border-top: none;
}

.footer-wave {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 150px;
  display: block;
  pointer-events: none;
  z-index: 10;
}

.footer-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}


.footer .footer-top {
  padding-top: 80px;
  padding-bottom: 40px;
  margin-top: 120px;
}

@media (max-width: 991px) {
  .footer .footer-top {
    padding-top: 70px;
    padding-bottom: 30px;
    margin-top: 100px;
  }

  .footer .footer-about,
  .footer .footer-links,
  .footer .footer-services,
  .footer .footer-hours {
    margin-bottom: 40px;
  }

  .footer .footer-section-title {
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .footer .footer-top {
    padding-top: 40px;
    padding-bottom: 20px;
  }

  .footer .footer-about,
  .footer .footer-links,
  .footer .footer-services,
  .footer .footer-hours {
    margin-bottom: 48px;
    margin-top: 24px;
  }

  .footer .footer-about {
    margin-top: 0;
  }

  .footer .footer-logo img {
    max-width: 150px;
  }

  footer .footer-logo {
    margin-top: 40px;
  }

  .footer .footer-section-title {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .footer .footer-links-list,
  .footer .footer-services-list {
    gap: 6px;
  }

  .footer .footer-links-list a,
  .footer .footer-services-list a {
    font-size: 15px;
  }

  .opening-hours {
    gap: 10px;
  }

  .footer .footer-links-list li {
    text-align: center !important;
    justify-content: center !important;
    padding-left: 0 !important;
    display: flex !important;
  }

  .footer .footer-links-list li::before {
    position: relative !important;
    left: auto !important;
    margin-right: 8px !important;
  }

  .footer .footer-services-list li {
    text-align: center !important;
    justify-content: center !important;
    padding-left: 0 !important;
    display: flex !important;
  }

  .footer .footer-services-list li::before {
    position: relative !important;
    left: auto !important;
    margin-right: 8px !important;
  }

  .opening-hours li {
    font-size: 13px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .opening-hours li span:first-child {
    text-align: center;
    flex: none;
  }

  .opening-hours li span:last-child {
    margin-left: 0;
    margin-top: 4px;
    text-align: center;
  }
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 20px;
}

.footer .footer-about .logo img {
  max-height: 70px;
  margin-right: 6px;
}

.footer .footer-about {
  margin-bottom: 0;
  text-align: center;
}

.footer .footer-logo {
  display: block;
  margin-bottom: 28px;
  text-align: center;
}

@media (min-width: 768px) {
  .footer .footer-about {
    text-align: left;
  }

  .footer .footer-logo {
    text-align: left;
  }
}

.footer .footer-logo img {
  max-width: 180px;
  height: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
  display: block;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .footer .footer-logo img {
    margin: 0;
  }
}

.footer .footer-logo:hover img {
  transform: scale(1.02);
}

.footer .footer-contact-info {
  margin-top: 0;
  text-align: center;
}

@media (min-width: 768px) {
  .footer .footer-contact-info {
    text-align: left;
  }
}

.footer .footer-contact-info p {
  font-size: 16px;
  font-family: 'Inter', Arial, sans-serif;
  margin-bottom: 12px;
  color: #1D1D1B;
  line-height: 1.6;
}

.footer .footer-contact-info p:last-child {
  margin-bottom: 20px;
}

.footer .footer-contact-info p strong {
  color: #1D1D1B;
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-weight: 600;
  display: inline-block;
  min-width: 70px;
}

.footer .footer-contact-info p span {
  color: #666666;
}

.footer .footer-contact-info p span a {
  color: #1D1D1B;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer .footer-contact-info p span a:hover {
  color: #4EC2F0;
}


.footer .social-links {
  display: flex;
  gap: 12px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 16px;
  color: var(--color-primary);
  background: linear-gradient(135deg,
      color-mix(in srgb, var(--color-primary) 8%, transparent),
      color-mix(in srgb, var(--color-primary) 12%, transparent));
  border: 1px solid color-mix(in srgb, var(--color-primary) 15%, transparent);
  transition: all 0.3s ease;
}

.footer .social-links a:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg,
      color-mix(in srgb, var(--color-primary) 12%, transparent),
      color-mix(in srgb, var(--color-primary) 16%, transparent));
  border-color: var(--color-primary);
  box-shadow: 0 4px 8px color-mix(in srgb, var(--color-primary) 10%, transparent);
}


.footer .footer-section-title {
  color: #1D1D1B;
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 24px;
  padding-bottom: 0;
  border-bottom: none;
  position: relative;
  display: inline-block;
  text-align: center;
}

.footer .footer-section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #4EC2F0, rgba(78, 194, 240, 0.3));
  border-radius: 2px;
}

@media (min-width: 768px) {
  .footer .footer-section-title {
    text-align: left;
  }

  .footer .footer-section-title::after {
    left: 0;
    transform: none;
  }
}

.footer .footer-links {
  margin-bottom: 0;
  text-align: center;
}

.footer .footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer .footer-links-list li {
  padding: 0;
  margin: 0;
  position: relative;
  padding-left: 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer .footer-links-list li::before {
  content: '→';
  position: relative;
  left: auto;
  margin-right: 8px;
  color: #4EC2F0;
  font-size: 14px;
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .footer .footer-links {
    text-align: left;
  }

  .footer .footer-links-list li {
    text-align: left;
    justify-content: flex-start;
    padding-left: 20px;
  }

  .footer .footer-links-list li::before {
    position: absolute;
    left: 0;
    margin-right: 0;
  }
}

.footer .footer-links-list a {
  color: #1D1D1B;
  display: inline-block;
  font-size: 16px;
  line-height: 1.6;
  text-decoration: none;
  font-family: 'Inter', Arial, sans-serif;
  transition: all 0.3s ease;
}

.footer .footer-links-list a:hover {
  color: #4EC2F0;
  padding-left: 4px;
}

.footer .footer-links-list li:hover::before {
  transform: translateX(4px);
}

.footer .footer-services {
  margin-bottom: 0;
  text-align: center;
}

.footer .footer-services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer .footer-services-list li {
  padding: 0;
  margin: 0;
  position: relative;
  padding-left: 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer .footer-services-list li::before {
  content: '→';
  position: relative;
  left: auto;
  margin-right: 8px;
  color: #4EC2F0;
  font-size: 14px;
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .footer .footer-services {
    text-align: left;
  }

  .footer .footer-services-list li {
    text-align: left;
    justify-content: flex-start;
    padding-left: 20px;
  }

  .footer .footer-services-list li::before {
    position: absolute;
    left: 0;
    margin-right: 0;
  }
}

.footer .footer-services-list a {
  color: #1D1D1B;
  display: inline-block;
  font-size: 16px;
  line-height: 1.6;
  text-decoration: none;
  font-family: 'Inter', Arial, sans-serif;
  transition: all 0.3s ease;
}

.footer .footer-services-list a:hover {
  color: #4EC2F0;
  padding-left: 4px;
}

.footer .footer-services-list li:hover::before {
  transform: translateX(4px);
}

.footer .footer-hours {
  margin-bottom: 0;
  text-align: center;
}

.opening-hours {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.opening-hours li {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0;
  margin: 0;
  color: #1D1D1B;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

.opening-hours li span:first-child {
  color: #1D1D1B;
  font-weight: 500;
  text-align: center;
}

.opening-hours li span:last-child {
  color: #666666;
  font-weight: 400;
  text-align: center;
  margin-left: 0;
  margin-top: 4px;
}

@media (min-width: 768px) {
  .footer .footer-hours {
    text-align: left;
  }

  .opening-hours li {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .opening-hours li span:first-child {
    flex: 1;
    text-align: left;
  }

  .opening-hours li span:last-child {
    text-align: right;
    margin-left: 16px;
    margin-top: 0;
  }
}

.footer .footer-status {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(78, 194, 240, 0.15);
}

.footer .footer-status small {
  color: #666666;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 15px;
}

.footer .footer-status strong {
  color: #1D1D1B;
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-weight: 600;
}

.footer .footer-contact p {
  margin-bottom: 5px;
  color: #666666;
  font-family: 'Inter', Arial, sans-serif;
}



.footer .copyright {
  padding-top: 25px;
  padding-bottom: 5px;
  border-top: 1px solid rgba(var(--default-color-rgb), 0.1);
}

.footer .copyright p {
  margin-bottom: 0;
  font-size: 15px;
  color: #1D1D1B;
  font-family: 'Inter', Arial, sans-serif;
}

.footer .copyright p strong {
  color: #1D1D1B;
  font-family: 'Source Sans 3', Arial, sans-serif;
}

.footer .copyright p span {
  color: #666666;
}

.footer .copyright a {
  color: #1D1D1B;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer .copyright a:hover {
  color: #4EC2F0;
}

.footer .credits {
  margin-top: 0px;
  font-size: 15px;
}




.footer p.fw-bold,
.footer p.fw-semibold,
.footer p.fw-medium {
  color: #1D1D1B;
  font-family: 'Source Sans 3', Arial, sans-serif;
}



.error-message-modal {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin: 24px;
  font-weight: 600;
  border-radius: 10px;
}

.sent-message-modal {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin: 24px;
  font-weight: 600;
  border-radius: 10px;
}

.btn-primary-modal {
  background: linear-gradient(to left, var(--primaryhover) 0%, var(--primary) 70%);
  color: var(--primary-inverse);
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
  border-radius: 6px;
  border: none;
  outline: none;
  box-shadow: none;
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 18px;
  display: inline-block;
  padding: 8px 18px;
  color: white;
  text-align: center;
  box-shadow: rgba(0, 0, 0, .2) 0 3px 5px -1px, rgba(0, 0, 0, .14) 0 6px 10px 0, rgba(0, 0, 0, .12) 0 1px 18px 0;

}

.btn-primary-modal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary);
  z-index: -1;
  transition: opacity 0.5s ease;
  opacity: 0;
  border-radius: inherit;
  color: white;
}

.btn-primary-modal:hover::before,
.btn-primary-modal.hover::before {
  opacity: 1;
}

.btn-primary-modal:focus,
.btn-primary-modal:active,
.btn-primary-modal:hover {
  border: none;
  outline: none;
  box-shadow: none;
}

.btn-primary-modal:hover:not(.bg-transparent),
.btn-primary-modal.hover:not(.bg-transparent) {
  background-color: var(--primaryhover);
  color: white;
}

.price-count {
  color: var(--primary) !important;
}

.text-primary {

  color: #1D1D1B !important;
}

.price-small {
  color: grey;
}

.progress-bar {
  background: linear-gradient(to left, var(--primaryhover), var(--primary));
}

html body .modal input:focus,
html body .modal textarea:focus,
html body .modal select:focus {
  outline: none !important;
  border: 2px solid var(--primaryhover) !important;
  box-shadow: 0 0 5px var(--primaryhover)
}



/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/

.portfolio {
  background-color: transparent;
  padding: 60px 0;
}

.portfolio-grid {
  columns: 1;
  column-gap: 20px;
  column-fill: auto;
  column-rule: none;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  break-inside: avoid;
  page-break-inside: avoid;
  margin-bottom: 20px;
  display: inline-block;
  width: 100%;
  background-color: #f5f5f5;
}

.portfolio-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.3s ease;
  opacity: 0;
  vertical-align: top;
  min-height: 1px;
}

.portfolio-item img.loaded {
  opacity: 1;
}


@media (min-width: 576px) {
  .portfolio-grid {
    columns: 2;
  }
}

@media (min-width: 768px) {
  .portfolio-grid {
    columns: 2;
    column-gap: 25px;
  }
}

@media (min-width: 992px) {
  .portfolio-grid {
    columns: 3;
    column-gap: 30px;
  }
}

@media (min-width: 1200px) {
  .portfolio-grid {
    columns: 3;
    column-gap: 30px;
  }
}

@media (max-width: 575px) {
  .portfolio-grid {
    columns: 1;
    column-gap: 15px;
  }

  .portfolio-item {
    margin-bottom: 15px;
  }
}

.portfolio-item img[src=""] {
  display: none;
}

.portfolio-item-placeholder {
  background-color: #f0f0f0;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-style: italic;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: #1D1D1B;
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 1.2;
}

@media (max-width: 991px) {
  .section-title h2 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 32px;
  }
}

#portfolio .portfolio-preloader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  transition: opacity 0.3s ease;
}

#portfolio .portfolio-preloader.hidden {
  display: none;
}

#portfolio .portfolio-preloader p {
  margin-top: 20px;
  color: #666666;
  font-size: 1rem;
  font-weight: 500;
  font-family: 'Inter', Arial, sans-serif;
}

#portfolio .preloader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(78, 194, 240, 0.2);
  border-top-color: #4EC2F0;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.portfolio-grid.loaded {
  opacity: 1 !important;
}




.gallery-item {
  width: 100%;
  height: auto;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}


@media (min-width: 576px) {
  .gallery-item {
    width: 100%;
    height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}


@media (min-width: 768px) {
  .gallery-item img {
    max-height: 700px;
  }
}







/*--------------------------------------------------------------
# Vorher Nachher
--------------------------------------------------------------*/
.image-container {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(8, 26, 35, 0.1);
  border: 1px solid var(--color-primary);
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
}

.image-container+.mt-3 {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .image-container {
    height: 300px;
  }
}

@media (max-width: 991px) {
  .image-container {
    margin-top: 40px;
    width: 90%;
  }

  .image-container+.mt-3 {
    width: 90%;
  }
}

#hero .hero-img {
  margin-top: 40px;
  width: 90%;
}

.image-before,
.image-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 25px;
  border: 1px solid var(--color-primary);

}

.image-before {
  z-index: 1;
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.slider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--color-primary);
  z-index: 2;
}

.slider-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 1.5px solid var(--color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}

.slider-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.slider-button svg {
  width: 24px;
  height: 24px;
  fill: var(--color-primary);
}

.before-after-premium {
  padding: 80px 0;
  background: transparent;
}

.before-after-header {
  margin-bottom: 60px;
}

.before-after-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(78, 194, 240, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(78, 194, 240, 0.2);
  border-radius: 50px;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #4EC2F0;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(78, 194, 240, 0.1);
}

.before-after-badge .badge-logo {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.before-after-header h2 {
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: #1D1D1B;
  margin-bottom: 20px;
  line-height: 1.2;
}

.before-after-subtitle {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 18px;
  color: #666666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .before-after-header h2 {
    font-size: 42px;
  }

  .before-after-subtitle {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .before-after-header h2 {
    font-size: 32px;
  }

  .before-after-subtitle {
    font-size: 16px;
  }

  .before-after-header {
    margin-bottom: 40px;
  }
}

.image-container-premium {
  position: relative;
  width: 100%;
  height: 500px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 8px 24px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(78, 194, 240, 0.2);
  background: #ffffff;
  transition: box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.3s ease;
}

.image-container-premium:hover {
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.2), 0 12px 32px rgba(0, 0, 0, 0.15);
  border-color: rgba(78, 194, 240, 0.4);
}

.image-before-premium,
.image-after-premium {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.image-before-premium {
  z-index: 1;
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.image-after-premium {
  z-index: 0;
}

.image-label {
  position: absolute;
  padding: 8px 16px;
  background: rgba(29, 29, 27, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  border-radius: 8px;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.image-label-before {
  top: 16px;
  left: 16px;
}

.image-label-after {
  top: 16px;
  right: 16px;
}

.slider-premium {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: linear-gradient(180deg, #4EC2F0 0%, rgba(78, 194, 240, 0.8) 100%);
  z-index: 2;
  transform: translateX(-50%);
  cursor: col-resize;
}

.slider-button-premium {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.95) 100%);
  border: 3px solid #4EC2F0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  box-shadow: 0 8px 24px rgba(78, 194, 240, 0.3), 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 3;
}

.slider-button-premium:active {
  cursor: grabbing;
  transform: translate(-50%, -50%) scale(0.95);
}

.slider-button-premium:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 12px 32px rgba(78, 194, 240, 0.4), 0 6px 16px rgba(0, 0, 0, 0.2);
  border-color: #3BA8D0;
}

.slider-button-premium svg {
  width: 28px;
  height: 28px;
  color: #4EC2F0;
  transition: color 0.3s ease;
}

.slider-button-premium:hover svg {
  color: #3BA8D0;
}

@media (max-width: 1199px) {
  .image-container-premium {
    height: 450px;
  }
}

@media (max-width: 991px) {
  .before-after-premium {
    padding: 60px 0;
  }

  .image-container-premium {
    height: 400px;
    border-radius: 16px;
  }
}

@media (max-width: 768px) {
  .before-after-premium {
    padding: 40px 0;
  }

  .image-container-premium {
    height: 350px;
    border-radius: 12px;
  }

  .slider-button-premium {
    width: 48px;
    height: 48px;
  }

  .slider-button-premium svg {
    width: 24px;
    height: 24px;
  }
}

.service-info-box {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(29, 29, 27, 0.1);
  border-radius: 20px;
  padding: 40px 50px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
  margin: 60px 0;
  text-align: center;
}

.service-info-box h3 {
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #1D1D1B;
  margin-bottom: 30px;
}

.service-info-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-info-box ul li {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 18px;
  color: #666666;
  padding: 12px 20px;
  background: linear-gradient(135deg, rgba(78, 194, 240, 0.05) 0%, rgba(59, 168, 208, 0.03) 100%);
  border-radius: 10px;
  border: 1px solid rgba(78, 194, 240, 0.1);
  transition: all 0.3s ease;
}

.service-info-box ul li:hover {
  background: linear-gradient(135deg, rgba(78, 194, 240, 0.1) 0%, rgba(59, 168, 208, 0.08) 100%);
  border-color: rgba(78, 194, 240, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(78, 194, 240, 0.15);
}

@media (max-width: 768px) {
  .service-info-box {
    padding: 30px 25px;
    margin: 40px 0;
    border-radius: 16px;
  }

  .service-info-box h3 {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .service-info-box ul li {
    font-size: 16px;
    padding: 10px 16px;
  }
}

/* ============================================
   Service Detail Seiten
   ============================================ */

.service-intro-content {
  font-family: 'Inter', Arial, sans-serif;
}

.service-intro-content h3 {
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #1D1D1B;
  margin-bottom: 20px;
  line-height: 1.3;
}

.service-intro-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #403f34;
  margin-bottom: 0;
}

.service-intro-image {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.08);
  margin: 0px 0px 30px 0px;
}

.service-intro-image img {
  width: 100%;
  height: auto;
  display: block;
}

.service-info-box-inline {
  background: linear-gradient(135deg, rgba(78, 194, 240, 0.05) 0%, rgba(59, 168, 208, 0.03) 100%);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid rgba(78, 194, 240, 0.1);
  margin-top: 30px;
}

.service-info-box-inline h4 {
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #1D1D1B;
  margin-bottom: 20px;
}

.service-info-box-inline ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-info-box-inline ul li {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  color: #666666;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  border: 1px solid rgba(78, 194, 240, 0.15);
  position: relative;
  padding-left: 40px;
}

.service-info-box-inline ul li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #4EC2F0;
  font-weight: 700;
  font-size: 14px;
}

.service-detail-text {
  font-family: 'Inter', Arial, sans-serif;
}

.service-detail-text h3 {
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #1D1D1B;
  margin-top: 50px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.service-detail-text h3:first-of-type {
  margin-top: 0;
}

.service-detail-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #403f34;
  margin-bottom: 25px;
}

.service-cta-box {
  background: linear-gradient(135deg, rgba(78, 194, 240, 0.05) 0%, rgba(59, 168, 208, 0.03) 100%);
  border-radius: 20px;
  padding: 50px 40px;
  border: 1px solid rgba(78, 194, 240, 0.1);
  text-align: center;
}

.service-cta-content h3 {
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #1D1D1B;
  margin-bottom: 15px;
}

.service-cta-content p {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 18px;
  color: #666666;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.service-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .service-intro-image {
    border-radius: 16px;
    margin-top: 30px;
  }

  .service-detail-text h3 {
    font-size: 28px;
    margin-top: 40px;
  }

  .service-cta-box {
    padding: 40px 30px;
  }

  .service-cta-content h3 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .service-intro-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .service-intro-content p {
    font-size: 16px;
    margin-bottom: 0;
  }

  .service-intro-image {
    border-radius: 12px;
    margin-top: 25px;
  }

  .service-info-box-inline {
    padding: 25px 20px;
    margin-top: 25px;
  }

  .service-info-box-inline h4 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .service-info-box-inline ul li {
    font-size: 15px;
    padding: 10px 16px;
    padding-left: 36px;
  }

  .service-detail-text h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .service-detail-text p {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .service-cta-box {
    padding: 30px 25px;
  }

  .service-cta-content h3 {
    font-size: 24px;
  }

  .service-cta-content p {
    font-size: 16px;
  }

  .service-cta-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn-services-cta,
  .btn-services-cta-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   Leistungsübersichtsseite
   ============================================ */

.services-overview-header {
  margin-bottom: 60px;
}

.services-overview-header h2 {
  font-size: 52px;
  font-weight: 700;
  color: #1D1D1B;
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 1.2;
  font-family: 'Source Sans 3', Arial, sans-serif;
}

.services-overview-subtitle {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 18px;
  color: #666666;
  line-height: 1.7;
  max-width: 800px;
  margin: 20px auto 0;
}

.service-overview-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(29, 29, 27, 0.08);
}

.service-overview-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.08);
  border-color: rgba(78, 194, 240, 0.2);
}

.service-overview-image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.service-overview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-overview-card:hover .service-overview-image img {
  transform: scale(1.1);
}

.service-overview-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-overview-card:hover .service-overview-overlay {
  opacity: 1;
}

.service-overview-content {
  padding: 35px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-overview-content h3 {
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #1D1D1B;
  margin-bottom: 20px;
  line-height: 1.3;
}

.service-overview-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-overview-list li {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  color: #666666;
  padding: 10px 16px;
  background: linear-gradient(135deg, rgba(78, 194, 240, 0.05) 0%, rgba(59, 168, 208, 0.03) 100%);
  border-radius: 8px;
  border: 1px solid rgba(78, 194, 240, 0.1);
  position: relative;
  padding-left: 40px;
  transition: all 0.3s ease;
}

.service-overview-list li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #4EC2F0;
  font-weight: 700;
  font-size: 14px;
}

.service-overview-list li:hover {
  background: linear-gradient(135deg, rgba(78, 194, 240, 0.1) 0%, rgba(59, 168, 208, 0.08) 100%);
  border-color: rgba(78, 194, 240, 0.2);
  transform: translateX(4px);
}

.service-overview-description {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  color: #666666;
  line-height: 1.7;
  margin-bottom: 25px;
  flex: 1;
}

.service-overview-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: auto;
}

.btn-service-overview-link {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #4EC2F0;
  text-decoration: none;
  padding: 12px 24px;
  border: 2px solid #4EC2F0;
  border-radius: 10px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  background: transparent;
}

.btn-service-overview-link:hover {
  background: #4EC2F0;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(78, 194, 240, 0.3);
}

.btn-service-overview-primary {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  padding: 12px 24px;
  background: linear-gradient(135deg, #4EC2F0 0%, #3BA8D0 100%);
  border: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 12px rgba(78, 194, 240, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-service-overview-primary:hover {
  background: linear-gradient(135deg, #3BA8D0 0%, #2a8fb8 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(78, 194, 240, 0.35);
  color: #ffffff;
}

.services-overview-cta {
  margin-top: 80px;
  padding: 60px 40px;
  background: linear-gradient(135deg, rgba(78, 194, 240, 0.05) 0%, rgba(59, 168, 208, 0.03) 100%);
  border-radius: 20px;
  border: 1px solid rgba(78, 194, 240, 0.1);
}

.services-overview-cta-content h3 {
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #1D1D1B;
  margin-bottom: 15px;
}

.services-overview-cta-content p {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 18px;
  color: #666666;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 30px;
}

.services-overview-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}


@media (max-width: 991px) {
  .services-overview-header h2 {
    font-size: 42px;
  }

  .service-overview-image {
    height: 240px;
  }

  .service-overview-content {
    padding: 30px;
  }

  .service-overview-content h3 {
    font-size: 24px;
  }

  .services-overview-cta {
    padding: 50px 30px;
  }

  .services-overview-cta-content h3 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .services-overview-header {
    margin-bottom: 40px;
  }

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

  .services-overview-subtitle {
    font-size: 16px;
  }

  .service-overview-image {
    height: 200px;
  }

  .service-overview-content {
    padding: 25px;
  }

  .service-overview-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .service-overview-list {
    gap: 8px;
    margin-bottom: 15px;
  }

  .service-overview-list li {
    font-size: 14px;
    padding: 8px 14px;
    padding-left: 36px;
  }

  .service-overview-description {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .service-overview-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn-service-overview-link,
  .btn-service-overview-primary {
    width: 100%;
    justify-content: center;
  }

  .services-overview-cta {
    margin-top: 60px;
    padding: 40px 25px;
  }

  .services-overview-cta-content h3 {
    font-size: 24px;
  }

  .services-overview-cta-content p {
    font-size: 16px;
  }

  .services-overview-cta-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn-services-cta,
  .btn-services-cta-secondary {
    width: 100%;
    justify-content: center;
  }
}
