/**
* Template Name: Visible
* Template URL: https://bootstrapmade.com/visible-bootstrap-agency-template/
* Updated: May 22 2025 with Bootstrap v5.3.6
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
@font-face {
  font-family: 'novonesis'; /* Gib deinem Font einen Namen */
  src: url('../fonts/RaleGroteskBase/RaleGroteskBase-Medium.woff2') format('woff2'),
       url('../fonts/RaleGroteskBase/RaleGroteskBase-Medium.woff') format('woff'); /* Pfad(e) zu deiner Font-Datei */
  font-weight: normal; /* Gib das Gewicht an (z.B. normal, bold, 400, 700) */
  font-style: normal; /* Gib den Stil an (z.B. normal, italic) */
  font-display: swap; /* Optional: Bestimmt, wie der Browser den Text anzeigt, wÃ¤hrend der Font lÃ¤dt */
}

@font-face {
  font-family: 'novonesis'; /* Es ist der gleiche Familienname fÃ¼r verschiedene Gewichte */
  src: url('./fonts/RaleGroteskBase/RaleGroteskBase-Bold.woff2') format('woff2');
  font-weight: bold; /* Definiere die fette Version */
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'novonesisHeader'; /* Gib deinem Font einen Namen */
  src: url('../fonts/RaleGrotesk/RaleGrotesk-Medium.woff2') format('woff2'),
       url('../fonts/RaleGrotesk/RaleGrotesk-Medium.woff') format('woff'); /* Pfad(e) zu deiner Font-Datei */
  font-weight: 400, 500, 600; /* Gib das Gewicht an (z.B. normal, bold, 400, 700) */
  font-style: normal; /* Gib den Stil an (z.B. normal, italic) */
  font-display: swap; /* Optional: Bestimmt, wie der Browser den Text anzeigt, wÃ¤hrend der Font lÃ¤dt */
}


:root {
  --default-font: 'novonesis', "Roboto",  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";
  --heading-font: 'novonesisHeader', "Roboto",  sans-serif;
  --nav-font: "Mukta",  sans-serif;


/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
  --background-color: #173630; /* Background color for the entire website, including individual sections */
  --default-color: #ffffff; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #e1e1e1; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #BFE6C4; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #131825; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */


/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
  --nav-color: #e4edf5;  /* The default color of the main navmenu links */
  --nav-hover-color: #10a3d7; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: rgba(22, 29, 44, 0.95); /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: rgba(23, 30, 47, 0.95); /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: rgba(215, 226, 235, 0.645); /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ffffff; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #ffffff;
  --surface-color: #161c2a;
  --default-color: #333333;
}

.sand-background {
  --background-color: #fffce8;
  --surface-color: #161c2a;
  --default-color: #7a600f;
}


.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

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

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

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

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 32px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu */
.mobile-nav-toggle {
  color: var(--nav-color);
  position: fixed;
  top: 20px;
  right: 20px;
  font-size: 32px;
  line-height: 0;
  cursor: pointer;
  display: block !important;
  z-index: 998;
  transition: 0.3s;
}

.mobile-nav-toggle:hover {
  color: var(--nav-hover-color);
}

.navmenu {
  position: fixed;
  top: 0;
  bottom: 0;
  right: -300px;
  z-index: 997;
  transition: 0.3s;
  width: 300px;
  overflow: hidden;
}

.navmenu ul {
  display: block;
  list-style: none;
  padding: 20px 10px;
  margin: 0;
  overflow-y: auto;
  transition: 0.3s;
  z-index: 998;
}

.navmenu a,
.navmenu a:focus {
  color: var(--nav-dropdown-color);
  padding: 15px 20px;
  font-family: var(--nav-font);
  font-size: 17px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  transition: 0.3s;
}

.navmenu a i,
.navmenu a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.navmenu a i:hover,
.navmenu a:focus i:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus {
  color: var(--nav-dropdown-hover-color);
}

.navmenu .active i,
.navmenu .active:focus i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: rotate(180deg);
}

.navmenu .dropdown ul {
  position: static;
  display: none;
  z-index: 99;
  padding: 10px 0;
  margin: 10px 20px;
  box-shadow: none;
  transition: all 0.5s ease-in-out;
}

.navmenu .dropdown>.dropdown-active {
  display: block;
  background-color: var(--nav-dropdown-background-color);
  border: 1px solid color-mix(in srgb, var(--nav-dropdown-color), transparent 90%);
}

.mobile-nav-active .mobile-nav-toggle {
  right: 310px;
  font-size: 36px;
}

.mobile-nav-active .navmenu {
  position: fixed;
  overflow: hidden;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: var(--nav-mobile-background-color);
  transition: 0.3s;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

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

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

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

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

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

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

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

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

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

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

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

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 80px 0;
  scroll-margin-top: 0;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 0;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding: 30px 0;
  margin-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: 4px;
  color: color-mix(in srgb, var(--heading-color), transparent 95%);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 1;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 38px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding-top: 20px;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-bottom: 80px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 90%) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.5;
  z-index: 1;
}

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

.hero .hero-content {
  padding-right: 2.5rem;
}

@media (max-width: 991px) {
  .hero .hero-content {
    padding-right: 0;
    margin-bottom: 4rem;
    text-align: center;
  }
}

.hero .hero-content .subtitle {
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.hero .hero-content .subtitle span {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 3px;
  padding-bottom: 10px;
  position: relative;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
}

.hero .hero-content .subtitle span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
}

@media (max-width: 991px) {
  .hero .hero-content .subtitle span::after {
    right: 0;
    margin: 0 auto;
  }
}

.hero .hero-content .title {
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 500;
  margin-bottom: 2rem;
  letter-spacing: -1px;
  color: var(--heading-color);
}

.hero .hero-content .title .highlight {
  position: relative;
  display: inline-block;
  color: var(--accent-color);
}

.hero .hero-content .title .highlight::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  z-index: -1;
}

@media (max-width: 1200px) {
  .hero .hero-content .title {
    font-size: 3.8rem;
  }
}

@media (max-width: 991px) {
  .hero .hero-content .title {
    font-size: 3.2rem;
  }
}

@media (max-width: 767px) {
  .hero .hero-content .title {
    font-size: 2.8rem;
  }
}

@media (max-width: 480px) {
  .hero .hero-content .title {
    font-size: 2.4rem;
  }
}

.hero .hero-content .description {
  margin-bottom: 1.5rem;
}

.hero .hero-content .description p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.hero .hero-content .hero-buttons {
  display: flex;
  gap: 1.25rem;
}

@media (max-width: 991px) {
  .hero .hero-content .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero .hero-content .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
}

.hero .hero-content .hero-buttons .primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  color: var(--background-color);
  padding: .5rem 1rem;
  border-radius: 12px 0px 12px 0px;
	-webkit-border-radius: 12px 0px 12px 0px;
	-moz-border-radius: 12px 0px 12px 0px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero .hero-content .hero-buttons .primary-btn i {
  margin-left: 8px;
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.hero .hero-content .hero-buttons .primary-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.hero .hero-content .hero-buttons .primary-btn:hover i {
  transform: translateX(4px);
}

.hero .hero-content .hero-buttons .secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  background-color: transparent;
  color: var(--default-color);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero .hero-content .hero-buttons .secondary-btn:hover {
  border-color: var(--default-color);
  transform: translateY(-3px);
}

.hero .hero-visual {
  position: relative;
}

.hero .hero-visual .image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: transform 0.5s ease;
/*  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); */
}

.hero .hero-visual .image-wrapper:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.hero .hero-visual .image-wrapper .main-image {
  width: 100%;
  height: auto;
  display: block;
}

.hero .hero-visual .image-wrapper .floating-element {
  position: absolute;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--surface-color), transparent 40%);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  animation: float 6s ease-in-out infinite;
}

.hero .hero-visual .image-wrapper .floating-element i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.hero .hero-visual .image-wrapper .floating-element.top-left {
  top: -20px;
  left: -20px;
  animation-delay: 0.5s;
}

.hero .hero-visual .image-wrapper .floating-element.bottom-right {
  bottom: -20px;
  right: -20px;
  animation-delay: 1.5s;
}

.hero .hero-visual .image-wrapper .experience-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background-color: color-mix(in srgb, var(--surface-color), transparent 40%);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  min-width: 140px;
}

.hero .hero-visual .image-wrapper .experience-badge .years {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
}

.hero .hero-visual .image-wrapper .experience-badge .text {
  font-size: 0.85rem;
  color: var(--default-color);
  font-weight: 500;
}

.hero .hero-visual .client-counter {
  position: absolute;
  top: 30px;
  right: -30px;
  background-color: var(--surface-color);
  border-radius: 10px;
  padding: 1.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 160px;
}

@media (max-width: 991px) {
  .hero .hero-visual .client-counter {
    right: 0;
  }
}

@media (max-width: 767px) {
  .hero .hero-visual .client-counter {
    right: 20px;
  }
}

.hero .hero-visual .client-counter .counter-number span {
  font-size: 2rem;
  font-weight: 800;
  color: var(--heading-color);
}

.hero .hero-visual .client-counter .counter-text span {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.hero .action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Mobil und Tablet: Buttons zentrieren */
@media (max-width: 991.98px) {
  .hero .action-buttons {
    justify-content: center;
    align-items: center;
  }
}

/* Desktop: Standard linksbÃ¼ndig */
@media (min-width: 992px) {
  .hero .action-buttons {
    justify-content: flex-start; /* oder was du willst (links) */
    align-items: flex-start;
  }
}
@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-image-wrapper {
  position: relative;
  margin-bottom: 3rem;
}

.about .about-image-wrapper img {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about .about-image-wrapper .mission-card {
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 90%;
  background-color: var(--accent-color);
  padding: 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.about .about-image-wrapper .mission-card .mission-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about .about-image-wrapper .mission-card .mission-icon i {
  font-size: 1.75rem;
  color: var(--contrast-color);
}

.about .about-image-wrapper .mission-card .mission-content h4 {
  font-size: 1.25rem;
  color: var(--contrast-color);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.about .about-image-wrapper .mission-card .mission-content p {
  font-size: 0.95rem;
  color: var(--contrast-color);
  margin-bottom: 0;
}

.about .about-content .tag-badge {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.about .about-content h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

@media (max-width: 991px) {
  .about .about-content h2 {
    font-size: 1.75rem;
  }
}

.about .about-content .about-info p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.7;
}

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

.about .about-content .values-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 2rem;
}

.about .about-content .values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.about .about-content .values-list .value-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: color-mix(in srgb, var(--background-color), var(--default-color) 5%);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.about .about-content .values-list .value-item:hover {
  transform: translateY(-3px);
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.about .about-content .values-list .value-item .value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.about .about-content .values-list .value-item .value-icon i {
  color: var(--contrast-color);
  font-size: 14px;
}

.about .about-content .values-list .value-item .value-text {
  font-weight: 500;
  font-size: 0.95rem;
}

@media (max-width: 991px) {
  .about .about-content {
    margin-top: 3rem;
  }
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

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

.stats .stats-item {
  background: linear-gradient(135deg, color-mix(in srgb, var(--surface-color), transparent 5%), var(--surface-color));
  border-radius: 15px;
  padding: 40px 20px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.stats .stats-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.stats .stats-item:hover .icon-wrapper {
  transform: scale(1.1);
}

.stats .stats-item:nth-child(1) .icon-wrapper {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
}

.stats .stats-item:nth-child(1) .icon-wrapper i {
  color: color-mix(in srgb, var(--accent-color), transparent 10%);
}

.stats .stats-item:nth-child(2) .icon-wrapper {
  background-color: color-mix(in srgb, #ff7e00, transparent 85%);
}

.stats .stats-item:nth-child(2) .icon-wrapper i {
  color: color-mix(in srgb, #ff7e00, transparent 10%);
}

.stats .stats-item:nth-child(3) .icon-wrapper {
  background-color: color-mix(in srgb, #00c875, transparent 85%);
}

.stats .stats-item:nth-child(3) .icon-wrapper i {
  color: color-mix(in srgb, #00c875, transparent 10%);
}

.stats .stats-item:nth-child(4) .icon-wrapper {
  background-color: color-mix(in srgb, #e83e8c, transparent 85%);
}

.stats .stats-item:nth-child(4) .icon-wrapper i {
  color: color-mix(in srgb, #e83e8c, transparent 10%);
}

.stats .stats-item .icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
}

.stats .stats-item .icon-wrapper i {
  font-size: 36px;
}

.stats .stats-item span {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
  line-height: 1;
  font-family: var(--heading-font);
}

.stats .stats-item p {
  color: var(--default-color);
  font-size: 18px;
  margin: 0;
  font-weight: 500;
  font-family: var(--heading-font);
  opacity: 0.8;
}

/*--------------------------------------------------------------
# jbs Section â€“ Ã¤hnlich wie Features Section
--------------------------------------------------------------*/
#jbs-section {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #ffffff;
}

#jbs-section .main-heading {
  flex: 1;
  padding-right: 20px;
  color: #173630;
}

#jbs-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #173630;
}

#jbs-section .subtitle {
  font-weight: 500;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  color: #173630;
}

#jbs-section .description p {
  font-size: 17px;
  line-height: 1.7;
  color: color-mix(in srgb, #173630, transparent 20%);
  margin-bottom: 1rem;
}

/* Bild & Hover-Effekt */
#jbs-section .image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: transform 0.5s ease;
}

#jbs-section .image-wrapper:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

#jbs-section .main-image {
  width: 100%;
  height: auto;
  display: block;
}



/*--------------------------------------------------------------
# claim Section
--------------------------------------------------------------*/
.claim {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* kein padding, kein display:flex hier */
}

.claim::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 90%) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.5;
  z-index: 1;
}

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

.claim .claim-content {
  padding-right: 2.5rem;
}

@media (max-width: 991px) {
  .claim .claim-content {
    padding-right: 0;
    margin-bottom: 4rem;
    text-align: center;
  }
}

.claim .claim-content .title {
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 500;
  margin-bottom: 2rem;
  letter-spacing: -1px;
  color: var(--heading-color);
}

.claim .claim-content .title .highlight {
  position: relative;
  display: inline-block;
  color: var(--accent-color);
}

.claim .claim-content .title .highlight::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  z-index: -1;
}

@media (max-width: 1200px) {
  .claim .claim-content .title {
    font-size: 3.8rem;
  }
}

@media (max-width: 991px) {
  .claim .claim-content .title {
    font-size: 3.2rem;
  }
}

@media (max-width: 767px) {
  .claim .claim-content .title {
    font-size: 2.8rem;
  }
}

@media (max-width: 480px) {
  .claim .claim-content .title {
    font-size: 2.4rem;
  }
}

.claim .claim-content .description {
  margin-bottom: 1.5rem;
}

.claim .claim-content .description p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}
.claim .claim-content .giftline {
	margin-top: 1.5rem;
	margin-bottom: 1.5rem;
}
.claim .claim-content .giftline p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #bfe6c4;
}
.claim .claim-content .giftline i{
	font-size: 1.6rem;
	
}

