/* =============================================
   Dr. Tatzel & Kollegen - Design System
   Fachärzte für Allgemeinmedizin
   ============================================= */

/* --- CSS Variables --- */
:root {
  /* Farbkonzept Praxis (Stand 2026-07): Dunkelblau / Petrol / Mint */
  --primary: #143D59;        /* Dunkelblau - Ueberschriften, Navigation, visuelle Fuehrung */
  --primary-light: #205A7C;  /* helleres Blau - Hover/Verlauf */
  --primary-dark: #0D2C42;   /* dunkleres Blau */
  --green: #0F766E;          /* Petrol - Buttons/Links/Aktion (ersetzt bisheriges Gruen) */
  --green-light: #17968C;
  --green-dark: #0B5A54;
  --teal: #0F766E;           /* Petrol - Akzente/Subtitles */
  --teal-light: #16A99C;
  --dark: #222A30;           /* Anthrazit - Haupttext/Ueberschriften-Basis */
  --dark-secondary: #2C363D; /* Anthrazit - Fliesstext */
  --gray: #4A545B;           /* Dunkelgrau - Sekundaertext */
  --gray-light: #7C858C;
  --light: #EAF5F2;          /* Mint - sanfte Gesundheitsflaechen */
  --lighter: #E5E8EA;        /* Hellgrau - neutrale Absetzungen */
  --border: #DCE2E6;
  --white: #FFFFFF;
  --gold: #0F766E;           /* auf Petrol gemappt (Konzept ohne Gold) */
  --gold-dark: #0B5A54;
  --gold-light: #CDE9E4;     /* helles Petrol als Akzent */
  --red: #B23A48;            /* gedecktes Rot - nur Warnungen/Dringlichkeit */
  --orange: #4A545B;         /* Hinweis (z. B. Notfalldienst) - ruhig, sekundaer */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.06);
  --shadow: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --max-width: 1200px;
  --header-height: 80px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-family);
  color: var(--dark);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-light); }
ul, ol { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.6rem, 4vw, 2.25rem); margin-bottom: 0.8rem; }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); margin-bottom: 0.6rem; }
h4 { font-size: 1.15rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; color: var(--dark-secondary); }

.section-subtitle {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--teal);
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--teal));
  margin-top: 12px;
  border-radius: 2px;
}

.section-title.centered::after { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-white p { color: rgba(255,255,255,0.85); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  line-height: 1;
}

.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover { background: var(--primary-light); border-color: var(--primary-light); color: var(--white); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover { background: linear-gradient(135deg, var(--gold-dark), #094A45); border-color: var(--gold-dark); color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--primary); }

.btn-green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-green:hover { background: var(--green-dark); border-color: var(--green-dark); color: var(--white); }

.btn-sm { padding: 10px 22px; font-size: 0.9rem; }
.btn-lg { padding: 18px 40px; font-size: 1.1rem; }

/* --- Header & Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
  height: var(--header-height);
}

.site-header.scrolled {
  box-shadow: var(--shadow);
  height: 70px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  height: 55px;
  width: auto;
  transition: var(--transition);
}

.scrolled .logo img { height: 45px; }

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}

.logo-subtitle {
  font-size: 0.72rem;
  color: var(--gray);
  letter-spacing: 0.5px;
}

/* Main Navigation */
.main-nav { display: flex; align-items: center; gap: 4px; }

.main-nav > li { position: relative; }

.main-nav > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--dark-secondary);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.main-nav > li > a:hover,
.main-nav > li > a.active {
  color: var(--primary);
  background: var(--light);
}

.nav-arrow {
  font-size: 0.65rem;
  transition: var(--transition);
}

.main-nav > li:hover .nav-arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
}

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

.dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: 0.9rem;
  color: var(--dark-secondary);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.dropdown a:hover {
  background: var(--light);
  color: var(--primary);
  padding-left: 22px;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
}

.mobile-toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  background: var(--primary-dark);
  overflow: hidden;
  margin-top: var(--header-height);
}

/* Hero Slideshow */
.hero-slideshow {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: 0;
  animation: heroFadeOut 0.5s ease forwards;
}

.hero-slide.active {
  opacity: 1;
  animation: heroFadeIn 1.8s ease forwards, kenBurns1 25s ease-in-out infinite alternate;
}

.hero-slide.active:nth-child(1) { animation: heroFadeIn 1.8s ease forwards, kenBurns1 25s ease-in-out infinite alternate; }
.hero-slide.active:nth-child(2) { animation: heroFadeIn 1.8s ease forwards, kenBurns2 28s ease-in-out infinite alternate; }
.hero-slide.active:nth-child(3) { animation: heroFadeIn 1.8s ease forwards, kenBurns3 22s ease-in-out infinite alternate; }
.hero-slide.active:nth-child(4) { animation: heroFadeIn 1.8s ease forwards, kenBurns4 26s ease-in-out infinite alternate; }
.hero-slide.active:nth-child(5) { animation: heroFadeIn 1.8s ease forwards, kenBurns5 24s ease-in-out infinite alternate; }

@keyframes heroFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes heroFadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes kenBurns1 {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.15) translate(-2%, -1%); }
}
@keyframes kenBurns2 {
  0%   { transform: scale(1.05) translate(1%, 0); }
  100% { transform: scale(1.18) translate(-1%, -2%); }
}
@keyframes kenBurns3 {
  0%   { transform: scale(1) translate(-1%, 1%); }
  100% { transform: scale(1.12) translate(2%, -1%); }
}
@keyframes kenBurns4 {
  0%   { transform: scale(1.08) translate(0, -1%); }
  100% { transform: scale(1.2) translate(-2%, 1%); }
}
@keyframes kenBurns5 {
  0%   { transform: scale(1) translate(1%, 1%); }
  100% { transform: scale(1.15) translate(-1%, -2%); }
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(14,58,86,0.65) 0%, rgba(20,143,119,0.45) 100%);
  z-index: 1;
}

