:root {
  --primary: #D4AF37;
  --primaryhover: #C4A137;
  --primary-rgb: 212, 175, 55;
  --secondary: #8B7355;
  --secondaryhover: #726149;
  --section-bg: #FDF5E6;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
}

/* Fonts */
:root {
  --default-font: "InterTight", system-ui, -apple-system, "Segoe UI", InterTight, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "InterTight", sans-serif;
  --nav-font: "InterTight", sans-serif;
}

/* Global Colors */
:root {
  --background-color: #FDF5E6;
  --background-color-rgb: 253, 245, 230;
  --default-color: #4A4233;
  --default-color-rgb: 74, 66, 51;
  --heading-color: #8B7355;
  --heading-color-rgb: 139, 115, 85;
  --primary-rgb: 212, 175, 55;
  --contrast-color: #ffffff;
  --contrast-color-rgb: 255, 255, 255;
}

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

@font-face {
  font-family: 'InterTight';
  src: url('/assets/fonts/InterTight/InterTight-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'InterTight';
  src: url('/assets/fonts/InterTight/InterTight-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: 'InterTight';
  src: url('/assets/fonts/InterTight/InterTight-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'InterTight';
  src: url('/assets/fonts/InterTight/InterTight-Regular.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'InterTight';
  src: url('/assets/fonts/InterTight/InterTight-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'InterTight';
  src: url('/assets/fonts/InterTight/InterTight-SemiBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'InterTight';
  src: url('/assets/fonts/InterTight/InterTight-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'InterTight';
  src: url('/assets/fonts/InterTight/InterTight-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: 'InterTight';
  src: url('/assets/fonts/InterTight/InterTight-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


body {
  font-family: "InterTight", sans-serif;
  color: #444444;
}

ul {
  list-style: none;
}


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

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

body {
  font-weight: 400;
  line-height: 1.5em;
  font-size: 14px;
}

@media (max-width: 767px) {

  body {
    font-size: 10px;
    line-height: 2em;
  }

  body p {
    font-size: 12px;
    line-height: 1.3em;
  }

}

h1 {
  font-size: 2.4rem;
  word-wrap: nowrap !important;
  overflow-wrap: nowrap !important;
  hyphens: none !important;
}


h2 {
  font-size: 28px;
  word-wrap: nowrap;
  overflow-wrap: nowrap;
  hyphens: none;
}

h3 {
  font-size: 1.6rem;
}

h4 {
  font-size: 1.4rem;

}

p {
  font-size: 18px;
}


* {
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}


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

.creditsname {
  font-weight: bold;
}


/*--------------------------------------------------------------
# Navbar
--------------------------------------------------------------*/
.navbar-toggler {
  order: 1;
}


.logo {
  order: 0;
}

.navbar-collapse {
  order: 2;
}

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

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

.navbar-default {
  background-color: rgba(255, 255, 255, 1);
  transition: all 0.5s ease-in-out;
  padding-top: 14px;
  padding-bottom: 14px;
}

.navbar-default.show {
  background-color: white;
}

.navbar .logo {
  max-width: 60px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 14px;
}

.navbar .logo-reduce {
  display: none;
}

.navbar .logo-trans {
  display: block;
}

.navbar-default.navbar-reduce .logo-reduce {
  display: block;
}

.navbar-default.navbar-reduce .logo-trans {
  display: none;
}

.navbar-default.navbar-reduce {
  background-color: white;
  transition: all 0.5s ease-in-out;
}

.navbar-default.navbar-trans .nav-item,
.navbar-default.navbar-reduce .nav-item {
  position: relative;
  padding-right: 10px;
  padding-bottom: 8px;
  margin-left: 0;
}

@media (min-width: 768px) {

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

@media (min-width: 992px) {

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

@media (min-width: 992px) and (max-width: 1200px) {
  .navbar .container {
    max-width: 1000px;
  }
}

.navbar-default.navbar-trans .nav-link,
.navbar-default.navbar-reduce .nav-link {
  font-size: 1.1rem;
  color: black;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: all 0.1s ease-in-out;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 992px) {

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


.navbar-default.navbar-trans .nav-link:hover,
.navbar-default.navbar-reduce .nav-link:hover {
  color: var(--primaryhover);
}

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

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

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


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


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

.navbar-default.navbar-reduce {
  transition: all 0.5s ease-in-out;
}

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

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

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

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


/* Dropdown Styles */
.navbar-nav .dropdown-menu {
  border: none;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 0;
  overflow: hidden;
}

.navbar-nav .dropdown-item {
  padding: 10px 20px;
  color: #000000;
  font-weight: 500;
  transition: all 0.3s ease;
}

.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item:focus {
  background-color: var(--primary);
  color: #ffffff;
}

.navbar-nav .nav-link:focus,
.navbar-nav .dropdown-item:focus {
  outline: none;
  box-shadow: none;
}


/* Desktop Dropdown Animation */
@media (min-width: 992px) {
  .navbar-nav .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  }

  .navbar-nav .dropdown:hover>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* Mobile Dropdown Styles */
@media (max-width: 991px) {
  .navbar-nav .dropdown-menu {
    display: none;
    background-color: #f8f9fa;
    border: none;
    padding-left: 15px;
    transition: max-height 0.3s ease-out;
    max-height: 0;
    overflow: hidden;
  }

  .navbar-nav .dropdown-menu.show {
    display: block;
    max-height: 1000px;
  }

  .navbar-nav .dropdown-item {
    padding: 10px 15px;
    color: #000000;
  }

  .navbar-nav .dropdown-item:hover,
  .navbar-nav .dropdown-item:focus {
    background-color: #f8f9fa;
    color: var(--primary);
  }

  .navbar-nav .dropdown-toggle::after {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
  }

  .navbar-nav .dropdown-toggle[aria-expanded="true"]::after {
    transform: translateY(-50%) rotate(180deg);
  }
}

/*------/ Hamburger Navbar /------*/
.navbar-toggler {
  position: relative;
  background: none;
  border: none;
  box-shadow: none;
}

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

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

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

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

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

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


/* Top and Bottom Bars */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white;
  font-size: 0.85rem;
  color: #666;
  z-index: 10300000000;
}

.bottom-bar {
  position: fixed;
  top: 86px;
  left: 0;
  width: 100%;
  background-color: white;
  font-size: 0.85rem;
  color: #666;
  z-index: 10300000;
  box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.1);
}

/* Adjust navbar position */
#header .navbar {
  top: 10px;
}


.top-extra {
  display: none;
}

@media (max-width: 991px) {
  .bottom-bar {
    top: 86px;
    display: none;
  }

  .top-bar {
    font-size: 10px;
  }

  .top-extra {
    display: inline;
    margin-left: 8px;
  }
}

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

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

a:hover {
  color: rgba(var(--primary-rgb), 0.75);
  text-decoration: none;
}

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

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

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

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

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

@media (max-width: 480px) {
  .header .logo img {
    max-height: 24px;
  }

  .header .logo h1 {
    font-size: 22px;
  }
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: linear-gradient(to right, var(--primaryhover), var(--primary));
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 10px;
  transition: 0.3s;
  position: relative;
  z-index: 1;
}

.header .btn-getstarted::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(var(--primary-rgb), 0.85);
  z-index: -1;
  transition: opacity 0.3s ease;
  opacity: 0;
  border-radius: inherit;
}

.header .btn-getstarted:hover::before,
.header .btn-getstarted:focus:hover::before {
  opacity: 1;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
}


@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}


/*--------------------------------------------------------------
# BTN Navbar Button
--------------------------------------------------------------*/

.btn-primary-navbar {
  background: linear-gradient(to right, var(--primary), var(--primaryhover));
  color: var(--primary-inverse);
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
  border-radius: 8px;
  border: none;
  outline: none;
  box-shadow: none;
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  padding: 8px 18px;
  color: white;
  text-align: center;
  letter-spacing: 0.9px;
  margin-left: 12px;
  margin-top: 12px;
  margin-bottom: 12px;
}

.btn-primary-navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to left, var(--primary), var(--primaryhover));
  z-index: -1;
  transition: opacity 0.5s ease;
  opacity: 0;
  border-radius: inherit;
  color: white;
  box-shadow: rgba(0, 0, 0, .2) 0 3px 5px -1px, rgba(0, 0, 0, .14) 0 6px 10px 0, rgba(0, 0, 0, .12) 0 1px 18px 0;

}

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

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

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

.footer {
  --background-color: rgba(var(--primary-rgb), .09);
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 16px;
  padding: 50px 0 30px;
  position: relative;
}

.footer .footer-top {
  padding-top: 0;
}

.footer .footer-about .logo img {
  max-height: 80px;
  margin-bottom: 20px;
}

.footer-description {
  max-width: 800px;
  margin: 0 auto;
}

.footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--primary);
  font-size: 18px;
  color: var(--primary);
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--contrast-color);
  background-color: var(--primary);
}

.footer .footer-links ul a {
  color: var(--primary);
  transition: 0.3s;
}

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

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

@media (max-width: 768px) {
  .footer .contact-info .list-inline-item {
    display: block;
    margin-right: 0;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99;
  background-color: var(--primary);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  transition: all 0.4s;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

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

.scroll-top:hover {
  background-color: rgba(var(--primary-rgb), 0.8);
  color: var(--contrast-color);
}

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

/*--------------------------------------------------------------
# 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-image: url('/assets/img/hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
  z-index: 0;
}

.page-title:before {
  content: "";
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  inset: 0;
  z-index: -1;
}

@media (max-width: 768px) {
  .page-title {
    padding: 130px 0 40px 0;
  }
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}


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

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: rgba(255, 255, 255, 0.6);
}

.page-title a {
  transition: all 0.3s ease;
}

.page-title a:hover {
  color: var(--primaryhover);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

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

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

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

.section-title h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 20vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero .hero-bg::before {
  content: "";
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  padding: 0 20px;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  text-align: center;
  margin-top: 20px;
}

.price-cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.1);
  width: 1200px !important;
  max-width: 90%;
  margin: 0 auto;
}

.price-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: rgba(0, 0, 0, 0.6) !important;
  color: white;
  padding: 15px !important;
  border-radius: 8px;
  width: 200px;
  text-align: center;
}

.price-card h4 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 8px;
  font-weight: 600;
}

.price-card .current-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: #FFF;
  margin: 0;
}

.fa-coins {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.fa-coins.text-warning {
  color: #FFD700 !important;
}

.fa-coins.text-secondary {
  color: #C0C0C0 !important;
}

.fa-coins.text-info {
  color: #E5E4E2 !important;
}

.fa-coins.text-rose {
  color: #E5C3C1 !important;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .price-cards-wrapper {
    align-items: center;
    width: 800px !important;
    max-width: 100%;
  }

  .price-card {
    width: 250px;
  }

  .hero h1 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .price-cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 380px !important;
    max-width: 100%;
    gap: 10px;
  }

  .hero {
    height: auto;
    padding: 140px 0 20px;
  }

  .hero h1 {
    margin-top: -80px;
    font-size: 1.5rem;
  }

  .price-card {
    flex: 1 1 45%;
    max-width: 200px !important;
    width: 100%;
    margin: 0 auto;
  }
}



/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding-bottom: 20px;
}

.about .content .who-we-are {
  text-transform: uppercase;
  margin-bottom: 15px;
  color: rgba(var(--default-color-rgb), 0.6);
  text-align: start;
}

.about .content h3 {
  font-size: 2rem;
  font-weight: 700;
  text-align: start;
}

.about .content p {
  text-align: start;
}

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

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 1.25rem;
  margin-right: 4px;
  color: var(--primary);
}

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



.about .content .read-more i {
  margin-left: 5px;
  font-size: 16px;
  -webkit-text-stroke: 2px;
  transition: 0.3s;
  margin-top: 2px;
}

.about .content .read-more:hover i {
  transform: translateX(5px);
}


.about .content .read-more {
  font-family: "InterTight", sans-serif;
  font-weight: 600;
  font-size: 18px;
  display: inline-flex;
  align-items: start;
  padding: 13px 24px;
  border-radius: 10px;
  transition: 0.5s;
  margin: 10px;
  color: white;
  background: linear-gradient(to right, var(--primary), var(--primaryhover));
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  border: none;
  position: relative;
  z-index: 1;
}

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

.about .content .read-more:hover::before,
.about .content .read-more:hover {
  opacity: 1;
}

.about .content .read-more:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
}



.about .about-images img {
  border-radius: 10px;
}


/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/

.features {
  padding: 60px 0;
  background: linear-gradient(rgba(var(--background-color-rgb), 0.98), rgba(var(--background-color-rgb), 0.98));
}

.features .nav-tabs {
  border: 0;
  background: rgba(var(--primary-rgb), 0.03);
  border-radius: 15px;
  padding: 15px;
}

.features .nav-item {
  width: 100%;
  margin-bottom: 15px;
}

.features .nav-link {
  color: var(--heading-color);
  border: 1px solid transparent;
  padding: 20px;
  transition: all 0.3s ease;
  border-radius: 10px;
  display: flex;
  align-items: center;
  cursor: pointer;
  background: var(--contrast-color);
}

.features .nav-link i {
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  font-size: 20px;
  flex-shrink: 0;
  border-radius: 8px;
  margin-right: 15px;
  background: rgba(var(--primary-rgb), 0.1);
  transition: all 0.3s ease;
}

.features .nav-link .nav-content {
  flex-grow: 1;
}

.features .nav-link h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  transition: all 0.3s ease;
}

.features .nav-link .step-number {
  font-size: 14px;
  color: var(--primary);
  opacity: 0.7;
}

.features .nav-link:hover {
  background: rgba(var(--primary-rgb), 0.04);
  transform: translateX(5px);
}

.features .nav-link.active {
  background: var(--primary);
  border-color: var(--primary);
}

.features .nav-link.active i,
.features .nav-link.active h3,
.features .nav-link.active .step-number {
  color: var(--contrast-color);
}

.features .nav-link.active i {
  background: rgba(255, 255, 255, 0.2);
}

.feature-content {
  background: var(--contrast-color);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(var(--primary-rgb), 0.1);
}

.feature-content h4 {
  color: var(--primary);
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 600;
}

.feature-content p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--default-color);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.feature-list li {
  padding: 10px 0 10px 30px;
  position: relative;
}

.feature-list li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--primary);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.info-box {
  background: rgba(var(--primary-rgb), 0.05);
  padding: 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.info-box.center-all {
  align-items: center;
}

.info-box i {
  color: var(--primary);
  font-size: 20px;
}

.btn-primary {
  background: var(--primary);
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  color: white;
}

.btn-primary:hover {
  background: var(--primaryhover);
  transform: translateY(-2px);
  color: white;
}

@media (max-width: 991px) {
  .features .nav-link {
    padding: 15px;
  }

  .features .nav-link i {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .feature-content {
    padding: 20px;
    margin-top: 30px;
  }
}

/* Nur die Tab Animation Styles */
.features .tab-content {
  position: relative;
}

.features .tab-pane {
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
}

.features .tab-pane.show {
  opacity: 1;
}



/*--------------------------------------------------------------
# Features Details Section
--------------------------------------------------------------*/
.features-details .features-item+.features-item {
  margin-top: 60px;
}

.features-details .features-item .content {
  background-color: rgba(var(--primary-rgb), 0.05);
  color: rgba(var(--default-color-rgb), 0.8);
  padding: 30px;
  border-radius: 10px;
  text-align: start;
}

.features-details .features-item h3 {
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 15px;
  text-align: start;
}


.features-details .features-item .more-btn {
  font-family: "InterTight", sans-serif;
  display: inline-flex;
  align-items: center;
  transition: 0.5s;
  letter-spacing: 1px;
  margin: 10px;
  color: white;
  background: linear-gradient(to right, var(--primary), var(--primaryhover));
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  border: none;
  position: relative;
  z-index: 1;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 22px;
}

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

.features-details .features-item .more-btn:hover::before,
.features-details .features-item .more-btn:hover {
  opacity: 1;
}

.features-details .features-item .more-btn:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
}


.features-details .features-item ul {
  list-style: none;
  padding: 0;
}

.features-details .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.features-details .features-item ul li:last-child {
  padding-bottom: 0;
}

.features-details .features-item ul i {
  font-size: 20px;
  margin-right: 10px;
  color: var(--primary);
}

.features-details .features-item img {
  border-radius: 15px;
}

.features-image {
  text-align: center;
}

.features-image img {
  width: calc(100vw - 24px) !important;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  --background-color: rgba(var(--primary-rgb), .03);
}

.services .service-item {
  background-color: var(--contrast-color);
  border: 1px solid rgba(var(--default-color-rgb), 0.15);
  height: 100%;
  padding: 30px;
  transition: 0.3s;
  border-radius: 10px;
  display: flex;
}

.services .service-item .icon {
  font-size: 32px;
  border-radius: 10px;
  position: relative;
  margin-right: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

.services .service-item h3 {
  color: rgba(var(--heading-color-rgb), 0.75);
  font-weight: 700;
  font-size: 22px;
  transition: 0.3s;
}

.services .service-item p {
  margin-bottom: 0;
  color: rgba(var(--default-color-rgb), 0.6);
  transition: 0.3s;
}

.services .service-item .read-more {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  transition: 0.3s;
  font-size: 14px;
}

.services .service-item .read-more i {
  margin-left: 10px;
}

.services .service-item.item-cyan .icon {
  color: #0dcaf0;
  border: 1px solid #0dcaf0;
  background: rgba(13, 202, 240, 0.1);
}

.services .service-item.item-orange .icon {
  color: #fd7e14;
  border: 1px solid #fd7e14;
  background: rgba(253, 126, 20, 0.1);
}

.services .service-item.item-teal .icon {
  color: #20c997;
  border: 1px solid #20c997;
  background: rgba(32, 201, 151, 0.1);
}

.services .service-item.item-red .icon {
  color: #df1529;
  border: 1px solid #df1529;
  background: rgba(223, 21, 4, 0.1);
}

.services .service-item.item-indigo .icon {
  color: #6610f2;
  border: 1px solid #6610f2;
  background: rgba(102, 16, 242, 0.1);
}

.services .service-item.item-pink .icon {
  color: #f3268c;
  border: 1px solid #f3268c;
  background: rgba(243, 38, 140, 0.1);
}

.services .service-item:hover {
  box-shadow: 0px 2px 25px rgba(var(--default-color-rgb), 0.1);
}

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

.services .service-item:hover p {
  color: rgba(var(--default-color-rgb), 0.9);
}

/*--------------------------------------------------------------
# More Features Section
--------------------------------------------------------------*/
.more-features .features-image {
  position: relative;
  min-height: 400px;
}

.more-features .features-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  border-radius: 10px;
}

.more-features h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.more-features .icon-box {
  margin-top: 30px;
}

.more-features .icon-box i {
  color: var(--primary);
  margin-right: 15px;
  font-size: 24px;
  line-height: 1.2;
}

.more-features .icon-box h4 {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
}

.more-features .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .section-title {
  padding-bottom: 20px;
}

.faq .content-subtitle {
  font-size: 15px;
  margin-bottom: 10px;
  display: block;
  color: var(--default-color);
}

.faq .content-title {
  color: var(--heading-color);
  font-size: 22px;
  margin-bottom: 30px;
}

.faq p {
  line-height: 1.7;
  color: var(--default-color);
}

.faq .custom-accordion .accordion-item {
  background-color: var(--surface-color);
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  transition: all 0.3s ease;
  padding: 10px 0;
  border: 1px solid rgba(var(--primary-rgb), 0.1);
}

.faq .custom-accordion .accordion-item .btn-link {
  display: block;
  width: 100%;
  padding: 15px 45px;
  text-decoration: none;
  color: var(--default-color);
  border: none;
  position: relative;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 18px;
  text-align: start;
}

.faq .custom-accordion .accordion-item .btn-link:before {
  content: "\f282";
  font-family: "bootstrap-icons" !important;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  transition: transform 0.3s ease;
  display: inline-block;
}

.faq .custom-accordion .accordion-item .btn-link[aria-expanded=true] {
  color: var(--primary);
}

.faq .custom-accordion .accordion-item .btn-link[aria-expanded=true]:before {
  transform: translateY(-50%) rotate(-180deg);
  color: var(--primary);
}

.faq .custom-accordion .accordion-item .accordion-body {
  padding: 20px 40px;
  color: var(--default-color);
  background-color: var(--section-bg);
  font-size: 18px;
  line-height: 1.6;
}

/* Hover Effects */
.faq .custom-accordion .accordion-item:hover {
  box-shadow: 0 2px 15px rgba(var(--primary-rgb), 0.1);
}

.faq .custom-accordion .accordion-item .btn-link:hover {
  color: var(--primary);
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  .faq .custom-accordion .accordion-item .btn-link {
    font-size: 16px;
    padding: 12px 40px;
  }

  .faq .custom-accordion .accordion-item .accordion-body {
    padding: 15px 30px;
    font-size: 16px;
  }
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  padding: 60px 0 120px 0;
}

@media (max-width: 768px) {
  .contact {
    padding: 60px 0;
  }
}

#contact-container {
  display: flex;
  overflow: hidden;
  border-radius: 4px;
  box-shadow:
    0 -3px 15px rgba(0, 0, 0, 0.1),
    0 5px 15px rgba(0, 0, 0, 0.1),
    0 15px 35px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

#contact .contact-info {
  flex: 0 0 33.333%;
  padding: 30px;
  background: var(--section-bg);
  display: flex;
  flex-direction: column;

}

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

#contact .contact-title {
  font-size: 21px !important;
  font-weight: 600;
  line-height: 1.2;
  hyphens: none;
  word-break: none;
}

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

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

#contact .info-item i {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  width: 46px;
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20%;
  margin-right: 20px;
  flex-shrink: 0;
  background-color: var(--primary);
}

#contact .info-item .content {
  flex-grow: 1;
  color: var(--primary);
  padding: 1px !important;
  text-align: start;
}

