/********** Template CSS **********/
:root {
    --primary: #0c9f15;
    --light: #39ff072b;
    --dark: #0c9f15;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity 0.5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Button ***/
.btn {
    font-weight: 500;
    transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #ffffff;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
   font-family: "Manrope", sans-serif;
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #eeeeee;
    }
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 75px;
}

.navbar .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar.sticky-top {
    top: -100px;
    transition: 0.5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: 0.5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: 0.5s;
        opacity: 1;
    }
}

/*** Header ***/
.wachherz-header {
  background-color: #3b0a24;
  padding: 20px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.wachherz-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.wachherz-logo {
  color: #f1d24b;
  font-size: 1.8rem;
  text-decoration: none;
  font-weight: bold;
}
.wachherz-navigation {
  display: flex;
  gap: 25px;
}
.wachherz-nav-link {
  color: #f8f3e0;
  text-decoration: none;
  font-size: 1rem;
  position: relative;
  transition: color 0.3s ease;
}
.wachherz-nav-link:hover,
.wachherz-nav-link.active {
  color: #ffe45c;
}
.wachherz-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
}
.wachherz-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #f1d24b;
  display: block;
}
@media (max-width: 768px) {
  .wachherz-navigation {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: #3b0a24;
    flex-direction: column;
    padding: 20px;
  }
  .wachherz-navigation.show {
    display: flex;
  }
  .wachherz-menu-toggle {
    display: flex;
  }
}

/*** Service ***/
.wachherz-services {
  background: #3a0d0d;
  padding: 100px 20px;
  font-family: 'Inter', sans-serif;
}

.wachherz-services-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.wachherz-services-title {
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #ffe066;
}

.wachherz-services-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.wachherz-service-card {
  background: #4d1a1a;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 30px rgba(255, 204, 0, 0.08);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wachherz-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 204, 0, 0.15);
}

.wachherz-service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #ffdf66;
}

.wachherz-service-card p {
  color: #f9e5b0;
}