.hero::before { display: none; }

.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%23ffffff' d='M0,40 C360,80 720,0 1080,40 C1260,60 1380,50 1440,40 L1440,80 L0,80 Z'/%3E%3C/svg%3E") bottom/cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.hero p {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 2.5rem;
}

.hero-badges-stacked {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  width: 220px;
  margin: 0;
  z-index: 3;
}

.hero-badges-stacked .hero-badge {
  width: 100%;
  justify-content: flex-start;
  padding: 12px 20px 12px 28px;
  border-radius: 0 50px 50px 0;
  background: rgba(10,14,23,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(243,156,18,0.35);
  border-left: none;
  box-shadow: 4px 4px 20px rgba(0,0,0,0.3);
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-badges-stacked .hero-badge .icon { font-size: 1.2rem; }

@media (max-width: 768px) {
  .hero-badges-stacked {
    position: static;
    transform: none;
    width: auto;
    max-width: 260px;
    margin-bottom: 2rem;
  }
  .hero-badges-stacked .hero-badge {
    border-radius: 50px;
    border-left: 1px solid rgba(243,156,18,0.35);
    padding: 10px 20px;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  padding: 8px 18px;
  border-radius: 50px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.2);
}

.hero-badge .icon { font-size: 1.1rem; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* --- Section Spacing --- */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--light);
}

.section-dark {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-secondary) 100%);
  color: var(--white);
}

.section-gradient {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--teal) 100%);
  color: var(--white);
}

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.card-body { padding: 28px; }
.card-body h3 { margin-bottom: 12px; }
.card-body p { color: var(--gray); font-size: 0.95rem; }

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  color: var(--white);
}

.card-icon.green { background: linear-gradient(135deg, var(--green), var(--teal)); }
.card-icon.gold { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }

/* Praxis Card */
.praxis-card {
  position: relative;
  overflow: hidden;
}

.praxis-card .card-header {
  background: linear-gradient(135deg, var(--primary), var(--teal));
  padding: 28px;
  color: var(--white);
}

.praxis-card .card-header h3 { color: var(--white); margin-bottom: 4px; }
.praxis-card .card-header p { color: rgba(255,255,255,0.85); margin-bottom: 0; }

.praxis-card .card-body { padding: 28px; }

.praxis-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.praxis-info-item:last-child { border-bottom: none; }