#contact .info-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 5px 0;
}

#contact .info-item p {
  padding: 0;
  margin: 0;
  font-size: 15px !important;
}


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

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

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

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

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

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

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

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

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

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

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

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


.php-email-form button[type="submit"] {
  background: linear-gradient(to left, var(--primary), var(--primaryhover));
  color: var(--primary-inverse);
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
  border-radius: 8px;
  border: none;
  outline: none;
  box-shadow: none;
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 18px;
  display: inline-block;
  padding: 10px 20px;
  color: white;
  text-align: center;
  margin: 0 auto;
  box-shadow: rgba(0, 0, 0, .2) 0 3px 5px -1px, rgba(0, 0, 0, .14) 0 6px 10px 0, rgba(0, 0, 0, .12) 0 1px 18px 0;
}

.php-email-form button[type="submit"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom left, var(--primary), var(--primaryhover));
  z-index: -1;
  transition: opacity 0.5s ease;
  opacity: 0;
  border-radius: inherit;
}

.php-email-form button[type="submit"]:hover::before {
  opacity: 1;
}

.php-email-form button[type="submit"]:focus,
.php-email-form button[type="submit"]:active,
.php-email-form button[type="submit"]:hover {
  border: none;
  outline: none;
  box-shadow: none;
  background-color: var(--primaryhover);
  color: white;
}

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

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

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

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

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

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

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



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

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

  #contact-info {
    background: var(--section-bg);
  }
}

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

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

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

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


  .contact-md {
    display: none;
  }
}

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

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

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

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

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


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