.claim .claim-content .claim-buttons {
  display: flex;
  gap: 1.25rem;
}

@media (max-width: 991px) {
  .claim .claim-content .claim-buttons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .claim .claim-content .claim-buttons {
    flex-direction: column;
    gap: 1rem;
  }
}

.claim .claim-content .claim-buttons .primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  color: var(--background-color);
  padding: .5rem 1rem;
  border-radius: 12px 0px 12px 0px;
	-webkit-border-radius: 12px 0px 12px 0px;
	-moz-border-radius: 12px 0px 12px 0px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.claim .claim-content .claim-buttons .primary-btn i {
  margin-left: 8px;
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.claim .claim-content .claim-buttons .primary-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.claim .claim-content .claim-buttons .primary-btn:hover i {
  transform: translateX(4px);
}

.claim .claim-content .claim-buttons .secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  background-color: transparent;
  color: var(--default-color);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.claim .claim-content .claim-buttons .secondary-btn:hover {
  border-color: var(--default-color);
  transform: translateY(-3px);
}

.claim .claim-visual {
  position: relative;
}

.claim .claim-visual .image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: transform 0.5s ease;
/*  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); */
}

.claim .claim-visual .image-wrapper:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.claim .claim-visual .image-wrapper .main-image {
  width: 90%;
  height: auto;
  display: block;
}

.claim .claim-visual .image-wrapper .floating-element {
  position: absolute;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--surface-color), transparent 40%);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  animation: float 6s ease-in-out infinite;
}

.claim .claim-visual .image-wrapper .floating-element i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.claim .claim-visual .image-wrapper .floating-element.top-left {
  top: -20px;
  left: -20px;
  animation-delay: 0.5s;
}

.claim .claim-visual .image-wrapper .floating-element.bottom-right {
  bottom: -20px;
  right: -20px;
  animation-delay: 1.5s;
}

.claim .claim-visual .image-wrapper .experience-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background-color: color-mix(in srgb, var(--surface-color), transparent 40%);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  min-width: 140px;
}

.claim .claim-visual .image-wrapper .experience-badge .years {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
}

.claim .claim-visual .image-wrapper .experience-badge .text {
  font-size: 0.85rem;
  color: var(--default-color);
  font-weight: 500;
}

.claim .claim-visual .client-counter {
  position: absolute;
  top: 30px;
  right: -30px;
  background-color: var(--surface-color);
  border-radius: 10px;
  padding: 1.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 160px;
}

@media (max-width: 991px) {
  .claim .claim-visual .client-counter {
    right: 0;
  }
}

@media (max-width: 767px) {
  .claim .claim-visual .client-counter {
    right: 20px;
  }
}

.claim .claim-visual .client-counter .counter-number span {
  font-size: 2rem;
  font-weight: 800;
  color: var(--heading-color);
}

.claim .claim-visual .client-counter .counter-text span {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.claim .action-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}


/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .services-header {
  margin-bottom: 4rem;
}

@media (max-width: 992px) {
  .services .services-header {
    margin-bottom: 3rem;
  }
}

.services .services-intro {
  padding-right: 2rem;
  text-align:center;
}

@media (max-width: 992px) {
  .services .services-intro {
    padding-right: 0;
    margin-bottom: 2.5rem;
  }
}

.services .services-intro .services-tag {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.services .services-intro h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--default-color);
}

@media (max-width: 768px) {
  .services .services-intro h2 {
    font-size: 2rem;
  }
}

.services .services-intro p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.services .services-intro .klinker {
display: flex;
    flex-wrap: wrap;
	justify-content: center;
    align-items: center;
    gap: 1rem;
	width: 60%; 
  margin: 0 auto;
}
.services .services-intro .klinker i{
	font-size: 1.5rem;
}

.services .services-intro .klinker .reihe_1{
	background-color: #fffceb;
	padding: 8px 12px;
	color: #7a600f;
}

.services .services-formular {
	margin-top: 5rem;
  padding-right: 2rem;
  background-color: #f2fff3;
  border: 1px solid #bfe6c4;
  border-radius: 24px;
  padding: 56px;
  text-align: center;
}

.services .services-formular .felder {
            display: flex;
            flex-wrap: wrap; 
            gap: 20px; 
            max-width: 100%;
            text-align: left;
            
        }

.services .services-formular .feld {
            color: #173630;
            padding: 5px;
        }
.services .services-formular .feld label{
            font-size: 1.2rem;
			font-weight:500;
        }
.services .services-formular .feld input{
	width: 100%;
	padding:8px 12px;
	border: 1px solid #333333;
	border-radius: 5px;
}
.services .services-formular .feld textarea{
	width: 100%;
	padding:8px 12px;
	border: 1px solid #333333;
	border-radius: 5px;
}

        /* Die ersten beiden Divs sollen nebeneinander stehen */
.services .services-formular .feld.halb {
            flex: 1; /* Nimmt den verfÃ¼gbaren Platz gleichmÃ¤ÃŸig ein */
            min-width: calc(50% - 10px); /* 50% Breite minus die HÃ¤lfte des gaps (20px / 2 = 10px) */
            max-width: calc(50% - 10px);
        }

        /* Die nachfolgenden Divs sollen die volle Breite einnehmen */
.services .services-formular .feld.voll {
            flex-basis: 100%; /* Nimmt die volle Breite des Containers ein */
        }

        /* Optional: FÃ¼r kleinere Bildschirme kÃ¶nnen die nebeneinander liegenden Elemente auch umbrechen */
        @media (max-width: 900px) {
.services .services-formular .feld.halb {
                min-width: 100%;
                max-width: 100%;
            }
        }

@media (max-width: 992px) {
  .services .services-formular {
    padding-right: 0;
    margin-bottom: 2.5rem;
  }
}


.services .services-formular .primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  color: #0a3430;
  padding: .5rem 1rem;
  border-radius: 12px 0px 12px 0px;
	-webkit-border-radius: 12px 0px 12px 0px;
	-moz-border-radius: 12px 0px 12px 0px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.services .services-formular .primary-btn i {
  margin-right: 8px;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.services .services-formular .primary-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.services .services-formular .primary-btn:hover i {
  transform: translateX(4px);
}




.services .services-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.services .services-stats .stat-item {
  background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--surface-color), var(--accent-color) 5%));
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--accent-color);
}

.services .services-stats .stat-item .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.services .services-stats .stat-item .stat-label {
  display: block;
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-weight: 500;
}

.services .service-card {
  height: 100%;
}

