:root {
  --primary-color: #832329;
  --secondary-red: #c73642;
  --accent-orange: #832329;
  --secondary-color: #000000;
  --light-bg: #f8f6f4;
  --text-dark: #2a2a2a;
  --text-light: #666666;
  --white: #ffffff;
}

a {
  color: var(--primary-color);
}
.termin_home {
  margin-left: 260px;
  margin-top: 30px;
}

.bg_grey {
  background: #f8f6f4 !important;
}
.bg_white {
  background: #ffffff !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Top Navigation Bar - Liquid Glass Effect */
.top-nav {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.08) 25%,
    rgba(255, 140, 66, 0.06) 50%,
    rgba(131, 35, 41, 0.05) 75%,
    rgba(255, 255, 255, 0.15) 100%
  );
  background-size: 200% 200%;
  animation: liquidGlass 15s ease infinite;
  backdrop-filter: blur(25px) saturate(150%);
  -webkit-backdrop-filter: blur(25px) saturate(150%);
  border-radius: 50px;
  padding: 15px 40px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: all 0.4s ease;
  /* overflow: hidden entfernt – blockierte Hamburger-Menü */
}

@keyframes liquidGlass {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes liquidMove {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(25px, -25px) rotate(120deg);
  }
  66% {
    transform: translate(-25px, 25px) rotate(240deg);
  }
}

.top-nav.scrolled {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(255, 255, 255, 0.1) 25%,
    rgba(255, 140, 66, 0.08) 50%,
    rgba(131, 35, 41, 0.06) 75%,
    rgba(255, 255, 255, 0.18) 100%
  );
  box-shadow:
    0 15px 50px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(255, 255, 255, 0.3);
}

.top-nav ul {
  list-style: none;
  display: flex;
  gap: 45px;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: center;
}

.top-nav li {
  margin: 0;
}

.top-nav a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
}

.top-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--accent-orange),
    var(--primary-color)
  );
  border-radius: 2px;
  transition: width 0.3s ease;
}

.top-nav a:hover {
  color: var(--primary-color);
}

.top-nav a:hover::after {
  width: 100%;
}

.nav-logo {
  width: 60px;
  height: 40px;
  border-radius: 50%;
  /*    background: linear-gradient(135deg, var(--primary-color), var(--secondary-red)); */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.nav-logo svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
  background: var(--white);
}

/* Circular Floating Navigation */
.circular-nav {
  position: fixed;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nav-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--text-light);
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.nav-dot:hover,
.nav-dot.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: scale(1.4);
  box-shadow: 0 0 20px rgba(131, 35, 41, 0.4);
}

.nav-dot::before {
  content: attr(data-title);
  position: absolute;
  right: 35px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--secondary-color);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  letter-spacing: 0.5px;
}

.nav-dot:hover::before {
  opacity: 1;
}

/* Hero Section with Organic Shapes */
.hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
  overflow: hidden;
  /* 	background-image: url("test.jpg");
			background-size:contain; */
}

/* Organic flowing background shapes */
.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -15%;
  width: 900px;
  height: 900px;
  background: radial-gradient(
    circle,
    rgba(255, 140, 66, 0.12) 0%,
    transparent 70%
  );
  border-radius: 40% 60% 70% 30% / 60% 30% 70% 40%;
  animation: morph 20s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(131, 35, 41, 0.08) 0%,
    transparent 70%
  );
  border-radius: 60% 40% 30% 70% / 40% 70% 30% 60%;
  animation: morph 25s ease-in-out infinite reverse;
}

@keyframes morph {
  0%,
  100% {
    border-radius: 40% 60% 70% 30% / 60% 30% 70% 40%;
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    border-radius: 60% 40% 30% 70% / 40% 70% 30% 60%;
    transform: translate(30px, -30px) rotate(5deg);
  }
}

.XX_OFF_hero-content {
  position: relative;
  z-index: 2;
  margin-top: 0px;
  margin-left: 200px;
}

/* Stomach Ornament - Organic Shape */
.stomach-ornament {
  position: absolute;
  width: 400px;
  height: 500px;
  top: 15%;
  right: 10%;
  opacity: 0.15;
  z-index: 1;
  animation: float-stomach 25s ease-in-out infinite;
}

@keyframes float-stomach {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-40px) rotate(3deg);
  }
}

.logo-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-red)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
  box-shadow: 0 30px 80px rgba(131, 35, 41, 0.25);
  animation: pulse 4s ease-in-out infinite;
  position: relative;
}

.logo-circle::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 2px solid rgba(131, 35, 41, 0.2);
  animation: ripple 3s ease-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 30px 80px rgba(131, 35, 41, 0.25);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 35px 90px rgba(131, 35, 41, 0.35);
  }
}