@media (min-width: 992px) {
  .container.feature {
    max-width: 100% !important;
  }

  .feature-text {
    padding-left: calc(((100% - 960px) / 2) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .feature-text {
    padding-left: calc(((100% - 1140px) / 2) + 0.75rem);
  }
}

@media (min-width: 1400px) {
  .feature-text {
    padding-left: calc(((100% - 1320px) / 2) + 0.75rem);
  }
}


/*** Appointment ***/
.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #ffffff;
    transition: 0.3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #ffffff;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: 0.3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
   font-family: "Manrope", sans-serif;
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}
/* Google Fonts - Poppins */
@media (max-width: 700px) {
    .cookie-wrapper {
        width: 100%;
    }
}

.cookie-wrapper {
    position: fixed;
    bottom: 0px;
    right: 0;
    width: 100%;
    background: #fff;
    padding: 15px 25px 22px;
    transition: right 0.3s ease;
    box-shadow: 0 5px 10px rgb(0, 0, 0);
    z-index: 999;
}

.cookie-wrapper * {
    font-family: "Manrope", sans-serif;
}

.cookie-wrapper .show {
    right: 20px;
}

.hidden {
    display: none;
}
header i {
    color: #0c9f15;
    font-size: 32px;
    text-align: center;
}
header h2 {
    color: #0c9f15;
    font-weight: 500;
    text-align: center;
}
.data {
    text-align: center;
}
.data p a {
    color: #0c9f15;
    text-decoration: none;
    text-align: center !important;
}
.data p a:hover {
    text-decoration: underline;
}
.buttons {
    padding: 20px 0px;
    text-align: center;
}
.buttons .cookie-button {
    border: 2px solid #0c9f15;
    color: #fff;
    padding: 8px 0;
    background: #0c9f15;
    cursor: pointer;
    width: calc(100% / 2 - 10px);
    transition: all 0.5s ease;
    max-width: 150px;
    border-radius: 0;
}
.buttons #acceptBtn:hover {
    background-color: transparent;
    color: #0c9f15;
}
#declineBtn {
    background-color: #fff;
    color: #0c9f15;
}
#declineBtn:hover {
    background-color: #0c9f15;
    color: #fff;
}
/* Footer Style */
.wachherz-footer {
  background: #3b0a24;
  color: #f8f3e0;
  padding: 80px 20px;
  font-family: 'Inter', sans-serif;
}
.wachherz-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  align-items: start;
}
.wachherz-footer h3, .wachherz-footer h4 {
  color: #f1d24b;
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.wachherz-footer p {
  margin-bottom: 10px;
  line-height: 1.6;
}
.wachherz-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.wachherz-footer li {
  margin-bottom: 10px;
}
.wachherz-footer a {
  color: #f8f3e0;
  text-decoration: none;
  transition: color 0.3s;
}
.wachherz-footer a:hover {
  color: #ffe45c;
}


.wachherz-hero {
  background: linear-gradient(135deg, #2e0d14, #3c0d1f);
  color: #fdf6e3;
  padding: 10rem 2rem 10rem;
  font-family: 'Inter', sans-serif;
}

.wachherz-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.wachherz-hero-text h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #ffe066;
}

.wachherz-hero-text p {
  font-size: 1.2rem;
  color: #f4e9c8;
  max-width: 700px;
  margin: 0 auto 50px;
}

.wachherz-hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.wachherz-stat {
  text-align: center;
}

.wachherz-stat strong {
  display: block;
  font-size: 2rem;
  color: #facc15;
}

.wachherz-stat span {
  font-size: 0.95rem;
  color: #fef9c3;
}

.wachherz-about {
  background: #1b0a0e;
  padding: 100px 20px;
  font-family: 'Inter', sans-serif;
}

.wachherz-about-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.wachherz-about-image {
  flex: 1 1 40%;
  height: 300px;
  background-image: url('img/carousel-1.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(255, 239, 184, 0.1);
}

.wachherz-about-content {
  flex: 1 1 50%;
}

.wachherz-about-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #ffd43b;
}

.wachherz-about-content p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #f8e3a3;
  line-height: 1.6;
}

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

.wachherz-about-content li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: #fff3bf;
}

.wachherz-about-content li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #facc15;
  font-weight: bold;
}

.wachherz-why {
  background: #3b0a24;
  color: #f1d24b;
  padding: 100px 20px;
  font-family: 'Inter', sans-serif;
}
.wachherz-why-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}
.wachherz-why-text {
  flex: 1 1 500px;
}
.wachherz-why-text h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}
.wachherz-why-text p {
  font-size: 1.2rem;
}
.wachherz-why-image {
  flex: 1 1 400px;
  min-height: 300px;
  background: url('img/feature.jpg') center/cover no-repeat;
  border-radius: 20px;
}

.wachherz-testimonials {
  background: #f8f3e0;
  color: #3b0a24;
  padding: 100px 20px;
}
.wachherz-testimonials-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.wachherz-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.wachherz-testimonial {
  background: #fff9e6;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(59, 10, 36, 0.15);
}

.wachherz-team {
  background: #fff;
  padding: 100px 20px;
}
.wachherz-team-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.wachherz-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.wachherz-team-member img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 15px;
}
.wachherz-team-member h3 {
  color: #3b0a24;
  margin-bottom: 5px;
}
.wachherz-team-member p {
  color: #c99700;
}

.wachherz-contact {
  background: #3b0a24;
  color: #f8f3e0;
  padding: 100px 20px;
}
.wachherz-contact-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.wachherz-contact-form {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}
.wachherz-contact-form input,
.wachherz-contact-form textarea {
  padding: 15px;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
}
.wachherz-contact-form button {
  padding: 15px;
  background: #f1d24b;
  color: #3b0a24;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}
.wachherz-contact-form button:hover {
  background: #ffe45c;
}