.services .service-card .service-card-inner {
  background-color: var(--surface-color);
  border-radius: 8px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.services .service-card .service-card-inner:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.services .service-card .service-card-inner:hover .service-icon {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.services .service-card .service-card-inner .service-icon {
  width: 60px;
  height: 60px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.services .service-card .service-card-inner h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.services .service-card .service-card-inner p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/*--------------------------------------------------------------
# Features Section bearbeitet
--------------------------------------------------------------*/
.features {
  padding-top: 100px;
  padding-bottom: 20px;
}

.features .features-overview {
  display: flex;
  margin-bottom: 10px;
  gap: 40px;
}

@media (max-width: 991px) {
  .features .features-overview {
    flex-direction: column;
  }
}

.features .features-overview .main-heading {
  flex: 1;
  padding-right: 20px;
  color: #173630;
}

.features .features-overview .main-heading h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #173630;
}

.features .features-overview .main-heading p {
  font-size: 17px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 30px;
}

.features .additional-features {
  margin-bottom: 50px;
}

.features .additional-features .additional-feature-card-dark {
  background-color: #173630;
  color: #f2fff3;
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
}
.features .additional-features .additional-feature-card-dark h4 {
	color: #f2fff3;
}
.features .additional-features .additional-feature-card-light {
  background-color: #BFE6C4;
  color: #173630;
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
}
.features .additional-features .additional-feature-card-light h4{
	color: #173630;
}
.features .additional-features .additional-feature-card-red {
 
  background-color: #3a2828;
  color: #fff3f3;
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
   display: inline-block; /* Oder display: inline; */
  vertical-align: bottom; /* Standardwert, aber explizit gesetzt */
}
.features .additional-features .additional-feature-card-red h4{
	color: #fff3f3;
}
/*
.features .additional-features .spalten {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
   align-items: flex-end;
  gap: 2rem;
}
*/
.features .additional-features .additional-feature-card-red .icon-container {
	color: #e5a39c;
	font-size: 1.1rem;
	font-weight:400;
	margin-bottom:2rem;
}
.features .additional-features .additional-feature-card-dark .icon-container {
	color: #bfe6c4;
	font-size: 1.1rem;
	font-weight:400;
	margin-bottom:2rem;
}
.features .additional-features .additional-feature-card-light .icon-container {
	color: #173630;
	font-size: 1.1rem;
	font-weight:400;
	margin-bottom:2rem;
}
.features .additional-features .big-number {
	font-size: 4rem;
	font-weight: 500;
	line-height: 1;
}
.features .additional-features .small-number {
	font-size: 2rem;
	font-weight: 500;
	line-height: 1;
}

.features .additional-features .additional-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.features .additional-features .additional-feature-card .icon-container {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.features .additional-features .additional-feature-card .icon-container i {
  font-size: 28px;
  color: var(--accent-color);
}

.features .additional-features .additional-feature-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.features .additional-features .additional-feature-card p {
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 30px;
}

.features .additional-features .additional-feature-card .feature-tag {
  position: absolute;
  bottom: 30px;
  left: 30px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 20px;
}

.features .additional-features .additional-feature-card .feature-tag i {
  font-size: 14px;
}

.features .additional-features .additional-feature-card .feature-tag.active {
  background-color: rgba(25, 135, 84, 0.1);
  color: #198754;
}

.features .additional-features .additional-feature-card .feature-tag.pending {
  background-color: rgba(255, 159, 67, 0.1);
  color: #ff9f43;
}

.features .additional-features .additional-feature-card .feature-tag.scheduled {
  background-color: rgba(108, 117, 125, 0.1);
  color: #6c757d;
}

@media (max-width: 991px) {
  .features .features-overview .main-heading h2 {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .features .features-overview .main-heading h2 {
    font-size: 26px;
  }

  .features .features-overview .main-heading p {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# smart Section bearbeitet
--------------------------------------------------------------*/
.smart {
  padding-top: 100px;
  padding-bottom: 20px;
}

.smart .smart-overview {
  display: flex;
  margin-bottom: 10px;
  gap: 40px;
}

@media (max-width: 991px) {
  .smart .smart-overview {
    flex-direction: column;
  }
}

.smart .smart-overview .main-heading {
  flex: 1;
  padding-right: 20px;
  color: #7a600f;
}

.smart .smart-overview .main-heading h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #7a600f;
}

.smart .smart-overview .main-heading p {
  font-size: 17px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 30px;
}

.smart .additional-smart {
  margin-bottom: 50px;
}

.smart .additional-smart .additional-feature-card {
  background-color: #7a600f;
  color: #fffceb;
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  border-radius: 24px 0px 24px 0px;
	-webkit-border-radius: 24px 0px 24px 0px;
	-moz-border-radius: 24px 0px 24px 0px;
  position: relative;
}
.smart .additional-smart .additional-feature-card h4 {
	color: #fffceb;
}
.smart .additional-smart .additional-feature-card p {
	color: #fffceb;
}

.smart .additional-smart .additional-feature-card .icon-container {
	color: #fffceb;
	font-size: 8rem;
	font-weight:400;
	margin-bottom:2rem;	
	text-align: right;
	line-height: 1rem;
}

.smart .additional-smart .additional-feature-card .slogan i {
	color: #fffceb;
	font-size: 1.6rem;
	font-weight:400;
	margin-bottom:2rem;	
	line-height: 1rem;
	display: inline-block;
	vertical-align:-4px;
}

.smart .additional-smart .additional-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.smart .additional-smart .additional-feature-card h4 {
  font-size: 2rem;
  margin-bottom: 15px;
}



.smart .additional-smart .additional-feature-card .feature-tag {
  position: absolute;
  bottom: 30px;
  left: 30px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 20px;
}

.smart .additional-smart .additional-feature-card .feature-tag.active {
  background-color: rgba(25, 135, 84, 0.1);
  color: #198754;
}

.smart .additional-smart .additional-feature-card .feature-tag.pending {
  background-color: rgba(255, 159, 67, 0.1);
  color: #ff9f43;
}

.smart .additional-smart .additional-feature-card .feature-tag.scheduled {
  background-color: rgba(108, 117, 125, 0.1);
  color: #6c757d;
}

@media (max-width: 991px) {
  .smart .smart-overview .main-heading h2 {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .smart .smart-overview .main-heading h2 {
    font-size: 26px;
  }

  .smart .smart-overview .main-heading p {
    font-size: 16px;
  }
}


/*--------------------------------------------------------------
# Features Alt Section
--------------------------------------------------------------*/
.features-alt {
  padding-top: 30px;
  padding-bottom: 60px;
}

.features-alt .nav-tabs {
  border: none;
  background: color-mix(in srgb, var(--surface-color), transparent 50%);
  border-radius: 16px;
  backdrop-filter: blur(8px);
}

.features-alt .nav-tabs .nav-item {
  margin-bottom: 15px;
}

.features-alt .nav-tabs .nav-item:last-child {
  margin-bottom: 0;
}

.features-alt .nav-tabs .nav-link {
  padding: 20px;
  border: none;
  border-radius: 12px;
  background: var(--surface-color);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.features-alt .nav-tabs .nav-link .d-flex {
  position: relative;
  z-index: 1;
}

.features-alt .nav-tabs .nav-link .icon-box {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  transition: all 0.4s ease;
}

.features-alt .nav-tabs .nav-link .icon-box i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.4s ease;
}

.features-alt .nav-tabs .nav-link h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 5px 0;
  color: var(--heading-color);
  transition: all 0.4s ease;
}

.features-alt .nav-tabs .nav-link p {
  font-size: 14px;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: all 0.4s ease;
}

.features-alt .nav-tabs .nav-link:hover {
  transform: translateY(-2px);
}

.features-alt .nav-tabs .nav-link:hover::before {
  opacity: 1;
}

.features-alt .nav-tabs .nav-link:hover .icon-box {
  background: var(--accent-color);
}

.features-alt .nav-tabs .nav-link:hover .icon-box i {
  color: var(--contrast-color);
}

.features-alt .nav-tabs .nav-link:hover h4 {
  color: var(--accent-color);
}

.features-alt .nav-tabs .nav-link:hover p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features-alt .nav-tabs .nav-link.active {
  background: var(--accent-color);
}

.features-alt .nav-tabs .nav-link.active::before {
  opacity: 0;
}

.features-alt .nav-tabs .nav-link.active .icon-box {
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
}

.features-alt .nav-tabs .nav-link.active .icon-box i {
  color: var(--contrast-color);
}

.features-alt .nav-tabs .nav-link.active h4 {
  color: var(--contrast-color);
}

.features-alt .nav-tabs .nav-link.active p {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.features-alt .tab-content .content-box {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.features-alt .tab-content .content-box h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.features-alt .tab-content .content-box h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 3px;
}

.features-alt .tab-content .content-box p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.6;
}

.features-alt .tab-content .content-box p.highlight {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 92%), color-mix(in srgb, var(--accent-color), transparent 95%));
  padding: 20px;
  border-radius: 12px;
  position: relative;
}

.features-alt .tab-content .content-box .features-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0 0;
}

.features-alt .tab-content .content-box .features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding-left: 8px;
  transition: all 0.3s ease;
}

.features-alt .tab-content .content-box .features-list li:last-child {
  margin-bottom: 0;
}

.features-alt .tab-content .content-box .features-list li i {
  font-size: 20px;
  color: var(--accent-color);
  margin-right: 12px;
}

.features-alt .tab-content .content-box .features-list li span {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features-alt .tab-content .content-box .features-list li:hover {
  transform: translateX(5px);
}

.features-alt .tab-content .content-box .features-list li:hover span {
  color: var(--default-color);
}

.features-alt .tab-content .content-box .image-box {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.features-alt .tab-content .content-box .image-box img {
  transition: all 0.6s ease;
}

.features-alt .tab-content .content-box .image-box:hover img {
  transform: scale(1.05);
}

.features-alt .tab-content .content-box .image-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.05) 100%);
  pointer-events: none;
}

.features-alt .tab-pane {
  transition: all 0.4s ease;
}

.features-alt .tab-pane.fade {
  transform: translateY(10px);
  opacity: 0;
}

.features-alt .tab-pane.show {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 991px) {
  .features-alt .nav-tabs {
    margin-bottom: 30px;
  }

  .features-alt .nav-tabs .nav-link {
    padding: 15px;
  }

  .features-alt .nav-tabs .nav-link .icon-box {
    width: 40px;
    height: 40px;
  }

  .features-alt .nav-tabs .nav-link .icon-box i {
    font-size: 20px;
  }

  .features-alt .tab-content .content-box {
    padding: 30px;
  }

  .features-alt .tab-content .content-box h3 {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .features-alt .nav-tabs .nav-item {
    margin-bottom: 10px;
  }

  .features-alt .nav-tabs .nav-link h4 {
    font-size: 15px;
  }

  .features-alt .nav-tabs .nav-link p {
    font-size: 13px;
  }

  .features-alt .tab-content .content-box {
    padding: 25px;
  }

  .features-alt .tab-content .content-box h3 {
    font-size: 22px;
  }

  .features-alt .tab-content .content-box p {
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(170deg, var(--background-color) 0%, color-mix(in srgb, var(--background-color), var(--accent-color) 5%) 100%);
}

.call-to-action .cta-wrapper {
  position: relative;
  border-radius: 20px;
  background-color: var(--surface-color);
  box-shadow: 0 20px 60px color-mix(in srgb, var(--accent-color), transparent 92%);
  overflow: hidden;
}

.call-to-action .cta-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.call-to-action .cta-shapes .shape {
  position: absolute;
  border-radius: 50%;
}

.call-to-action .cta-shapes .shape.shape-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
  top: -150px;
  right: -100px;
}

.call-to-action .cta-shapes .shape.shape-2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(225deg, color-mix(in srgb, var(--heading-color), transparent 85%) 0%, color-mix(in srgb, var(--heading-color), transparent 95%) 100%);
  bottom: -100px;
  left: 20%;
}

.call-to-action .cta-shapes .shape.shape-3 {
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, color-mix(in srgb, var(--accent-color), transparent 92%) 0%, color-mix(in srgb, var(--heading-color), transparent 92%) 100%);
  top: 30%;
  left: -75px;
}

.call-to-action .cta-content {
  position: relative;
  z-index: 2;
}

.call-to-action .cta-content .badge-custom {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.call-to-action .cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.2;
}

.call-to-action .cta-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 1.05rem;
  line-height: 1.6;
}

.call-to-action .benefits-row {
  margin-top: 2rem;
}

.call-to-action .benefits-row .benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.call-to-action .benefits-row .benefit-item .icon-box {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), transparent 20%) 100%);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-right: 1rem;
  font-size: 1.25rem;
}

.call-to-action .benefits-row .benefit-item .benefit-content h5 {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--heading-color);
}

.call-to-action .benefits-row .benefit-item .benefit-content p {
  margin: 0;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.5;
}

.call-to-action .action-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.call-to-action .action-buttons .btn {
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 1rem;
  box-shadow: none;
}

.call-to-action .action-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.call-to-action .action-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.call-to-action .action-buttons .btn.btn-outline {
  background-color: transparent;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  color: var(--accent-color);
}

.call-to-action .action-buttons .btn.btn-outline:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  transform: translateY(-3px);
}

.call-to-action .action-buttons .guarantee-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1rem;
  color: var(--heading-color);
  font-size: 0.9rem;
  font-weight: 500;
}

.call-to-action .action-buttons .guarantee-badge i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.call-to-action .cta-image-container {
  position: relative;
  height: 100%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  z-index: 2;
}

.call-to-action .cta-image-container .main-image {
  position: relative;
  z-index: 2;
  max-height: 400px;
  object-fit: contain;
}

.call-to-action .cta-image-container .floating-element {
  position: absolute;
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  z-index: 3;
}

.call-to-action .cta-image-container .floating-element i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.call-to-action .cta-image-container .floating-element span {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--heading-color);
}

.call-to-action .cta-image-container .floating-element.element-1 {
  top: 20%;
  left: 0;
  animation: float1 4s ease-in-out infinite;
}

.call-to-action .cta-image-container .floating-element.element-2 {
  bottom: 25%;
  right: 0;
  animation: float2 5s ease-in-out infinite;
}

.call-to-action .cta-image-container .pattern-dots {
  position: absolute;
  width: 170px;
  height: 170px;
  background-image: radial-gradient(color-mix(in srgb, var(--accent-color), transparent 40%) 2px, transparent 2px);
  background-size: 15px 15px;
  bottom: 10%;
  left: 10%;
  z-index: 1;
  border-radius: 20px;
  opacity: 0.6;
}

@keyframes float1 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }
}