.praxis-info-item .icon {
  font-size: 1.3rem;
  color: var(--teal);
  width: 24px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.praxis-info-item strong {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray);
  margin-bottom: 2px;
}

/* --- Grid Layouts --- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* --- Leistungen Cards --- */
.leistung-card {
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.leistung-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary), var(--teal));
  opacity: 0;
  transition: var(--transition);
}

.leistung-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.leistung-card:hover::before { opacity: 1; }

.leistung-card .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  background: var(--light);
  color: var(--primary);
  transition: var(--transition);
}

.leistung-card:hover .icon-wrap {
  background: linear-gradient(135deg, var(--primary), var(--teal));
  color: var(--white);
}

.leistung-card h4 { font-size: 1.1rem; }
.leistung-card p { font-size: 0.9rem; color: var(--gray); margin-bottom: 14px; }

.leistung-card .card-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.leistung-card .card-link:hover { gap: 10px; }

/* --- Team Section --- */
.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.team-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(26,82,118,0.3);
}

.team-card h3 { margin-bottom: 4px; font-size: 1.15rem; }
.team-card .role { color: var(--teal); font-weight: 600; font-size: 0.9rem; margin-bottom: 12px; }
.team-card p { font-size: 0.88rem; color: var(--gray); }

.team-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
}

.team-tag {
  padding: 4px 12px;
  background: var(--light);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
}

/* --- Opening Hours --- */
.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table tr:last-child { border-bottom: none; }

.hours-table td {
  padding: 12px 0;
  font-size: 0.95rem;
}

.hours-table td:first-child {
  font-weight: 600;
  color: var(--dark);
  width: 50%;
}

.hours-table td:last-child { color: var(--gray); text-align: right; }

.hours-table tr.closed td:last-child { color: var(--red); font-weight: 500; }

/* --- Emergency Section --- */
.emergency-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.emergency-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow);
}

.emergency-card .icon {
  font-size: 1.6rem;
  color: var(--red);
  width: 40px;
  flex-shrink: 0;
}

.emergency-card .label {
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

.emergency-card .number {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}

.emergency-card a { color: var(--primary); }

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--teal));
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}

.cta-section h2 { color: var(--white); font-size: 2rem; margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 600px; margin: 0 auto 2rem; }

/* --- Contact Form --- */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--dark);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: var(--font-family);
  color: var(--dark);
  transition: var(--transition);
  background: var(--white);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(26,82,118,0.1);
}

textarea.form-control { min-height: 150px; resize: vertical; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* --- Footer --- */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--teal);
  border-radius: 1px;
}

.footer-col p { font-size: 0.9rem; margin-bottom: 6px; }
.footer-col a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.footer-col a:hover { color: var(--teal-light); }

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 2px 0;
}

.footer-links a::before {
  content: '›';
  font-weight: 700;
  color: var(--teal);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact-item .icon {
  color: var(--teal);
  font-size: 1.1rem;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); }
.footer-bottom-links a:hover { color: var(--teal-light); }

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  padding: 20px 0;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  display: none;
}

.cookie-banner.show { display: block; }

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-inner p { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin: 0; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }

/* --- Content Pages --- */
.page-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 120px 0 60px;
  margin-top: var(--header-height);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 50px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 50'%3E%3Cpath fill='%23ffffff' d='M0,25 C480,50 960,0 1440,25 L1440,50 L0,50 Z'/%3E%3C/svg%3E") bottom/cover no-repeat;
  z-index: 3;
}

.page-header h1 { color: var(--white); margin-bottom: 0.5rem; position: relative; z-index: 2; }
.page-header p { color: rgba(255,255,255,0.85); font-size: 1.1rem; position: relative; z-index: 2; }

/* Page Header with Ken-Burns Parallax */
.page-header-parallax {
  min-height: 280px;
  display: flex;
  align-items: center;
}

.page-header-parallax::before {
  content: '';
  position: absolute;
  top: -10%; left: -5%; right: -5%; bottom: -10%;
  background: var(--bg-image) var(--bg-pos, center 25%)/cover no-repeat;
  animation: kenBurnsPageHeader 20s ease-in-out infinite alternate;
  z-index: 0;
}