/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(var(--default-color-rgb), 0.12);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid rgba(var(--default-color-rgb), 0.08);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list a {
  color: rgba(var(--default-color-rgb), 0.8);
  background-color: rgba(var(--default-color-rgb), 0.04);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--primary);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--primary);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: rgba(var(--primary-rgb), 0.05);
  color: var(--primary);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid rgba(var(--default-color-rgb), 0.1);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--primary);
}

.service-details .download-catalog a:hover {
  color: var(--primary);
}

.service-details .help-box {
  background-color: var(--primary);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

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

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--primary);
}




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



.bg-primary {
  background-color: var(--primary) !important;
}


.nolist ul {
  list-style: none;
}



/*--------------------------------------------------------------
# Impressum
--------------------------------------------------------------*/
body .no-break,
body .no-break * {
  word-break: keep-all !important;
  word-wrap: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
  white-space: normal !important;
}

#impressum .impressum-card {
  transition: all 0.3s ease;
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

#impressum .card-header {
  background-image: linear-gradient(to left, var(--primary) 20%, var(--primaryhover) 80%);
  color: white;
  border-bottom: none;
}

#impressum .card-body {
  padding: 2rem;
}

#impressum .icon-bg {
  font-size: 4rem;
  opacity: 0.1;
  position: absolute;
  bottom: -10px;
  right: 10px;
  transform: rotate(-15deg);
}