@media (max-width: 991.98px) {
  .call-to-action {
    padding: 70px 0;
  }

  .call-to-action .row {
    flex-direction: column-reverse;
  }

  .call-to-action .cta-image-container {
    padding: 2rem;
    min-height: 350px;
  }

  .call-to-action .cta-image-container .floating-element.element-1 {
    top: 15%;
    left: 10%;
  }

  .call-to-action .cta-image-container .floating-element.element-2 {
    bottom: 15%;
    right: 10%;
  }

  .call-to-action .cta-content {
    padding: 2rem !important;
  }

  .call-to-action .cta-content h2 {
    font-size: 2rem;
  }

  .call-to-action .action-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .call-to-action .action-buttons .btn {
    width: 100%;
  }

  .call-to-action .action-buttons .guarantee-badge {
    margin-left: 0;
    margin-top: 1rem;
  }
}

@media (max-width: 576px) {
  .call-to-action {
    padding: 50px 0;
  }

  .call-to-action .cta-content {
    padding: 1.5rem !important;
  }

  .call-to-action .cta-content h2 {
    font-size: 1.75rem;
  }

  .call-to-action .benefits-row .col-md-6 {
    margin-bottom: 1rem;
  }

  .call-to-action .cta-image-container {
    min-height: 300px;
  }

  .call-to-action .cta-image-container .floating-element {
    padding: 0.5rem 0.75rem;
  }

  .call-to-action .cta-image-container .floating-element span {
    font-size: 0.8rem;
  }

  .call-to-action .shape {
    transform: scale(0.7);
  }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .portfolio .filter-sidebar {
    margin-bottom: 30px;
  }
}