@keyframes ripple {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.logo-circle svg {
  width: 80px;
  height: 80px;
  fill: var(--white);
}

h1 {
  font-family: "Outfit", sans-serif;
  font-size: 4.8rem;
  font-weight: 300;
  line-height: 1.2;
  color: var(--secondary-color);
  margin-bottom: 25px;
  letter-spacing: -1px;
}

h1 strong {
  font-weight: 700;
  color: var(--primary-color);
}

.subtitle {
  font-size: 1.35rem;
  color: var(--text-light);
  font-weight: 300;
  margin-bottom: 45px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.btn-primary-custom {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-red)
  );
  color: var(--white);
  border: none;
  padding: 20px 55px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 15px 40px rgba(131, 35, 41, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary-custom::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.btn-primary-custom:hover::before {
  left: 100%;
}

.btn-primary-custom:hover {
  background: var(--secondary-color);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.btn-primary-custom.btn-sm-teaser {
  padding: 10px 28px;
  font-size: 0.75rem;
  letter-spacing: 0.3px;
  box-shadow: 0 6px 18px rgba(131, 35, 41, 0.25);
}

/* Section Styling */
section {
  padding: 140px 0;
  position: relative;
}

.section-title {
  font-family: "Outfit", sans-serif;
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--accent-orange);
  margin-bottom: 70px;
  position: relative;
  display: inline-block;
}

.subsection-title {
  color: var(--primary-color);
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--accent-orange),
    var(--secondary-red)
  );
  border-radius: 10px;
}

/* About Section with Flowing Elements */
.about-section {
  background: var(--white);
  position: relative;
}
section {
  overflow: hidden;
}
.about-section::before {
  content: "";
  position: absolute;
  top: 20%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 140, 66, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50% 60% 70% 40% / 60% 50% 40% 70%;
  animation: morph 30s ease-in-out infinite;
}

.about-text {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--text-dark);
  font-weight: 300;
}

.about-text h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}

.about-text h4:first-child {
  margin-top: 0;
}

.about-highlight {
  background: linear-gradient(
    135deg,
    rgba(255, 140, 66, 0.08),
    rgba(131, 35, 41, 0.05)
  );
  border-left: 5px solid var(--accent-orange);
  padding: 40px 50px;
  border-radius: 50px;
  margin: 50px 0;
  position: relative;
  overflow: hidden;
}

.about-highlight::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(255, 140, 66, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

/* Services Section with Organic Cards */
.services-section {
  background: var(--light-bg);
  position: relative;
  overflow: hidden;
}

.services-section::after {
  content: "";
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(131, 35, 41, 0.06) 0%,
    transparent 70%
  );
  border-radius: 60% 40% 30% 70% / 40% 70% 30% 60%;
}

.service-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.85) 25%,
    rgba(255, 140, 66, 0.04) 50%,
    rgba(131, 35, 41, 0.03) 75%,
    rgba(255, 255, 255, 0.9) 100%
  );
  background-size: 200% 200%;
  animation: liquidGlassCard 20s ease infinite;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 60px;
  padding: 60px 45px;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-card::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 140, 66, 0.08) 0%,
    transparent 70%
  );
  animation: liquidMoveCard 25s ease-in-out infinite;
  pointer-events: none;
}

@keyframes liquidGlassCard {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes liquidMoveCard {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(90deg);
  }
  66% {
    transform: translate(-30px, 30px) rotate(180deg);
  }
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--accent-orange),
    var(--primary-color)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  border-radius: 60px 60px 0 0;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 140, 66, 0.4);
  background: rgba(255, 255, 255, 0.95);
}

.service-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--accent-orange),
    var(--secondary-red)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 35px;
  box-shadow: 0 15px 40px rgba(255, 140, 66, 0.3);
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 20px 50px rgba(255, 140, 66, 0.4);
}

.service-icon svg {
  width: 50px;
  height: 50px;
  fill: var(--white);
}

.service-card h3 {
  font-family: "Outfit", sans-serif;
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 25px;
}

.service-card p {
  color: var(--text-light);
  line-height: 1.8;
  font-weight: 300;
  font-size: 1.05rem;
}

/* Team Section */
.team-section {
  background: var(--white);
  position: relative;
}

.team-section::before {
  content: "";
  position: absolute;
  top: 30%;
  right: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 140, 66, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50% 60% 40% 70% / 60% 40% 70% 50%;
  animation: morph 35s ease-in-out infinite;
}

.doctor-card {
  text-align: center;
  padding: 50px;
  position: relative;
  z-index: 2;
}

.doctor-image {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--accent-orange),
    var(--secondary-red)
  );
  margin: 0 auto 40px;
  position: relative;
  overflow: hidden;
  border: 6px solid var(--white);
  box-shadow: 0 25px 70px rgba(255, 140, 66, 0.25);
  transition: all 0.4s ease;
}

.doctor-card:hover .doctor-image {
  transform: scale(1.05);
  box-shadow: 0 30px 80px rgba(255, 140, 66, 0.35);
}

.doctor-name {
  font-family: "Outfit", sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.doctor-title {
  color: var(--primary-color);
  font-weight: 500;
  font-size: 1.15rem;
  margin-bottom: 25px;
}

/* Contact Section with Flowing Background */
.contact-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a1a 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

/* Responsive */
@media (max-width: 992px) {
  h1 {
    font-size: 3.2rem;
  }

  .circular-nav {
    display: none;
  }

  .section-title {
    font-size: 2.8rem;
  }

  .stomach-ornament {
    width: 300px;
    height: 400px;
  }

  .top-nav ul {
    gap: 20px;
  }

  .top-nav a {
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  .hero-content {
    margin-left: 0px;
  }

  section {
    padding: 20px 0;
  }

  .hero::before,
  .hero::after {
    width: 400px;
    height: 400px;
  }

  .service-card {
    border-radius: 40px;
  }

  .contact-info {
    border-radius: 40px;
    padding: 40px 30px;
  }

  /* Mobile Navigation – nur Größe anpassen, Hamburger übernimmt den Rest */
  .top-nav {
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 20px;
    border-radius: 40px;
    width: calc(100% - 30px);
    max-width: 500px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* Desktop-Menü auf Mobile ausblenden */
  .top-nav > ul {
    display: none;
  }

  .nav-logo {
    width: 30px;
    height: 30px;
    margin-right: 8px;
  }

  .nav-logo svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 480px) {
  .top-nav {
    padding: 10px 15px;
    width: calc(100% - 20px);
  }
  /* ul/li/a mobile nav via Hamburger geregelt */
}

/* Scroll animations */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 1s ease,
    transform 1s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ACCORDION STYLE */
/* Custom Accordion Styling */

.leistungen-accordion {
  margin: 60px 0;
}

.accordion-item {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.9) 25%,
    rgba(255, 140, 66, 0.03) 50%,
    rgba(131, 35, 41, 0.02) 75%,
    rgba(255, 255, 255, 0.95) 100%
  );
  background-size: 200% 200%;
  animation: liquidGlassAccordion 20s ease infinite;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 140, 66, 0.15);
  border-radius: 40px !important;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  position: relative;
}