/*--------------------------------------------------------------
# Preisboxen
--------------------------------------------------------------*/
/* Basis Card Styles */
.metal-card {
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
  border: 1px solid rgba(212, 175, 55, 0.1);
  position: relative;
  overflow: hidden;
}


.metal-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Card Header */
.metal-card .card-header {
  border-radius: 12px 12px 0 0;
  padding: 16px 20px;
  border: none;
  position: relative;
  z-index: 1;
}

.metal-card .card-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .table {
    table-layout: fixed;
  }

  .table td {
    min-width: auto;
    max-width: 100%;
  }

}

/* Header Gradients */
.border-gold .card-header {
  background: linear-gradient(135deg, #FFD700, #FDB931);
  color: #000;
}

.border-silver .card-header {
  background: linear-gradient(135deg, #C0C0C0, #A9A9A9);
  color: #000;
}

.border-platinum .card-header {
  background: linear-gradient(135deg, #E5E4E2, #CECECE);
  color: #000;
}

.border-palladium .card-header {
  background: linear-gradient(135deg, #B9B9B9, #969696);
  color: #000;
}

/* Card Body */
.metal-card .card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: calc(100% - 57px);
  /* Header height: 57px */
}

.metal-card .price-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 0;
}

/* Text Styles */
.metal-card .card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
}

.metal-card h3 {
  color: var(--primary);
  font-size: 2.2rem;
  font-weight: 700;
  margin: 10px 0 5px;
}

.metal-card h4 {
  color: var(--primary);
  font-size: 1.6rem;
  font-weight: 600;
  margin: 15px 0 5px;
}

.metal-card p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.9rem;
}