.portfolio .filters-wrapper {
  background-color: color-mix(in srgb, var(--surface-color), var(--default-color) 3%);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

@media (max-width: 991px) {
  .portfolio .filters-wrapper {
    padding: 20px;
  }
}

.portfolio .portfolio-filters {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 991px) {
  .portfolio .portfolio-filters {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: var(--default-color);
  transition: all 0.3s ease-in-out;
  border-radius: 6px;
  background: transparent;
  position: relative;
  border-left: 3px solid transparent;
}

@media (max-width: 991px) {
  .portfolio .portfolio-filters li {
    padding: 8px 16px;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
    border-left-width: 3px;
  }
}

.portfolio .portfolio-filters li:hover {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-left-color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-left-color: var(--accent-color);
  font-weight: 600;
}

.portfolio .portfolio-wrap {
  transition: 0.4s;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.portfolio .portfolio-wrap img {
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.portfolio .portfolio-wrap .portfolio-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
  z-index: 3;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translateY(20px);
  opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-info .content {
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translateY(20px);
}

.portfolio .portfolio-wrap .portfolio-info .category {
  display: inline-block;
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: var(--contrast-color);
  font-weight: 700;
  margin-bottom: 15px;
}

.portfolio .portfolio-wrap .portfolio-info .portfolio-links {
  display: flex;
  gap: 12px;
}

.portfolio .portfolio-wrap .portfolio-info .portfolio-links a {
  color: var(--contrast-color);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 30%);
  border-radius: 50%;
  font-size: 18px;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info .portfolio-links a:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px);
}

.portfolio .portfolio-wrap:hover {
  transform: translateY(-5px);
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.08);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  transform: translateY(0);
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info .content {
  transform: translateY(0);
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  padding: 40px;
  background-color: var(--surface-color);
  border-radius: 16px;
  text-align: center;
  position: relative;
  height: 100%;
  transition: all 0.3s ease-in-out;
}

.pricing .pricing-item:hover {
  transform: translateY(-5px);
}

.pricing .pricing-item .pricing-icon {
  width: 56px;
  height: 56px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.pricing .pricing-item .pricing-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.pricing .pricing-item h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.pricing .pricing-item .price {
  font-size: 48px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 16px;
}

.pricing .pricing-item .price .currency {
  font-size: 24px;
  font-weight: 500;
  vertical-align: super;
}

.pricing .pricing-item .price .period {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 400;
}

.pricing .pricing-item .description {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 32px;
}

.pricing .pricing-item .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.pricing .pricing-item .features-list li {
  padding: 12px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.pricing .pricing-item .features-list li i {
  color: var(--accent-color);
  font-size: 18px;
}

.pricing .pricing-item .btn-pricing {
  display: inline-block;
  padding: 12px 32px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.pricing .pricing-item .btn-pricing:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .pricing-item.featured {
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  background: linear-gradient(to bottom right, color-mix(in srgb, var(--accent-color), transparent 97%), var(--surface-color));
}

.pricing .pricing-item.featured .pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
}

.pricing .pricing-item.featured .btn-pricing {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .pricing-item.featured .btn-pricing:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

@media (max-width: 768px) {
  .pricing .pricing-item {
    padding: 30px 20px;
  }

  .pricing .pricing-item .price {
    font-size: 40px;
  }

  .pricing .pricing-item .price .currency {
    font-size: 20px;
  }

  .pricing .pricing-item .price .period {
    font-size: 14px;
  }

  .pricing .pricing-item .features-list li {
    font-size: 14px;
  }

  .pricing .pricing-item .btn-pricing {
    padding: 10px 24px;
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-sidebar {
  position: sticky;
  top: 100px;
}

.faq .faq-sidebar .faq-image {
  margin-bottom: 30px;
  border-radius: 14px;
  overflow: hidden;
}

.faq .faq-sidebar .faq-image img {
  transition: transform 0.5s ease;
}

.faq .faq-sidebar .faq-image img:hover {
  transform: scale(1.04);
}

.faq .faq-sidebar .contact-box {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 14px;
  padding: 30px;
}

.faq .faq-sidebar .contact-box h3 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq .faq-sidebar .contact-box h3 i {
  font-size: 24px;
  color: var(--accent-color);
}

.faq .faq-sidebar .contact-box p {
  margin-bottom: 20px;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.faq .faq-sidebar .contact-box .btn-contact {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.faq .faq-sidebar .contact-box .btn-contact:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.faq .faq-tabs .nav-pills {
  gap: 15px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 15px;
}

.faq .faq-tabs .nav-pills .nav-link {
  background: transparent;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 25px;
  transition: all 0.3s ease;
}

.faq .faq-tabs .nav-pills .nav-link.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 3px 10px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.faq .faq-tabs .nav-pills .nav-link:hover:not(.active) {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  color: var(--default-color);
}

.faq .faq-tabs .tab-content {
  padding-top: 25px;
}

.faq .faq-item {
  position: relative;
  margin-bottom: 20px;
  background-color: var(--surface-color);
  border-radius: 14px;
  box-shadow: 0 3px 10px color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 25px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq .faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--default-color), transparent 92%);
}

.faq .faq-item h3 {
  font-size: 17px;
  font-weight: 600;
  padding-right: 35px;
  margin-bottom: 0;
  transition: color 0.3s ease;
}

.faq .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-item .faq-content p {
  margin-bottom: 0;
  padding-top: 15px;
  font-size: 15px;
  line-height: 1.6;
  overflow: hidden;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.faq .faq-item .faq-toggle {
  position: absolute;
  right: 25px;
  top: 25px;
  font-size: 18px;
  color: var(--accent-color);
  transition: transform 0.3s ease;
}

.faq .faq-item.faq-active {
  background-color: color-mix(in srgb, var(--surface-color), var(--accent-color) 3%);
}

.faq .faq-item.faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-item.faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
}

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

@media (max-width: 991.98px) {
  .faq .faq-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 40px;
  }

  .faq .faq-sidebar .contact-box {
    text-align: center;
  }

  .faq .faq-tabs .nav-pills {
    flex-wrap: wrap;
  }

  .faq .faq-tabs .nav-pills .nav-item {
    flex: 1 0 30%;
  }

  .faq .faq-tabs .nav-pills .nav-link {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .faq .faq-tabs .nav-pills .nav-item {
    flex: 1 0 100%;
  }

  .faq .faq-item {
    padding: 20px;
  }

  .faq .faq-item h3 {
    font-size: 16px;
    line-height: 1.5;
  }

  .faq .faq-item .faq-toggle {
    right: 20px;
    top: 20px;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-header {
  margin-bottom: 50px;
}

.team .team-header h2 {
  position: relative;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.team .team-header h2:before {
  content: "";
  position: absolute;
  width: 70px;
  height: 4px;
  background: var(--accent-color);
  bottom: 0;
  left: 0;
}

.team .team-header p {
  font-size: 17px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  max-width: 600px;
}

@media (max-width: 991px) {
  .team .team-header {
    margin-bottom: 30px;
    text-align: center;
  }

  .team .team-header h2:before {
    left: 50%;
    transform: translateX(-50%);
  }

  .team .team-header p {
    margin: 0 auto;
  }

  .team .team-header .team-controls {
    margin-top: 30px;
    justify-content: center;
  }
}

.team .team-controls {
  display: flex;
  gap: 12px;
}

.team .team-controls .team-control-btn {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  color: var(--accent-color);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.team .team-controls .team-control-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.team .team-slider {
  padding: 10px 5px 40px;
}

.team .team-slider .swiper-wrapper {
  height: auto !important;
}

.team .team-member {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: var(--surface-color);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
}

.team .team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.team .team-member:hover .member-image .member-social {
  opacity: 1;
  bottom: 20px;
}

.team .team-member:hover .member-image:before {
  opacity: 0.8;
}

.team .team-member .member-image {
  position: relative;
  overflow: hidden;
}

.team .team-member .member-image:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 1;
}

.team .team-member .member-image img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.team .team-member .member-image .member-social {
  position: absolute;
  z-index: 2;
  display: flex;
  gap: 8px;
  justify-content: center;
  width: 100%;
  bottom: -30px;
  opacity: 0;
  transition: all 0.4s ease;
}

.team .team-member .member-image .member-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--contrast-color);
  border-radius: 50%;
  color: var(--accent-color);
  font-size: 15px;
  transition: all 0.3s ease;
}

.team .team-member .member-image .member-social a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.team .team-member .member-content {
  padding: 25px;
}

.team .team-member .member-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.team .team-member .member-content span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.team .team-member .member-content p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .container {
  max-width: 1280px;
}

.contact .contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 992px) {
  .contact .contact-wrapper {
    grid-template-columns: 38% 62%;
    gap: 30px;
  }
}

.contact .contact-info-panel {
  background: linear-gradient(145deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #1a4372 40%));
  color: var(--contrast-color);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact .contact-info-panel .contact-info-header {
  margin-bottom: 30px;
}

.contact .contact-info-panel .contact-info-header h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.contact .contact-info-panel .contact-info-header p {
  font-size: 15px;
  opacity: 0.85;
  line-height: 1.6;
}

.contact .contact-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: auto;
}

@media (min-width: 576px) and (max-width: 991px) {
  .contact .contact-info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact .info-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.contact .info-card:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.contact .info-card .icon-container {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .info-card .icon-container i {
  font-size: 20px;
  color: var(--contrast-color);
}

.contact .info-card .card-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--contrast-color);
}

.contact .info-card .card-content p {
  font-size: 14px;
  margin-bottom: 0;
  opacity: 0.8;
}

.contact .social-links-panel {
  margin-top: 35px;
}

.contact .social-links-panel h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.contact .social-links-panel .social-icons {
  display: flex;
  gap: 12px;
}

.contact .social-links-panel .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--contrast-color);
  font-size: 18px;
  transition: all 0.3s ease;
}

.contact .social-links-panel .social-icons a:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

.contact .contact-form-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact .map-container {
  width: 100%;
  height: 280px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact .form-container {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}

.contact .form-container h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  background: linear-gradient(120deg, var(--heading-color), color-mix(in srgb, var(--heading-color), var(--accent-color) 30%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.contact .form-container p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 25px;
}

.contact .form-container .form-floating {
  margin-bottom: 20px;
}

.contact .form-container .form-floating .form-control {
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 24px 20px 8px 20px;
  height: calc(3.5rem + 3px);
  background-color: var(--surface-color);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.contact .form-container .form-floating .form-control:focus {
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 85%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 40%);
  background-color: var(--surface-color);
}

.contact .form-container .form-floating .form-control::placeholder {
  color: transparent;
}

.contact .form-container .form-floating label {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 1rem 1.25rem 2.5rem 1.25rem;
}

.contact .form-container .form-floating label::after {
  background-color: transparent;
}

.contact .form-container .btn-submit {
  background: linear-gradient(145deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #1a4372 30%));
  color: var(--contrast-color);
  border: none;
  padding: 15px 25px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .form-container .btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.contact .form-container .btn-submit i {
  transition: transform 0.3s ease;
}

.contact .form-container .btn-submit:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .contact .contact-info-panel {
    padding: 30px 25px;
  }

  .contact .form-container {
    padding: 30px 25px;
  }
}

@media (max-width: 576px) {
  .contact .social-links-panel .social-icons {
    flex-wrap: wrap;
  }
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details {
  --card-border-radius: 12px;
  --content-spacing: 4rem;
}

.portfolio-details .project-header {
  margin-bottom: 2.5rem;
  position: relative;
}

.portfolio-details .project-header .project-title {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
}

.portfolio-details .project-header .project-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 80px;
  height: 4px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.portfolio-details .project-header .project-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}

.portfolio-details .project-header .project-meta .meta-item {
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.portfolio-details .project-header .project-meta .meta-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-right: 8px;
}

.portfolio-details .project-header .project-meta .meta-item a {
  color: inherit;
  transition: all 0.3s;
}

.portfolio-details .project-header .project-meta .meta-item a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.portfolio-details .project-header .project-tags {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.portfolio-details .project-header .project-tags .tag {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s;
}

.portfolio-details .project-header .project-tags .tag:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 75%);
  transform: translateY(-3px);
}

.portfolio-details .project-header .technologies .tech-title {
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--heading-color);
  text-align: right;
}

.portfolio-details .project-header .technologies .tech-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.portfolio-details .project-header .technologies .tech-badges span {
  background-color: color-mix(in srgb, var(--heading-color), transparent 90%);
  color: var(--heading-color);
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s;
}

.portfolio-details .project-header .technologies .tech-badges span:hover {
  background-color: color-mix(in srgb, var(--heading-color), transparent 80%);
  transform: scale(1.05);
}

.portfolio-details .media-showcase {
  margin-bottom: var(--content-spacing);
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.portfolio-details .media-showcase .swiper-wrapper {
  height: auto !important;
}

.portfolio-details .media-showcase .swiper-slide img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.portfolio-details .media-showcase .swiper-pagination {
  position: absolute;
  bottom: 20px;
}

.portfolio-details .media-showcase .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: var(--contrast-color);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.portfolio-details .media-showcase .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  width: 30px;
  border-radius: 5px;
  background-color: var(--accent-color);
}

.portfolio-details .project-content .description-box {
  margin-bottom: 2rem;
}

.portfolio-details .project-content .description-box h3 {
  margin-bottom: 1rem;
  font-size: 1.6rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.portfolio-details .project-content .description-box h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 40px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.portfolio-details .project-content .description-box .lead {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  font-weight: 500;
}

.portfolio-details .project-content .description-box p {
  margin-bottom: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
}

.portfolio-details .project-content .project-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.portfolio-details .project-content .project-stats .stat-item {
  background-color: var(--surface-color);
  padding: 1.5rem;
  border-radius: var(--card-border-radius);
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s;
}

.portfolio-details .project-content .project-stats .stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}

.portfolio-details .project-content .project-stats .stat-item .stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.portfolio-details .project-content .project-stats .stat-item .stat-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.portfolio-details .project-content .info-card {
  background-color: var(--surface-color);
  padding: 2rem;
  border-radius: var(--card-border-radius);
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s;
}

.portfolio-details .project-content .info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.portfolio-details .project-content .info-card:hover .card-icon {
  background-color: var(--accent-color);
}

.portfolio-details .project-content .info-card:hover .card-icon i {
  color: var(--contrast-color);
}

.portfolio-details .project-content .info-card .card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}

.portfolio-details .project-content .info-card .card-icon i {
  font-size: 1.8rem;
  color: var(--accent-color);
  transition: all 0.3s;
}

.portfolio-details .project-content .info-card h4 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.portfolio-details .project-content .info-card p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  margin-bottom: 0;
}

.portfolio-details .project-content .project-gallery {
  margin: 3rem 0;
}

.portfolio-details .project-content .project-gallery h3 {
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.portfolio-details .project-content .project-gallery h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 40px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.portfolio-details .project-content .project-gallery .gallery-item {
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.portfolio-details .project-content .project-gallery .gallery-item img {
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: all 0.5s ease;
}

.portfolio-details .project-content .project-gallery .gallery-item:hover {
  transform: translateY(-7px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .project-content .project-gallery .gallery-item:hover img {
  transform: scale(1.05);
}

.portfolio-details .project-content .key-features {
  margin-bottom: 3rem;
}

.portfolio-details .project-content .key-features h3 {
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.portfolio-details .project-content .key-features h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 40px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.portfolio-details .project-content .key-features .feature-item {
  background-color: var(--surface-color);
  padding: 2rem;
  border-radius: var(--card-border-radius);
  text-align: center;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s;
}

.portfolio-details .project-content .key-features .feature-item:hover {
  transform: translateY(-7px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.portfolio-details .project-content .key-features .feature-item:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.portfolio-details .project-content .key-features .feature-item i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  transition: all 0.3s;
}

.portfolio-details .project-content .key-features .feature-item h5 {
  margin-bottom: 1rem;
  font-weight: 600;
}

.portfolio-details .project-content .key-features .feature-item p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
  font-size: 0.95rem;
}

.portfolio-details .project-content .project-navigation {
  display: flex;
  justify-content: space-between;
  padding-top: 2.5rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.portfolio-details .project-content .project-navigation a {
  display: flex;
  align-items: center;
  color: var(--heading-color);
  font-weight: 600;
  transition: all 0.3s;
}

.portfolio-details .project-content .project-navigation a i {
  font-size: 1.2rem;
  transition: all 0.3s;
}

.portfolio-details .project-content .project-navigation a.prev-project i {
  margin-right: 8px;
}

.portfolio-details .project-content .project-navigation a.prev-project:hover {
  color: var(--accent-color);
}

.portfolio-details .project-content .project-navigation a.prev-project:hover i {
  transform: translateX(-5px);
}

.portfolio-details .project-content .project-navigation a.all-projects {
  border: 2px solid color-mix(in srgb, var(--heading-color), transparent 80%);
  padding: 8px 16px;
  border-radius: 30px;
}

.portfolio-details .project-content .project-navigation a.all-projects i {
  margin-right: 8px;
}

.portfolio-details .project-content .project-navigation a.all-projects:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.portfolio-details .project-content .project-navigation a.all-projects:hover i {
  transform: scale(1.1);
}

.portfolio-details .project-content .project-navigation a.next-project i {
  margin-left: 8px;
}

.portfolio-details .project-content .project-navigation a.next-project:hover {
  color: var(--accent-color);
}

.portfolio-details .project-content .project-navigation a.next-project:hover i {
  transform: translateX(5px);
}

@media (max-width: 991px) {
  .portfolio-details .project-header .technologies {
    margin-top: 2rem;
  }

  .portfolio-details .project-header .technologies .tech-title,
  .portfolio-details .project-header .technologies .tech-badges {
    text-align: left;
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .portfolio-details .project-header .project-title {
    font-size: 2.2rem;
  }

  .portfolio-details .project-navigation {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .portfolio-details .project-navigation a.all-projects {
    order: -1;
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .portfolio-details .project-stats {
    grid-template-columns: 1fr !important;
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .swiper-wrapper {
  height: auto !important;
}

.service-details .service-header {
  margin-bottom: 2.5rem;
}

.service-details .service-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
  position: relative;
  display: inline-block;
}

.service-details .service-header h1:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 3px;
  width: 70px;
  background: var(--accent-color);
}

.service-details .service-header .lead {
  font-size: 1.125rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.service-details .service-main .service-content-tabs {
  margin-bottom: 3rem;
}

.service-details .service-main .service-content-tabs .nav-pills {
  gap: 0.5rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 1px;
  padding-left: 10px;
}

.service-details .service-main .service-content-tabs .nav-pills .nav-link {
  background: transparent;
  color: color-mix(in srgb, var(--heading-color), transparent 25%);
  border-radius: 6px 6px 0 0;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  border: 1px solid transparent;
  border-bottom: none;
  transition: all 0.3s ease;
  margin-bottom: -1px;
}

.service-details .service-main .service-content-tabs .nav-pills .nav-link i {
  font-size: 1.1rem;
  margin-right: 0.5rem;
}

.service-details .service-main .service-content-tabs .nav-pills .nav-link:hover {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.service-details .service-main .service-content-tabs .nav-pills .nav-link.active {
  background-color: var(--surface-color);
  color: var(--accent-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-bottom: none;
  position: relative;
}

.service-details .service-main .service-content-tabs .nav-pills .nav-link.active:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--surface-color);
}

.service-details .service-main .service-content-tabs .tab-content {
  background-color: var(--surface-color);
  border-radius: 0 0 10px 10px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-top: none;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.service-details .service-main .service-content-tabs .tab-content .tab-image-content .main-image {
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.service-details .service-main .service-content-tabs .tab-content .tab-image-content .content-blocks .content-block {
  padding: 1.5rem;
  background: color-mix(in srgb, var(--surface-color), var(--accent-color) 3%);
  border-radius: 8px;
  height: 100%;
  transition: all 0.3s ease;
}

.service-details .service-main .service-content-tabs .tab-content .tab-image-content .content-blocks .content-block h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.service-details .service-main .service-content-tabs .tab-content .tab-image-content .content-blocks .content-block h4 i {
  color: var(--accent-color);
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

.service-details .service-main .service-content-tabs .tab-content .tab-image-content .content-blocks .content-block p {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
  line-height: 1.6;
}

.service-details .service-main .service-content-tabs .tab-content .tab-image-content .content-blocks .content-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  background: color-mix(in srgb, var(--surface-color), var(--accent-color) 5%);
}

.service-details .service-main .service-content-tabs .tab-content .strategy-content .strategy-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-details .service-main .service-content-tabs .tab-content .strategy-content .strategy-text p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.service-details .service-main .service-content-tabs .tab-content .strategy-content .strategy-steps {
  margin-top: 1rem;
}

.service-details .service-main .service-content-tabs .tab-content .strategy-content .strategy-steps .steps-wrapper {
  position: relative;
}

.service-details .service-main .service-content-tabs .tab-content .strategy-content .strategy-steps .steps-wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 24px;
  width: 2px;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  z-index: 0;
}

.service-details .service-main .service-content-tabs .tab-content .strategy-content .strategy-steps .steps-wrapper .step-item {
  display: flex;
  margin-bottom: 2rem;
  position: relative;
}

.service-details .service-main .service-content-tabs .tab-content .strategy-content .strategy-steps .steps-wrapper .step-item:last-child {
  margin-bottom: 0;
}

.service-details .service-main .service-content-tabs .tab-content .strategy-content .strategy-steps .steps-wrapper .step-item .step-number {
  width: 50px;
  height: 50px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  margin-right: 1.5rem;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.service-details .service-main .service-content-tabs .tab-content .strategy-content .strategy-steps .steps-wrapper .step-item .step-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.service-details .service-main .service-content-tabs .tab-content .strategy-content .strategy-steps .steps-wrapper .step-item .step-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
  line-height: 1.6;
}

.service-details .service-main .service-content-tabs .tab-content .results-content .metrics-overview .metric-card {
  background: linear-gradient(145deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), var(--accent-color) 8%) 100%);
  border-radius: 10px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  height: 100%;
  transition: all 0.3s ease;
}

.service-details .service-main .service-content-tabs .tab-content .results-content .metrics-overview .metric-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.service-details .service-main .service-content-tabs .tab-content .results-content .metrics-overview .metric-card .metric-icon {
  margin-bottom: 1rem;
}

.service-details .service-main .service-content-tabs .tab-content .results-content .metrics-overview .metric-card .metric-icon i {
  font-size: 2rem;
  color: var(--accent-color);
}

.service-details .service-main .service-content-tabs .tab-content .results-content .metrics-overview .metric-card .metric-value {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.service-details .service-main .service-content-tabs .tab-content .results-content .metrics-overview .metric-card .metric-label {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 0.95rem;
}

.service-details .service-main .service-content-tabs .tab-content .results-content .case-studies {
  margin-top: 3rem;
}

.service-details .service-main .service-content-tabs .tab-content .results-content .case-studies .swiper-pagination {
  bottom: -5px;
}

.service-details .service-main .service-content-tabs .tab-content .results-content .case-studies .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  opacity: 1;
}

.service-details .service-main .service-content-tabs .tab-content .results-content .case-studies .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 20px;
  border-radius: 5px;
  background-color: var(--accent-color);
}

.service-details .service-main .service-content-tabs .tab-content .results-content .case-studies .case-study-item {
  border-radius: 10px;
  overflow: hidden;
  background-color: color-mix(in srgb, var(--surface-color), var(--accent-color) 3%);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.service-details .service-main .service-content-tabs .tab-content .results-content .case-studies .case-study-item .case-image {
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.service-details .service-main .service-content-tabs .tab-content .results-content .case-studies .case-study-item .case-content {
  padding: 2rem;
}

.service-details .service-main .service-content-tabs .tab-content .results-content .case-studies .case-study-item .case-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-details .service-main .service-content-tabs .tab-content .results-content .case-studies .case-study-item .case-content .case-result {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.service-details .service-main .service-content-tabs .tab-content .results-content .case-studies .case-study-item .case-content .case-result .result-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1.1;
}

.service-details .service-main .service-content-tabs .tab-content .results-content .case-studies .case-study-item .case-content .case-result .result-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.service-details .service-main .service-content-tabs .tab-content .results-content .case-studies .case-study-item .case-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  margin-bottom: 0;
}

.service-details .service-main .section-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.service-details .service-main .section-subtitle:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
}

.service-details .service-main .services-packages .service-package {
  background-color: var(--surface-color);
  border-radius: 10px;
  padding: 1.5rem;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.service-details .service-main .services-packages .service-package:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background: var(--accent-color);
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.service-details .service-main .services-packages .service-package:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.service-details .service-main .services-packages .service-package:hover:before {
  transform: scaleX(1);
  transform-origin: left;
}

.service-details .service-main .services-packages .service-package:hover .package-icon {
  background-color: var(--accent-color);
}

.service-details .service-main .services-packages .service-package:hover .package-icon i {
  color: var(--contrast-color);
}

.service-details .service-main .services-packages .service-package .package-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}

.service-details .service-main .services-packages .service-package .package-icon i {
  font-size: 1.75rem;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.service-details .service-main .services-packages .service-package h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.service-details .service-main .services-packages .service-package p {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
  line-height: 1.6;
}

.service-details .sidebar-wrapper .service-info-card {
  background-color: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.service-details .sidebar-wrapper .service-info-card .card-header {
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), black 20%) 100%);
  padding: 2rem;
  position: relative;
}

.service-details .sidebar-wrapper .service-info-card .card-header h3 {
  color: var(--contrast-color);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-details .sidebar-wrapper .service-info-card .card-header .service-badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--contrast-color);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
}

.service-details .sidebar-wrapper .service-info-card .service-stats {
  padding: 1.5rem 2rem;
}

.service-details .sidebar-wrapper .service-info-card .service-stats .stat-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
}

.service-details .sidebar-wrapper .service-info-card .service-stats .stat-item:last-child {
  margin-bottom: 0;
}

.service-details .sidebar-wrapper .service-info-card .service-stats .stat-item i {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.service-details .sidebar-wrapper .service-info-card .service-stats .stat-item div span {
  display: block;
}

.service-details .sidebar-wrapper .service-info-card .service-stats .stat-item div span.stat-label {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0.25rem;
}

.service-details .sidebar-wrapper .service-info-card .service-stats .stat-item div span.stat-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--heading-color);
}

.service-details .sidebar-wrapper .service-highlights {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .sidebar-wrapper .service-highlights h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  position: relative;
}

.service-details .sidebar-wrapper .service-highlights h4:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent-color);
}

.service-details .sidebar-wrapper .service-highlights .highlights-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.service-details .sidebar-wrapper .service-highlights .highlights-wrapper .highlight-item {
  display: flex;
  align-items: flex-start;
}

.service-details .sidebar-wrapper .service-highlights .highlights-wrapper .highlight-item .highlight-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.service-details .sidebar-wrapper .service-highlights .highlights-wrapper .highlight-item .highlight-content h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
}

.service-details .sidebar-wrapper .service-highlights .highlights-wrapper .highlight-item .highlight-content p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 0;
  line-height: 1.5;
}

.service-details .sidebar-wrapper .contact-action {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-details .sidebar-wrapper .contact-action:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(145deg, color-mix(in srgb, var(--accent-color), black 15%) 0%, var(--accent-color) 100%);
  z-index: 1;
}

.service-details .sidebar-wrapper .contact-action .action-content {
  position: relative;
  z-index: 2;
  padding: 2.5rem 2rem;
  text-align: center;
}

.service-details .sidebar-wrapper .contact-action .action-content h4 {
  color: var(--contrast-color);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.service-details .sidebar-wrapper .contact-action .action-content p {
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.service-details .sidebar-wrapper .contact-action .action-content .action-button {
  display: inline-block;
  background-color: var(--contrast-color);
  color: var(--accent-color);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-details .sidebar-wrapper .contact-action .action-content .action-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.service-details .sidebar-wrapper .client-testimonial {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .sidebar-wrapper .client-testimonial .testimonial-content {
  position: relative;
}

.service-details .sidebar-wrapper .client-testimonial .testimonial-content .quote-mark {
  display: block;
  margin-bottom: 1rem;
}

.service-details .sidebar-wrapper .client-testimonial .testimonial-content .quote-mark i {
  font-size: 2rem;
  color: var(--accent-color);
  opacity: 0.2;
}

.service-details .sidebar-wrapper .client-testimonial .testimonial-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 1.5rem;
}

.service-details .sidebar-wrapper .client-testimonial .testimonial-content .client-info {
  display: flex;
  align-items: center;
}

.service-details .sidebar-wrapper .client-testimonial .testimonial-content .client-info .client-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
  border: 3px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.service-details .sidebar-wrapper .client-testimonial .testimonial-content .client-info div h6 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.service-details .sidebar-wrapper .client-testimonial .testimonial-content .client-info div span {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

@media (max-width: 991px) {
  .service-details .service-header h1 {
    font-size: 2rem;
  }

  .service-details .sidebar-wrapper {
    margin-bottom: 3rem;
  }
}

@media (max-width: 767px) {
  .service-details .service-content-tabs .nav-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .service-details .service-content-tabs .nav-pills .nav-link {
    white-space: nowrap;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
  }

  .service-details .service-content-tabs .nav-pills .nav-link i {
    font-size: 1rem;
  }

  .service-details .service-content-tabs .tab-content {
    padding: 1.5rem;
  }

  .service-details .service-header h1 {
    font-size: 1.75rem;
  }

  .service-details .service-header .lead {
    font-size: 1rem;
  }

  .service-details .case-study-item .case-content {
    padding: 1.25rem !important;
  }

  .service-details .case-study-item .case-content h4 {
    font-size: 1.125rem !important;
  }

  .service-details .case-study-item .case-content .case-result .result-value {
    font-size: 1.75rem !important;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/* Oxy Section â€“ lokal gekapselt, keine globalen Overrides */

#oxy-section .subtitle {
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--bs-primary);
}
#oxy-section .title {
  margin-bottom: .5rem;
}

/* Card-Visual */
#oxy-section .oxy-card {
  border-radius: 1rem;
  border: 1px solid rgba(0,0,0,.06);
  background: linear-gradient(180deg, rgba(25,135,84,.06) 0%, rgba(25,135,84,.02) 100%); /* sanftes GrÃ¼n passend zu eurer CI */
}


/* Brand-GrÃ¼n fÃ¼r Sections â€“ wie Hero/Oxy */
.brand-green {
  --background-color: #173630;   /* euer GrÃ¼n */
  --default-color: #ffffff;
  --heading-color: #e1e1e1;
  --surface-color: #131825;
  --contrast-color: #ffffff;
}

/* ans Ende der main.css packen */
#oxy-section h1,
#oxy-section h2,
#oxy-section h3,
#oxy-section .title {
  color: #173630; /* euer MarkengrÃ¼n fÃ¼r Ãœberschriften */
}

#oxy-section .oxy-icon {
  width: 96px;
  height: 96px;
  display: block;
}

/* OXY unten etwas kÃ¼rzer */
#oxy-section { padding-top: 0px; padding-bottom: 20px }

/* Subtitle in der OXY-Section wie bei jbs, nicht blau */
#oxy-section .subtitle {
  color: #173630;            /* euer MarkengrÃ¼n */
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: none;      /* ggf. auf uppercase stellen, falls jbs so lÃ¤uft */
  margin-bottom: .5rem;
}

/* OXY-Card: sanftes GrÃ¼n und freundliche Kanten */
#oxy-section .oxy-card {
  background: #f2fff3;                 /* gewÃ¼nschte Farbe */
  border: 1px solid #d8f0da;           /* zarter Rand passend zum BG */
  border-radius: 1rem;
}

/* Oxy-Icon: feste GrÃ¶ÃŸe, sauberer Flow */
#oxy-section .oxy-icon {
  width: 96px;
  height: 96px;
  display: block;
}

/* Ãœberschriften auf hellem OXY-Hintergrund gut lesbar */
#oxy-section h1,
#oxy-section h2,
#oxy-section h3,
#oxy-section .title {
  color: #173630;
}

/* OXY: Card-Body NICHT stretchen/verteilen â€“ Inhalt oben beginnen */
#oxy-section .card.oxy-card > .card-body {
  display: flex !important;          /* Ã¼berschreibt Template-Default */
  flex-direction: column !important; /* sicher nach oben stacken */
  justify-content: flex-start !important; /* NICHT space-between */
  align-items: stretch;           
  gap: .5rem;                        /* angenehmer Abstand zwischen Zeilen */
  padding: 1.25rem;                  /* normaler Innenabstand */
}