.page-header-parallax .page-header-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(14,58,86,0.72) 0%, rgba(20,143,119,0.55) 100%);
  z-index: 1;
}

.page-header-parallax .container {
  position: relative;
  z-index: 2;
}

.page-header-parallax .breadcrumb a,
.page-header-parallax .breadcrumb span,
.page-header-parallax .breadcrumb {
  position: relative;
  z-index: 2;
}

@keyframes kenBurnsPageHeader {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.08) translate(-1%, -0.5%); }
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  justify-content: center;
}

.breadcrumb a { color: rgba(255,255,255,0.7); font-size: 0.88rem; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.breadcrumb .current { color: rgba(255,255,255,0.9); font-size: 0.88rem; }

.content-section { padding: 60px 0; }

.content-section p { font-size: 1rem; line-height: 1.8; margin-bottom: 1.2rem; }

.content-section ul {
  margin-bottom: 1.2rem;
  padding-left: 0;
}

.content-section ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 0.95rem;
  color: var(--dark-secondary);
}

.content-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

/* Info Box */
.info-box {
  background: linear-gradient(135deg, rgba(26,82,118,0.05), rgba(20,143,119,0.05));
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px;
  margin: 24px 0;
}

.info-box h4 { color: var(--primary); margin-bottom: 8px; }
.info-box p { margin-bottom: 0; font-size: 0.95rem; }

.warning-box {
  background: rgba(243,156,18,0.08);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px;
  margin: 24px 0;
}

.warning-box h4 { color: var(--gold-dark); margin-bottom: 8px; }

/* --- Map Embed --- */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  height: 350px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* --- Accordion / FAQ --- */
.accordion { margin: 24px 0; }

.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: var(--white);
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  width: 100%;
  text-align: left;
  transition: var(--transition);
}

.accordion-header:hover { background: var(--light); }

.accordion-header .icon {
  font-size: 1.2rem;
  transition: var(--transition);
  color: var(--teal);
}

.accordion-item.active .accordion-header .icon { transform: rotate(45deg); }
.accordion-item.active .accordion-header { background: var(--light); color: var(--primary); }

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-body-inner { padding: 0 24px 24px; }
.accordion-body-inner p { font-size: 0.95rem; }

/* --- Download Cards --- */
.download-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.download-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.download-card .file-icon {
  width: 48px;
  height: 48px;
  background: var(--light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--red);
  flex-shrink: 0;
}

.download-card .file-info h4 { font-size: 1rem; margin-bottom: 2px; }
.download-card .file-info p { font-size: 0.85rem; color: var(--gray); margin: 0; }

.download-card .download-btn {
  margin-left: auto;
  color: var(--primary);
  font-size: 1.3rem;
  padding: 8px;
  border-radius: 50%;
  transition: var(--transition);
}

.download-card .download-btn:hover {
  background: var(--light);
  color: var(--teal);
}

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--teal); transform: translateY(-4px); }

/* --- Symptom Checker --- */
.symptom-checker-dark {
  background: linear-gradient(160deg, #0D2C42 0%, #143D59 55%, #0B5A54 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.symptom-checker-dark::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(243,156,18,0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(20,143,119,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.symptom-checker-dark .section-title::after {
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}

.symptom-checker {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.symptom-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
}

.symptom-progress-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  transition: var(--transition);
}

.symptom-progress-step.active {
  color: var(--white);
  font-weight: 700;
}

.symptom-progress-step.completed {
  color: var(--gold-light);
}

.symptom-progress-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  transition: var(--transition);
}

.symptom-progress-step.active .symptom-progress-num {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  box-shadow: 0 0 20px rgba(243,156,18,0.3);
}

.symptom-progress-step.completed .symptom-progress-num {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.symptom-progress-line {
  width: 50px;
  height: 2px;
  background: rgba(255,255,255,0.2);
  margin: 0 12px;
}

.symptom-progress-line.active {
  background: var(--gold);
}

/* Steps */
.symptom-step {
  display: none;
  animation: symptomFadeIn 0.4s ease forwards;
}

.symptom-step.active {
  display: block;
}

@keyframes symptomFadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Category Cards */
.symptom-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.symptom-category {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.symptom-category:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 20px rgba(243,156,18,0.08);
}

.symptom-category-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  display: block;
}