/* Icon Styles */
.metal-card .fas {
  margin-right: 10px;
  font-size: 1.2rem;
}

/* Button Container */
.metal-card .button-container {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

/* Button Styles */
.metal-card .btn-outline-primary {
  color: var(--primary);
  border: 1px solid var(--primary);
  background: transparent;
  transition: all 0.3s ease;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  width: 100%;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.metal-card .btn-outline-primary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

/* Button Hover Effects by Metal */
.border-gold .btn-outline-primary:hover {
  box-shadow: 0 4px 12px rgba(253, 185, 49, 0.3);
}

.border-silver .btn-outline-primary:hover {
  box-shadow: 0 4px 12px rgba(192, 192, 192, 0.3);
}

.border-platinum .btn-outline-primary:hover {
  box-shadow: 0 4px 12px rgba(229, 228, 226, 0.3);
}

.border-palladium .btn-outline-primary:hover {
  box-shadow: 0 4px 12px rgba(185, 185, 185, 0.3);
}


/* Table Container Styles */
.table-responsive {
  margin: -20px;
  width: calc(100% + 40px);
}

/* Table Base Styles */
.table {
  margin: 0;
  border-collapse: collapse;
  width: 100%;
}

.table th,
.table td {
  padding: 12px 20px;
  vertical-align: middle;
  white-space: nowrap;
}

.table th {
  color: var(--primary);
  font-weight: 600;
  background: rgba(212, 175, 55, 0.03);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.table td {
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.table tr:last-child td {
  border-bottom: none;
}

/* Table Hover Effects */
.table-hover tbody tr:hover {
  background-color: rgba(212, 175, 55, 0.03);
}

/* Card Anpassungen für Tabellen */
.metal-card .card-body {
  padding: 20px;
}

.metal-tables-section .metal-card {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  height: auto;
}

/* Text Alignment */
.table .text-end {
  text-align: right;
}

/* Alert Styles */
.custom-alert {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.15);
  color: var(--primary);
  border-radius: 12px;
  padding: 20px;
  margin-top: 30px;
  line-height: 1.8;
}

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

  .table th,
  .table td {
    padding: 10px 15px;
  }

  .metal-card .card-body {
    padding: 15px;
  }

  .table-responsive {
    margin: -15px;
    width: calc(100% + 30px);
  }
}


.section-divider {
  margin: 2rem 0;
}

.metal-heading {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}



.table tr:nth-of-type(even) td {
  background: white !important;
  font-family: monospace;
  font-size: 14px;
  padding: 6px 8px;
}

.table tr:nth-of-type(odd) td {
  background: #e1e1e1 !important;
  font-family: monospace;
  font-size: 14px;
  padding: 6px 8px;
}

.table tr#specialRow td {
  background: white !important;
}

/* Cell Styles */
.table th,
.table td {
  vertical-align: middle;
  word-wrap: break-word;
  white-space: normal;
}

/* Mobile Adjustments */
@media (max-width: 768px) {

  .table th,
  .table td {
    padding: 4px 6px;
    font-size: 12px;
    line-height: 1.5;
  }

  .metal-card .card-body {
    padding: 12px;
  }

  .table th:first-child,
  .table td:first-child {
    width: 60%;
  }

  .table th:last-child,
  .table td:last-child {
    width: 40%;
  }

}



/* Rechner */
.calculator {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
}

.result {
  background: rgba(var(--primary-rgb), .09);
  padding: 15px;
  border-radius: 6px;
  margin-top: 20px;
  min-height: 100px;
}

.form-label {
  font-weight: 500;
}

.price-display {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--primary);
  display: block;
}