@keyframes liquidGlassAccordion {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.accordion-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(255, 140, 66, 0.25);
}

.accordion-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--accent-orange),
    var(--secondary-red)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  border-radius: 40px 40px 0 0;
}

.accordion-item:hover::before {
  transform: scaleX(1);
}

.accordion-button {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 30px 35px;
  font-family: "Inter", sans-serif;
  display: flex;
  align-items: center;
  gap: 25px;
  border-radius: 40px !important;
  position: relative;
  z-index: 2;
}

.accordion-button:not(.collapsed) {
  background: transparent !important;
  color: var(--text-dark);
}

.accordion-button:focus {
  box-shadow: none !important;
}

/* Icon Circle */
.accordion-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--accent-orange),
    var(--secondary-red)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(255, 140, 66, 0.3);
  transition: all 0.4s ease;
}

.accordion-button:hover .accordion-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(255, 140, 66, 0.4);
}

.accordion-icon svg {
  width: 35px;
  height: 35px;
  fill: var(--white);
}

/* Text Content */
.accordion-text-content {
  flex: 1;
  text-align: left;
}

.accordion-headline {
  font-family: "Outfit", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.accordion-button:hover .accordion-headline {
  color: var(--primary-color);
}

.accordion-subline {
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.5;
}

/* Chevron Arrow */
.accordion-chevron {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: rgba(131, 35, 41, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin-left: auto;
}

.accordion-button:not(.collapsed) .accordion-chevron {
  background: var(--primary-color);
  transform: rotate(180deg);
}

.accordion-chevron svg {
  width: 20px;
  height: 20px;
  fill: var(--primary-color);
  transition: fill 0.3s ease;
}

.accordion-button:not(.collapsed) .accordion-chevron svg {
  fill: var(--white);
}

/* Hide default Bootstrap arrow */
.accordion-button::after {
  display: none;
}

/* Accordion Body */
.accordion-body {
  padding: 0 35px 35px 130px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-dark);
  font-weight: 300;
}

.accordion-body strong {
  color: var(--primary-color);
  font-weight: 500;
}

.accordion-body ul {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.accordion-body ul li {
  padding-left: 25px;
  position: relative;
  margin-bottom: 10px;
}

.accordion-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: linear-gradient(
    135deg,
    var(--accent-orange),
    var(--secondary-red)
  );
  border-radius: 50%;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
  }

  .accordion-button {
    padding: 25px 20px;
    gap: 15px;
    flex-wrap: wrap;
  }

  .accordion-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
  }

  .accordion-icon svg {
    width: 30px;
    height: 30px;
  }

  .accordion-headline {
    font-size: 1.3rem;
  }

  .accordion-subline {
    font-size: 0.9rem;
  }

  .accordion-chevron {
    width: 35px;
    height: 35px;
    min-width: 35px;
  }

  .accordion-body {
    padding: 0 20px 25px 20px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .accordion-item {
    border-radius: 30px !important;
  }

  .accordion-button {
    padding: 20px 15px;
  }

  .accordion-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }

  .accordion-icon svg {
    width: 25px;
    height: 25px;
  }

  .accordion-headline {
    font-size: 1.15rem;
  }

  .accordion-subline {
    font-size: 0.85rem;
  }
}
.medical-icon {
  width: 50px;
  height: 50px;
  filter: brightness(0) invert(1);
}

/* Container-Einstellungen ANIMATION BILDER */
.image-section {
  position: relative; /* Referenzpunkt für absolute Positionierung */
  overflow: hidden; /* Schneidet alles ab, was über den Rand geht */
  display: block; /* Sicherstellen, dass es ein Block-Element ist */
}

/* Das Bild selbst */
.image-section img {
  display: block;
  position: relative;
  z-index: 1;
}

/* Der Container für die Blasen (liegt über dem Bild) */
.lava-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none; /* Klicks gehen durch die Blasen durch */
}

/* Basis-Stil für eine Blase */
.bubble {
  position: absolute;
  background: rgba(255, 255, 255, 0.5); /* Weiß mit 50% Transparenz */
  border-radius: 50%; /* Startet rund */

  /* Die Magie: Zwei Animationen gleichzeitig (Form + Bewegung) */
  animation:
    morph 8s ease-in-out infinite alternate,
    float 15s ease-in-out infinite alternate;
}

/* --- Individuelle Blasen (Größe, Position, Timing) --- */