.symptom-category-title {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.symptom-category-desc {
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
  margin: 0;
  line-height: 1.4;
}

/* Symptom Options (Chips) */
.symptom-step-header {
  text-align: center;
  margin-bottom: 30px;
}

.symptom-step-header h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.symptom-step-header p {
  color: rgba(255,255,255,0.7);
  margin: 0;
}

.symptom-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 30px;
}

.symptom-option {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 12px 24px;
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-family);
}

.symptom-option:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.25);
  color: var(--white);
}

.symptom-option.selected {
  background: rgba(243,156,18,0.15);
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 15px rgba(243,156,18,0.1);
}

.symptom-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* Result Card */
.symptom-results {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.symptom-result-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition);
}

.symptom-result-card:hover {
  background: rgba(255,255,255,0.07);
  border-left-color: var(--gold-light);
}

.symptom-result-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.symptom-result-content h4 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.symptom-result-content p {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  margin-bottom: 16px;
  line-height: 1.6;
}

.symptom-result-content .btn {
  padding: 10px 22px;
  font-size: 0.88rem;
}

.symptom-restart {
  text-align: center;
  margin-top: 20px;
}

.symptom-restart button {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.7);
  padding: 10px 28px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  cursor: pointer;
  font-family: var(--font-family);
  transition: var(--transition);
}

.symptom-restart button:hover {
  border-color: var(--white);
  color: var(--white);
}

.symptom-back-btn {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.7);
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  cursor: pointer;
  font-family: var(--font-family);
  transition: var(--transition);
}

.symptom-back-btn:hover {
  border-color: var(--white);
  color: var(--white);
}

@media (max-width: 768px) {
  .symptom-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .symptom-category { padding: 20px 14px; }
  .symptom-category-icon { font-size: 2rem; }
  .symptom-progress-step span:not(.symptom-progress-num) { display: none; }
  .symptom-progress-line { width: 30px; }
  .symptom-result-card { flex-direction: column; text-align: center; }
}

/* --- Animated Counter --- */
.counter-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 60px 0;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.counter-item {
  padding: 20px;
}

.counter-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.counter-number .counter-suffix {
  font-size: 0.7em;
}

.counter-label {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

@media (max-width: 768px) {
  .counter-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* --- Seasonal Banner --- */
.seasonal-banner {
  background: linear-gradient(135deg, #0B5A54 0%, #17968C 50%, #0F766E 100%);
  border-radius: var(--radius-xl);
  padding: 40px 50px;
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.seasonal-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}

.seasonal-banner::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.seasonal-banner-icon {
  font-size: 4rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.seasonal-banner-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.seasonal-banner-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.seasonal-banner-content h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.seasonal-banner-content p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.seasonal-banner-actions {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .seasonal-banner { flex-direction: column; padding: 30px 24px; text-align: center; }
  .seasonal-banner-actions { width: 100%; }
  .seasonal-banner-actions .btn { width: 100%; justify-content: center; }
}

/* --- FAQ Accordion --- */
.faq-section { padding: 60px 0; }

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover { border-color: var(--teal); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: var(--white);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-family);
  transition: var(--transition);
}

.faq-question:hover { background: var(--lighter); }

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--teal);
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  background: var(--teal);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-item.active .faq-question {
  background: var(--lighter);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

/* --- Blog --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.blog-card-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.blog-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--teal);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-card-body {
  padding: 24px;
}

.blog-card-date {
  font-size: 0.8rem;
  color: var(--gray-light);
  margin-bottom: 8px;
  display: block;
}

.blog-card-body h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card-body p {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.6;
}

.blog-card-link {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-card-link:hover { gap: 10px; color: var(--primary); }

.blog-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  align-items: center;
}

.blog-hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.blog-hero-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-hero { grid-template-columns: 1fr; }
  .blog-hero-image img { height: 220px; }
}

/* --- Infusion Configurator --- */
.infusion-config {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.infusion-config-question {
  text-align: center;
  margin-bottom: 30px;
}

.infusion-config-question h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.infusion-config-question p {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  margin: 0;
}

.infusion-config-counter {
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
  margin-bottom: 20px;
}

.infusion-config-answers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.infusion-answer {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 18px 20px;
  color: rgba(255,255,255,0.8);
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  font-family: inherit;
  display: block;
  width: 100%;
}

.infusion-answer:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.infusion-config-result {
  text-align: center;
  animation: symptomFadeIn 0.5s ease forwards;
}

.infusion-config-result h3 {
  color: var(--gold);
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.infusion-config-result p {
  color: rgba(255,255,255,0.75);
  max-width: 550px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

.infusion-config-result .result-icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
  display: block;
}

.infusion-config-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .infusion-config-answers { grid-template-columns: 1fr; }
}

/* --- Team Carousel --- */
.team-carousel {
  position: relative;
  overflow: hidden;
}

.team-carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-carousel-slide {
  min-width: 100%;
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 0 20px;
}

.team-carousel-image {
  flex-shrink: 0;
  width: 280px;
  height: 350px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.team-carousel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-carousel-info {
  flex: 1;
}

.team-carousel-info h3 {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.team-carousel-info .team-role {
  color: var(--teal);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 20px;
  display: block;
}

.team-funfact {
  background: var(--light);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 16px;
  border-left: 3px solid var(--gold);
}

.team-funfact-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 6px;
  display: block;
}

.team-funfact p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--dark-secondary);
  line-height: 1.5;
}

.team-carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}

.team-carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--dark);
  transition: var(--transition);
  font-family: inherit;
}