/* Falls das Template ein Auto-Margin nutzt, neutralisieren */
#oxy-section .card.oxy-card > .card-body > * {
  margin-top: 0 !important;
  margin-bottom: 0;
}

/* Icon oben rechts mit etwas Luft â€“ bleibt, drÃ¼ckt aber nichts nach unten */
#oxy-section .card.oxy-card .oxy-icon {
  width: 96px;
  height: 96px;
  display: block;
}

/* Bonus: Ãœberschriften/Title in OXY auf hellem BG lesbar halten */
#oxy-section h1,
#oxy-section h2,
#oxy-section h3,
#oxy-section .title {
  color: #173630;
}

/* OXY-Karte: niemals als Flex-Container behandeln */
#oxy-section .card.oxy-card {
  display: block !important;              /* neutralisiert evtl. card{display:flex} aus dem Template */
}

/* OXY-Karte: Body kontrolliert als Spalte oben starten */
#oxy-section .card.oxy-card > .card-body {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important; /* NICHT space-between */
  align-items: stretch !important;        /* Kinder volle Breite -> Icon-Row kann rechts ausrichten */
  gap: .5rem;                             /* angenehmer Zeilenabstand */
  padding: 1.25rem;                       /* normaler Innenabstand */
}

/* Falls das Template irgendwo mt-auto/auto-Margins setzt: neutralisieren */
#oxy-section .card.oxy-card > .card-body > .mt-auto,
#oxy-section .card.oxy-card > .card-body > *[style*="margin-top:auto"] {
  margin-top: 0 !important;
}

/* Standard-Margins fÃ¼r die beiden Textzeilen im Kasten */
#oxy-section .card.oxy-card h3 { margin: .25rem 0; }
#oxy-section .card.oxy-card p  { margin: 0; }

/* ---- OXY CARD FIX ---- */
#oxy-section .card.oxy-card,
#oxy-section .card.oxy-card > .card-body {
  display: block !important;   /* erzwingt Block-Layout, kein Flex */
}