/* Blase 1: Groß, oben links */
.bubble-1 {
  width: 250px;
  height: 250px;
  top: 10%;
  left: 10%;
  opacity: 0.6; /* Etwas sichtbarer */
  animation-duration: 12s, 20s; /* Langsames Morphen, sehr langsames Schweben */
}

/* Blase 2: Mittel, unten rechts */
.bubble-2 {
  width: 180px;
  height: 180px;
  bottom: 15%;
  right: 15%;
  background: rgba(255, 255, 255, 0.4);
  animation-duration: 10s, 18s;
  animation-delay: -2s; /* Startet zeitversetzt */
}

/* Blase 3: Klein, wandert durch die Mitte */
.bubble-3 {
  width: 120px;
  height: 120px;
  top: 40%;
  left: 45%;
  opacity: 0.5;
  animation-duration: 9s, 14s;
  animation-delay: -5s;
}

/* --- Keyframes für die Animationen --- */

/* 1. Morphing: Verändert die Form organisch (Lavalampe-Effekt) */
/* Die 8 Werte bei border-radius sorgen für die unregelmäßige Form */
@keyframes morph {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  25% {
    border-radius: 45% 55% 50% 50% / 55% 45% 60% 40%;
  }
  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
  75% {
    border-radius: 65% 35% 40% 60% / 40% 70% 50% 50%;
  }
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

/* 2. Floating: Bewegt die Blasen sanft durch den Raum */
@keyframes float {
  0% {
    transform: translate(0, 0);
  }
  33% {
    transform: translate(30px, -40px); /* Nach rechts oben */
  }
  66% {
    transform: translate(-20px, 20px); /* Nach links unten */
  }
  100% {
    transform: translate(0, 0);
  }
}

/* ==================== ANIMATED WAVE TRANSITION ==================== */
.wave-transition {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin: 0;
  padding: 0;
  background: #ffffff;
}

.wave-transition-inverted {
  transform: rotate(180deg);
  background: #ffffff;
}

.waves {
  position: relative;
  width: 100%;
  height: 12vh;
  min-height: 80px;
  max-height: 120px;
}

.parallax > use {
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 20s;
  opacity: 0.3;
}

.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 25s;
  opacity: 0.5;
}

.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 30s;
  opacity: 1;
}

.parallax-inverted > use {
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.parallax-inverted > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 20s;
  opacity: 0.3;
}

.parallax-inverted > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 25s;
  opacity: 0.5;
}

.parallax-inverted > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 30s;
  opacity: 1;
}

/* Responsive Wave Height */
@media (max-width: 768px) {
  .waves {
    height: 8vh;
    min-height: 50px;
  }
}

/* ==================== VITA SECTION ==================== */
.vita-section {
  background: var(--light-bg);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.vita-section::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 140, 66, 0.06) 0%,
    transparent 70%
  );
  border-radius: 60% 40% 30% 70% / 40% 70% 30% 60%;
  animation: morph 35s ease-in-out infinite;
}

/*  .vita-section::after {
            content: '';
            position: absolute;
            bottom: -10%;
            left: -5%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(131, 35, 41, 0.05) 0%, transparent 70%);
            border-radius: 40% 60% 70% 30% / 60% 30% 70% 40%;
            animation: morph 40s ease-in-out infinite reverse;
        } */

/* Vita Photo Container - Centered */
.vita-photo-container-center {
  text-align: center;
  margin-bottom: 60px;
}

.vita-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--accent-orange),
    var(--secondary-red)
  );
  margin: 0 auto 25px;
  overflow: hidden;
  border: 6px solid var(--white);
  box-shadow: 0 25px 70px rgba(255, 140, 66, 0.25);
  transition: all 0.5s ease;
  position: relative;
}

.vita-photo:hover {
  transform: scale(1.05);
  box-shadow: 0 30px 80px rgba(255, 140, 66, 0.35);
}

.photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(255, 140, 66, 0.2),
    rgba(199, 54, 66, 0.2)
  );
}

.photo-placeholder svg {
  width: 100px;
  height: 100px;
  fill: var(--white);
  opacity: 0.6;
}

.vita-name {
  text-align: center;
  padding: 0 20px;
}

.vita-name h4 {
  font-family: "Outfit", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.vita-name p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* Timeline Alternating Styling */
.timeline-alternating {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

/* Center Line */
.timeline-alternating::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    180deg,
    var(--accent-orange) 0%,
    var(--secondary-red) 50%,
    var(--primary-color) 100%
  );
  border-radius: 3px;
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 40px 40px 40px;
  animation: fadeInTimeline 0.6s ease forwards;
  opacity: 0;
}

.timeline-item:nth-child(1) {
  animation-delay: 0.1s;
}
.timeline-item:nth-child(2) {
  animation-delay: 0.2s;
}
.timeline-item:nth-child(3) {
  animation-delay: 0.3s;
}
.timeline-item:nth-child(4) {
  animation-delay: 0.4s;
}
.timeline-item:nth-child(5) {
  animation-delay: 0.5s;
}
.timeline-item:nth-child(6) {
  animation-delay: 0.6s;
}
.timeline-item:nth-child(7) {
  animation-delay: 0.7s;
}
.timeline-item:nth-child(8) {
  animation-delay: 0.8s;
}

/* Right Items */
.timeline-item-right {
  left: 50%;
  text-align: left;
}