.custom-select,
.custom-input {
  border-color: var(--sectionbg);
}

.custom-select:focus,
.custom-input:focus {
  border-color: var(--sectionbg);
  box-shadow: 0 0 0 0.25rem rgba(var(--sectionbg-rgb), 0.25);
}

/* Für Chrome, Safari */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Für Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  width: 100%;
}

.result-item {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.result-item p {
  color: #666;
  margin-bottom: 8px;
}

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

  .result {
    padding: 20px 15px;
  }
}

#goldPriceNav {
  display: inline-block;
  text-align: center;
  margin: 0 auto;
}

.trend-wrapper {
  display: inline-block;
  margin-left: 5px;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  vertical-align: middle;
}

.price-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 5px;
}

.price-card .trend {
  display: inline-block;
  font-weight: bold;
  font-size: 1.1em;
}

.price-card .trend.up {
  color: #4ade80;
}

.price-card .trend.down {
  color: #fb7185;
}

.price-card .trend.neutral {
  color: #cbd5e1;
}




.metals-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.metals-table th,
.metals-table td {
  padding: 2px;
  border: 1px solid #ddd;
  font-size: 14px;
}

@media (max-width: 767px) {

  .metals-table th,
  .metals-table td {
    font-size: 10px;
  }

  .metal-tables-section .table td,
  .metal-tables-section .table th {
    font-size: 10px !important;
  }
}

.metals-table tr:nth-child(odd) {
  background-color: #e1e1e1;
}

.metals-table tr:nth-child(even) {
  background-color: #ffffff;
}


.section-header {
  background-color: #f5f5f5;
  font-weight: bold;
  color: #333;
}

.subsection {
  border-bottom: 2px solid black;
  background-color: #fafafa;
}

.price-cell {
  text-align: right;
  white-space: nowrap;
  font-family: monospace;
}



.subpage-link {
  font-size: 0.9em;
  color: #0066cc;
  text-decoration: none;
  margin-left: 15px;
}

.note {
  font-size: 0.9em;
  color: #666;
  font-style: italic;
}