/* TextabstÃ¤nde manuell definieren */
#oxy-section .card.oxy-card > .card-body h3 {
  margin-top: 0;
  margin-bottom: .25rem;
}
#oxy-section .card.oxy-card > .card-body p {
  margin: 0;
}

/* CLAIM: Schlaufe nur in der Content-Spalte */
#claim .claim-content .subtitle {
  display: inline-flex;          /* Badge verhÃ¤lt sich wie ein Chip */
  align-items: center;
  gap: .5rem;
  padding: 0 .75rem;
  box-sizing: border-box;
  max-width: 100%;
  /* Desktop: mittig in der halben Spalte zentrieren */
  margin-inline: auto;
}

/* Textanteil darf umbrechen & schrumpfen */
#claim .claim-content .subtitle span {
  min-width: 0;
  overflow-wrap: anywhere;
}

/* Icon-Slot: fester Platz, zentriert */
#claim .claim-content .subtitle i {
  flex: 0 0 1.5em;
  width: 1.5em;
  height: 1.5em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Mobil: volle Spaltenbreite, Badge bleibt mittig */
@media (max-width: 991.98px) {
  #claim .claim-content .subtitle {
    display: flex;               /* block-flex, ganze Zeile */
    width: 100%;
    margin: 0 auto;              /* mittig in Spalte */
    justify-content: space-between;
  }
  #claim .claim-content .subtitle span {
    flex: 1 1 auto;
  }
}

/* SERVICES: Schlaufe nur im Intro-Bereich */
#services .services-intro .subtitle {
  display: inline-flex;          /* Badge/Chip */
  align-items: center;
  gap: .5rem;
  padding: 0 .75rem;
  box-sizing: border-box;
  max-width: 100%;
  margin-inline: auto;           /* Desktop: zentriert in voller Spalte */
}

/* Text bricht â€žgnadenlosâ€œ â€“ kein Ãœberlaufen */
#services .services-intro .subtitle span {
  min-width: 0;
  overflow-wrap: anywhere;
}

/* Icon-Slot */
#services .services-intro .subtitle i {
  flex: 0 0 1.5em;
  width: 1.5em;
  height: 1.5em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Mobil: volle Breite, kein Herausragen rechts */
@media (max-width: 991.98px) {
  #services .services-intro .subtitle {
    display: flex;               /* ganze Zeile */
    width: 100%;
    margin: 0 auto;              /* mittig */
    justify-content: space-between;
  }
  #services .services-intro .subtitle span {
    flex: 1 1 auto;              /* Text darf schrumpfen & umbrechen */
  }
}


/* === CLAIM: responsive Schlaufe ohne Kacheln, Icon rechts zentriert === */
#claim .claim-content .subtitle{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.5rem;

  /* InnenabstÃ¤nde innerhalb der Schlaufe (links Text-Puffer, rechts Icon-Puffer) */
  padding-inline:24px;
  min-height:49px;

  /* Schlaufen-Grafik: nicht kacheln, skaliert zentriert */
  background: url('../img/doppelspirale_1.svg') center / contain no-repeat;

  /* Desktop: so breit wie Inhalt, zentriert in der Spalte */
  width:max-content;
  max-width:100%;
  margin-inline:auto;

  font-weight:500;
  color:var(--background-color);
  box-sizing:border-box;
}

#claim .claim-content .subtitle span{
  flex:1 1 auto;  /* Text darf umbrechen */
  min-width:0;    /* kein Ãœberlaufen */
}

#claim .claim-content .subtitle i{
  flex:0 0 1.5em;                 /* fixer Icon-Slot */
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:1.25rem;
  line-height:1;
  margin:0;                       /* keine Schiebe-Hacks mehr */
}

@media (max-width: 991.98px){
  #claim .claim-content .subtitle{
    width:100%;                   /* mobil volle Spaltenbreite */
  }
}

/* === SERVICES: responsive Schlaufe ohne Kacheln, Icon rechts zentriert === */
#services .services-intro .subtitle{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.5rem;

  padding-inline:28px;
  min-height:49px;
  background: url('../img/doppelspirale_2.svg') center / contain no-repeat;

  width:max-content;
  max-width:100%;
  margin:0 auto 1.5rem;  /* Desktop zentriert */
  font-weight:500;
  color:var(--background-color);
  box-sizing:border-box;
}

#services .services-intro .subtitle span{
  flex:1 1 auto;
  min-width:0;
}

#services .services-intro .subtitle i{
  flex:0 0 1.5em;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:1.25rem;
  line-height:1;
  margin:0;
}

@media (max-width: 991.98px){
  #services .services-intro .subtitle{
    width:100%;
  }
}

/* ========================= */
/* Loop-Badge / Schlaufe fix */
/* ========================= */

.loop-badge {
  display: grid;
  grid-template-columns: 1fr 48px;    /* Text links, Icon rechts fixer Slot */
  align-items: center;
  gap: .5rem;

  background: url('../img/doppelspirale_1.svg') center / contain no-repeat;
  aspect-ratio: 269 / 49;             /* HÃ¶he dynamisch */
  width: min(269px, 100%);            /* Desktop 269px, mobil max. 100% */
  margin-inline: auto;                /* immer zentriert */
  padding: 0 .75rem;
  box-sizing: border-box;
  font-weight: 500;
  color: var(--background-color);
 margin-bottom: 0.5rem;
}

#services .loop-badge {
  background: url('../img/doppelspirale_2.svg') center / contain no-repeat;
  aspect-ratio: 434 / 49;
  width: min(434px, 100%);
  margin-bottom: 0.5rem;
}

.loop-badge span {
  min-width: 0; /* erlaubt Text-Umbruch */
}

.loop-badge i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

#claim .loop-badge {
  margin-left: auto;
  margin-right: auto;
}

/* === CLAIM loop-badge: sauber zentrieren Desktop, vollbreit mobil === */

/* Falls der Parent auf Desktop via Flex nach rechts schiebt, neutralisieren wir das. */
@media (min-width: 992px) {
  #claim .claim-content {
    display: block !important;       /* nicht als Flex-Ende behandeln */
    text-align: initial !important;  /* keine Rechtsausrichtung erben */
  }
}

/* Claim-Schlaufe selbst (nur Claim! Services bleibt unberÃ¼hrt) */
#claim .loop-badge {
  /* Layout der Schlaufe: Text links flexibel, Icon rechts fester Slot */
  display: grid;
  grid-template-columns: 1fr 48px;
  align-items: center;
  gap: .5rem;

  /* Hintergrund-Schlaufe (dein SVG 1) */
  background: url('../img/doppelspirale_1.svg') center / contain no-repeat;

  /* GrÃ¶ÃŸe & Zentrierung */
  height: 49px;
  width: min(269px, 100%);     /* Desktop fix 269px, mobil max. 100% */
  margin: 0 auto .5rem;        /* zentriert + gleicher Abstand wie Subtitle */

  /* Innenabstand, Typo */
  padding: 0 .75rem;
  box-sizing: border-box;
  font-weight: 500;
  color: var(--background-color);
}

/* Icon mittig im rechten Bubble-Slot */
#claim .loop-badge i {
  display: flex;
  align-items: center;
  justify-content: center;   /* wirklich zentriert */
  font-size: 1.25rem;
  line-height: 1;
}

/* Mobil: volle Spaltenbreite sicherstellen */
@media (max-width: 991.98px) {
  #claim .loop-badge {
    width: min(269px, 100%) !important;  /* bleibt max. 269px, zentriert */
    margin-inline: auto;
  }
}

/* Claim: Loop auf DESKTOP unabhÃ¤ngig vom Parent-Flex hart zentrieren */
@media (min-width: 992px) {
  /* falls .claim-content ein Flex-Container mit align-items:flex-end ist */
  #claim .loop-badge {
    align-self: center !important;   /* Cross-Axis zentrieren */
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

/* Icon in beiden Loops sicher mittig halten */
#claim .loop-badge i,
#services .loop-badge i {
  display: flex;
  align-items: center;
  justify-content: center; /* horizontal + vertikal mittig */
  line-height: 1;
}

/* Claim-Loop: oben die gleiche Luft wie unten */
#claim .loop-badge {
  margin-top: 0.5rem;   /* <â€” oben ergÃ¤nzen */
  /* margin-bottom lÃ¤sst du so wie es bereits passt */
}



@media (min-width: 992px) {
  #claim .claim-content { text-align: initial !important; }
}

/* Gleicher oberer Abstand wie in Services â€“ Ã¼ber Padding, damit nix kollabiert */
#claim .claim-content { 
  padding-top: 0.5rem;  /* ggf. auf 0.75rem erhÃ¶hen, wennâ€™s noch zu knapp wirkt */
}

/* Claim: oberer Abstand wie bei Services erzwingen (verhindert Margin-Collapsing) */
#claim .claim-content { 
  padding-top: 0.5rem;   /* bei Bedarf auf 0.75rem erhÃ¶hen */
}

/* Falls der Loop selbst irgendein margin-top hat: neutralisieren */
#claim .loop-badge { 
  margin-top: 0;
}

/* Text im Loop immer links beginnen */
.loop-badge span {
  display: flex;
  align-items: center;   /* vertikal mittig */
  justify-content: center; /* Text linksbÃ¼ndig im Slot */
  height: 100%;
  line-height: 1.2;
}

/* ================================= */
/* Loop-Badge Fix ganz unten einfÃ¼gen */
/* ================================= */

/* Claim: auf Mobile NICHT volle Breite erzwingen */
@media (max-width: 991.98px) {
  #claim .loop-badge {
    width: min(269px, 100%) !important;  /* maximal so breit wie das SVG */
    margin-inline: auto;
  }
}

/* Hintergrund-Grafiken fÃ¼llen exakt die Box */
.loop-badge {
  background: url('../img/doppelspirale_1.svg') center / 100% 100% no-repeat;
}

#services .loop-badge {
  background: url('../img/doppelspirale_2.svg') center / 100% 100% no-repeat;
}

@media (max-width: 991.98px) {
  #hero .row > [class*="col-"] {
    padding-right: calc(var(--bs-gutter-x) * .5) !important; /* rechten Gutter wieder aktiv */
  }
}

@media (max-width: 991.98px) {
  #claim .row > [class*="col-"] {
    padding-right: calc(var(--bs-gutter-x) * .5) !important; /* rechten Gutter wieder aktiv */
  }
}

/* Form-Feinheiten */
#_form_1_ { text-align: left; }

#_form_1_ ._form-label,
#_form_1_ label {
  text-align: left;
  display: block;
  margin-bottom: .35rem;
}

#_form_1_ .form-text {
  text-align: left;
}

/* Optional: gleiche Optik wie deine restlichen Inputs/Buttons */
#_form_1_ .form-control { border-radius: .5rem; }
#_form_1_ ._submit.primary-btn { display: inline-flex; align-items: center; gap: .5rem; }


/* Labels & Hilfstexte linksbÃ¼ndig (falls nicht schon gesetzt) */
#_form_1_ { text-align: left; }
#_form_1_ ._form-label,
#_form_1_ label { text-align: left; display: block; margin-bottom: .35rem; }
#_form_1_ .form-text { text-align: left; }

/* Telefonfeld (intl-tel-input) wirklich volle Breite */
#_form_1_ .iti { display: block; width: 100% !important; }
#_form_1_ .iti input { width: 100% !important; }

/* Mehr Luft zwischen der ersten Zeile (Email/Phone) und dem Rest â€“ falls du ohne mb-Utilities arbeiten willst */
#_form_1_ .first-line { margin-bottom: 1rem; }
@media (min-width: 768px) {
  #_form_1_ .first-line { margin-bottom: 2rem; }
}

/* Formular auf MobilgerÃ¤ten sauber zentrieren */
@media (max-width: 991.98px) {
  #_form_1_ {
    max-width: 640px;           /* angenehme Breite mobil */
    margin-left: auto;
    margin-right: auto;         /* zentriert horizontal */
    padding-left: 12px;
    padding-right: 12px;        /* etwas Innenabstand */
  }
}