.timeline-item-right .timeline-dot {
  left: -11px;
}

.timeline-item-right:hover .timeline-content {
  transform: translateX(10px);
}

/* Left Items */
.timeline-item-left {
  left: 0;
  text-align: right;
}

.timeline-item-left .timeline-dot {
  right: -11px;
}

.timeline-item-left:hover .timeline-content {
  transform: translateX(-10px);
}

/* Timeline Dot */
.timeline-dot {
  position: absolute;
  top: 5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--accent-orange),
    var(--secondary-red)
  );
  border: 4px solid var(--light-bg);
  box-shadow: 0 0 0 4px rgba(255, 140, 66, 0.2);
  z-index: 2;
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
  transform: scale(1.3);
  box-shadow: 0 0 0 6px rgba(255, 140, 66, 0.3);
}

/* Timeline Content */
.timeline-content {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 25px 30px;
  border: 1px solid rgba(255, 140, 66, 0.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.timeline-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--accent-orange),
    var(--secondary-red)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.timeline-item:hover .timeline-content {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  border-color: rgba(255, 140, 66, 0.2);
}

.timeline-item:hover .timeline-content::before {
  transform: scaleX(1);
}

.timeline-year {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.timeline-title {
  font-family: "Outfit", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 8px;
  line-height: 1.4;
}

.timeline-text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  font-weight: 300;
}

/* Responsive Timeline */
@media (max-width: 992px) {
  .timeline-alternating::before {
    left: 30px;
  }

  .timeline-item,
  .timeline-item-left,
  .timeline-item-right {
    width: 100%;
    left: 0 !important;
    text-align: left !important;
    padding-left: 80px;
    padding-right: 20px;
  }

  .timeline-dot,
  .timeline-item-left .timeline-dot,
  .timeline-item-right .timeline-dot {
    left: 20px !important;
    right: auto !important;
  }

  .timeline-item:hover .timeline-content,
  .timeline-item-left:hover .timeline-content {
    transform: translateX(5px) !important;
  }
}

@media (max-width: 768px) {
  .vita-section {
    padding: 80px 0;
  }

  .vita-photo {
    width: 160px;
    height: 160px;
  }

  .photo-placeholder svg {
    width: 70px;
    height: 70px;
  }

  .vita-name h4 {
    font-size: 1.5rem;
  }

  .vita-name p {
    font-size: 0.9rem;
  }

  .timeline-item,
  .timeline-item-left,
  .timeline-item-right {
    padding-left: 60px;
    padding-bottom: 30px;
  }

  .timeline-alternating::before {
    left: 20px;
  }

  .timeline-dot,
  .timeline-item-left .timeline-dot,
  .timeline-item-right .timeline-dot {
    left: 10px !important;
    width: 18px;
    height: 18px;
  }

  .timeline-content {
    padding: 20px;
    border-radius: 20px;
  }

  .timeline-year {
    font-size: 0.9rem;
  }

  .timeline-title {
    font-size: 1.1rem;
  }

  .timeline-text {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .vita-photo {
    width: 140px;
    height: 140px;
  }

  .photo-placeholder svg {
    width: 60px;
    height: 60px;
  }

  .vita-name h4 {
    font-size: 1.3rem;
  }

  .timeline-item,
  .timeline-item-left,
  .timeline-item-right {
    padding-left: 50px;
    padding-right: 15px;
  }

  .timeline-alternating::before {
    left: 15px;
    width: 2px;
  }

  .timeline-dot,
  .timeline-item-left .timeline-dot,
  .timeline-item-right .timeline-dot {
    left: 6px !important;
    width: 16px;
    height: 16px;
    border: 3px solid var(--light-bg);
  }

  .timeline-content {
    padding: 18px;
  }

  .timeline-year {
    font-size: 0.85rem;
  }

  .timeline-title {
    font-size: 1rem;
  }

  .timeline-text {
    font-size: 0.85rem;
  }
}

/* ==================== ANIMATIONS ==================== */

/* Morph Animation - Organic Blob Movement */
@keyframes morph {
  0%,
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    transform: translate(0, 0);
  }
  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    transform: translate(20px, -20px);
  }
}

/* Wave Movement Animation */
@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}

/* Accordion Card Liquid Glass Animation */
@keyframes liquidGlassAccordion {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Timeline Fade In Animation */
@keyframes fadeInTimeline {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Horizontal Accordion Container */
.horizontal-accordion {
  display: flex;
  gap: 15px;
  height: 500px;
  position: relative;
  overflow: hidden;
  border-radius: 50px;
  /*  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1); */
}

/* Accordion Panel */
.accordion-panel {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 40px;
  -webkit-transform: translateZ(0); /* Safari rendering fix */
  transform: translateZ(0);
}

.accordion-panel.active {
  flex: 3;
}

/* Background Image */
.panel-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
}

.accordion-panel:hover .panel-bg {
  transform: scale(1.05);
}

/* Gradient Overlay */
.panel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgb(131 35 41 / 59%) 0%,
    rgba(199, 54, 66, 0.75) 50%,
    rgba(131, 35, 41, 0.85) 100%
  );
  transition: opacity 0.5s ease;
}

.accordion-panel.active .panel-overlay {
  opacity: 0.6;
}

/* Content Container */
.panel-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
}

/* Icon */
.panel-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.5s ease;
}

.accordion-panel.active .panel-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.25);
}

.panel-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
  transition: all 0.5s ease;
}