.team-carousel-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.team-carousel-dots {
  display: flex;
  gap: 8px;
}

.team-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.team-carousel-dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .team-carousel-slide { flex-direction: column; gap: 24px; }
  .team-carousel-image { width: 200px; height: 250px; }
}

/* --- Contact Form --- */
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(20,143,119,0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--gray-light);
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Utilities --- */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }

/* =============================================
   Barrierefreiheit (A11y) - global
   ============================================= */

/* Sichtbarer Tastatur-Fokus fuer alle interaktiven Elemente */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* Skip-Link (per JS in jede Seite injiziert) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 2000;
  background: var(--primary);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 0 0 var(--radius-sm) 0;
  font-weight: 600;
}
.skip-link:focus {
  left: 0;
  color: var(--white);
}

/* Reduzierte Bewegung respektieren */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* =============================================
   Schoenheitsmedizin voruebergehend ausgeblendet
   (Code bleibt erhalten - zum Wieder-Einblenden diesen Block entfernen)
   ============================================= */
li:has(> a[href="/schoenheitsmedizin"]),          /* Menue-Dropdown + Footer */
.leistung-card:has(> a[href="/schoenheitsmedizin"]),  /* Startseiten-Kachel (div) */
a.leistung-card[href="/schoenheitsmedizin"] {     /* Leistungen-Seite (Link-Kachel) */
  display: none !important;
}

/* =============================================
   Urlaubs-/Info-Banner (site-weit, wegklickbar)
   ============================================= */
.announce-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 11px 52px 11px 20px;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.4;
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);
}
.announce-bar a {
  color: #fff;
  text-decoration: underline;
  font-weight: 700;
  white-space: nowrap;
}
.announce-bar a:hover { opacity: 0.85; color: #fff; }
.announce-bar-close {
  position: absolute;
  right: 10px; top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 2px 10px;
  border-radius: 6px;
}
.announce-bar-close:hover { background: rgba(255,255,255,0.18); }

/* Layout-Ausgleich: fixierten Header + Inhalt unter den Balken schieben */
body.has-announce { padding-top: var(--announce-h, 44px); }
body.has-announce .site-header { top: var(--announce-h, 44px); }

@media (max-width: 640px) {
  .announce-bar { font-size: 0.84rem; padding: 10px 46px 10px 14px; gap: 8px; }
}

/* =============================================
   Generische "Anrufen"-Buttons ausgeblendet
   (CTA-/Hero-Bloecke). Standort-Kontakte in Footer/
   Praxis-Karten/Impressum bleiben sichtbar.
   ============================================= */
.cta-section a.btn[href^="tel:"],
.hero a.btn[href^="tel:"] {
  display: none !important;
}