/* Optional: gleiche Optik wie deine restlichen Inputs/Buttons */
#_form_1_ .form-control { border-radius: .5rem; }
#_form_1_ ._submit.primary-btn { display: inline-flex; align-items: center; gap: .5rem; }

/* Mobile-Only Fix (unter md) */
@media (max-width: 767.98px){
  /* AuÃŸen etwas Luft, damit Text nicht am Rand klebt */
  .services-formular{
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* Formular zentrieren & volle Breite nutzen */
  .services-formular > form{
    width: 100% !important;
    margin: 0 auto !important;
  }

  /* Evtl. Bootstrap-Row-Offsets neutralisieren */
  #_form_1_ .row{
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* Labels sicher linksbÃ¼ndig */
  #_form_1_ label._form-label{
    text-align: left !important;
  }
}

/* =========================
   VIDEO SECTION (eigenstÃ¤ndig)
   ========================= */
/* =========================
   VIDEO SECTION (gelb + grÃ¼ne Schlaufe)
   ========================= */
.video-section {
  /* wie sand-background */
  --background-color: #fffce8;
  --surface-color: #161c2a;
  --default-color: #7a600f;
  background-color: var(--background-color);
  color: var(--default-color);
}

/* Ãœberschrift schwarz */
.video-section .video-title,
.video-section h2.title { color:#000 !important; }

/* GrÃ¼ne Schlaufe wie Services â€“ ACHTUNG: Pfad relativ zu main.css */
.video-section .loop-badge{
  display:grid;
  grid-template-columns: 1fr 48px;
  align-items:center;
  gap:.5rem;

  /* Pfad stimmt von assets/css/main.css aus: ../img/... */
  background: url('../img/doppelspirale_2.svg') center / 100% 100% no-repeat;
  aspect-ratio: 434 / 49;
  width:min(434px,100%);
  margin: 0 auto .5rem;
  padding: 0 .75rem;
  box-sizing: border-box;
  font-weight:500;
  color: var(--background-color); /* Textfarbe wie bei Services */
}
.video-section .loop-badge span{ min-width:0; }
.video-section .loop-badge i{
  display:flex; align-items:center; justify-content:center;
  font-size:1.25rem; line-height:1;
}

/* Video-Rahmen */
.video-section .video-frame{ background:#000; border-radius:12px; }

/* CTA unter dem Video zentrieren & spacing */
.video-section .video-cta { 
  margin-top: 1rem; 
}

/* Optional: auf sehr kleinen Screens etwas mehr Luft */
@media (max-width: 575.98px){
  .video-section .video-cta { margin-top: 1.25rem; }
  .video-section .video-cta .primary-btn { 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    width: 100%;
  }
}


/* === Video-CTA: exakt wie der Hero-Button === */
.video-section .video-cta .primary-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  color: var(--background-color);
  padding: .5rem 1rem;
  border-radius: 12px 0px 12px 0px;
  -webkit-border-radius: 12px 0px 12px 0px;
  -moz-border-radius: 12px 0px 12px 0px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.video-section .video-cta .primary-btn i{
  margin-left: 8px;         /* wie im Hero */
  font-size: .85rem;
  transition: transform .3s ease;
}

.video-section .video-cta .primary-btn:hover{
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.video-section .video-cta { 
  margin-top: 1rem; 
  text-align: center;        /* zentriert unter dem Video */
}

/* Button-Textfarbe in der Video-Section */
.video-section .video-cta .primary-btn {
  color: #000 !important;
}
.video-section .video-cta .primary-btn:hover {
  color: #000 !important; /* auch im Hover-Zustand schwarz */
}
#_form_13_ ._submit.primary-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background-color: var(--accent-color) !important;
  color: #000 !important;
  padding: .5rem 1rem !important;
  border-radius: 12px 0px 12px 0px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
}

/* 2-Spalten-Zeile fÃ¼r E-Mail & Telefon */
#_form_13_ .form-row-2 {
  display: grid;
  grid-template-columns: 1fr;        /* mobil: untereinander */
  gap: 16px;
}

@media (min-width: 992px) {          /* Desktop: nebeneinander */
  #_form_13_ .form-row-2 {
    grid-template-columns: 1fr 1fr;  /* zwei gleich breite Spalten */
    align-items: end;                 /* Labels/Inputs optisch bÃ¼ndig */
  }
}

/* Inputs full width, falls AC/Bootstrap was anderes setzt */
#_form_13_ .form-row-2 .form-control {
  width: 100%;
}

/* Checkbox + Text in einer Zeile */
#_form_13_ .sms_consent_checkbox {
  display: flex;
  align-items: flex-start;   /* Text beginnt oben neben der Checkbox */
  gap: 10px;
  margin-top: 8px;
  cursor: pointer;
}

/* Checkbox selbst */
#_form_13_ .sms_consent_checkbox input[type="checkbox"] {
  margin-top: 3px; /* optische Mitte zum Text */
  flex: 0 0 auto;
}

/* Der Text darf umbrechen, bleibt aber in derselben Zeile gestartet */
#_form_13_ .sms_consent_checkbox .sms_consent_message {
  line-height: 1.4;
  flex: 1 1 auto;
}

/* Optional: volle Breite des Submit-Buttons auch auf Desktop */
#_form_13_ ._button-wrapper ._submit {
  width: 100%;
}
/* 2-Spalten-Zeile fÃ¼r E-Mail & Telefon */
#_form_13_ .form-row-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 992px) {
  #_form_13_ .form-row-2 {
    grid-template-columns: 1fr 1fr;   /* zwei gleich groÃŸe Spalten */
    align-items: end;
  }

  /* Beide Felder exakt gleich breit */
  #_form_13_ .form-row-2 ._form_element {
    width: 100%;
  }

  /* Sicherheitshalber: Inputs auf volle Spaltenbreite */
  #_form_13_ .form-row-2 ._field-wrapper,
  #_form_13_ .form-row-2 .form-control {
    width: 100%;
    box-sizing: border-box;
  }
}

/* Checkbox + Text in einer Zeile */
#_form_13_ .sms_consent_checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 8px;
  cursor: pointer;
}

#_form_13_ .sms_consent_checkbox input[type="checkbox"] {
  margin-top: 3px;
  flex: 0 0 auto;
}

#_form_13_ .sms_consent_checkbox .sms_consent_message {
  line-height: 1.4;
  flex: 1 1 auto;
}

#_form_13_ ._button-wrapper ._submit {
  width: 100%;
}

/* Grid: mobil 1 Spalte, Desktop 2 gleich breite Spalten */
#_form_13_ .form-row-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 992px) {
  #_form_13_ .form-row-2 {
    grid-template-columns: minmax(0,1fr) minmax(0,1fr);
    align-items: end;
  }
}

/* WICHTIG: gleich breite Spalten + kein Max-Width-Bremser */
#_form_13_ .form-row-2 ._form_element,
#_form_13_ .form-row-2 ._field-wrapper {
  width: 100% !important;
  max-width: none !important;
  min-width: 0; /* verhindert Ãœberlauf durch langen Inhalt */
}

/* Fix fÃ¼r intl-tel-input: Wrapper auf volle Breite ziehen */
#_form_13_ .form-row-2 ._field-wrapper .iti {
  display: block !important;
  width: 100% !important;
}

/* Inputs selbst auf volle Breite */
#_form_13_ .form-row-2 ._field-wrapper .iti input,
#_form_13_ .form-row-2 .form-control,
#_form_13_ .form-row-2 input[type="text"],
#_form_13_ .form-row-2 input[type="tel"] {
  width: 100% !important;
  max-width: none !important;
  box-sizing: border-box;
}

/* Nur der Formular-Inhalt eingerahmt */
#_form_13_ ._form-content{
  border: 2px solid lightgreen;      /* #90EE90 */
  border-radius: 16px;
  padding: 24px;
  background: transparent;           /* kein Fill â€“ nur Rahmen */
}

/* Video-Section vollflÃ¤chig lightgreen */
.video-section{
  background: lightgreen; /* #90EE90 */
}

/* Video soll die volle Spaltenbreite nutzen */
.video-section .video-frame{ width: 100%; }

/* etwas Luft rechts neben dem Video auf Desktop */
@media (min-width: 992px){
  .video-section .video-content{ padding-left: 24px; }
}

/* === OXY-Card HellgrÃ¼n Ã¼berall wiederverwenden === */
:root{
  --oxy-light: #f2fff3;      /* OXY Card BG */
  --oxy-light-border: #d8f0da;/* OXY Card Border */
}

/* 1) Nur den Formular-Content einrahmen (rund) â€“ gleiche Farbe wie OXY-Card-Rand */
#_form_13_ ._form-content{
  border: 2px solid var(--oxy-light-border);
  border-radius: 16px;
  padding: 24px;
  background: transparent;
}

/* 2) Video-Section komplett mit OXY-Card-HellgrÃ¼n hinterlegen */
.video-section{
  background: var(--oxy-light) !important; /* Ã¼berschreibt Ã¤ltere Regeln */
  color: inherit;
}

/* === Farben aus der OXY-Card (falls noch nicht gesetzt) === */
:root{
  --oxy-light: #f2fff3;        /* HellgrÃ¼n der Card */
  --oxy-light-border: #d8f0da; /* zarter Rand der Card */
}

/* 1) Video-Section: Hintergrund wie OXY-Card + schwarze Schrift */
.video-section{
  background: var(--oxy-light) !important;
  color: #000 !important;
}
.video-section h1,
.video-section h2,
.video-section h3,
.video-section h4,
.video-section p,
.video-section li,
.video-section .text-body-secondary{
  color: #000 !important;
}
/* Links im Text der Video-Section (Buttons bleiben wie definiert) */
.video-section a:not(.primary-btn){
  color: #000 !important;
  text-decoration: underline;
}

/* 2) Formular: _form-content mit OXY-HellgrÃ¼n fÃ¼llen + Rahmen + Rundung */
#_form_13_ ._form-content{
  background: var(--oxy-light) !important;
  border: 2px solid var(--oxy-light-border) !important;
  border-radius: 16px !important;
  padding: 24px !important;
}

/* Text im Formular schwarz (Ã¼berschreibt evtl. ._dark) */
#_form_13_ ._form-content,
#_form_13_ ._form-content ._form-label,
#_form_13_ ._form-content label,
#_form_13_ ._form-content p{
  color: #000 !important;
}

/* Inputs bleiben gut lesbar */
#_form_13_ ._form-content .form-control,
#_form_13_ ._form-content input[type="text"],
#_form_13_ ._form-content input[type="tel"],
#_form_13_ ._form-content input[type="email"],
#_form_13_ ._form-content textarea{
  background: #fff !important;
  color: #000 !important;
  border-color: var(--oxy-light-border) !important;
  width: 100%;
  box-sizing: border-box;
}

/* Services (Formular-Section) unten wie .smart: 20px */
#services.section{
  padding-bottom: 20px !important;
}

/* Features oben wie #jbs-section: 80px (statt 100px) */
#features.section{
  padding-top: 80px !important;
}

/* Nach dem Formular keine zusÃ¤tzliche Innen-Luft mehr */
#services .services-header{
  margin-bottom: 0 !important;
}

/* Sicherheitshalber: direkter Nachbar soll keinen Extra-Margin bekommen */
#services + #features{
  margin-top: 0 !important;
}

/* Ein einheitlicher Klinker-Abstand */
:root { --klinker-gap: 24px; } /* ggf. 32px, wenn du's luftiger willst */

/* 1) Letzten Textabsatz direkt vor .klinker: kein Bottom-Margin,
      damit nur die .klinker den Abstand steuert */
#services .services-intro > p:last-child {
  margin-bottom: 0 !important;
}

/* 2) .klinker bekommt symmetrischen Abstand nach oben und unten */
#services .services-intro .klinker {
  margin-block: var(--klinker-gap) !important; /* oben UND unten gleich */
}

/* 3) Vor dem Formular keine zusÃ¤tzliche Margin einflieÃŸen lassen */
#services form,
#services #_form_13_,
#services #_form_13_ ._form-content {
  margin-top: 0 !important;
}

/* (Optional) Wenn .services-header selbst unten noch Margin hat: weg damit */
#services .services-header {
  margin-bottom: 0 !important;
}