.accordion-panel.active .panel-icon svg {
  width: 40px;
  height: 40px;
}

/* Title */
.panel-title {
  font-family: "Outfit", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 15px;
  transition: all 0.5s ease;
  line-height: 1.2;
}

.accordion-panel.active .panel-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

/* Description - Hidden by Default */
.panel-description {
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
}

.accordion-panel.active .panel-description {
  opacity: 1;
  max-height: 300px;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 992px) {
  .horizontal-accordion {
    height: 400px;
  }

  .panel-title {
    font-size: 1.5rem;
  }

  .accordion-panel.active .panel-title {
    font-size: 2rem;
  }

  .panel-content {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .horizontal-accordion {
    flex-direction: column;
    height: auto;
    gap: 10px;
    border-radius: 30px;
  }

  /* Collapsed panels: height via max-height, no fixed height that clips content */
  .accordion-panel {
    height: auto;
    min-height: 80px;
    max-height: 80px;
    border-radius: 25px;
    /* Override flex transition with max-height transition for mobile */
    transition: max-height 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Active panel grows with content, no fixed height */
  .accordion-panel.active {
    max-height: 520px;
    min-height: unset;
  }

  /* Hide icon in collapsed state — avoids overflow clipping at top */
  .accordion-panel:not(.active) .panel-icon {
    display: none;
  }

  .panel-content {
    padding: 25px;
  }

  .panel-title {
    font-size: 1.3rem;
  }

  .accordion-panel.active .panel-title {
    font-size: 1.8rem;
  }

  .panel-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }

  .accordion-panel.active .panel-icon {
    width: 60px;
    height: 60px;
  }

  .panel-icon svg {
    width: 25px;
    height: 25px;
  }

  .accordion-panel.active .panel-icon svg {
    width: 30px;
    height: 30px;
  }
}

/* ==================== CONTACT SECTION ==================== */
.contact-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 140, 66, 0.06) 0%,
    transparent 70%
  );
  border-radius: 60% 40% 30% 70% / 40% 70% 30% 60%;
  animation: morph 35s ease-in-out infinite;
}

.contact-section::after {
  content: "";
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(131, 35, 41, 0.05) 0%,
    transparent 70%
  );
  border-radius: 40% 60% 70% 30% / 60% 30% 70% 40%;
  animation: morph 40s ease-in-out infinite reverse;
}

/*  .section-title {
            font-family: 'Outfit', sans-serif;
            font-size: 3.8rem;
            font-weight: 600;
            color: var(--secondary-color);
            margin-bottom: 70px;
            position: relative;
            display: inline-block;
        } */

.section-title::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--accent-orange),
    var(--secondary-red)
  );
  border-radius: 10px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  font-weight: 300;
  margin-bottom: 50px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  position: relative;
  z-index: 2;
}

/* Contact Card */
.contact-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 30px;
  padding: 30px;
  border: 1px solid rgba(131, 35, 41, 0.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--accent-orange),
    var(--secondary-red)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.contact-card:hover::before {
  transform: scaleX(1);
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 140, 66, 0.2);
}

.contact-icon-large {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-red)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(131, 35, 41, 0.3);
  transition: all 0.4s ease;
}

.contact-card:hover .contact-icon-large {
  transform: scale(1.1) rotate(5deg);
}

.contact-icon-large svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

.contact-card-content {
  flex: 1;
}

.contact-card h3 {
  font-family: "Outfit", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 5px;
}

.contact-card a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-card a:hover {
  color: var(--accent-orange);
}

.contact-map {
  grid-column: 1 / -1;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 40px;
  overflow: hidden;
  height: 400px;
  border: 1px solid rgba(255, 140, 66, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(131, 35, 41, 0.05) 0%,
    rgba(131, 35, 41, 0.03) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.map-placeholder:hover {
  background: linear-gradient(
    135deg,
    rgba(131, 35, 41, 0.09) 0%,
    rgba(131, 35, 41, 0.06) 100%
  );
}

.map-placeholder-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-red)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(131, 35, 41, 0.3);
}

.map-placeholder-icon svg {
  width: 30px;
  height: 30px;
  fill: #ffffff;
}

.map-placeholder-text {
  text-align: center;
}

.map-placeholder-text strong {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.map-placeholder-text span {
  font-size: 0.88rem;
  color: var(--text-light);
}

.map-placeholder-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-red)
  );
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 13px 32px;
  font-family: "Outfit", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(131, 35, 41, 0.3);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  pointer-events: none;
}

.map-placeholder:hover .map-placeholder-btn {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(131, 35, 41, 0.4);
}

.map-placeholder-btn svg {
  width: 16px;
  height: 16px;
  fill: #ffffff;
}

#maps-iframe-container {
  width: 100%;
  height: 100%;
}

#maps-iframe-container iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==================== FOOTER ==================== */
.footer {
  background: linear-gradient(135deg, var(--primary-color) 0%, #6b1d22 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(255, 140, 66, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.footer-main {
  padding: 80px 0 40px;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

/* Footer Logo Section */
.footer-logo-section {
  max-width: 350px;
}

.footer-logo {
  width: 100%;
  height: 60px;
  background: #ffffff;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.footer-logo svg {
  width: 40px;
  height: 40px;
  fill: var(--white);
}

.footer-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: linear-gradient(
    135deg,
    var(--accent-orange),
    var(--secondary-red)
  );
  transform: translateY(-3px);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

/* Footer Column */
.footer-column h4 {
  font-family: "Outfit", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
  text-align: left;
}

.footer-column h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--accent-orange),
    var(--secondary-red)
  );
  border-radius: 3px;
}

.footer-links {
  list-style: none;
  text-align: left;
  padding-left: 0px;
}
.footer-links ul {
  padding-left: 0px;
}
.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--accent-orange);
  transform: translateX(5px);
}

/* Footer Contact Info */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 15px;
}

.footer-contact-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-contact-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--accent-orange);
}

.footer-contact-text {
  flex: 1;
}

.footer-contact-text p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

.footer-contact-text a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-text a:hover {
  color: var(--accent-orange);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
  position: relative;
  z-index: 2;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-legal-links a:hover {
  color: var(--white);
}

/* Responsive */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-logo-section {
    grid-column: 1 / -1;
    max-width: 100%;
  }

  .section-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .contact-card {
    padding: 25px;
    border-radius: 25px;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .contact-icon-large {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }

  .contact-icon-large svg {
    width: 24px;
    height: 24px;
  }

  .contact-card h3 {
    font-size: 1.15rem;
  }

  .contact-card p {
    font-size: 0.9rem;
  }

  .contact-map {
    height: 300px;
    border-radius: 30px;
  }

  .footer-main {
    padding: 60px 0 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ==================== ANIMATIONS ==================== */
@keyframes morph {
  0%,
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    transform: translate(0, 0);
  }
  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    transform: translate(20px, -20px);
  }
}

/* ==================== HERO – FINALES LAYOUT ==================== */

.hero-content .termin_home {
  align-self: center;
  margin: 0 !important;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before,
.hero::after {
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 3;
}

/* Zwei Spalten nebeneinander, 10px Gap */
.hero-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0px;
  padding: 0px;
}

/* ---- LINKS: Logo + Button ---- */
.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  margin-left: 200px;
  flex-shrink: 0;
}

.hero-content > img {
  /* logo.svg */
  width: 800px;
  max-width: 100%;
  height: auto;
  display: block;
}

.termin_home {
  margin: 0 !important;
  align-self: flex-start;
}

/* ---- RECHTS: Ornament + Bild gestapelt ---- */
.hero-right {
  position: relative;
  flex-shrink: 0;
  width: 340px;
  height: 560px;
  margin-left: -110px;
  z-index: 2;
}

.stomach-ornament {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.15;
  animation: float-stomach 25s ease-in-out infinite;
}

.hero-doctor-img {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-doctor-img img {
  width: 225px;
  height: 500px;
  object-fit: contain;
  display: block;
}

.nav-logo-mobile {
  display: none;
}

.hero-right2 {
  display: none;
}

/* ==================== SOCIAL SIDEBAR ==================== */

.social-shares {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.share-item {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 10px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-red)
  );
  color: #ffffff;
  text-decoration: none;
  padding: 12px 14px 12px 16px;
  border-radius: 0 8px 8px 0;
  font-family: "Outfit", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  white-space: nowrap;
  transition:
    padding-left 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
  box-shadow: 3px 3px 16px rgba(131, 35, 41, 0.28);
  overflow: hidden;
  max-width: 52px;
}

.share-item:hover {
  max-width: 220px;
  padding-left: 20px;
  box-shadow: 5px 5px 24px rgba(131, 35, 41, 0.4);
  color: #ffffff;
  text-decoration: none;
}

.share-item svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  stroke: #ffffff;
}

.share-item span {
  opacity: 0;
  transform: translateX(8px);
  transition:
    opacity 0.25s ease 0.05s,
    transform 0.25s ease 0.05s;
  pointer-events: none;
}

.share-item:hover span {
  opacity: 1;
  transform: translateX(0);
}

/* Status badge: geöffnet / geschlossen */
.share-item.status-open {
  background: linear-gradient(135deg, #2e7d32, #43a047);
  box-shadow: -3px 3px 16px rgba(46, 125, 50, 0.28);
}

.share-item.status-open:hover {
  box-shadow: -5px 5px 24px rgba(46, 125, 50, 0.4);
}

.share-item.status-closed {
  background: linear-gradient(135deg, #5a5a5a, #777777);
  box-shadow: -3px 3px 16px rgba(0, 0, 0, 0.2);
}

.share-item.status-closed:hover {
  box-shadow: -5px 5px 24px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .social-shares {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 40px;
    transform: none;
    background: rgba(131, 35, 41, 0.8);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 0;
    gap: 0;
  }

  .share-item {
    flex: 1;
    max-width: none;
    height: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    font-size: 0;
  }

  .share-item:hover {
    max-width: none;
    padding-left: 0;
    background: rgba(131, 35, 41, 0.5);
    box-shadow: none;
  }

  .share-item svg,
  .share-item img {
    width: 16px;
    height: 16px;
  }
}

/* ==================== RESPONSIVE ==================== */

/* 1600px */
@media (max-width: 1600px) {
  .hero-content > img {
    width: 740px;
  }
  .hero-right {
    width: 300px;
    height: 500px;
  }
  .hero-doctor-img img {
    width: 200px;
    height: 440px;
  }
}

/* 1400px */
@media (max-width: 1400px) {
  .hero-content > img {
    width: 700px;
  }
  .hero-right {
    width: 270px;
    height: 460px;
    margin-left: -85px;
  }
  .hero-doctor-img img {
    width: 185px;
    height: 400px;
  }
}

/* 1200px */
@media (max-width: 1200px) {
  .hero-inner {
    gap: 10px;
  }
  .hero-content {
    margin-left: 100px;
  }
  .hero-content > img {
    width: 680px;
  }
  .hero-right {
    width: 240px;
    height: 420px;
    margin-left: -85px;
  }
  .hero-doctor-img img {
    width: 165px;
    height: 360px;
  }
}

/* 992px */
@media (max-width: 992px) {
  .hero-content {
    margin-left: 100px;
  }
  .hero-content > img {
    width: 640px;
  }
  .hero-right {
    width: 200px;
    height: 360px;
    margin-left: -85px;
  }
  .hero-doctor-img img {
    width: 140px;
    height: 310px;
  }
}

/* 768px – untereinander */
@media (max-width: 768px) {
  .hero-content {
    margin-left: 50px;
  }
  .hero-content > img {
    width: 520px;
  }
  .hero-right {
    width: 200px;
    height: 360px;
    margin-left: -85px;
  }
  .hero-doctor-img img {
    width: 140px;
    height: 310px;
  }
}

/* 768px – untereinander */
@media (max-width: 576px) {
  .hero-content {
    margin-left: 50px;
  }
  .hero-content > img {
    width: 400px;
  }
  .hero-right {
    width: 200px;
    height: 260px;
    margin-left: -70px;
  }
  .hero-doctor-img img {
    width: 140px;
    height: 310px;
  }
}

/* 480px */
@media (max-width: 480px) {
  .hero-content > img {
    width: 240px;
  }
  .hero-right {
    width: 160px;
    height: 280px;
  }
  .hero-doctor-img img {
    width: 130px;
    height: 250px;
  }
}

@media (max-width: 450px) {
  .hero-inner {
    display: block !important;
  }
  .hero {
    padding-top: 90px;
    padding-bottom: 0px;
    margin-bottom: 0px;
    overflow: hidden !important;
    min-height: 10px;
  }
  /* .hero-content { margin-left: 0px;}
		.hero-content > img   { width: 100%; }
		.hero-doctor-img > img  { width: 70px; height: 250px; }
		.hero-right           {  display: block!important;  margin-top:0px;  height:220px;position: unset; }
		.stomach-ornament {    position: absolute;  width: 60%;    height: 60%;    top: 60px; margin-left: 20%; }
		.hero-content .termin_home { display:nsone; }
		
		*/
  .hero-content {
    display: none;
  }
  .hero-right {
    margin-left: 5px;
  }
  .hero-right2 {
    margin-left: 65px;
    display: block;
    float: left;
    top: 110px;
    left: 110px;
    position: absolute;
  }

  .btn-primary-custom.termin_home {
    padding: 10px 22px;
    font-size: 0.85rem;
    letter-spacing: 0.2px;
  }
  .nav-logo-mobile {
    display: block;
    width: 98%;
    object-fit: contain;
  }
}

/* ==================== HAMBURGER MOBILE NAV (Bootstrap collapse) ==================== */

/* Hamburger Button – Desktop: unsichtbar */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.6);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  padding: 5px;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: background 0.3s ease;
}

.nav-hamburger:hover {
  background: rgba(255, 255, 255, 0.9);
}

.nav-hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

/* Hamburger → X (Bootstrap setzt aria-expanded, wir nutzen [aria-expanded="true"]) */
.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.nav-hamburger[aria-expanded="true"] span {
  background: var(--primary-color);
}

/* ---- DESKTOP: ul immer als Flex-Row ---- */
@media (min-width: 769px) {
  .top-nav > ul.collapse,
  .top-nav > ul.navbar-collapse {
    display: flex !important;
    flex-direction: row;
    gap: 45px;
    align-items: center;
    justify-content: center;
    position: static;
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
    margin: 0;
    height: auto !important;
    overflow: visible !important;
  }
}

/* ---- MOBILE ---- */
@media (max-width: 768px) {
  /* Nav-Pill: fix oben, Logo links, Hamburger rechts */
  .top-nav {
    position: fixed;
    top: 5px;
    left: 5px;
    right: 5px;
    transform: none;
    width: auto;
    max-width: none;
    padding: 10px 20px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* overflow:hidden BLEIBT weg – sonst kein Dropdown sichtbar! */
  }

  /* Hamburger einblenden */
  .nav-hamburger {
    display: flex;
  }

  /* Bootstrap collapse: geschlossen = versteckt */
  .top-nav > ul.collapse:not(.show) {
    display: none !important;
  }

  /* Bootstrap collapse: geöffnet = Dropdown unter Pill */
  .top-nav > ul.collapse.show,
  .top-nav > ul.collapsing {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 10px;
    gap: 4px;
    z-index: 999;
    width: 100%;
  }

  /* Logo-li im Dropdown ausblenden (Logo ist in Pill sichtbar) */
  .top-nav > ul li:first-child {
    display: none;
  }

  .top-nav > ul li {
    width: 100%;
  }

  .top-nav > ul li a {
    display: block;
    padding: 14px 20px;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 0.3px;
    border-radius: 12px;
    transition: all 0.25s ease;
  }

  .top-nav > ul li a:hover,
  .top-nav > ul li a:active {
    color: var(--primary-color);
    background: rgba(131, 35, 41, 0.06);
  }
}

.praxis-card-icon {
  display: inline-block;
  vertical-align: -4px;
  margin-right: 6px;
}
