/* ==========================================================================
   PROVISION AUGENÄRZTE IDSTEIN - PREMIUM CUSTOM STYLESHEET
   ========================================================================== */

/* 1. DESIGN TOKENS & CUSTOM PROPERTIES */
:root {
  /* Premium Harmonious Color Palette */
  --color-primary: #0d2c54;           /* Deep Trust Blue */
  --color-primary-rgb: 13, 44, 84;
  --color-primary-light: #164075;     /* Lighter Blue */
  --color-secondary: #e8f1f5;         /* Soft Medical Blue-Grey */
  --color-accent: #00b4d8;            /* Tech Turquoise / Cyan */
  --color-accent-rgb: 0, 180, 216;
  --color-accent-hover: #0096b4;
  --color-warm-beige: #fcfaf7;        /* Comfort warm cream beige */
  --color-warm-beige-dark: #f2ede4;
  
  /* Text Neutrals */
  --color-text-dark: #1e293b;         /* Dark Slate for superb readability */
  --color-text-light: #64748b;        /* Muted Slate */
  --color-bg-light: #f8fafc;
  --color-white: #ffffff;
  
  /* Alerts */
  --color-success: #10b981;
  --color-success-bg: rgba(16, 185, 129, 0.1);
  --color-error: #ef4444;
  --color-error-bg: rgba(239, 68, 68, 0.1);
  --color-warning: #f59e0b;
  --color-warning-bg: rgba(245, 158, 11, 0.08);

  /* Modern Local-First Typography Stack */
  --font-primary: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-headings: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(13, 44, 84, 0.04);
  --shadow-md: 0 12px 32px rgba(13, 44, 84, 0.08);
  --shadow-lg: 0 20px 48px rgba(13, 44, 84, 0.12);
  --shadow-accent: 0 8px 24px rgba(0, 180, 216, 0.3);
  --shadow-glass: 0 8px 32px 0 rgba(13, 44, 84, 0.06);

  /* Borders & Radii */
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-full: 9999px;
  
  /* Transition timings */
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}


/* 2. BASE RESET & INITIAL SETUP */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text-dark);
  background-color: var(--color-bg-light);
  overflow-x: hidden;
}

/* Reusable Layout Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.max-width-800 {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.max-width-600 {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.text-center {
  text-align: center !important;
}

/* Grid & Section Spacing */
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media (max-width: 768px) {
  .section-padding {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

.bg-soft-blue {
  background-color: var(--color-secondary);
}

.bg-white {
  background-color: var(--color-white);
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-primary);
}

p {
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

.lead-text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-text-dark);
  font-weight: 500;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--color-accent-hover);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border-radius-md);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  outline: none;
  transition: var(--transition-fast);
}

/* 3. BUTTONS DESIGN */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--border-radius-full);
  transition: var(--transition-smooth);
  gap: 8px;
  text-align: center;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-accent {
  background-color: var(--color-accent);
  color: var(--color-white);
  box-shadow: var(--shadow-accent);
}

.btn-accent:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 180, 216, 0.4);
}

.btn-outline-white {
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  border-color: var(--color-white);
  background-color: var(--color-white);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.btn-white-solid {
  background-color: var(--color-white);
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.btn-white-solid:hover {
  background-color: var(--color-secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-white-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: var(--color-white);
}

.btn-white-outline:hover {
  border-color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-cyan-glow {
  background-color: rgba(0, 180, 216, 0.25);
  border: 1.5px solid var(--color-accent);
  color: var(--color-accent);
  text-shadow: 0 0 10px rgba(0, 180, 216, 0.2);
}

.btn-cyan-glow:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
  box-shadow: var(--shadow-accent);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.875rem;
}

.margin-right-small {
  margin-right: 6px;
}

/* 4. HEADER & NAVIGATION STYLING */
.header-main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  background-color: rgba(13, 44, 84, 0.15); /* Sleek dark-blue glass shade initially */
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition-smooth);
}

/* Shrink header state triggered by scroll JS */
.header-main.header-scrolled {
  padding: 12px 0;
  background-color: rgba(255, 255, 255, 0.92); /* Crisp clean white glass theme when scrolled */
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid rgba(13, 44, 84, 0.06);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand area */
.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-white); /* White over hero video overlay */
  transition: var(--transition-smooth);
}

.header-main.header-scrolled .logo-area {
  color: var(--color-primary); /* Deep blue when scrolled over white sections */
}

.logo-icon {
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-sm);
  width: 46px;
  height: 46px;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: var(--transition-smooth);
}

.header-main.header-scrolled .logo-icon {
  background-color: var(--color-white);
  border-color: rgba(0, 180, 216, 0.15);
}

.logo-area:hover .logo-icon {
  transform: rotate(5deg) scale(1.05);
  border-color: var(--color-accent) !important;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: -0.5px;
  line-height: 1;
}

.brand-sub {
  font-size: 0.725rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65); /* Soft white sub-text over hero */
  margin-top: 2px;
  transition: var(--transition-smooth);
}

.header-main.header-scrolled .brand-sub {
  color: var(--color-text-light); /* Slate grey when scrolled */
}

/* Navigation desktop list */
.nav-desktop {
  display: block;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85); /* Clean white-grey over dark hero video */
  padding: 6px 0;
  position: relative;
  transition: var(--transition-smooth);
}

.header-main.header-scrolled .nav-link {
  color: var(--color-text-dark); /* Slate dark over white backgrounds */
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-accent);
}

.header-main.header-scrolled .nav-link:hover {
  color: var(--color-accent);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--color-accent);
}

.header-main.header-scrolled .nav-link.active {
  color: var(--color-accent);
}

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Custom premium navigation CTA buttons dynamic transitions */
.btn-nav-cta {
  background-color: var(--color-accent) !important;
  color: var(--color-white) !important;
  border: 1px solid var(--color-accent) !important;
  box-shadow: var(--shadow-accent) !important;
  transition: var(--transition-smooth);
}

.btn-nav-cta:hover {
  background-color: var(--color-accent-hover) !important;
  border-color: var(--color-accent-hover) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(0, 180, 216, 0.45) !important;
}

.header-main.header-scrolled .btn-nav-cta {
  background-color: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
  box-shadow: var(--shadow-sm) !important;
}

.header-main.header-scrolled .btn-nav-cta:hover {
  background-color: var(--color-primary-light) !important;
  border-color: var(--color-primary-light) !important;
  box-shadow: var(--shadow-md) !important;
}

/* Burger menu trigger */
.burger-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  z-index: 1010;
}

.burger-bar {
  width: 100%;
  height: 2px;
  background-color: var(--color-white); /* White over dark hero video */
  border-radius: var(--border-radius-full);
  transition: var(--transition-smooth);
}

.header-main.header-scrolled .burger-bar {
  background-color: var(--color-primary); /* Slate dark when scrolled */
}

@media (max-width: 1024px) {
  .nav-desktop, .btn-nav-cta {
    display: none;
  }
  .burger-menu-btn {
    display: flex;
  }
}


/* Mobile Nav Side Drawer */
.nav-mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100dvh;
  background-color: var(--color-white);
  z-index: 1005;
  box-shadow: -10px 0 40px rgba(13, 44, 84, 0.15);
  padding: 100px 32px 40px 32px;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.nav-mobile-drawer.drawer-open {
  right: 0;
}

.nav-mobile-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}

.nav-mobile-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style: none;
}

.nav-mobile-link {
  font-family: var(--font-headings);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
}

.nav-mobile-link:hover {
  color: var(--color-accent);
}

.nav-mobile-item-with-children {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-mobile-submenu {
  list-style: none;
  margin: 0;
  padding: 4px 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 1px solid rgba(22, 138, 67, 0.16);
}

.nav-mobile-sublink {
  font-family: var(--font-body) !important;
  font-size: 0.92rem;
  line-height: 1.45;
  font-weight: 600;
  color: var(--color-text-light);
}

.nav-mobile-sublink:hover {
  color: var(--color-accent);
}

.mobile-drawer-footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-phone-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-primary);
  gap: 8px;
  padding: 12px 0;
  border-radius: var(--border-radius-md);
  background-color: var(--color-secondary);
}

/* Burger Animation to X */
.burger-menu-btn.active .line-top {
  transform: translateY(8px) rotate(45deg);
}

.burger-menu-btn.active .line-middle {
  opacity: 0;
}

.burger-menu-btn.active .line-bottom {
  transform: translateY(-8px) rotate(-45deg);
}


/* 5. HERO SECTION & BACKGROUND VIDEO */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 80px;
  overflow: hidden;
  background-color: var(--color-primary);
}

.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 60% 40%, rgba(13, 44, 84, 0.45) 0%, rgba(13, 44, 84, 0.85) 80%);
  z-index: 2;
}

/* Abstract Tech Decorations */
.hero-tech-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.glow-orb {
  position: absolute;
  border-radius: var(--border-radius-full);
  filter: blur(140px);
  opacity: 0.35;
}

.orb-1 {
  width: 350px;
  height: 350px;
  background-color: var(--color-accent);
  top: 15%;
  left: 10%;
}

.orb-2 {
  width: 450px;
  height: 450px;
  background-color: var(--color-primary-light);
  bottom: 10%;
  right: 5%;
}

.abstract-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.85;
}

/* Hero Content Area */
.hero-container {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.hero-content {
  max-width: 720px;
  margin-bottom: 60px;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  color: var(--color-white);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Trust Badges in Hero */
.hero-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
}

.badge-card {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 20px;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition-smooth);
}

.badge-card:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 180, 216, 0.3);
  transform: translateY(-3px);
}

.badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background-color: rgba(0, 180, 216, 0.12);
  border: 1px solid rgba(0, 180, 216, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
}

.badge-icon svg {
  width: 20px;
  height: 20px;
}

.badge-text {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.25;
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.85rem;
  }
  .hero-badges {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 2.25rem;
  }
  .hero-section {
    padding-top: 120px;
  }
  .hero-badges {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
  }
}


/* 6. FLOATING CONTACT BUTTONS SYSTEM */
.floating-contact {
  position: fixed;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.floating-btn {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(13, 44, 84, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px;
  border-radius: var(--border-radius-full);
  box-shadow: var(--shadow-sm);
  color: var(--color-primary);
  width: 48px;
  height: 48px;
  overflow: hidden;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s, transform 0.2s, box-shadow 0.3s;
}

.floating-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.floating-label {
  opacity: 0;
  white-space: nowrap;
  font-weight: 700;
  font-size: 0.9rem;
  margin-left: 10px;
  transform: translateX(-8px);
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--color-primary);
}

/* Hover logic for Desktop floating bar */
@media (min-width: 769px) {
  .floating-btn:hover {
    width: 140px;
    background-color: var(--color-white);
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 180, 216, 0.25);
  }
  
  .floating-btn:hover .floating-label {
    opacity: 1;
    transform: translateX(0);
  }
  
  /* Focus highlight */
  .floating-btn:focus-visible {
    width: 140px;
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
  }
  .floating-btn:focus-visible .floating-label {
    opacity: 1;
    transform: translateX(0);
  }
  
  .floating-btn.item-phone:hover {
    color: var(--color-accent);
  }
  .floating-btn.item-message:hover {
    color: var(--color-success);
  }
  .floating-btn.item-callback:hover {
    color: var(--color-warning);
  }
}

/* Responsive transformation to Bottom Bar on Mobile */
@media (max-width: 768px) {
  .floating-contact {
    left: 50%;
    bottom: 16px;
    top: auto;
    transform: translateX(-50%);
    flex-direction: row;
    background-color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(13, 44, 84, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 8px 16px;
    border-radius: var(--border-radius-full);
    box-shadow: var(--shadow-lg);
    gap: 16px;
    width: auto;
  }

  .floating-btn {
    width: 46px;
    height: 46px;
    padding: 10px;
    box-shadow: none;
    border: none;
    background-color: rgba(13, 44, 84, 0.04);
  }
  
  .floating-label {
    display: none;
  }
}


/* 7. PRAXIS SECTION SPECIFICS */
.grid-praxis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.praxis-visual-wrapper {
  position: relative;
  padding: 20px;
}

.praxis-image {
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--color-white);
  position: relative;
  z-index: 2;
}

.elegant-line-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.corner-line {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 1.5px solid var(--color-accent);
}

.corner-line.top-left {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

.corner-line.bottom-right {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}

.praxis-floating-tag {
  position: absolute;
  bottom: 40px;
  left: -20px;
  background: var(--color-white);
  border: 1px solid rgba(0, 180, 216, 0.15);
  box-shadow: var(--shadow-md);
  padding: 14px 24px;
  border-radius: var(--border-radius-md);
  display: flex;
  flex-direction: column;
  z-index: 5;
  backdrop-filter: blur(8px);
}

.tag-number {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--color-accent);
  line-height: 1.1;
}

.tag-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-header {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.section-tagline {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-accent);
  margin-bottom: 8px;
  text-align: center;
}

.section-title {
  font-size: 2.35rem;
  color: var(--color-primary);
  letter-spacing: -0.5px;
  text-align: center;
}

.section-subtitle-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--color-text-light);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 12px;
  text-align: center;
}

.praxis-text {
  margin-bottom: 20px;
}

/* Advantages inside Praxis */
.grid-advantages {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}

.advantage-item {
  display: flex;
  gap: 16px;
}

.advantage-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: var(--color-secondary);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.advantage-item:hover .advantage-icon {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.advantage-desc h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.advantage-desc p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .grid-praxis {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .praxis-floating-tag {
    left: 10px;
  }
}

@media (max-width: 600px) {
  .grid-advantages {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .section-title {
    font-size: 1.85rem;
  }
}


/* 8. ÄRZTE SECTION DESIGN */
.doctors-gallery {
  position: relative;
  margin-top: 40px;
}

.doctors-gallery-viewport {
  overflow: hidden;
  padding: 14px 36px 18px 36px;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.doctors-gallery[data-doctors-count="1"] .doctors-gallery-viewport,
.doctors-gallery[data-doctors-count="2"] .doctors-gallery-viewport {
  padding-left: 0;
  cursor: default;
}

.doctors-gallery.is-dragging .doctors-gallery-viewport {
  cursor: grabbing;
}

.grid-doctors {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 22px;
  will-change: transform;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.doctors-gallery[data-doctors-count="1"] .grid-doctors,
.doctors-gallery[data-doctors-count="2"] .grid-doctors {
  justify-content: center;
}

.doctor-card {
  background-color: var(--color-white);
  border: 1px solid rgba(13, 44, 84, 0.05);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  flex: 0 0 clamp(300px, 36vw, 440px);
  transition: box-shadow 0.35s ease, border-color 0.35s ease;
}

.doctor-card:hover {
  box-shadow: 0 20px 40px rgba(0, 180, 216, 0.08);
  border-color: rgba(0, 180, 216, 0.25);
}

.doctor-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 0;
  overflow: hidden;
  background-color: var(--color-secondary);
}

.doctor-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.doctor-image--aliew {
  object-position: center 18%;
}

.doctor-image--knebel {
  object-position: center 24%;
}

.doctor-glow-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(13, 44, 84, 0.4) 0%, rgba(13, 44, 84, 0) 50%);
  pointer-events: none;
}

.doctor-details {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.doctor-role {
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}

.doctor-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
  line-height: 1.35;
}

.doctor-bio {
  font-size: 0.96rem;
  line-height: 1.6;
  margin-top: 16px;
  margin-bottom: 0;
}

.doctor-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.highlight-pill {
  background-color: var(--color-bg-light);
  border: 1px solid rgba(13, 44, 84, 0.05);
  color: var(--color-primary);
  font-size: 0.74rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--border-radius-full);
  transition: var(--transition-fast);
}

.doctor-card:hover .highlight-pill {
  background-color: var(--color-secondary);
  border-color: rgba(0, 180, 216, 0.15);
}

@media (max-width: 1024px) {
  .grid-doctors {
    gap: 20px;
  }

  .doctor-image-wrapper {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 768px) {
  .doctors-gallery[data-doctors-count="2"] .doctors-gallery-viewport {
    padding-left: 20px;
    cursor: grab;
  }

  .doctors-gallery[data-doctors-count="2"] .grid-doctors {
    justify-content: flex-start;
  }

  .grid-doctors {
    gap: 18px;
  }

  .doctor-card {
    flex-basis: min(300px, calc(100vw - 104px));
  }

  .doctors-gallery-viewport {
    padding-left: 20px;
  }

  .doctor-image-wrapper {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 480px) {
  .doctors-gallery[data-doctors-count="2"] .doctors-gallery-viewport {
    padding-left: 12px;
  }

  .doctors-gallery-viewport {
    padding-bottom: 10px;
  }

  .doctor-card {
    flex-basis: calc(100vw - 88px);
  }

  .doctors-gallery-viewport {
    padding-left: 12px;
  }

  .doctor-image-wrapper {
    aspect-ratio: 16 / 10;
  }
  .doctor-details {
    padding: 24px;
  }
}


/* 9. LEISTUNGEN (SERVICES) TABBED LAYOUT */
.services-tab-wrapper {
  margin-top: 50px;
}

.services-tab-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
  border-bottom: 1.5px solid rgba(13, 44, 84, 0.05);
  padding-bottom: 16px;
}

.tab-btn {
  padding: 10px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text-light);
  border-radius: var(--border-radius-full);
  background-color: var(--color-white);
  border: 1.5px solid rgba(13, 44, 84, 0.06);
  transition: var(--transition-smooth);
}

.tab-btn:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.tab-btn.active {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

/* Panes toggle logic */
.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
  animation: fadeInPane 0.5s ease forwards;
}

@keyframes fadeInPane {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Grid layout for service cards */
.grid-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.service-card {
  background-color: var(--color-white);
  border: 1.5px solid rgba(13, 44, 84, 0.04);
  border-radius: var(--border-radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--color-accent);
  opacity: 0;
  transition: var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 180, 216, 0.15);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background-color: var(--color-secondary);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition-fast);
}

.service-icon-box svg {
  width: 24px;
  height: 24px;
}

.service-card:hover .service-icon-box {
  background-color: rgba(0, 180, 216, 0.1);
  color: var(--color-accent);
}

.service-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
  line-height: 1.35;
}

.service-card-excerpt {
  font-size: 0.96rem;
  line-height: 1.5;
  color: var(--color-text-light);
  margin-bottom: 16px;
}

/* CSS Accordion details expansion */
.service-card-details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.service-card-details p {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--color-text-dark);
  padding-top: 10px;
  border-top: 1px solid rgba(13, 44, 84, 0.05);
  margin-bottom: 0;
}

/* Expanded styling states */
.service-card.expanded {
  border-color: rgba(0, 180, 216, 0.25);
  box-shadow: var(--shadow-md);
}

.service-card.expanded .service-card-details {
  max-height: 250px;
  opacity: 1;
}

.btn-more-details {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-accent);
  gap: 4px;
  margin-top: auto;
  padding-top: 14px;
  justify-content: flex-start;
}

.btn-more-details:hover {
  color: var(--color-accent-hover);
}

.btn-more-details .chevron {
  transition: transform 0.3s ease;
}

.service-card.expanded .btn-more-details .chevron {
  transform: rotate(180deg);
}


/* 10. APPOINTMENT / CTA PREMIUM BACKGROUND */
.bg-gradient-premium {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  position: relative;
  overflow: hidden;
}

.bg-gradient-premium::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background-color: rgba(0, 180, 216, 0.1);
  border-radius: var(--border-radius-full);
  top: -150px;
  right: -150px;
  filter: blur(100px);
}

.bg-gradient-premium::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background-color: rgba(13, 44, 84, 0.2);
  border-radius: var(--border-radius-full);
  bottom: -150px;
  left: -150px;
  filter: blur(80px);
}

.cta-premium-block {
  position: relative;
  z-index: 5;
}

.cta-title {
  color: var(--color-white);
  font-size: 2.5rem;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  text-align: center;
}

.cta-desc {
  color: rgba(255, 255, 255, 0.85);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  text-align: center;
}

.cta-button-group {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .cta-title {
    font-size: 1.95rem;
  }
  .cta-button-group {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .cta-button-group .btn {
    width: 100%;
  }
}


/* 11. TIMINGS & LOCATION SECTION */
.grid-timings-location {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: 40px;
  align-items: stretch;
}

/* Glassmorphism generic style */
.card-glass {
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: var(--shadow-glass);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.card-glass-header {
  margin-bottom: 30px;
}

.card-tag {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-accent);
  letter-spacing: 1.5px;
  margin-bottom: 6px;
  display: inline-block;
}

.card-title {
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--color-primary);
}

/* Timings items styles */
.timings-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.timing-item {
  display: flex;
  flex-direction: column;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(13, 44, 84, 0.05);
}

.timing-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.day-name {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.day-time {
  font-size: 0.95rem;
  color: var(--color-text-light);
}

.day-time-highlight {
  font-size: 0.95rem;
  color: var(--color-accent);
  font-weight: 700;
}

.timings-list .divider {
  color: rgba(13, 44, 84, 0.2);
  margin: 0 4px;
}

/* BG-Fälle warning box */
.timings-special-note {
  background-color: var(--color-warning-bg);
  border-left: 4px solid var(--color-warning);
  padding: 18px;
  border-radius: var(--border-radius-sm);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: auto;
}

.note-icon {
  color: var(--color-warning);
  flex-shrink: 0;
}

.note-text {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--color-text-dark);
  margin-bottom: 0;
}

/* Location details address block */
.address-details {
  margin-bottom: 24px;
}

.address-main {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.loc-icon {
  color: var(--color-accent);
  margin-top: 4px;
  flex-shrink: 0;
}

.address-text strong {
  color: var(--color-primary);
  font-size: 1.05rem;
  display: block;
  margin-bottom: 4px;
}

.address-text p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.entrance-highlight {
  margin-top: 8px;
  background-color: rgba(0, 180, 216, 0.08);
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(0, 180, 216, 0.15);
}

/* DSGVO safe Google Maps Container */
.map-container-wrapper {
  width: 100%;
  height: 250px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  position: relative;
  background-color: #e2e8f0;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 24px;
  border: 1px solid rgba(13, 44, 84, 0.05);
}

.map-consent-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(232, 241, 245, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.map-consent-overlay.consent-given {
  display: none;
}

.consent-content {
  text-align: center;
  max-width: 320px;
}

.map-placeholder-icon {
  color: var(--color-primary);
  margin-bottom: 12px;
  display: inline-block;
}

.consent-content h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.consent-content p {
  font-size: 0.775rem;
  line-height: 1.4;
  margin-bottom: 16px;
}

.map-iframe-holder {
  width: 100%;
  height: 100%;
}

.map-iframe-holder iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Accessibility arrival instructions */
.arrival-guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: auto;
}

.guide-item strong {
  color: var(--color-primary);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 4px;
}

.guide-item p {
  font-size: 0.8rem;
  line-height: 1.45;
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .grid-timings-location {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .card-glass {
    padding: 24px;
  }
  .arrival-guide-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}


/* 12. CONTACT SECTION & PREMIUM INPUT STATES */
.contact-form-wrapper {
  margin-top: 40px;
}

.modern-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 600px) {
  .form-grid-2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary);
}

.form-group .required {
  color: var(--color-error);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 18px;
  font-size: 1rem;
  font-family: inherit;
  background-color: var(--color-white);
  border: 1.5px solid rgba(13, 44, 84, 0.1);
  border-radius: var(--border-radius-sm);
  color: var(--color-text-dark);
  transition: var(--transition-fast);
  outline: none;
}

/* Beautiful custom focus rings */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.15);
  background-color: var(--color-white);
}

/* Validation status states */
.form-group.validation-error input,
.form-group.validation-error textarea,
.form-group.validation-error select {
  border-color: var(--color-error);
}

.form-group.validation-error input:focus,
.form-group.validation-error textarea:focus,
.form-group.validation-error select:focus {
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15);
}

.error-feedback {
  display: none;
  font-size: 0.775rem;
  font-weight: 600;
  color: var(--color-error);
  margin-top: 4px;
}

.form-group.validation-error .error-feedback {
  display: block;
}

/* Checkbox alignment */
.form-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-container input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  border-radius: 4px;
  border: 1.5px solid rgba(13, 44, 84, 0.15);
  cursor: pointer;
  accent-color: var(--color-accent);
}

.checkbox-container label {
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--color-text-light);
  cursor: pointer;
}

.checkbox-container label a {
  font-weight: 600;
}

.form-checkbox-group.validation-error .error-feedback {
  display: block;
}

/* Form submission response banners */
.form-alert-banner {
  display: none;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: var(--border-radius-md);
  margin-bottom: 24px;
  animation: fadeInAlert 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.form-alert-banner.banner-visible {
  display: flex;
}

@keyframes fadeInAlert {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.alert-icon {
  flex-shrink: 0;
}

.alert-msg strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}

.alert-msg p {
  font-size: 0.85rem;
  line-height: 1.4;
  margin-bottom: 0;
}

.alert-success {
  background-color: var(--color-success-bg);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--color-success);
}

.alert-success .alert-msg strong {
  color: #065f46;
}
.alert-success .alert-msg p {
  color: #047857;
}

.alert-error {
  background-color: var(--color-error-bg);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: var(--color-error);
}

.alert-error .alert-msg strong {
  color: #991b1b;
}
.alert-error .alert-msg p {
  color: #b91c1c;
}


/* 13. FOOTER STYLING */
.footer-main {
  background-color: var(--color-primary);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.grid-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.logo-area-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-white);
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.5rem;
}

.logo-area-footer svg {
  color: var(--color-accent);
}

.footer-brand-desc {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
}

.copyright-text {
  font-size: 0.775rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.45);
}

.footer-col h3 {
  color: var(--color-white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Contact lists and timings lists inside footer */
.footer-links-contact,
.footer-timings,
.footer-legal-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.85rem;
}

.footer-links-contact li svg {
  color: var(--color-accent);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-links-contact li a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links-contact li a:hover {
  color: var(--color-accent);
}

.footer-timings li {
  font-size: 0.85rem;
}

.footer-timings li.indent {
  padding-left: 64px;
  margin-top: -12px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal-links li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.footer-legal-links li a:hover {
  color: var(--color-accent);
}

@media (max-width: 1024px) {
  .grid-footer {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .grid-footer {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-main {
    padding: 60px 0 40px 0;
  }
}


/* 14. ACCESSIBLE INTERACTIVE MODAL (CALLBACK) */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(13, 44, 84, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.modal-visible {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  width: 100%;
  max-width: 480px;
  background-color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.modal-visible .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: var(--border-radius-full);
  background-color: var(--color-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  border: 1px solid rgba(13, 44, 84, 0.05);
  z-index: 10;
}

.modal-close-btn:hover {
  background-color: var(--color-secondary);
  color: var(--color-primary);
  transform: rotate(90deg);
}

.modal-body {
  padding: 40px;
}

#callback-modal-card,
body:not(.admin-body) .contact-form-modal-card {
  max-height: calc(100dvh - 24px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

#callback-modal .modal-body,
body:not(.admin-body) .contact-form-modal-body {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.modal-header {
  margin-bottom: 24px;
}

.modal-tag {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-accent);
  letter-spacing: 1.5px;
  margin-bottom: 6px;
  display: inline-block;
}

.modal-header h2 {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.modal-header p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0;
}

.news-modal-card {
  max-width: 480px;
}

.news-modal-card .modal-close-btn:hover {
  transform: none;
}

.news-modal-body {
  max-height: min(82vh, 760px);
  overflow-y: auto;
}

.news-modal-body .modal-header {
  text-align: left;
}

.emergency-modal-card {
  max-width: 480px;
}

.emergency-modal-body {
  max-height: min(82vh, 760px);
  overflow-y: auto;
  padding: 40px;
}

.emergency-modal-header {
  margin-bottom: 24px;
  text-align: left;
}

.emergency-modal-header h2 {
  font-size: 1.65rem;
  line-height: 1.08;
  margin: 0;
  color: var(--color-primary);
}

.emergency-modal-content {
  text-align: left;
}

.emergency-modal-content p {
  margin: 0 0 18px;
  font-size: 0.94rem;
  line-height: 1.45;
  color: var(--color-muted);
}

.emergency-modal-inline-link {
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: none;
}

.emergency-modal-list-block {
  margin-bottom: 18px;
}

.emergency-modal-list-block strong {
  display: block;
  margin-bottom: 10px;
  color: var(--color-primary);
}

.emergency-modal-list {
  margin: 0;
  padding-left: 20px;
}

.emergency-modal-list li {
  margin-bottom: 8px;
  font-size: 0.94rem;
  line-height: 1.45;
  color: var(--color-muted);
}

.emergency-modal-urgency {
  margin-bottom: 18px;
  padding: 12px 14px;
  font-size: 0.82rem;
  line-height: 1.42;
  color: var(--color-muted);
  background: #fbf8f4;
  border-left: 3px solid #edaa39;
  border-radius: 10px;
}

.emergency-modal-urgency strong {
  color: var(--color-primary);
}

.emergency-modal-footer {
  margin-top: 0;
}

.news-popup-list {
  display: grid;
  gap: 0;
}

.news-popup-empty {
  padding: 24px;
  border-radius: 22px;
  background: var(--color-bg-light);
  border: 1px solid rgba(13, 44, 84, 0.06);
  text-align: left;
}

.news-popup-empty h3 {
  margin: 0 0 10px;
  color: var(--color-primary);
}

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.news-popup-empty p {
  margin: 0;
  line-height: 1.7;
  color: var(--color-text-dark);
}

.news-popup-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 24px 0 0;
  border-top: 1px solid rgba(221, 232, 226, 0.95);
  text-align: left;
}

.news-popup-item + .news-popup-item {
  margin-top: 26px;
}

.news-popup-copy {
  display: grid;
  gap: 10px;
  align-content: start;
  justify-items: start;
  text-align: left;
}

.news-popup-copy h3 {
  margin: 0;
  color: var(--color-primary);
  font-size: 1.2rem;
}

.news-popup-copy p {
  margin: 0;
  line-height: 1.7;
  color: var(--color-text-dark);
  width: 100%;
}

.news-popup-lead {
  font-weight: 600;
}

.news-popup-footer {
  margin-top: 24px;
}

@media (max-width: 480px) {
  .modal-body {
    padding: 24px;
  }

  .news-modal-card {
    max-width: calc(100vw - 24px);
  }

  .news-modal-body {
    max-height: 82vh;
  }

  .news-popup-item {
    padding-top: 20px;
  }
}

/* 15. SECTION ENTRANCE SCROLL-REVEAL SYSTEM */
.scroll-reveal-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal-section.scroll-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Keyframe Reveals for Hero */
.animate-reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: revealFrame 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.animate-reveal-delay-1 {
  opacity: 0;
  transform: translateY(20px);
  animation: revealFrame 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.animate-reveal-delay-2 {
  opacity: 0;
  transform: translateY(20px);
  animation: revealFrame 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.animate-reveal-delay-3 {
  opacity: 0;
  transform: translateY(20px);
  animation: revealFrame 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}

@keyframes revealFrame {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Pulse animation for CTA calls */
@keyframes buttonPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 180, 216, 0.4);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(0, 180, 216, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 180, 216, 0);
  }
}

.animate-pulse {
  animation: buttonPulse 2.5s infinite;
}

/* Lazy Load Transition */
.lazy-load {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.lazy-load.loaded {
  opacity: 1;
}

/* Extra spacer adjustments */
small {
  font-size: 0.8em;
  color: var(--color-text-light);
}

/* ==========================================================================
   16. CLINIC VACATION MODAL & ADMIN STYLING
   ========================================================================== */

/* --- Clinic Vacation Popup Modal --- */
.vacation-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(13, 44, 84, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.vacation-overlay.vacation-active {
  opacity: 1;
  pointer-events: auto;
}

.vacation-card {
  width: 100%;
  max-width: 580px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 30px 60px rgba(13, 44, 84, 0.25);
  padding: 40px;
  position: relative;
  text-align: center;
  box-sizing: border-box;
  transform: scale(0.95);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.vacation-overlay.vacation-active .vacation-card {
  transform: scale(1);
}

.vacation-header {
  margin-bottom: 24px;
}

.vacation-badge {
  display: inline-block;
  background-color: rgba(0, 180, 216, 0.1);
  color: var(--color-accent);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: var(--border-radius-full);
  margin-bottom: 12px;
}

.vacation-card h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
}

.vacation-large-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  margin: 20px 0;
  animation: pulseIcon 2s infinite ease-in-out;
}

@keyframes pulseIcon {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

.vacation-message {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--color-text-dark);
  margin-bottom: 24px;
}

.vacation-dates-tag {
  background: linear-gradient(90deg, rgba(13, 44, 84, 0.05), rgba(0, 180, 216, 0.05));
  border: 1px solid rgba(0, 180, 216, 0.15);
  border-radius: var(--border-radius-md);
  padding: 14px 20px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
  display: inline-block;
  margin-bottom: 24px;
}

.vacation-urgency {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--color-text-light);
  background-color: var(--color-warning-bg);
  border-left: 3px solid var(--color-warning);
  padding: 16px;
  border-radius: var(--border-radius-sm);
  text-align: left;
  margin-bottom: 30px;
}

.vacation-footer {
  width: 100%;
}

/* --- Admin Panel Styling --- */
.admin-body {
  background-color: #f0f5fa;
  color: var(--color-text-dark);
  font-family: var(--font-base);
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

.admin-header {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 16px 0;
  box-shadow: var(--shadow-sm);
}

.admin-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.25rem;
  text-decoration: none;
}

.admin-logo svg {
  color: var(--color-accent);
}

.admin-nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.admin-user {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.btn-admin-logout {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--color-white);
  padding: 6px 14px;
  border-radius: var(--border-radius-sm);
  font-size: 0.85rem;
  transition: var(--transition-fast);
  cursor: pointer;
}

.btn-admin-logout:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
}

.admin-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.admin-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 30px;
}

@media (max-width: 900px) {
  .admin-grid {
    grid-template-columns: 1fr;
  }
}

.admin-card {
  background-color: var(--color-white);
  border: 1px solid rgba(13, 44, 84, 0.05);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 30px;
  box-sizing: border-box;
}

.admin-card-header {
  margin-bottom: 24px;
  border-bottom: 1.5px solid rgba(13, 44, 84, 0.05);
  padding-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-card-header h2 {
  font-size: 1.35rem;
  color: var(--color-primary);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-card-header svg {
  color: var(--color-accent);
}

/* Doctors Roster List in Admin */
.doctor-row-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.doctor-admin-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background-color: var(--color-bg-light);
  border: 1px solid rgba(13, 44, 84, 0.05);
  border-radius: var(--border-radius-md);
  transition: var(--transition-fast);
}

.doctor-admin-item:hover {
  border-color: rgba(0, 180, 216, 0.2);
  background-color: var(--color-secondary);
}

.doctor-admin-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.doctor-admin-thumb {
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius-sm);
  object-fit: cover;
  background-color: var(--color-white);
  border: 1px solid rgba(13, 44, 84, 0.1);
}

.doctor-admin-meta h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 2px 0;
}

.doctor-admin-meta span {
  font-size: 0.8rem;
  color: var(--color-text-light);
}

.btn-delete-doctor {
  background-color: transparent;
  color: var(--color-error);
  border: 1px solid rgba(239, 68, 68, 0.2);
  width: 36px;
  height: 36px;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  cursor: pointer;
}

.btn-delete-doctor:hover {
  background-color: var(--color-error-bg);
  border-color: var(--color-error);
}

/* File upload custom input */
.file-upload-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.file-upload-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}

.file-upload-input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.btn-file-select {
  background-color: var(--color-bg-light);
  border: 1.5px dashed rgba(13, 44, 84, 0.2);
  padding: 12px 20px;
  border-radius: var(--border-radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition-fast);
  width: 100%;
  justify-content: center;
}

.btn-file-select:hover {
  background-color: var(--color-secondary);
  border-color: var(--color-accent);
}

/* Login Overlay Styles */
.login-panel-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  padding: 20px;
}

.login-card {
  width: 100%;
  max-width: 420px;
  background-color: var(--color-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 40px;
  text-align: center;
}

.login-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.login-logo svg {
  color: var(--color-accent);
}

.login-card h2 {
  font-size: 1.25rem;
  color: var(--color-text-light);
  margin: 0 0 30px 0;
  font-weight: 500;
}

.admin-alert-banner {
  padding: 14px 18px;
  border-radius: var(--border-radius-sm);
  font-size: 0.85rem;
  margin-bottom: 20px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-alert-banner.alert-success {
  background-color: var(--color-success-bg);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--color-success);
}

.admin-alert-banner.alert-error {
  background-color: var(--color-error-bg);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: var(--color-error);
}

/* ==========================================================================
   17. PUBLIC DESIGN REFRESH
   ========================================================================== */

:root {
  --color-primary: #092a3a;
  --color-primary-rgb: 9, 42, 58;
  --color-deep-green: #0f3f2a;
  --color-primary-light: #17485d;
  --color-secondary: #eaf5ee;
  --color-accent: #168a43;
  --color-accent-rgb: 22, 138, 67;
  --color-accent-hover: #126f36;
  --color-warm-beige: #f8faf7;
  --color-warm-beige-dark: #eff4ef;
  --color-text-dark: #102033;
  --color-text-light: #667487;
  --color-bg-light: #f8faf7;
  --color-white: #ffffff;
  --shadow-sm: 0 10px 24px rgba(16, 32, 51, 0.05);
  --shadow-md: 0 20px 44px rgba(16, 32, 51, 0.09);
  --shadow-lg: 0 30px 70px rgba(16, 32, 51, 0.12);
  --shadow-accent: 0 16px 32px rgba(22, 138, 67, 0.16);
  --shadow-glass: 0 18px 48px rgba(16, 32, 51, 0.08);
  --font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-headings: Georgia, "Times New Roman", Times, serif;
}

body:not(.admin-body) {
  background:
    radial-gradient(circle at top left, rgba(234, 245, 238, 0.82), transparent 32%),
    linear-gradient(180deg, #fbfcfa 0%, #f8faf7 52%, #f4f7f4 100%);
  color: var(--color-text-dark);
}

body:not(.admin-body) h1,
body:not(.admin-body) h2,
body:not(.admin-body) h3,
body:not(.admin-body) h4,
body:not(.admin-body) h5,
body:not(.admin-body) h6 {
  font-family: var(--font-headings);
  font-weight: 600;
  letter-spacing: 0;
  color: var(--color-primary);
}

body:not(.admin-body) p,
body:not(.admin-body) li,
body:not(.admin-body) small {
  color: var(--color-text-light);
}

body:not(.admin-body) a {
  color: var(--color-accent);
}

body:not(.admin-body) a:hover {
  color: var(--color-accent-hover);
}

body:not(.admin-body) .bg-soft-blue {
  background: linear-gradient(180deg, #f7fbf8 0%, #eef5ef 100%);
}

body:not(.admin-body) .btn {
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0;
}

body:not(.admin-body) .btn-primary,
body:not(.admin-body) .btn-accent {
  background: linear-gradient(180deg, #198c45 0%, #15753a 100%);
  color: var(--color-white);
  border: 1px solid rgba(18, 111, 54, 0.28);
  box-shadow: var(--shadow-accent);
}

body:not(.admin-body) .btn-primary:hover,
body:not(.admin-body) .btn-accent:hover {
  background: linear-gradient(180deg, #1a9550 0%, #126f36 100%);
  box-shadow: 0 20px 34px rgba(22, 138, 67, 0.2);
}

body:not(.admin-body) .btn-outline-white,
body:not(.admin-body) .btn-white-outline,
body:not(.admin-body) .btn-cyan-glow {
  background-color: rgba(255, 255, 255, 0.88);
  color: var(--color-primary);
  border: 1px solid rgba(9, 42, 58, 0.14);
  backdrop-filter: none;
  text-shadow: none;
  box-shadow: var(--shadow-sm);
}

body:not(.admin-body) .btn-outline-white:hover,
body:not(.admin-body) .btn-white-outline:hover,
body:not(.admin-body) .btn-cyan-glow:hover {
  background-color: var(--color-white);
  color: var(--color-accent);
  border-color: rgba(22, 138, 67, 0.28);
  box-shadow: var(--shadow-md);
}

body:not(.admin-body) .btn-white-solid {
  background-color: var(--color-white);
  color: var(--color-primary);
  border: 1px solid rgba(9, 42, 58, 0.1);
  box-shadow: var(--shadow-sm);
}

body:not(.admin-body) .btn-white-solid:hover {
  background-color: #f5faf6;
  color: var(--color-accent);
}

body:not(.admin-body) .header-main {
  padding: 18px 0;
  background: rgba(248, 250, 247, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(221, 232, 226, 0.95);
  box-shadow: 0 12px 30px rgba(16, 32, 51, 0.04);
}

body:not(.admin-body) .header-main.header-scrolled {
  padding: 12px 0;
  background: rgba(248, 250, 247, 0.96);
  border-bottom: 1px solid rgba(221, 232, 226, 1);
  box-shadow: 0 16px 34px rgba(16, 32, 51, 0.06);
}

body:not(.admin-body) .logo-area,
body:not(.admin-body) .header-main.header-scrolled .logo-area {
  color: var(--color-primary);
}

body:not(.admin-body) .site-logo {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
}

body:not(.admin-body) .header-site-logo {
  height: clamp(42px, 4.8vw, 54px);
}

body:not(.admin-body) .logo-icon {
  width: 54px;
  height: 54px;
  color: var(--color-primary);
  background:
    radial-gradient(circle at 55% 48%, rgba(22, 138, 67, 0.95) 0 28%, rgba(22, 138, 67, 0.2) 29%, rgba(255, 255, 255, 0) 36%),
    linear-gradient(180deg, #ffffff 0%, #f1f7f3 100%);
  border: 1px solid rgba(221, 232, 226, 0.95);
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(16, 32, 51, 0.08);
}

body:not(.admin-body) .header-main.header-scrolled .logo-icon {
  border-color: rgba(221, 232, 226, 1);
}

body:not(.admin-body) .logo-area:hover .logo-icon {
  transform: translateY(-1px) scale(1.02);
  border-color: rgba(22, 138, 67, 0.3) !important;
}

body:not(.admin-body) .brand-name {
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  font-size: 1.55rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body:not(.admin-body) .brand-pro {
  color: var(--color-primary);
}

body:not(.admin-body) .brand-vision {
  color: var(--color-accent);
}

body:not(.admin-body) .brand-sub,
body:not(.admin-body) .header-main.header-scrolled .brand-sub {
  color: var(--color-text-light);
  letter-spacing: 0.16em;
}

body:not(.admin-body) .nav-link,
body:not(.admin-body) .header-main.header-scrolled .nav-link {
  color: var(--color-text-dark);
}

body:not(.admin-body) .nav-link::after {
  height: 1.5px;
  background: linear-gradient(90deg, var(--color-accent) 0%, rgba(22, 138, 67, 0.45) 100%);
}

body:not(.admin-body) .nav-link:hover,
body:not(.admin-body) .nav-link.active,
body:not(.admin-body) .header-main.header-scrolled .nav-link:hover,
body:not(.admin-body) .header-main.header-scrolled .nav-link.active {
  color: var(--color-accent);
}

body:not(.admin-body) .btn-nav-cta,
body:not(.admin-body) .header-main.header-scrolled .btn-nav-cta {
  background: linear-gradient(180deg, #0f3f2a 0%, #0c3322 100%) !important;
  border: 1px solid rgba(15, 63, 42, 0.35) !important;
  box-shadow: 0 16px 30px rgba(15, 63, 42, 0.16) !important;
}

body:not(.admin-body) .btn-nav-cta:hover,
body:not(.admin-body) .header-main.header-scrolled .btn-nav-cta:hover {
  background: linear-gradient(180deg, #145236 0%, #0f3f2a 100%) !important;
}

body:not(.admin-body) .burger-bar,
body:not(.admin-body) .header-main.header-scrolled .burger-bar {
  background-color: var(--color-primary);
}

body:not(.admin-body) .nav-mobile-drawer {
  background: rgba(250, 252, 249, 0.98);
  border-left: 1px solid rgba(221, 232, 226, 0.95);
  box-shadow: -18px 0 44px rgba(16, 32, 51, 0.08);
}

body:not(.admin-body) .nav-mobile-link {
  color: var(--color-primary);
  font-weight: 600;
}

body:not(.admin-body) .nav-mobile-link:hover {
  color: var(--color-accent);
}

body:not(.admin-body) .nav-mobile-item-with-children {
  gap: 12px;
}

body:not(.admin-body) .nav-mobile-submenu {
  padding: 4px 0 0 14px;
  gap: 10px;
  border-left: 1px solid rgba(22, 138, 67, 0.16);
}

body:not(.admin-body) .nav-mobile-sublink {
  font-family: var(--font-body) !important;
  font-size: 0.92rem;
  line-height: 1.45;
  font-weight: 600;
  color: var(--color-text-light);
}

body:not(.admin-body) .nav-mobile-sublink:hover {
  color: var(--color-accent);
}

body:not(.admin-body) .mobile-phone-link {
  background: #eef6f0;
  color: var(--color-primary);
  border: 1px solid rgba(221, 232, 226, 0.95);
}

body:not(.admin-body) .hero-section {
  min-height: 88vh;
  padding-top: 148px;
  padding-bottom: 96px;
  background:
    linear-gradient(180deg, rgba(248, 250, 247, 0.88) 0%, rgba(248, 250, 247, 0.94) 100%),
    radial-gradient(circle at top right, rgba(234, 245, 238, 0.9), transparent 38%),
    #f8faf7;
}

body:not(.admin-body) .hero-video {
  opacity: 0.22;
  filter: saturate(0.85) brightness(1.1);
}

body:not(.admin-body) .hero-overlay {
  background:
    linear-gradient(90deg, rgba(248, 250, 247, 0.96) 0%, rgba(248, 250, 247, 0.88) 44%, rgba(248, 250, 247, 0.7) 100%);
}

body:not(.admin-body) .hero-tech-decoration,
body:not(.admin-body) .glow-orb,
body:not(.admin-body) .abstract-grid {
  display: none;
}

body:not(.admin-body) .hero-content {
  max-width: 760px;
  margin-bottom: 52px;
}

body:not(.admin-body) .hero-title {
  max-width: 11ch;
  font-size: 4rem;
  line-height: 1.08;
  color: var(--color-primary);
  letter-spacing: 0;
  margin-bottom: 22px;
}

body:not(.admin-body) .hero-subtitle {
  color: var(--color-text-light);
  max-width: 640px;
  font-size: 1.12rem;
  margin-bottom: 32px;
}

body:not(.admin-body) .hero-badges {
  gap: 18px;
}

body:not(.admin-body) .badge-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(221, 232, 226, 0.95);
  backdrop-filter: none;
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
}

body:not(.admin-body) .badge-card:hover {
  background: #ffffff;
  border-color: rgba(22, 138, 67, 0.2);
  box-shadow: var(--shadow-md);
}

body:not(.admin-body) .badge-icon {
  background: var(--color-secondary);
  border: 1px solid rgba(22, 138, 67, 0.08);
  color: var(--color-accent);
}

body:not(.admin-body) .badge-text {
  color: var(--color-primary);
}

body:not(.admin-body) .floating-btn {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(221, 232, 226, 0.95);
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

body:not(.admin-body) .floating-label {
  color: var(--color-primary);
}

@media (min-width: 769px) {
  body:not(.admin-body) .floating-btn:hover {
    background-color: #ffffff;
    border-color: rgba(22, 138, 67, 0.22);
    box-shadow: var(--shadow-md);
  }

  body:not(.admin-body) .floating-btn.item-phone:hover,
  body:not(.admin-body) .floating-btn.item-message:hover,
  body:not(.admin-body) .floating-btn.item-callback:hover {
    color: var(--color-accent);
  }
}

@media (max-width: 768px) {
  body:not(.admin-body) .floating-contact {
    background: rgba(248, 250, 247, 0.96);
    border: 1px solid rgba(221, 232, 226, 0.95);
    box-shadow: 0 18px 34px rgba(16, 32, 51, 0.1);
  }

  body:not(.admin-body) .floating-btn {
    background: rgba(234, 245, 238, 0.68);
  }
}

body:not(.admin-body) .praxis-image {
  border: 1px solid rgba(221, 232, 226, 0.95);
  box-shadow: 0 24px 48px rgba(16, 32, 51, 0.1);
}

body:not(.admin-body) .corner-line {
  border-color: rgba(22, 138, 67, 0.45);
}

body:not(.admin-body) .praxis-floating-tag {
  border: 1px solid rgba(221, 232, 226, 0.95);
  box-shadow: var(--shadow-md);
  backdrop-filter: none;
}

body:not(.admin-body) .tag-number {
  color: var(--color-accent);
}

body:not(.admin-body) .tag-label,
body:not(.admin-body) .section-title,
body:not(.admin-body) .advantage-desc h3,
body:not(.admin-body) .doctor-name,
body:not(.admin-body) .service-card-title,
body:not(.admin-body) .card-title,
body:not(.admin-body) .modal-header h2,
body:not(.admin-body) .vacation-card h2 {
  color: var(--color-primary);
}

body:not(.admin-body) .section-tagline,
body:not(.admin-body) .doctor-role,
body:not(.admin-body) .card-tag,
body:not(.admin-body) .modal-tag {
  color: var(--color-accent);
  letter-spacing: 0.18em;
}

body:not(.admin-body) .advantage-icon,
body:not(.admin-body) .service-icon-box {
  background: var(--color-secondary);
  color: var(--color-accent);
  border: 1px solid rgba(22, 138, 67, 0.08);
}

body:not(.admin-body) .advantage-item:hover .advantage-icon,
body:not(.admin-body) .service-card:hover .service-icon-box {
  background: rgba(22, 138, 67, 0.14);
  color: var(--color-deep-green, #0f3f2a);
  transform: translateY(-2px);
}

body:not(.admin-body) .doctor-card,
body:not(.admin-body) .service-card,
body:not(.admin-body) .card-glass,
body:not(.admin-body) .contact-form-wrapper,
body:not(.admin-body) .modal-card,
body:not(.admin-body) .vacation-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(221, 232, 226, 0.95);
  box-shadow: var(--shadow-sm);
}

body:not(.admin-body) .doctor-card:hover,
body:not(.admin-body) .service-card:hover,
body:not(.admin-body) .service-card.expanded,
body:not(.admin-body) .card-glass:hover {
  border-color: rgba(22, 138, 67, 0.18);
  box-shadow: var(--shadow-md);
}

body:not(.admin-body) .doctor-image-wrapper {
  background: linear-gradient(180deg, #edf4ef 0%, #e4ede7 100%);
}

body:not(.admin-body) .doctor-glow-effect {
  background: linear-gradient(180deg, rgba(248, 250, 247, 0) 0%, rgba(9, 42, 58, 0.1) 100%);
}

body:not(.admin-body) .highlight-pill {
  background: #f6faf7;
  border: 1px solid rgba(221, 232, 226, 0.95);
  color: var(--color-primary);
  font-size: 0.82rem;
  padding: 8px 13px;
}

body:not(.admin-body) .doctor-card:hover .highlight-pill {
  border-color: rgba(22, 138, 67, 0.15);
  background: #eef6f0;
}

body:not(.admin-body) .services-tab-buttons {
  border-bottom-color: rgba(221, 232, 226, 0.95);
}

body:not(.admin-body) .tab-btn {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(221, 232, 226, 0.95);
  color: var(--color-text-light);
}

body:not(.admin-body) .tab-btn:hover {
  border-color: rgba(22, 138, 67, 0.2);
  color: var(--color-primary);
}

body:not(.admin-body) .tab-btn.active {
  background: linear-gradient(180deg, #198c45 0%, #15753a 100%);
  color: #ffffff;
  border-color: rgba(18, 111, 54, 0.22);
  box-shadow: var(--shadow-accent);
}

body:not(.admin-body) .service-card::before {
  background: linear-gradient(180deg, rgba(22, 138, 67, 0.9) 0%, rgba(22, 138, 67, 0.3) 100%);
}

body:not(.admin-body) .service-card-details p {
  color: var(--color-text-dark);
  border-top-color: rgba(221, 232, 226, 0.95);
}

body:not(.admin-body) .btn-more-details {
  color: var(--color-accent);
}

body:not(.admin-body) .btn-more-details:hover {
  color: var(--color-accent-hover);
}

body:not(.admin-body) .bg-gradient-premium {
  background:
    linear-gradient(135deg, #f2f8f4 0%, #ebf4ee 54%, #f9fbf8 100%);
  border-top: 1px solid rgba(221, 232, 226, 0.95);
  border-bottom: 1px solid rgba(221, 232, 226, 0.95);
}

body:not(.admin-body) .bg-gradient-premium::before,
body:not(.admin-body) .bg-gradient-premium::after {
  background-color: rgba(22, 138, 67, 0.06);
  filter: blur(120px);
}

body:not(.admin-body) .cta-title,
body:not(.admin-body) .cta-desc {
  color: var(--color-primary);
}

body:not(.admin-body) .card-glass {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body:not(.admin-body) .day-time-highlight,
body:not(.admin-body) .loc-icon,
body:not(.admin-body) .map-placeholder-icon {
  color: var(--color-accent);
}

body:not(.admin-body) .timings-special-note,
body:not(.admin-body) .vacation-urgency {
  background: #f7f5ee;
  border-left-color: #d2a74f;
}

body:not(.admin-body) .entrance-highlight {
  background: rgba(234, 245, 238, 0.95);
  border-color: rgba(22, 138, 67, 0.12);
}

body:not(.admin-body) .map-container-wrapper {
  background: linear-gradient(180deg, #eef4ef 0%, #e6ece8 100%);
  border-color: rgba(221, 232, 226, 0.95);
  box-shadow: inset 0 1px 6px rgba(16, 32, 51, 0.04);
}

body:not(.admin-body) .map-consent-overlay {
  background: rgba(247, 250, 247, 0.92);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body:not(.admin-body) .form-group label {
  color: var(--color-primary);
}

body:not(.admin-body) .form-group input,
body:not(.admin-body) .form-group select,
body:not(.admin-body) .form-group textarea {
  background: #fbfcfa;
  border-color: rgba(221, 232, 226, 0.95);
  color: var(--color-text-dark);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

body:not(.admin-body) .form-group input:focus,
body:not(.admin-body) .form-group select:focus,
body:not(.admin-body) .form-group textarea:focus {
  background: #ffffff;
  border-color: rgba(22, 138, 67, 0.42);
  box-shadow: 0 0 0 4px rgba(22, 138, 67, 0.12);
}

body:not(.admin-body) .checkbox-container input[type="checkbox"] {
  border-color: rgba(22, 138, 67, 0.22);
  accent-color: var(--color-accent);
}

body:not(.admin-body) .footer-main {
  background:
    linear-gradient(180deg, #0b2837 0%, #092434 100%);
  border-top-color: rgba(255, 255, 255, 0.06);
}

body:not(.admin-body) .logo-area-footer {
  color: #ffffff;
}

body:not(.admin-body) .footer-site-logo {
  height: clamp(42px, 4vw, 58px);
}

body:not(.admin-body) .logo-area-footer svg,
body:not(.admin-body) .footer-links-contact li svg {
  color: #8fd0a9;
}

body:not(.admin-body) .footer-links-contact li a:hover,
body:not(.admin-body) .footer-legal-links li a:hover {
  color: #8fd0a9;
}

body:not(.admin-body) .modal-overlay,
body:not(.admin-body) .vacation-overlay {
  background-color: rgba(9, 42, 58, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

body:not(.admin-body) .modal-close-btn {
  background: #f4f8f5;
  border-color: rgba(221, 232, 226, 0.95);
}

body:not(.admin-body) .modal-close-btn:hover {
  background: #eef6f0;
  color: var(--color-accent);
}

body:not(.admin-body) .vacation-badge {
  background: rgba(22, 138, 67, 0.1);
  color: var(--color-accent);
}

body:not(.admin-body) .vacation-large-icon {
  color: var(--color-accent);
}

body:not(.admin-body) .vacation-dates-tag {
  background: linear-gradient(180deg, #f2f8f4 0%, #edf6f0 100%);
  border-color: rgba(22, 138, 67, 0.16);
  color: var(--color-primary);
}

@media (max-width: 1024px) {
  body:not(.admin-body) .hero-title {
    font-size: 3.15rem;
  }

  body:not(.admin-body) .hero-section {
    padding-top: 150px;
  }
}

@media (max-width: 768px) {
  body:not(.admin-body) .header-main,
  body:not(.admin-body) .header-main.header-scrolled {
    padding: 12px 0;
  }

  body:not(.admin-body) .brand-name {
    font-size: 1.28rem;
    letter-spacing: 0.06em;
  }

  body:not(.admin-body) .brand-sub {
    font-size: 0.64rem;
    letter-spacing: 0.12em;
  }

  body:not(.admin-body) .hero-section {
    padding-top: 132px;
    padding-bottom: 74px;
  }

  body:not(.admin-body) .hero-title {
    font-size: 2.55rem;
    max-width: none;
  }

  body:not(.admin-body) .hero-subtitle {
    font-size: 1.02rem;
  }

  body:not(.admin-body) .hero-badges {
    gap: 14px;
  }

  body:not(.admin-body) .badge-card,
  body:not(.admin-body) .service-card,
  body:not(.admin-body) .doctor-details,
  body:not(.admin-body) .card-glass,
  body:not(.admin-body) .modal-body,
  body:not(.admin-body) .vacation-card {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 600px) {
  body:not(.admin-body) .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  body:not(.admin-body) .hero-title {
    font-size: 2.15rem;
  }

  body:not(.admin-body) .cta-button-group .btn,
  body:not(.admin-body) .hero-actions .btn {
    width: 100%;
  }
}

/* ==========================================================================
   18. HEADER + HERO REFINEMENT
   ========================================================================== */

body:not(.admin-body) .header-main {
  padding: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  box-shadow: none;
}

body:not(.admin-body) .header-main.header-scrolled {
  padding: 0;
  background: transparent;
  border-bottom: none;
  box-shadow: none;
}

body:not(.admin-body) .header-topbar {
  background: linear-gradient(180deg, #f8fbf8 0%, #f1f7f2 100%);
  color: var(--color-primary);
  border-bottom: 1px solid rgba(221, 232, 226, 0.95);
}

body:not(.admin-body) .header-topbar-inner {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

body:not(.admin-body) .header-logo-top {
  flex-shrink: 0;
}

body:not(.admin-body) .header-topbar .logo-area,
body:not(.admin-body) .header-topbar .brand-sub {
  color: var(--color-primary);
}

body:not(.admin-body) .header-topbar .logo-icon {
  background:
    radial-gradient(circle at 55% 48%, rgba(22, 138, 67, 0.96) 0 28%, rgba(22, 138, 67, 0.18) 29%, rgba(255, 255, 255, 0) 36%),
    #ffffff;
  color: var(--color-primary);
  border-color: rgba(221, 232, 226, 0.95);
  box-shadow: 0 10px 22px rgba(16, 32, 51, 0.06);
}

body:not(.admin-body) .header-topbar .brand-pro,
body:not(.admin-body) .header-topbar .brand-vision {
  color: var(--color-primary);
}

body:not(.admin-body) .header-topbar .brand-vision {
  color: var(--color-accent);
}

body:not(.admin-body) .header-topbar-content {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex: 1;
}

body:not(.admin-body) .header-info-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

body:not(.admin-body) .header-info-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(221, 232, 226, 0.95);
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0;
  box-shadow: 0 6px 16px rgba(16, 32, 51, 0.04);
}

body:not(.admin-body) a.header-info-pill:hover {
  background: #ffffff;
  color: var(--color-accent);
  border-color: rgba(22, 138, 67, 0.2);
}

body:not(.admin-body) a.header-info-pill {
  text-decoration: none;
}

body:not(.admin-body) .header-info-pill-button {
  cursor: pointer;
  position: relative;
  appearance: none;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  color: inherit;
}

body:not(.admin-body) .header-info-pill-button:hover,
body:not(.admin-body) .header-info-pill-button:focus-visible {
  background: #ffffff;
  color: var(--color-accent);
  border-color: rgba(22, 138, 67, 0.2);
}

body:not(.admin-body) .header-info-pill-button::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 24px;
  width: 8px;
  height: 8px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: var(--color-brand-green, #168a43);
  box-sizing: content-box;
  pointer-events: none;
}

body:not(.admin-body) .language-switcher,
body:not(.admin-body) .mobile-language-switcher {
  position: relative;
  display: inline-block;
}

body:not(.admin-body) .lang-current {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 7px 12px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid rgba(221, 232, 226, 0.95);
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  list-style: none;
  box-shadow: 0 6px 16px rgba(16, 32, 51, 0.04);
  cursor: pointer;
}

body:not(.admin-body) .lang-current::-webkit-details-marker {
  display: none;
}

body:not(.admin-body) .lang-flag {
  display: inline-block;
  width: 24px;
  height: 16px;
  border-radius: 3px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex: 0 0 auto;
  border: 1px solid rgba(0, 0, 0, 0.5) !important;
  box-sizing: border-box;
}

body:not(.admin-body) .lang-flag-de {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 5 3'%3E%3Crect width='5' height='1' y='0' fill='%23000'/%3E%3Crect width='5' height='1' y='1' fill='%23D00'/%3E%3Crect width='5' height='1' y='2' fill='%23FFCE00'/%3E%3C/svg%3E");
}

body:not(.admin-body) .lang-flag-gb {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'%3E%3Cdefs%3E%3CclipPath id='l'%3E%3Crect width='30' height='30'/%3E%3C/clipPath%3E%3CclipPath id='r'%3E%3Crect x='30' width='30' height='30'/%3E%3C/clipPath%3E%3C/defs%3E%3Crect width='60' height='30' fill='%23012169'/%3E%3Cpath d='M0,0 L60,30 M0,30 L60,0' stroke='%23fff' stroke-width='6'/%3E%3Cpath d='M0.9,-1.8 L60.9,28.2' stroke='%23C8102E' stroke-width='4' clip-path='url(%23l)'/%3E%3Cpath d='M-0.9,1.8 L59.1,31.8' stroke='%23C8102E' stroke-width='4' clip-path='url(%23r)'/%3E%3Cpath d='M0.9,31.8 L60.9,1.8' stroke='%23C8102E' stroke-width='4' clip-path='url(%23l)'/%3E%3Cpath d='M-0.9,28.2 L59.1,-1.8' stroke='%23C8102E' stroke-width='4' clip-path='url(%23r)'/%3E%3Cpath d='M30,0 V30 M0,15 H60' stroke='%23fff' stroke-width='10'/%3E%3Cpath d='M30,0 V30 M0,15 H60' stroke='%23C8102E' stroke-width='6'/%3E%3C/svg%3E");
}

body:not(.admin-body) .lang-flag-ru {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3 2'%3E%3Crect width='3' height='1' y='0' fill='%23fff'/%3E%3Crect width='3' height='0.67' y='0.67' fill='%230039A6'/%3E%3Crect width='3' height='0.67' y='1.33' fill='%23D52B1E'/%3E%3C/svg%3E");
}

body:not(.admin-body) .lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: auto;
  min-width: 92px;
  padding: 8px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(221, 232, 226, 0.98);
  box-shadow: 0 20px 34px rgba(16, 32, 51, 0.1);
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 20;
}

body:not(.admin-body) .lang-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 10px;
  border-radius: 10px;
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  width: 100%;
  text-decoration: none;
  cursor: pointer;
}

body:not(.admin-body) .lang-option:hover {
  background: var(--color-secondary);
  color: var(--color-accent);
}

body:not(.admin-body) .lang-option[aria-pressed="true"] {
  background: rgba(15, 63, 42, 0.08);
}

body:not(.admin-body) .header-bottombar {
  background: rgba(250, 252, 249, 0.97);
  border-bottom: 1px solid rgba(221, 232, 226, 0.95);
  box-shadow: 0 14px 30px rgba(16, 32, 51, 0.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

body:not(.admin-body) .header-container {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

body:not(.admin-body) .header-cta-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  order: 2;
  margin-left: auto;
}

body:not(.admin-body) .nav-desktop {
  order: 1;
  margin-left: 0;
}

body:not(.admin-body) .burger-menu-btn {
  order: 3;
}

body:not(.admin-body) .nav-list {
  align-items: center;
  gap: 24px;
}

body:not(.admin-body) .nav-link,
body:not(.admin-body) .header-main.header-scrolled .nav-link {
  color: var(--color-primary);
  font-weight: 600;
}

body:not(.admin-body) .nav-link::after {
  bottom: -4px;
}

body:not(.admin-body) .btn-nav-cta,
body:not(.admin-body) .header-main.header-scrolled .btn-nav-cta {
  background: linear-gradient(180deg, #1b9a4c 0%, #168a43 100%) !important;
  border-color: rgba(22, 138, 67, 0.24) !important;
  box-shadow: 0 10px 20px rgba(22, 138, 67, 0.12) !important;
  min-height: 34px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
}

body:not(.admin-body) .btn-nav-cta:hover,
body:not(.admin-body) .header-main.header-scrolled .btn-nav-cta:hover {
  background: linear-gradient(180deg, #21a553 0%, #178a44 100%) !important;
  box-shadow: 0 18px 32px rgba(22, 138, 67, 0.2) !important;
}

body:not(.admin-body) .btn-secondary-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(9, 42, 58, 0.14);
  background: #ffffff;
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
  font-size: 0.8rem;
  font-weight: 600;
}

body:not(.admin-body) .btn-secondary-header:hover {
  border-color: rgba(22, 138, 67, 0.26);
  color: var(--color-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

body:not(.admin-body) .nav-mobile-drawer {
  padding: 96px 24px calc(28px + env(safe-area-inset-bottom, 0px)) 24px;
}

body:not(.admin-body) .mobile-utility-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 22px 0 0;
}

body:not(.admin-body) .mobile-utility-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-size: 0.9rem;
  font-weight: 600;
}

body:not(.admin-body) .mobile-language-switcher .lang-current {
  background: #f1f6f2;
  border-color: rgba(221, 232, 226, 0.95);
  color: var(--color-primary);
}

body:not(.admin-body) .hero-section {
  padding-top: 148px;
  padding-bottom: 72px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(235, 245, 238, 0.95), transparent 34%),
    linear-gradient(180deg, #fbfcfa 0%, #f6f9f6 100%);
}

body:not(.admin-body) .hero-container {
  position: relative;
  padding-bottom: 0;
  gap: 34px;
}

body:not(.admin-body) .hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: start;
  gap: 34px;
}

body:not(.admin-body) .hero-content {
  max-width: 560px;
  margin-bottom: 0;
  padding-top: 18px;
}

body:not(.admin-body) .hero-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--color-accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

body:not(.admin-body) .hero-title {
  max-width: 11ch;
  font-size: 3.25rem;
  line-height: 1.12;
  margin-bottom: 18px;
}

body:not(.admin-body) .hero-subtitle {
  max-width: 520px;
  font-size: 1.08rem;
  line-height: 1.72;
  margin-bottom: 28px;
}

body:not(.admin-body) .hero-actions {
  display: inline-grid;
  grid-template-columns: max-content max-content;
  gap: 12px;
  width: fit-content;
  max-width: 100%;
  align-items: stretch;
}

body:not(.admin-body) .hero-actions > :first-child {
  grid-column: 1 / -1;
  width: 100%;
}

body:not(.admin-body) .hero-actions .btn {
  min-height: 50px;
  padding-left: 22px;
  padding-right: 22px;
}

body:not(.admin-body) .hero-media {
  min-width: 0;
}

body:not(.admin-body) .hero-media-frame {
  position: relative;
  overflow: hidden;
  height: clamp(360px, 38vw, 480px);
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(221, 232, 226, 0.95);
  box-shadow: 0 28px 60px rgba(16, 32, 51, 0.12);
}

body:not(.admin-body) .hero-media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(9, 42, 58, 0.05) 100%);
  pointer-events: none;
}

body:not(.admin-body) .hero-image {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
}

body:not(.admin-body) .hero-badges {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: clamp(330px, 28vw, 390px);
  z-index: 8;
  align-items: stretch;
}

body:not(.admin-body) .badge-card {
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
  min-height: 248px;
  padding: 22px 18px 18px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(221, 232, 226, 0.95);
  box-shadow: 0 18px 36px rgba(16, 32, 51, 0.08);
}

body:not(.admin-body) .badge-icon {
  width: 82px;
  height: 82px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f6fbf7 0%, #eaf5ee 100%);
  border: 1px solid rgba(203, 223, 213, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin-bottom: 2px;
}

body:not(.admin-body) .badge-illustration {
  width: 58px;
  height: 58px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: saturate(0.92) contrast(1.04);
}

body:not(.admin-body) .badge-title {
  font-size: 1.06rem;
  line-height: 1.4;
  font-weight: 700;
  color: var(--color-navy);
  text-wrap: balance;
  text-align: center;
  width: 100%;
}

body:not(.admin-body) .badge-divider {
  display: block;
  width: 32px;
  height: 2px;
  border-radius: 999px;
  background: rgba(22, 138, 67, 0.35);
  align-self: center;
  margin: 2px 0 0;
}

body:not(.admin-body) .badge-points {
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  width: 100%;
}

body:not(.admin-body) .badge-points li {
  position: relative;
  padding-left: 20px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--color-text);
}

body:not(.admin-body) .badge-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.38rem;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 2px solid rgba(22, 138, 67, 0.8);
  box-sizing: border-box;
}

body:not(.admin-body) .praxis-badges {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
  align-items: stretch;
}

body:not(.admin-body) .praxis-badges .badge-card {
  min-height: 100%;
  height: 100%;
}

body:not(.admin-body) .praxis-badges .badge-card:nth-child(-n + 3),
body:not(.admin-body) .praxis-badges .badge-card:nth-child(n + 4) {
  grid-column: auto;
}

body:not(.admin-body) .grid-praxis {
  grid-template-columns: 1fr;
  gap: 0;
}

body:not(.admin-body) .praxis-content-centered {
  max-width: 1180px;
  margin: 0 auto;
}

body:not(.admin-body) .praxis-content-centered .section-header,
body:not(.admin-body) .praxis-content-centered .praxis-intro {
  text-align: center;
}

body:not(.admin-body) .praxis-content-centered .section-header {
  margin-bottom: 0;
}

body:not(.admin-body) .praxis-content-centered .section-title {
  margin-bottom: 0;
}

body:not(.admin-body) .praxis-intro {
  margin-top: 12px;
  margin-bottom: 32px;
}

body:not(.admin-body) .floating-contact {
  left: max(4px, calc((100vw - 1280px) / 2) - 62px);
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  gap: 10px;
}

body:not(.admin-body) .floating-btn {
  width: 44px;
  height: 44px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(221, 232, 226, 0.98);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body:not(.admin-body) .floating-icon {
  width: 18px;
  height: 18px;
}

body:not(.admin-body) .floating-label {
  font-size: 0.82rem;
  margin-left: 8px;
}

@media (min-width: 769px) {
  body:not(.admin-body) .floating-btn:hover,
  body:not(.admin-body) .floating-btn:focus-visible {
    width: 124px;
    border-color: rgba(22, 138, 67, 0.22);
    color: var(--color-accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
  }
}

@media (max-width: 1180px) {
  body:not(.admin-body) .header-topbar-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  body:not(.admin-body) .header-topbar-content {
    width: 100%;
    justify-content: center;
  }

  body:not(.admin-body) .hero-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  body:not(.admin-body) .hero-content {
    max-width: 100%;
  }

  body:not(.admin-body) .hero-title,
  body:not(.admin-body) .hero-subtitle {
    max-width: 100%;
  }
}

@media (max-width: 1024px) {
  body:not(.admin-body) .hide-on-tablet {
    display: none;
  }

  body:not(.admin-body) .praxis-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body:not(.admin-body) .praxis-badges .badge-card:nth-child(-n + 3),
  body:not(.admin-body) .praxis-badges .badge-card:nth-child(n + 4) {
    grid-column: auto;
  }

  body:not(.admin-body) .header-container {
    min-height: 72px;
  }

  body:not(.admin-body) .nav-desktop,
  align-items: center;
  justify-content: center;
  align-self: center;
  margin-bottom: 2px;
}

body:not(.admin-body) .badge-illustration {
  width: 58px;
  height: 58px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: saturate(0.92) contrast(1.04);
}

body:not(.admin-body) .badge-title {
  font-size: 1.06rem;
  line-height: 1.4;
  font-weight: 700;
  color: var(--color-navy);
  text-wrap: balance;
  text-align: center;
  width: 100%;
}

body:not(.admin-body) .badge-divider {
  display: block;
  width: 32px;
  height: 2px;
  border-radius: 999px;
  background: rgba(22, 138, 67, 0.35);
  align-self: center;
  margin: 2px 0 0;
}

body:not(.admin-body) .badge-points {
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  width: 100%;
}

body:not(.admin-body) .badge-points li {
  position: relative;
  padding-left: 20px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--color-text);
}

body:not(.admin-body) .badge-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.38rem;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 2px solid rgba(22, 138, 67, 0.8);
  box-sizing: border-box;
}

body:not(.admin-body) .praxis-badges {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
  align-items: stretch;
}

body:not(.admin-body) .praxis-badges .badge-card {
  min-height: 100%;
  height: 100%;
}

body:not(.admin-body) .praxis-badges .badge-card:nth-child(-n + 3),
body:not(.admin-body) .praxis-badges .badge-card:nth-child(n + 4) {
  grid-column: auto;
}

body:not(.admin-body) .grid-praxis {
  grid-template-columns: 1fr;
  gap: 0;
}

body:not(.admin-body) .praxis-content-centered {
  max-width: 1180px;
  margin: 0 auto;
}

body:not(.admin-body) .praxis-content-centered .section-header,
body:not(.admin-body) .praxis-content-centered .praxis-intro {
  text-align: center;
}

body:not(.admin-body) .praxis-content-centered .section-header {
  margin-bottom: 0;
}

body:not(.admin-body) .praxis-content-centered .section-title {
  margin-bottom: 0;
}

body:not(.admin-body) .praxis-intro {
  margin-top: 12px;
  margin-bottom: 32px;
}

body:not(.admin-body) .floating-contact {
  left: max(4px, calc((100vw - 1280px) / 2) - 62px);
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  gap: 10px;
}

body:not(.admin-body) .floating-btn {
  width: 44px;
  height: 44px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(221, 232, 226, 0.98);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body:not(.admin-body) .floating-icon {
  width: 18px;
  height: 18px;
}

body:not(.admin-body) .floating-label {
  font-size: 0.82rem;
  margin-left: 8px;
}

@media (min-width: 769px) {
  body:not(.admin-body) .floating-btn:hover,
  body:not(.admin-body) .floating-btn:focus-visible {
    width: 124px;
    border-color: rgba(22, 138, 67, 0.22);
    color: var(--color-accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
  }
}

@media (max-width: 1180px) {
  body:not(.admin-body) .header-topbar-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  body:not(.admin-body) .header-topbar-content {
    width: 100%;
    justify-content: center;
  }

  body:not(.admin-body) .hero-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  body:not(.admin-body) .hero-content {
    max-width: 100%;
  }

  body:not(.admin-body) .hero-title,
  body:not(.admin-body) .hero-subtitle {
    max-width: 100%;
  }
}

@media (max-width: 1024px) {
  body:not(.admin-body) .hide-on-tablet {
    display: none;
  }

  body:not(.admin-body) .praxis-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body:not(.admin-body) .praxis-badges .badge-card:nth-child(-n + 3),
  body:not(.admin-body) .praxis-badges .badge-card:nth-child(n + 4) {
    grid-column: auto;
  }

  body:not(.admin-body) .header-container {
    min-height: 72px;
  }

  body:not(.admin-body) .nav-desktop,
  body:not(.admin-body) .btn-secondary-header,
  body:not(.admin-body) .btn-nav-cta {
    display: none;
  }

  body:not(.admin-body) .burger-menu-btn {
    display: flex;
    margin-left: auto;
  }

  body:not(.admin-body) .header-cta-group {
    margin-left: auto;
    gap: 0;
  }

  body:not(.admin-body) .hero-section {
    padding-top: 176px;
    padding-bottom: 76px;
  }

  body:not(.admin-body) .hero-container {
    padding-bottom: 0;
  }

  body:not(.admin-body) .hero-image {
    min-height: 440px;
  }

  body:not(.admin-body) .hero-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 18px;
  }
}

@media (max-width: 768px) {
  body:not(.admin-body) .header-topbar-inner {
    min-height: auto;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  body:not(.admin-body) .header-logo-top {
    width: auto;
    justify-content: flex-start;
    flex: 0 0 auto;
  }

  body:not(.admin-body) .header-topbar-content {
    width: auto;
    flex: 0 0 auto;
    justify-content: flex-end;
    gap: 0;
  }

  body:not(.admin-body) .header-info-items {
    justify-content: flex-end;
    gap: 8px;
  }

  body:not(.admin-body) .header-info-pill {
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
    padding: 0;
    gap: 0;
    justify-content: center;
    border-radius: 12px;
    flex: 0 0 auto;
  }

  body:not(.admin-body) .header-info-pill svg {
    width: 18px;
    height: 18px;
  }

  body:not(.admin-body) .header-info-pill span {
    display: none;
  }

  body:not(.admin-body) .header-info-pill-button::after {
    top: 7px;
    left: 22px;
  }

  body:not(.admin-body) .language-switcher {
    display: inline-block;
    flex: 0 0 auto;
    margin-left: 8px;
  }

  body:not(.admin-body) .lang-current {
    width: auto;
    min-width: 66px;
    height: 40px;
    min-height: 40px;
    padding: 0 10px;
    justify-content: center;
    gap: 8px;
    border-radius: 12px;
  }

  body:not(.admin-body) .lang-code {
    display: inline;
  }

  body:not(.admin-body) .lang-flag {
    width: 24px;
    height: 16px;
  }

  body:not(.admin-body) .header-container {
    min-height: 68px;
  }

  body:not(.admin-body) .hero-section {
    padding-top: 194px;
    padding-bottom: 76px;
  }

  body:not(.admin-body) .hero-container {
    padding-bottom: 0;
  }

  body:not(.admin-body) .hero-title {
    font-size: 2.55rem;
    line-height: 1.14;
  }

  body:not(.admin-body) .hero-media-frame {
    border-radius: 24px;
  }

  body:not(.admin-body) .hero-image {
    min-height: 340px;
  }

  body:not(.admin-body) .floating-contact {
    left: 50%;
    right: auto;
    top: auto;
    bottom: 44px;
    transform: translateX(-50%);
    flex-direction: row;
    align-items: center;
    width: max-content;
    padding: 6px 10px;
    background: rgba(250, 252, 249, 0.98);
    border: 1px solid rgba(221, 232, 226, 0.98);
    border-radius: 999px;
    box-shadow: var(--shadow-md);
  }

  body:not(.admin-body) .floating-btn {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
  }
}

@media (max-width: 600px) {
  body:not(.admin-body) #praxis,
  body:not(.admin-body) #aerzte,
  body:not(.admin-body) #leistungen,
  body:not(.admin-body) #kontakt {
    scroll-margin-top: 138px;
  }

  body:not(.admin-body) .header-topbar-content {
    flex-direction: row;
    align-items: center;
  }

  body:not(.admin-body) .praxis-badges {
    grid-template-columns: 1fr;
  }

  body:not(.admin-body) .header-info-items {
    justify-content: flex-end;
  }

  body:not(.admin-body) .language-switcher {
    margin-left: 8px;
  }

  body:not(.admin-body) .header-info-pill.hide-on-tablet {
    display: none;
  }

  body:not(.admin-body) .hero-section {
    padding-top: 172px;
    padding-bottom: 74px;
  }

  body:not(.admin-body) .hero-title {
    font-size: 2.15rem;
  }

  body:not(.admin-body) .hero-actions {
    flex-direction: column;
  }

  body:not(.admin-body) .hero-actions .btn,
  body:not(.admin-body) .hero-actions a {
    width: 100%;
  }

  body:not(.admin-body) .hero-badges {
    grid-template-columns: 1fr;
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 18px;
  }

  body:not(.admin-body) .badge-card {
    min-height: auto;
    padding: 16px 16px 14px;
  }

  body:not(.admin-body) .nav-mobile-list {
    gap: 18px;
  }

  body:not(.admin-body) .nav-mobile-item-with-children {
    gap: 10px;
  }

body:not(.admin-body) .mobile-drawer-footer {
  margin-top: 22px;
  gap: 12px;
}

body:not(.admin-body) .mobile-drawer-footer .btn-secondary-header {
    display: inline-flex;
    font-size: 0.96rem;
    min-height: 40px;
  padding: 10px 16px;
}

body:not(.admin-body) .mobile-drawer-address {
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(221, 232, 226, 0.95);
  box-shadow: 0 6px 16px rgba(16, 32, 51, 0.04);
  text-decoration: none;
}

body:not(.admin-body) .mobile-drawer-address-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

body:not(.admin-body) .mobile-drawer-address-text strong,
body:not(.admin-body) .mobile-drawer-address-text small {
  display: block;
  color: var(--color-primary);
}

body:not(.admin-body) .mobile-drawer-address-text strong {
  font-size: 0.86rem;
  line-height: 1.25;
  font-weight: 600;
}

body:not(.admin-body) .mobile-drawer-address-text small {
  font-size: 0.78rem;
  line-height: 1.25;
  font-weight: 500;
}
}

/* ==========================================================================
   20. FINAL PUBLIC TYPOGRAPHY + BUTTON FIXES
   ========================================================================== */

body:not(.admin-body) {
  font-family: var(--font-body);
  background: linear-gradient(180deg, #fbfbf8 0%, #f8f9f5 52%, #f3f4ee 100%) !important;
  color: var(--color-text);
}

body:not(.admin-body) h1,
body:not(.admin-body) h2,
body:not(.admin-body) .hero-title,
body:not(.admin-body) .section-title,
body:not(.admin-body) .cta-title {
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  color: var(--color-heading-green) !important;
}

body:not(.admin-body) h3,
body:not(.admin-body) h4,
body:not(.admin-body) h5,
body:not(.admin-body) h6,
body:not(.admin-body) p,
body:not(.admin-body) li,
body:not(.admin-body) a,
body:not(.admin-body) button,
body:not(.admin-body) input,
body:not(.admin-body) textarea,
body:not(.admin-body) select,
body:not(.admin-body) summary,
body:not(.admin-body) label,
body:not(.admin-body) .nav-link,
body:not(.admin-body) .header-info-pill,
body:not(.admin-body) .lang-current,
body:not(.admin-body) .lang-option,
body:not(.admin-body) .mobile-utility-item,
body:not(.admin-body) .tab-btn,
body:not(.admin-body) .btn,
body:not(.admin-body) .service-card-title,
body:not(.admin-body) .doctor-name,
body:not(.admin-body) .badge-title,
body:not(.admin-body) .highlight-pill {
  font-family: var(--font-body) !important;
}

body:not(.admin-body) p,
body:not(.admin-body) li,
body:not(.admin-body) small,
body:not(.admin-body) .section-subtitle-text,
body:not(.admin-body) .hero-subtitle,
body:not(.admin-body) .doctor-bio,
body:not(.admin-body) .service-card-excerpt,
body:not(.admin-body) .service-card-details p {
  color: var(--color-muted) !important;
}

body:not(.admin-body) .section-tagline,
body:not(.admin-body) .doctor-role,
body:not(.admin-body) .card-tag,
body:not(.admin-body) .modal-tag,
body:not(.admin-body) .hero-kicker {
  font-family: var(--font-body) !important;
  font-weight: 700 !important;
  letter-spacing: 0.2em !important;
  color: var(--color-brand-green) !important;
}

body:not(.admin-body) .bg-soft-blue {
  background: linear-gradient(180deg, #fbfbf7 0%, #f4f6f0 100%) !important;
}

body:not(.admin-body) .btn,
body:not(.admin-body) .tab-btn,
body:not(.admin-body) .floating-btn {
  box-shadow: none !important;
  text-shadow: none !important;
}

body:not(.admin-body) .btn-primary,
body:not(.admin-body) .btn-accent,
body:not(.admin-body) .btn-nav-cta,
body:not(.admin-body) .header-main.header-scrolled .btn-nav-cta,
body:not(.admin-body) .hero-actions .btn-accent,
body:not(.admin-body) .mobile-drawer-footer .btn-primary {
  background: var(--color-brand-green) !important;
  background-color: var(--color-brand-green) !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  border: 1px solid rgba(15, 63, 42, 0.16) !important;
  box-shadow: none !important;
  opacity: 1 !important;
  appearance: none;
  -webkit-appearance: none;
}

body:not(.admin-body) .btn-primary:hover,
body:not(.admin-body) .btn-accent:hover,
body:not(.admin-body) .btn-nav-cta:hover,
body:not(.admin-body) .header-main.header-scrolled .btn-nav-cta:hover,
body:not(.admin-body) .hero-actions .btn-accent:hover,
body:not(.admin-body) .mobile-drawer-footer .btn-primary:hover {
  background: var(--color-brand-green) !important;
  background-color: var(--color-brand-green) !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  border-color: rgba(15, 63, 42, 0.22) !important;
  box-shadow: none !important;
  opacity: 1 !important;
  transform: translateY(-1px);
}

body:not(.admin-body) .btn-outline-white,
body:not(.admin-body) .btn-white-outline,
body:not(.admin-body) .btn-secondary-header,
body:not(.admin-body) .btn-white-solid,
body:not(.admin-body) .btn-cyan-glow,
body:not(.admin-body) .hero-actions .btn-outline-white {
  background: #ffffff !important;
  background-color: #ffffff !important;
  color: var(--color-green-dark) !important;
  -webkit-text-fill-color: var(--color-green-dark) !important;
  border: 1px solid var(--color-border) !important;
  box-shadow: none !important;
  opacity: 1 !important;
  appearance: none;
  -webkit-appearance: none;
}

body:not(.admin-body) .btn-outline-white:hover,
body:not(.admin-body) .btn-white-outline:hover,
body:not(.admin-body) .btn-secondary-header:hover,
body:not(.admin-body) .btn-white-solid:hover,
body:not(.admin-body) .btn-cyan-glow:hover,
body:not(.admin-body) .hero-actions .btn-outline-white:hover {
  background: #ffffff !important;
  background-color: #ffffff !important;
  color: var(--color-green-dark) !important;
  -webkit-text-fill-color: var(--color-green-dark) !important;
  border-color: rgba(22, 138, 67, 0.34) !important;
  box-shadow: none !important;
  opacity: 1 !important;
  transform: translateY(-1px);
}

body:not(.admin-body) .services-tab-buttons {
  border-bottom-color: var(--color-border) !important;
}

body:not(.admin-body) .tab-btn {
  background: #ffffff !important;
  background-color: #ffffff !important;
  color: var(--color-muted) !important;
  -webkit-text-fill-color: var(--color-muted) !important;
  border: 1px solid var(--color-border) !important;
  box-shadow: none !important;
  font-weight: 600 !important;
  opacity: 1 !important;
}

body:not(.admin-body) .tab-btn:hover {
  background: #ffffff !important;
  background-color: #ffffff !important;
  color: var(--color-green-dark) !important;
  -webkit-text-fill-color: var(--color-green-dark) !important;
  border-color: rgba(22, 138, 67, 0.34) !important;
  box-shadow: none !important;
  opacity: 1 !important;
  transform: translateY(-1px);
}

body:not(.admin-body) .tab-btn.active {
  background: var(--color-brand-green) !important;
  background-color: var(--color-brand-green) !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  border-color: rgba(15, 63, 42, 0.16) !important;
  box-shadow: none !important;
  opacity: 1 !important;
}

body:not(.admin-body) .section-header-compact {
  margin-bottom: 30px;
}

body:not(.admin-body) .section-header-compact .section-subtitle-text {
  margin-top: 8px;
}

body:not(.admin-body) .contact-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

body:not(.admin-body) .contact-overview-card {
  padding: 24px 20px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
}

body:not(.admin-body) .contact-overview-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  background: #eef6ef;
  border: 1px solid #d9ebdd;
  color: var(--color-green-dark);
}

body:not(.admin-body) .contact-overview-title {
  font-family: var(--font-body) !important;
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: var(--color-green-dark);
  margin-bottom: 8px;
}

body:not(.admin-body) .contact-overview-divider {
  width: 44px;
  height: 2px;
  margin: 0 auto 14px;
  background: rgba(22, 138, 67, 0.45);
  border-radius: 999px;
}

body:not(.admin-body) .hours-stack {
  display: grid;
  gap: 18px;
  margin-bottom: 18px;
}

body:not(.admin-body) .hours-row {
  text-align: center;
}

body:not(.admin-body) .hours-row strong {
  display: block;
  font-size: 1rem;
  color: var(--color-green-dark);
  margin-bottom: 10px;
}

body:not(.admin-body) .hours-row span {
  display: block;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--color-text);
}

body:not(.admin-body) .contact-emergency-box {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
  padding: 18px 18px 16px;
  text-align: left;
  scroll-margin-top: 156px;
  background: linear-gradient(180deg, #fff4f5 0%, #fff8f8 100%);
  border: 1px solid rgba(198, 4, 20, 0.18);
  box-shadow: 0 12px 28px rgba(198, 4, 20, 0.07);
}

body:not(.admin-body) .contact-emergency-box .contact-emergency-text,
body:not(.admin-body) .contact-emergency-box .contact-emergency-links {
  display: none;
}

body:not(.admin-body) .contact-emergency-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

body:not(.admin-body) .contact-emergency-box .contact-emergency-bell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #C60414;
}

body:not(.admin-body) .contact-emergency-box .contact-emergency-title {
  color: #C60414;
  font-size: 1.02rem;
  line-height: 1.3;
  font-weight: 700;
}

body:not(.admin-body) .contact-emergency-box .contact-emergency-copy {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #8c4047;
}

body:not(.admin-body) .contact-emergency-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  align-self: flex-start;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 12px;
  background: #C60414;
  color: #ffffff;
  font-size: 0.96rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease;
}

body:not(.admin-body) .contact-emergency-call:hover,
body:not(.admin-body) .contact-emergency-call:focus-visible {
  color: #ffffff;
  transform: translateY(-1px);
}

body:not(.admin-body) .contact-emergency-box .contact-emergency-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #C60414;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.96rem;
}

body:not(.admin-body) .contact-emergency-box .contact-emergency-more svg {
  flex: 0 0 auto;
  stroke: currentColor;
}

body:not(.admin-body) .contact-emergency-box .contact-emergency-more:hover,
body:not(.admin-body) .contact-emergency-box .contact-emergency-more:focus-visible {
  color: #C60414;
}

body:not(.admin-body) .contact-emergency-box .contact-note-icon {
  color: #C60414;
}

body:not(.admin-body) .contact-note-box {
  margin-top: auto;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 14px 13px;
  border-radius: 16px;
  background: #f7faf7;
  border: 1px solid rgba(221, 232, 226, 0.95);
}

body:not(.admin-body) .contact-note-icon {
  flex: 0 0 auto;
  color: var(--color-green-dark);
}

body:not(.admin-body) .contact-note-box p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--color-text);
}

body:not(.admin-body) .contact-note-box-bottom strong {
  color: #8f3928;
}

body:not(.admin-body) .contact-note-box-bottom .contact-note-icon {
  color: #a74830;
}

body:not(.admin-body) .contact-note-box-bottom {
  border-color: rgba(167, 72, 48, 0.28);
}

body:not(.admin-body) .contact-note-box-bottom {
  margin-top: auto !important;
}

body:not(.admin-body) .contact-note-box-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

body:not(.admin-body) .contact-action-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 auto;
  min-height: 0;
}

body:not(.admin-body) .contact-action-item {
  width: 100%;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 14px;
  text-align: left;
  padding: 14px 16px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(221, 232, 226, 0.95);
  color: var(--color-green-dark);
  text-decoration: none;
  appearance: none;
  -webkit-appearance: none;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  cursor: pointer;
}

body:not(.admin-body) .contact-action-item:hover {
  transform: translateY(-1px);
  border-color: rgba(22, 138, 67, 0.32);
  box-shadow: 0 12px 24px rgba(9, 42, 58, 0.06);
}

body:not(.admin-body) .contact-action-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eef6ef;
  color: var(--color-green-dark);
}

body:not(.admin-body) .contact-action-copy strong,
body:not(.admin-body) .compact-address-text strong {
  display: block;
  font-family: var(--font-body) !important;
  font-size: 1rem;
  line-height: 1.35;
  color: var(--color-green-dark);
}

body:not(.admin-body) .contact-action-copy small {
  display: block;
  margin-top: 4px;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--color-muted);
}

body:not(.admin-body) .contact-quick-links {
  display: grid;
  gap: 10px;
  padding: 0 2px;
}

body:not(.admin-body) .contact-quick-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-green-dark);
  text-decoration: none;
  font-size: 0.98rem;
  line-height: 1.45;
}

body:not(.admin-body) .contact-quick-link:hover,
body:not(.admin-body) .contact-quick-link:focus-visible {
  color: var(--color-green-dark);
}

body:not(.admin-body) .contact-action-arrow {
  font-size: 1.4rem;
  line-height: 1;
  color: var(--color-green-dark);
  justify-self: end;
}

body:not(.admin-body) .contact-form-inline-btn {
  min-height: 46px;
  padding: 10px 18px;
  border-width: 1.5px !important;
  border-color: #106437 !important;
  color: #106437 !important;
  background: #ffffff !important;
  font-size: 0.96rem;
}

body:not(.admin-body) .contact-form-inline-btn:hover,
body:not(.admin-body) .contact-form-inline-btn:focus-visible {
  color: #106437 !important;
}

body:not(.admin-body) .compact-address-details {
  margin-bottom: 18px;
}

body:not(.admin-body) .compact-address-main {
  display: block;
}

body:not(.admin-body) .compact-address-text {
  text-align: center;
}

body:not(.admin-body) .compact-address-text p {
  margin: 4px 0 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-text);
}

body:not(.admin-body) .contact-map-compact {
  height: 190px;
  margin-bottom: 16px;
}

body:not(.admin-body) .contact-arrival-list {
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 6px;
}

body:not(.admin-body) .contact-arrival-list .guide-item p {
  margin-bottom: 0;
}

body:not(.admin-body) .contact-arrival-btn {
  align-self: center;
  margin-top: 18px;
}

body:not(.admin-body) .arrival-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 24px;
  align-items: stretch;
}

body:not(.admin-body) .arrival-info-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 18px 8px;
  margin-top: 24px;
  margin-bottom: 24px;
}

body:not(.admin-body) .arrival-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px;
  min-width: 0;
}

body:not(.admin-body) .arrival-info-item:not(:last-child) {
  border-right: 1px solid rgba(15, 63, 42, 0.08);
}

body:not(.admin-body) .arrival-info-icon {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

body:not(.admin-body) .arrival-info-icon img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  display: block;
}

body:not(.admin-body) .arrival-info-icon--parking {
  background: #eef6ef;
  border: 1px solid #d9ebdd;
  color: #0f5a35;
}

body:not(.admin-body) .arrival-info-icon--parking svg {
  width: 28px;
  height: 28px;
  display: block;
}

body:not(.admin-body) .arrival-info-icon--bus {
  background: #eef6ef;
  border: 1px solid #d9ebdd;
  color: #0f5a35;
}

body:not(.admin-body) .arrival-info-icon--bus svg {
  width: 60px;
  height: 60px;
  display: block;
}

body:not(.admin-body) .arrival-info-icon--accessible {
  background: #eef6ef;
  border: 1px solid #d9ebdd;
  color: #0f5a35;
}

body:not(.admin-body) .arrival-info-icon--accessible svg {
  width: 28px;
  height: 28px;
  display: block;
  transform: translateY(-1px);
}

body:not(.admin-body) .arrival-info-icon--entrance {
  background: #eef6ef;
  border: 1px solid #d9ebdd;
  color: #0f5a35;
}

body:not(.admin-body) .arrival-info-icon--entrance svg {
  width: 28px;
  height: 28px;
  display: block;
}

body:not(.admin-body) #main-content {
  display: flex;
  flex-direction: column;
}

body:not(.admin-body) #main-content > section {
  width: 100%;
}

body:not(.admin-body) #home {
  order: 1;
}

body:not(.admin-body) #praxis {
  order: 2;
}

body:not(.admin-body) #kontakt {
  order: 3;
}

body:not(.admin-body) #leistungen {
  order: 4;
}

body:not(.admin-body) #aerzte {
  order: 5;
}

body:not(.admin-body) #faq {
  order: 6;
}

body:not(.admin-body) #anfahrt {
  order: 7;
  padding-bottom: 0;
}

body:not(.admin-body) #google-bewertungen {
  order: 8;
}

body:not(.admin-body) #main-content > .modal-overlay,
body:not(.admin-body) #main-content > .news-modal-overlay {
  order: 90;
}

body:not(.admin-body) .arrival-info-item p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.35;
  color: var(--color-text);
}

body:not(.admin-body) .arrival-info-item strong {
  color: var(--color-primary);
  font-weight: 700;
}

body:not(.admin-body) .arrival-showcase-card {
  padding: 20px;
  min-height: 100%;
}

body:not(.admin-body) .arrival-map-large {
  height: 420px;
  margin-bottom: 0;
}

body:not(.admin-body) .arrival-showcase-photo {
  display: flex;
}

body:not(.admin-body) .arrival-photo-image {
  width: 100%;
  min-height: 420px;
  border-radius: var(--border-radius-md);
  object-fit: cover;
  object-position: center;
  display: block;
}

body:not(.admin-body) .arrival-photo-placeholder {
  width: 100%;
  min-height: 420px;
  border-radius: var(--border-radius-md);
  border: 1px dashed rgba(15, 63, 42, 0.18);
  background: linear-gradient(180deg, rgba(245, 249, 246, 0.95) 0%, rgba(236, 243, 239, 0.95) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(15, 63, 42, 0.55);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  padding: 24px;
}

body:not(.admin-body) .google-reviews-section {
  padding-top: 0;
}

body:not(.admin-body) .google-reviews-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) max-content minmax(190px, 0.78fr) minmax(160px, 0.68fr) max-content;
  gap: 0;
  align-items: center;
  margin: 0 auto;
  padding: 16px 18px;
  position: relative;
  overflow: hidden;
}

body:not(.admin-body) .google-reviews-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(15, 90, 53, 0.08), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  pointer-events: none;
}

body:not(.admin-body) .google-reviews-item,
body:not(.admin-body) .google-reviews-button {
  position: relative;
  z-index: 1;
}

body:not(.admin-body) .google-reviews-item {
  min-width: 0;
  padding-inline: 18px;
}

body:not(.admin-body) .google-reviews-item + .google-reviews-item,
body:not(.admin-body) .google-reviews-item + .google-reviews-button {
  border-left: 1px solid rgba(15, 63, 42, 0.08);
}

body:not(.admin-body) .google-reviews-item-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-left: 8px;
}

body:not(.admin-body) .google-reviews-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(15, 63, 42, 0.08);
  background: rgba(255, 255, 255, 0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
}

body:not(.admin-body) .google-reviews-badge-image {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

body:not(.admin-body) .google-reviews-title {
  margin: 0;
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

body:not(.admin-body) .google-reviews-item-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

body:not(.admin-body) .google-reviews-stars-visual {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #e1ad01;
}

body:not(.admin-body) .google-reviews-stars-visual svg {
  width: 18px;
  height: 18px;
  display: block;
}

body:not(.admin-body) .google-reviews-rating {
  font-family: var(--font-headings);
  font-size: clamp(1.1rem, 1.28vw, 1.38rem);
  line-height: 1;
  color: var(--color-primary);
}

body:not(.admin-body) .google-reviews-rating-scale {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(15, 63, 42, 0.55);
  white-space: nowrap;
}

body:not(.admin-body) .google-reviews-item-stat {
  display: grid;
  gap: 4px;
}

body:not(.admin-body) .google-reviews-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(15, 63, 42, 0.56);
}

body:not(.admin-body) .google-reviews-item-stat strong {
  color: var(--color-primary);
  font-size: 0.92rem;
  line-height: 1.3;
  font-weight: 600;
}

body:not(.admin-body) .google-reviews-stat-plain {
  color: var(--color-primary);
  font-size: 0.92rem;
  line-height: 1.3;
  font-weight: 600;
}

body:not(.admin-body) .google-reviews-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 0;
  min-height: 34px;
  margin: 0 6px 0 18px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #106437;
  background-color: #106437;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  border: 1px solid rgba(15, 63, 42, 0.16);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.2;
  box-shadow: none;
  white-space: nowrap;
}

body:not(.admin-body) .google-reviews-button:hover,
body:not(.admin-body) .google-reviews-button:focus-visible {
  background: #106437;
  background-color: #106437;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  border-color: rgba(15, 63, 42, 0.16);
  box-shadow: none;
}

@media (max-width: 900px) {
  body:not(.admin-body) .arrival-info-strip {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  body:not(.admin-body) .arrival-info-item {
    padding: 12px;
    border-right: 0 !important;
  }

  body:not(.admin-body) .arrival-showcase-grid {
    grid-template-columns: 1fr;
  }

  body:not(.admin-body) #anfahrt .arrival-showcase-grid > .arrival-showcase-card.arrival-showcase-photo {
    display: none !important;
  }

  body:not(.admin-body) .arrival-map-large,
  body:not(.admin-body) .arrival-photo-placeholder {
    min-height: 320px;
    height: 320px;
  }

  body:not(.admin-body) .google-reviews-card {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 18px;
  }

  body:not(.admin-body) .google-reviews-item,
  body:not(.admin-body) .google-reviews-button {
    padding: 14px 12px;
    border-left: 0;
  }

  body:not(.admin-body) .google-reviews-item + .google-reviews-item,
  body:not(.admin-body) .google-reviews-item + .google-reviews-button {
    border-left: 0;
  }

  body:not(.admin-body) .google-reviews-item:nth-child(n + 3),
  body:not(.admin-body) .google-reviews-button {
    border-top: 0;
  }

  body:not(.admin-body) .google-reviews-item-rating {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  body:not(.admin-body) .arrival-info-strip {
    grid-template-columns: 1fr;
  }

  body:not(.admin-body) .google-reviews-card {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  body:not(.admin-body) .google-reviews-stars-visual svg {
    width: 17px;
    height: 17px;
  }

  body:not(.admin-body) .google-reviews-title {
    font-size: 1.06rem;
  }

  body:not(.admin-body) .google-reviews-item,
  body:not(.admin-body) .google-reviews-button {
    padding: 10px 4px;
  }

  body:not(.admin-body) .google-reviews-item + .google-reviews-item,
  body:not(.admin-body) .google-reviews-item + .google-reviews-button {
    border-left: 0;
  }

  body:not(.admin-body) .google-reviews-item + .google-reviews-item,
  body:not(.admin-body) .google-reviews-item + .google-reviews-button,
  body:not(.admin-body) .google-reviews-button {
    border-top: 0;
  }

  body:not(.admin-body) .google-reviews-item-brand,
  body:not(.admin-body) .google-reviews-item-rating {
    flex-wrap: wrap;
  }

  body:not(.admin-body) .google-reviews-button {
    margin: 0;
    width: 100%;
    justify-content: center;
  }

  body:not(.admin-body) .google-reviews-rating {
    font-size: 1.12rem;
  }
}

body:not(.admin-body) .contact-form-modal-card {
  width: 100%;
  max-width: 480px;
}

body:not(.admin-body) .contact-form-modal-body {
  padding: 40px;
}

body:not(.admin-body) .contact-form-popup-shell {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

body:not(.admin-body) .contact-form-modal-body .container {
  max-width: none;
  padding: 0;
}

body:not(.admin-body) .contact-form-modal-body .section-header {
  margin-bottom: 24px;
  text-align: left;
  align-items: flex-start;
}

body:not(.admin-body) .contact-form-modal-body .section-tagline {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin-bottom: 6px;
}

body:not(.admin-body) .contact-form-modal-body .section-title {
  font-family: var(--font-heading) !important;
  font-size: 1.65rem !important;
  line-height: 1.08;
  text-align: left;
  margin-bottom: 6px;
}

body:not(.admin-body) .contact-form-modal-body .section-subtitle-text {
  font-size: 0.95rem;
  line-height: 1.4;
  text-align: left;
  max-width: none;
  margin: 0;
}

body:not(.admin-body) .request-form-info-card {
  padding: 16px 18px;
  border-radius: 14px;
  background: #f7faf7;
  border: 1px solid rgba(221, 232, 226, 0.95);
}

body:not(.admin-body) .request-form-info-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #106437;
}

body:not(.admin-body) .request-form-info-head strong {
  color: #106437;
  font-size: 0.95rem;
}

body:not(.admin-body) .request-form-info-icon,
body:not(.admin-body) .request-form-privacy-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #106437;
}

body:not(.admin-body) .request-form-info-list {
  margin: 0;
  padding-left: 20px;
}

body:not(.admin-body) .request-form-info-list li {
  margin-bottom: 8px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--color-text);
}

body:not(.admin-body) .request-form-info-list strong {
  font-weight: 700;
  color: var(--color-primary);
}

body:not(.admin-body) .request-form-submit-row {
  display: block;
}

body:not(.admin-body) .request-form-submit-btn {
  width: 100%;
}

body:not(.admin-body) .request-form-privacy-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 12px;
}

body:not(.admin-body) .request-form-privacy-note p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--color-text);
}

@media (max-width: 600px) {
  body:not(.admin-body) .request-form-privacy-note {
    margin-top: 10px;
  }
}

body:not(.admin-body) .vacation-card {
  max-width: 480px;
  padding: 40px;
  border-radius: 18px;
}

body:not(.admin-body) .vacation-header {
  margin-bottom: 24px;
  text-align: left;
}

body:not(.admin-body) .vacation-badge {
  padding: 0;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 0;
  margin-bottom: 6px;
  background: transparent !important;
  border: 0 !important;
  display: inline-block;
}

body:not(.admin-body) .vacation-card h2 {
  font-size: 1.65rem;
  line-height: 1.08;
  margin: 0;
}

body:not(.admin-body) .vacation-body {
  text-align: left;
}

body:not(.admin-body) .vacation-large-icon {
  display: none;
}

body:not(.admin-body) .vacation-large-icon svg {
  width: 28px;
  height: 28px;
}

body:not(.admin-body) .vacation-message {
  font-size: 0.94rem;
  line-height: 1.4;
  color: var(--color-muted);
  margin-bottom: 16px;
  text-align: left;
}

body:not(.admin-body) .vacation-dates-tag {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 16px;
  padding: 10px 14px;
  font-size: 0.86rem;
  border-radius: 10px;
  text-align: left;
}

body:not(.admin-body) .vacation-urgency {
  margin-bottom: 16px;
  padding: 12px 14px;
  font-size: 0.82rem;
  line-height: 1.42;
  border-left-width: 3px;
  border-radius: 10px;
}

body:not(.admin-body) .vacation-footer {
  margin-top: 0;
}

body:not(.admin-body) #btn-close-vacation {
  min-height: 48px;
}

@media (min-width: 768px) {
  body:not(.admin-body) .news-modal-card {
    max-width: 480px;
    border-radius: 18px;
  }

  body:not(.admin-body) .news-modal-body {
    max-height: min(82vh, 760px);
    padding: 40px;
  }

  body:not(.admin-body) .news-modal-body .modal-header {
    margin-bottom: 24px;
    text-align: left;
  }

  body:not(.admin-body) .news-modal-body .modal-tag {
    padding: 0;
    margin-bottom: 6px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.18em !important;
    background: transparent;
  }

  body:not(.admin-body) .news-modal-body .modal-header h2 {
    margin: 0 0 6px;
    font-size: 1.65rem;
    line-height: 1.08;
  }

  body:not(.admin-body) .news-modal-body .modal-header p {
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--color-muted);
  }

  body:not(.admin-body) .news-popup-item {
    gap: 12px;
    padding-top: 24px;
  }

  body:not(.admin-body) .news-popup-copy h3 {
    font-size: 1rem;
    line-height: 1.3;
  }

  body:not(.admin-body) .news-popup-copy p {
    font-size: 0.93rem;
    line-height: 1.4;
    color: var(--color-muted);
  }

}

@media (max-width: 600px) {
  body:not(.admin-body) .contact-form-modal-card,
  body:not(.admin-body) .vacation-card {
    max-width: calc(100vw - 24px);
  }

  body:not(.admin-body) #callback-modal select,
  body:not(.admin-body) #callback-modal option {
    font-size: 1rem;
  }

  body:not(.admin-body) #callback-modal select {
    min-height: 46px;
    padding: 10px 14px;
    line-height: 1.35;
  }

  body:not(.admin-body) .contact-form-modal-body,
  body:not(.admin-body) .vacation-card {
    padding: 24px;
  }

  body:not(.admin-body) .contact-form-modal-body .section-title,
  body:not(.admin-body) .vacation-card h2 {
    font-size: 1.46rem !important;
  }

  body:not(.admin-body) .contact-form-modal-body .section-subtitle-text,
  body:not(.admin-body) .vacation-message {
    font-size: 0.93rem;
    line-height: 1.42;
  }

  body:not(.admin-body) .vacation-dates-tag {
    width: 100%;
    padding: 10px 12px;
  }
}

body:not(.admin-body) .contact-guide-list {
  grid-template-columns: 1fr;
  gap: 12px;
}

body:not(.admin-body) .contact-guide-list .guide-item {
  padding: 0;
}

body:not(.admin-body) .contact-guide-list .guide-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--color-green-dark);
}

body:not(.admin-body) .contact-guide-list .guide-item p {
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  body:not(.admin-body) .contact-overview-grid {
    grid-template-columns: 1fr;
  }
}

/* 22. SERVICES FEATURE GRID + DETAIL PAGES */
body:not(.admin-body) .services-feature-section {
  background: linear-gradient(180deg, rgba(248, 250, 247, 0.95) 0%, rgba(255, 255, 255, 1) 100%);
}

body:not(.admin-body) .services-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
}

body:not(.admin-body) .service-feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 286px;
  padding: 28px 28px 24px;
  background: #ffffff;
  border: 1px solid #dde8e2;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(9, 42, 58, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

body:not(.admin-body) .service-feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(22, 138, 67, 0.24);
  box-shadow: 0 24px 50px rgba(9, 42, 58, 0.09);
}

body:not(.admin-body) .service-feature-icon {
  width: 78px;
  height: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #eef6ef;
  border: 1px solid #d9ebdd;
  color: #0f5a35;
  margin-bottom: 22px;
}

body:not(.admin-body) .service-feature-icon svg {
  width: 69px;
  height: 69px;
}

body:not(.admin-body) .service-feature-icon-image {
  width: 92px;
  height: 92px;
  padding: 0;
  border: none;
  background: transparent;
  color: inherit;
}

body:not(.admin-body) .service-feature-icon-art {
  width: 92px;
  height: 92px;
  display: block;
}

body:not(.admin-body) .service-feature-copy {
  max-width: 88%;
}

body:not(.admin-body) .service-feature-copy h3 {
  margin: 0;
  font-family: var(--font-body) !important;
  font-size: 1.05rem;
  line-height: 1.38;
  font-weight: 700;
  color: #0f3f2a;
}

body:not(.admin-body) .service-feature-divider {
  display: inline-block;
  width: 44px;
  height: 2px;
  margin: 16px 0 14px;
  border-radius: 999px;
  background: rgba(22, 138, 67, 0.45);
}

body:not(.admin-body) .service-feature-copy p {
  margin: 0;
  font-family: var(--font-body) !important;
  font-size: 0.96rem;
  line-height: 1.72;
  color: #2f3d44;
}

body:not(.admin-body) .service-feature-link {
  position: absolute;
  right: 22px;
  bottom: 20px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #eef6ef;
  color: #0f3f2a;
  border: 1px solid #d9ebdd;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

body:not(.admin-body) .service-feature-link:hover {
  transform: translateY(-1px);
  background: #168a43;
  color: #ffffff;
}

body.service-detail-body {
  min-height: 100vh;
  background: linear-gradient(180deg, #f8f6f0 0%, #fbfbf8 100%);
  color: #26343b;
}

.service-detail-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(221, 232, 226, 0.9);
}

.service-detail-header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.service-detail-brand {
  display: inline-flex;
  align-items: center;
}

.service-detail-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid #dde8e2;
  background: #ffffff;
  color: #0f3f2a;
  font-family: var(--font-body) !important;
  font-weight: 600;
}

.service-detail-main {
  padding: 54px 0 80px;
}

.service-detail-shell {
  max-width: 1080px;
}

.service-detail-tagline {
  display: inline-block;
  margin-bottom: 14px;
  font-family: var(--font-body) !important;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #168a43;
}

.service-detail-title {
  margin: 0;
  font-family: var(--font-heading) !important;
  font-size: clamp(2.5rem, 4.2vw, 3.85rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: #06351f;
}

.service-detail-intro {
  max-width: 780px;
  margin: 22px 0 0;
  font-family: var(--font-body) !important;
  font-size: 1.06rem;
  line-height: 1.8;
  color: #5e6468;
}

.service-detail-placeholder-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 24px;
  margin-top: 42px;
}

.service-detail-placeholder-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #dde8e2;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(9, 42, 58, 0.06);
}

.service-detail-placeholder-card h2 {
  margin: 0 0 14px;
  font-family: var(--font-heading) !important;
  font-size: 2rem;
  line-height: 1.05;
  color: #06351f;
}

.service-detail-placeholder-card p {
  margin: 0;
  font-family: var(--font-body) !important;
  font-size: 1rem;
  line-height: 1.7;
  color: #4f555a;
}

.service-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

@media (max-width: 1180px) {
  body:not(.admin-body) .services-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .service-detail-placeholder-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  body:not(.admin-body) .services-feature-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(272px, 84vw);
    gap: 16px;
    margin-top: 34px;
    overflow-x: auto;
    overflow-y: visible;
    padding: 4px 12px 10px 0;
    scroll-snap-type: x proximity;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  body:not(.admin-body) .services-feature-grid::-webkit-scrollbar {
    display: none;
  }

  body:not(.admin-body) .service-feature-card {
    min-height: 272px;
    padding: 24px 22px 22px;
    scroll-snap-align: start;
  }

  body:not(.admin-body) .service-feature-copy {
    max-width: 100%;
    padding-right: 52px;
  }

  .service-detail-header-inner {
    min-height: 74px;
  }

  .service-detail-main {
    padding-top: 34px;
  }
}

/* 23. SERVICE DETAIL CONTENT */
.service-detail-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.service-detail-nav a {
  font-family: var(--font-body) !important;
  font-size: 0.98rem;
  font-weight: 600;
  color: #183042;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.service-detail-nav a.is-active,
.service-detail-nav a:hover {
  color: #168a43;
  border-bottom-color: #168a43;
}

.service-detail-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-detail-content-section {
  padding-bottom: 84px;
}

.service-rich-content {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.service-content-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #dde8e2;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(9, 42, 58, 0.06);
  min-width: 0;
}

.service-content-card h2 {
  margin: 0 0 16px;
  font-family: var(--font-heading) !important;
  font-size: clamp(1.7rem, 2.4vw, 2.3rem);
  line-height: 1.08;
  color: #06351f;
}

.service-content-card h3 {
  margin: 18px 0 8px;
  font-family: var(--font-body) !important;
  font-size: 1.18rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0;
  color: #0f3f2a;
}

.service-content-card p {
  margin: 0;
  font-family: var(--font-body) !important;
  font-size: 1rem;
  line-height: 1.85;
  color: #26343b;
}

.service-content-card p + p {
  margin-top: 16px;
}

.service-content-card a,
.service-content-card p,
.service-content-card li,
.service-content-card h2,
.service-content-card h3 {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.service-bullet-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.service-bullet-list li {
  position: relative;
  padding-left: 26px;
  font-family: var(--font-body) !important;
  font-size: 1rem;
  line-height: 1.8;
  color: #26343b;
}

.service-bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.82em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #168a43;
  transform: translateY(-50%);
}

.service-faq-block {
  margin-top: 34px;
}

.home-faq-block {
  margin-top: 34px;
}

body:not(.admin-body) #faq {
  position: relative;
  margin-top: 22px;
  scroll-margin-top: 172px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(248, 250, 247, 0.96) 100%);
  border-top: 1px solid rgba(221, 232, 226, 0.9);
  box-shadow: 0 -10px 28px rgba(9, 42, 58, 0.03);
}

body:not(.admin-body) #faq::before {
  content: none;
}

.service-faq-accordion {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.service-faq-item {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #dde8e2;
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(9, 42, 58, 0.05);
  overflow: hidden;
}

.service-faq-item summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 22px 56px 22px 24px;
  font-family: var(--font-body) !important;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
  color: #0f3f2a;
}

.service-faq-item summary::-webkit-details-marker {
  display: none;
}

.service-faq-item summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 500;
  color: #168a43;
}

.service-faq-item[open] summary::after {
  content: '-';
}

.service-faq-answer {
  padding: 0 24px 22px;
}

.service-faq-answer p {
  margin: 0;
  font-family: var(--font-body) !important;
  font-size: 0.98rem;
  line-height: 1.75;
  color: #4f555a;
}

.home-faq-accordion .service-bullet-list {
  margin-top: 16px;
}

.home-faq-accordion .service-faq-answer p + .service-bullet-list,
.home-faq-accordion .service-faq-answer .service-bullet-list + p {
  margin-top: 16px;
}

.service-detail-footer {
  padding: 34px 0 40px;
  border-top: 1px solid rgba(221, 232, 226, 0.9);
  background: rgba(255, 255, 255, 0.94);
}

.service-detail-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
}

.service-detail-footer h3 {
  margin: 0 0 14px;
  font-family: var(--font-body) !important;
  font-size: 1rem;
  font-weight: 700;
  color: #0f3f2a;
}

.service-detail-footer-text,
.service-detail-footer-list li,
.service-detail-footer-list a {
  font-family: var(--font-body) !important;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4f555a;
}

.service-detail-footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 1180px) {
  .service-detail-header-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 14px;
    padding-bottom: 14px;
  }
}

@media (max-width: 900px) {
  .service-detail-nav,
  .service-detail-header-actions {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .service-detail-footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  body.service-detail-body .legal-rich-content {
    gap: 18px;
  }

  body:not(.admin-body) #faq {
    margin-top: 18px;
    scroll-margin-top: 168px;
  }

  .service-detail-nav {
    gap: 14px;
  }

  .service-detail-nav a {
    font-size: 0.92rem;
  }

  .service-content-card {
    padding: 22px;
  }

  .service-content-card h2 {
    font-size: 1.52rem;
    line-height: 1.16;
  }

  .service-content-card h3 {
    margin: 16px 0 6px;
    font-size: 1.02rem;
    line-height: 1.25;
  }

  .service-content-card p,
  .service-bullet-list li,
  .service-faq-answer p {
    font-size: 0.95rem;
    line-height: 1.72;
  }

  body.service-detail-body .legal-rich-content .service-content-card a {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .service-faq-item summary {
    padding: 18px 48px 18px 20px;
  }
}

/* 24. HEADER SERVICES DROPDOWN + LIGHT FOOTER */
body:not(.admin-body) .nav-item-dropdown {
  position: relative;
}

body:not(.admin-body) .nav-item-dropdown > .nav-link {
  display: inline-flex;
  align-items: center;
}

body:not(.admin-body) .nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 280px;
  display: grid;
  gap: 2px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(221, 232, 226, 0.95);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(9, 42, 58, 0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 40;
}

body:not(.admin-body) .nav-dropdown-menu::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 16px;
}

body:not(.admin-body) .nav-item-dropdown:hover .nav-dropdown-menu,
body:not(.admin-body) .nav-item-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

body:not(.admin-body) .nav-dropdown-link {
  display: block;
  padding: 11px 12px;
  border-radius: 12px;
  font-family: var(--font-body) !important;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-primary);
}

body:not(.admin-body) .nav-dropdown-link:hover {
  background: #eef6ef;
  color: #168a43;
}

body.service-detail-body .service-detail-main {
  padding-top: 148px;
}

body:not(.admin-body) .footer-main {
  background: rgba(255, 255, 255, 0.96) !important;
  color: #4f555a !important;
  border-top: 1px solid rgba(221, 232, 226, 0.95) !important;
  padding-bottom: 0 !important;
}

body:not(.admin-body) .footer-main .footer-col h3,
body:not(.admin-body) .footer-main .footer-brand-desc,
body:not(.admin-body) .footer-main .copyright-text,
body:not(.admin-body) .footer-main .footer-links-contact li,
body:not(.admin-body) .footer-main .footer-links-contact li a,
body:not(.admin-body) .footer-main .footer-timings li,
body:not(.admin-body) .footer-main .footer-legal-links li a {
  color: #4f555a !important;
}

body:not(.admin-body) .footer-main .footer-col h3 {
  color: #0f3f2a !important;
}

body:not(.admin-body) .footer-main .footer-links-contact svg,
body:not(.admin-body) .footer-main .footer-links-contact small {
  color: #168a43 !important;
}

body:not(.admin-body) .footer-main .footer-links-contact li a:hover,
body:not(.admin-body) .footer-main .footer-legal-links li a:hover {
  color: #168a43 !important;
}

body:not(.admin-body) .footer-credit {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 20px;
  text-align: center;
  border-top: 1px solid rgba(221, 232, 226, 0.75);
}

body:not(.admin-body) .footer-credit a {
  display: inline-flex;
  justify-content: center;
  font-family: var(--font-body) !important;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #5e6468;
}

body:not(.admin-body) .footer-credit a:hover {
  color: #168a43;
}

@media (max-width: 1024px) {
  body:not(.admin-body) .nav-dropdown-menu {
    display: none;
  }

  body.service-detail-body .service-detail-main {
    padding-top: 164px;
  }
}

@media (max-width: 767px) {
  body.service-detail-body .service-detail-main {
    padding-top: 180px;
  }
}

body:not(.admin-body) .drawer-close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--color-primary);
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  z-index: 1006;
}

body:not(.admin-body) .drawer-close-btn:hover {
  color: var(--color-accent);
  transform: scale(1.1);
}

body:not(.admin-body) .drawer-close-btn svg {
  stroke: var(--color-primary);
  transition: var(--transition-smooth);
}

body:not(.admin-body) .drawer-close-btn:hover svg {
  stroke: var(--color-accent);
}

/* Desktop: Hide mobile appointment button */
body:not(.admin-body) .btn-mobile-appointment {
  display: none;
}

/* Mobile: Show and style mobile appointment button */
@media (max-width: 1024px) {
  body:not(.admin-body) .btn-mobile-appointment {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: var(--color-brand-green) !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    border: 1px solid rgba(15, 63, 42, 0.16) !important;
    border-radius: 12px;
    font-family: var(--font-body) !important;
    font-size: 0.96rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    flex: 0 0 auto;
    box-sizing: border-box;
  }

  body:not(.admin-body) .btn-mobile-appointment:hover {
    background-color: var(--color-brand-green) !important;
    transform: translateY(-1px);
  }

  body:not(.admin-body) .btn-mobile-appointment svg {
    stroke: #ffffff !important;
    flex-shrink: 0;
  }
}

@media (max-width: 480px) {
  body:not(.admin-body) .btn-mobile-appointment {
    padding: 8px 12px;
    font-size: 0.9rem;
    gap: 6px;
  }
}

/* Compact DSGVO Map Consent Overlay Sizing Fixes */
body:not(.admin-body) .map-consent-overlay {
  padding: 12px 16px !important;
}

body:not(.admin-body) .consent-content {
  width: 100% !important;
  max-width: 290px !important;
  margin: 0 auto !important;
}

body:not(.admin-body) .map-placeholder-icon {
  margin-bottom: 4px !important;
}

body:not(.admin-body) .map-placeholder-icon svg {
  width: 28px !important;
  height: 28px !important;
}

body:not(.admin-body) .consent-content h3 {
  font-size: 0.96rem !important;
  margin-bottom: 4px !important;
  line-height: 1.2 !important;
}

body:not(.admin-body) .consent-content p {
  font-size: 0.72rem !important;
  line-height: 1.35 !important;
  margin-bottom: 10px !important;
}

body:not(.admin-body) .consent-content .btn-sm {
  padding: 6px 14px !important;
  font-size: 0.78rem !important;
  min-height: auto !important;
}

body:not(.admin-body) .floating-btn.item-emergency {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(221, 232, 226, 0.98);
  color: #a74830;
}

body:not(.admin-body) .floating-btn.item-emergency .floating-icon {
  width: 24px;
  height: 24px;
}

body:not(.admin-body) .floating-btn.item-emergency .floating-icon svg {
  width: 22px;
  height: 22px;
  display: block;
  transform: translateX(1px);
}

body:not(.admin-body) .floating-btn.item-emergency .floating-label {
  color: #8f3928;
}

@media (min-width: 769px) {
  body:not(.admin-body) .floating-btn.item-emergency:hover,
  body:not(.admin-body) .floating-btn.item-emergency:focus-visible {
    background: #ffffff;
    border-color: rgba(221, 232, 226, 0.98);
    color: #8f3928;
  }
}

@media (max-width: 600px) {
  body:not(.admin-body) .contact-emergency-box {
    scroll-margin-top: 142px;
  }
}

/* Static layout mode: disable scroll/fly-in reveal effects sitewide */
body:not(.admin-body) .scroll-reveal-section,
body:not(.admin-body) .scroll-reveal-section.scroll-visible,
body:not(.admin-body) .animate-reveal,
body:not(.admin-body) .animate-reveal-delay-1,
body:not(.admin-body) .animate-reveal-delay-2,
body:not(.admin-body) .animate-reveal-delay-3,
body:not(.admin-body) .animate-lift {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
  transition: none !important;
}

body:not(.admin-body) .hero-points {
  max-width: 520px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
  line-height: 1.72;
}

body:not(.admin-body) .hero-points li {
  display: flex;
  align-items: center;
  gap: 12px;
}

body:not(.admin-body) .hero-title-second-line {
  white-space: nowrap;
}

body:not(.admin-body) .hero-points li + li {
  margin-top: 6px;
}

body:not(.admin-body) .hero-point-icon {
  display: block;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  object-fit: contain;
}

body:not(.admin-body) .btn-hero-emergency {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-height: 40px;
  padding: 8px 16px;
  border-radius: var(--border-radius-full);
  gap: 10px;
  background: #ffffff;
  color: #c60414;
  border: 2px solid #c60414;
  box-shadow: none;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1;
}

body:not(.admin-body) .btn-hero-emergency:hover,
body:not(.admin-body) .btn-hero-emergency:focus-visible {
  background: #ffffff;
  color: #c60414;
  border-color: #c60414;
  transform: translateY(-1px);
}

body:not(.admin-body) .hero-actions a.btn.btn-hero-emergency {
  min-height: 38px;
  padding: 8px 12px;
  border-radius: var(--border-radius-full);
  background: #ffffff !important;
  background-color: #ffffff !important;
  color: #c60414 !important;
  -webkit-text-fill-color: #c60414 !important;
  border: 2px solid rgba(198, 4, 20, 0.72) !important;
  box-shadow: 0 6px 14px rgba(198, 4, 20, 0.04) !important;
}

body:not(.admin-body) .hero-actions a.btn.btn-hero-emergency:hover,
body:not(.admin-body) .hero-actions a.btn.btn-hero-emergency:focus-visible {
  background: #ffffff !important;
  background-color: #ffffff !important;
  color: #c60414 !important;
  -webkit-text-fill-color: #c60414 !important;
  border-color: rgba(198, 4, 20, 0.72) !important;
  box-shadow: 0 6px 14px rgba(198, 4, 20, 0.04) !important;
}

body:not(.admin-body) .hero-actions a.btn.btn-hero-emergency .contact-note-icon,
body:not(.admin-body) .hero-actions a.btn.btn-hero-emergency .contact-emergency-bell,
body:not(.admin-body) .hero-actions a.btn.btn-hero-emergency .contact-emergency-bell svg {
  color: #c60414 !important;
}

body:not(.admin-body) .hero-actions .btn-accent,
body:not(.admin-body) .header-cta-group .btn-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

body:not(.admin-body) .hero-actions .btn-outline-white,
body:not(.admin-body) .header-cta-group .btn-secondary-header,
body:not(.admin-body) .mobile-drawer-footer .btn-secondary-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-width: 2px !important;
  border-color: #106437 !important;
}

body:not(.admin-body) .hero-actions button.btn.btn-outline-white {
  min-height: 38px;
  padding: 8px 12px;
  border-radius: var(--border-radius-full);
  background: #f4fbf8 !important;
  background-color: #f4fbf8 !important;
  color: #106437 !important;
  -webkit-text-fill-color: #106437 !important;
  border: 2px solid rgba(16, 100, 55, 0.26) !important;
  box-shadow: 0 6px 14px rgba(16, 32, 51, 0.04) !important;
}

body:not(.admin-body) .hero-actions button.btn.btn-outline-white:hover,
body:not(.admin-body) .hero-actions button.btn.btn-outline-white:focus-visible {
  background: #f4fbf8 !important;
  background-color: #f4fbf8 !important;
  color: #106437 !important;
  -webkit-text-fill-color: #106437 !important;
  border-color: rgba(16, 100, 55, 0.26) !important;
  box-shadow: 0 6px 14px rgba(16, 32, 51, 0.04) !important;
}

body:not(.admin-body) .hero-actions .btn,
body:not(.admin-body) .hero-actions a {
  width: auto;
  min-height: 40px;
  padding: 8px 16px;
  border-radius: var(--border-radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

body:not(.admin-body) .btn-icon-prescription {
  display: block;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  object-fit: contain;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  overflow: visible;
}

body:not(.admin-body) .hero-media-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1024px) {
  body:not(.admin-body) .hero-points {
    margin-bottom: 24px;
  }
}

@media (max-width: 768px) {
  body:not(.admin-body) .hero-points {
    max-width: none;
    padding-left: 20px;
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 24px;
  }

  body:not(.admin-body) .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: fit-content;
    max-width: calc(100% - 40px);
    gap: 10px;
    margin-top: 130px;
    margin-inline: auto;
    justify-content: center;
  }

  body:not(.admin-body) .hero-actions > :first-child {
    display: none;
  }

  body:not(.admin-body) .hero-actions .btn,
  body:not(.admin-body) .hero-actions a {
    width: 100%;
  }

  body:not(.admin-body) .header-cta-group {
    flex: 1 1 auto;
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
  }

  body:not(.admin-body) .header-cta-group .btn-nav-cta {
    margin-right: 0;
  }

  body:not(.admin-body) .header-cta-group .burger-menu-btn {
    margin-left: auto;
  }
}

body:not(.admin-body) .btn-primary,
body:not(.admin-body) .btn-accent,
body:not(.admin-body) .btn-nav-cta,
body:not(.admin-body) .header-main.header-scrolled .btn-nav-cta,
body:not(.admin-body) .hero-actions .btn-accent,
body:not(.admin-body) .mobile-drawer-footer .btn-primary,
body:not(.admin-body) .tab-btn.active {
  background: #106437 !important;
  background-color: #106437 !important;
  background-image: none !important;
  border-color: #106437 !important;
}

body:not(.admin-body) .btn-primary:hover,
body:not(.admin-body) .btn-accent:hover,
body:not(.admin-body) .btn-nav-cta:hover,
body:not(.admin-body) .header-main.header-scrolled .btn-nav-cta:hover,
body:not(.admin-body) .hero-actions .btn-accent:hover,
body:not(.admin-body) .mobile-drawer-footer .btn-primary:hover,
body:not(.admin-body) .tab-btn.active:hover {
  background: #106437 !important;
  background-color: #106437 !important;
  background-image: none !important;
  border-color: #106437 !important;
}

body:not(.admin-body) .hero-section {
  position: relative;
  isolation: isolate;
  background: #f7faf7;
}

@media (max-width: 1024px) {
  body:not(.admin-body) .header-cta-group {
    flex: 1 1 auto;
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
  }

  body:not(.admin-body) .header-cta-group .btn-nav-cta,
  body:not(.admin-body) .header-main.header-scrolled .header-cta-group .btn-nav-cta {
    margin-right: 0;
  }

  body:not(.admin-body) .header-cta-group .burger-menu-btn {
    margin-left: auto;
  }
}

body:not(.admin-body) .hero-video-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 21%;
  z-index: 0;
  overflow: hidden;
}

body:not(.admin-body) .hero-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 38% center;
  filter: blur(1px) saturate(1) brightness(0.99);
  transform: none;
}

body:not(.admin-body) .hero-overlay {
  background:
    linear-gradient(90deg, rgba(249, 251, 248, 0) 0%, rgba(249, 251, 248, 0) 39%, rgba(249, 251, 248, 0) 51%, rgba(249, 251, 248, 0) 64%, rgba(249, 251, 248, 0) 78%, rgba(249, 251, 248, 0) 100%);
}

body:not(.admin-body) .hero-container {
  z-index: 2;
}

body:not(.admin-body) .hero-layout {
  display: block;
}

body:not(.admin-body) .hero-content {
  max-width: 560px;
  padding-top: 20px;
}

body:not(.admin-body) .hero-media {
  display: none;
}

@media (min-width: 769px) {
  body:not(.admin-body) .hero-video-wrapper {
    left: 0;
    width: 100%;
  }

  body:not(.admin-body) .hero-video {
    object-fit: cover;
    object-position: center center;
  }
}

@media (max-width: 768px) {
  body:not(.admin-body) .hero-video-wrapper {
    left: 0;
    width: 100%;
  }

  body:not(.admin-body) .hero-video {
    object-fit: cover;
    object-position: center center;
    filter: blur(1px) saturate(0.98) brightness(1);
  }

  body:not(.admin-body) .hero-overlay {
    background:
      linear-gradient(180deg, rgba(249, 251, 248, 0) 0%, rgba(249, 251, 248, 0) 34%, rgba(249, 251, 248, 0) 100%);
  }
}

body:not(.admin-body) .services-text-block {
  margin-top: 42px;
  padding: 34px;
  background: #ffffff;
  border: 1px solid #dde8e2;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(9, 42, 58, 0.06);
}

body:not(.admin-body) .services-text-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
}

body:not(.admin-body) .services-text-list li {
  position: relative;
  margin: 0;
  padding-left: 22px;
  color: #2f3d44;
  font-size: 1rem;
  line-height: 1.7;
}

body:not(.admin-body) .services-text-list li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #106437;
  transform: translateY(-50%);
}

@media (max-width: 768px) {
  body:not(.admin-body) .services-text-block {
    padding: 26px 22px;
  }

  body:not(.admin-body) .services-text-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

body:not(.admin-body) .contact-hours-card .contact-emergency-box {
  background: linear-gradient(180deg, #fff4f5 0%, #fff8f8 100%) !important;
  border: 1px solid rgba(198, 4, 20, 0.18) !important;
  box-shadow: 0 12px 28px rgba(198, 4, 20, 0.07) !important;
}

body:not(.admin-body) .contact-hours-card .contact-emergency-title,
body:not(.admin-body) .contact-hours-card .contact-emergency-bell,
body:not(.admin-body) .contact-hours-card .contact-emergency-more,
body:not(.admin-body) .contact-hours-card .contact-emergency-more:hover,
body:not(.admin-body) .contact-hours-card .contact-emergency-more:focus-visible,
body:not(.admin-body) .contact-hours-card .contact-note-icon {
  color: #C60414 !important;
}

body:not(.admin-body) .contact-hours-card .contact-emergency-copy {
  font-size: 0.92rem !important;
  line-height: 1.5 !important;
  color: #8c4047 !important;
}

body:not(.admin-body) .contact-hours-card .contact-emergency-call {
  min-height: 34px !important;
  padding: 6px 12px !important;
  border-radius: 999px !important;
  font-size: 0.8rem !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  gap: 8px !important;
  box-shadow: 0 6px 16px rgba(16, 32, 51, 0.04) !important;
}

body:not(.admin-body) .contact-hours-card .contact-emergency-call svg {
  width: 16px !important;
  height: 16px !important;
}

body:not(.admin-body) .contact-actions-card .contact-note-box-bottom {
  border-color: rgba(221, 232, 226, 0.95) !important;
}

body:not(.admin-body) .contact-actions-card .contact-note-box-bottom strong {
  color: var(--color-text) !important;
  font-size: 0.92rem !important;
  line-height: 1.5 !important;
  font-weight: 400 !important;
}

body:not(.admin-body) button.btn.btn-outline-white.contact-form-inline-btn,
body:not(.admin-body) .contact-actions-card .contact-form-inline-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  min-height: 40px !important;
  padding: 8px 16px !important;
  border-radius: 999px !important;
  background: #106437 !important;
  background-color: #106437 !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  border: 1px solid rgba(15, 63, 42, 0.16) !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  box-shadow: none !important;
}

body:not(.admin-body) button.btn.btn-outline-white.contact-form-inline-btn:hover,
body:not(.admin-body) button.btn.btn-outline-white.contact-form-inline-btn:focus-visible,
body:not(.admin-body) .contact-actions-card .contact-form-inline-btn:hover,
body:not(.admin-body) .contact-actions-card .contact-form-inline-btn:focus-visible {
  background: #106437 !important;
  background-color: #106437 !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  border-color: rgba(15, 63, 42, 0.16) !important;
}

body:not(.admin-body) .hero-trust-note {
  display: none;
}

body:not(.admin-body) .hero-point-icon {
  display: block;
}

@media (max-width: 768px) {
  body:not(.admin-body) .hero-section {
    min-height: 680px !important;
    padding: 210px 0 22px !important;
    background: #f7faf7 !important;
  }

  body:not(.admin-body) .hero-video-wrapper {
    inset: 0 0 auto 0 !important;
    width: 100% !important;
    height: 370px !important;
    opacity: 0.82;
  }

  body:not(.admin-body) .hero-video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
    filter: saturate(0.98) brightness(1.06) contrast(0.96) !important;
  }

  body:not(.admin-body) .hero-overlay {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.18) 34%, rgba(247, 250, 247, 0.64) 62%, #f7faf7 100%) !important;
  }

  body:not(.admin-body) .hero-container.container {
    width: 100% !important;
    max-width: none !important;
    padding-left: 9px !important;
    padding-right: 9px !important;
  }

  body:not(.admin-body) .hero-layout {
    display: block !important;
  }

  body:not(.admin-body) .hero-content {
    width: 100% !important;
    max-width: 390px !important;
    margin: 0 auto !important;
    padding: 24px 22px 18px !important;
    background: rgba(255, 255, 255, 0.96) !important;
    border: 1px solid rgba(221, 232, 226, 0.98) !important;
    border-radius: 18px !important;
    box-shadow: 0 22px 44px rgba(16, 32, 51, 0.14) !important;
  }

  body:not(.admin-body) .hero-kicker {
    display: block !important;
    margin: 0 0 10px !important;
    color: #106437 !important;
    font-size: 0.68rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.18em !important;
    line-height: 1.35 !important;
  }

  body:not(.admin-body) .hero-title {
    max-width: none !important;
    margin: 0 0 18px !important;
    color: #06351f !important;
    font-size: 2rem !important;
    line-height: 1.06 !important;
  }

  body:not(.admin-body) .hero-title-second-line {
    white-space: normal !important;
  }

  body:not(.admin-body) .hero-points {
    display: grid !important;
    gap: 0 !important;
    max-width: none !important;
    margin: 0 0 18px !important;
    padding: 0 !important;
    color: #233a44 !important;
    list-style: none !important;
    font-size: 0.86rem !important;
    line-height: 1.35 !important;
  }

  body:not(.admin-body) .hero-points li {
    position: relative !important;
    min-height: 38px !important;
    margin: 0 !important;
    padding: 9px 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    border-bottom: 0 !important;
  }

  body:not(.admin-body) .hero-points li::before {
    content: none !important;
  }

  body:not(.admin-body) .hero-points li::after {
    content: "" !important;
    position: absolute !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 38px !important;
    height: 1px !important;
    background: rgba(221, 232, 226, 0.86) !important;
  }

  body:not(.admin-body) .hero-points li:last-child::after {
    content: none !important;
  }

  body:not(.admin-body) .hero-point-icon {
    display: block !important;
    width: 24px !important;
    max-width: 24px !important;
    height: 24px !important;
    max-height: 24px !important;
    flex: 0 0 24px !important;
    object-fit: contain !important;
    object-position: center !important;
  }

  body:not(.admin-body) .hero-points li span {
    display: block !important;
    min-width: 0 !important;
    width: 100% !important;
    padding: 0 !important;
    border-bottom: 0 !important;
  }

  body:not(.admin-body) .hero-actions {
    display: grid !important;
    grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.8fr) !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    align-items: stretch !important;
  }

  body:not(.admin-body) .hero-actions > :first-child {
    display: none !important;
  }

  body:not(.admin-body) .hero-actions .btn,
  body:not(.admin-body) .hero-actions a {
    width: 100% !important;
    min-height: 38px !important;
    padding: 8px 12px !important;
    border-radius: var(--border-radius-full) !important;
    gap: 7px !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  body:not(.admin-body) .hero-actions button.btn.btn-outline-white {
    background: #f4fbf8 !important;
    background-color: #f4fbf8 !important;
    color: #106437 !important;
    -webkit-text-fill-color: #106437 !important;
    border: 2px solid rgba(16, 100, 55, 0.26) !important;
    box-shadow: 0 6px 14px rgba(16, 32, 51, 0.04) !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  body:not(.admin-body) .hero-actions a.btn.btn-hero-emergency {
    background: #ffffff !important;
    color: #c60414 !important;
    -webkit-text-fill-color: #c60414 !important;
    border: 2px solid rgba(198, 4, 20, 0.72) !important;
    box-shadow: 0 6px 14px rgba(198, 4, 20, 0.04) !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  body:not(.admin-body) .hero-actions a.btn.btn-hero-emergency .contact-note-icon,
  body:not(.admin-body) .hero-actions a.btn.btn-hero-emergency .contact-emergency-bell,
  body:not(.admin-body) .hero-actions a.btn.btn-hero-emergency .contact-emergency-bell svg {
    color: #c60414 !important;
  }

  body:not(.admin-body) .hero-actions svg,
  body:not(.admin-body) .btn-icon-prescription {
    width: 17px !important;
    height: 17px !important;
    flex-basis: 17px !important;
  }

  body:not(.admin-body) .btn-icon-prescription {
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
  }

  body:not(.admin-body) .hero-trust-note {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 16px 0 0 !important;
    color: #24433a !important;
    font-size: 0.72rem !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;
  }

  body:not(.admin-body) .hero-trust-note::before {
    content: none !important;
  }

  body:not(.admin-body) .hero-trust-note svg {
    width: 18px !important;
    height: 18px !important;
    flex: 0 0 18px !important;
    color: #106437 !important;
  }

  body:not(.admin-body) .hero-trust-note span {
    min-width: 0 !important;
  }
}

@media (max-width: 380px) {
  body:not(.admin-body) .hero-content {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  body:not(.admin-body) .hero-title {
    font-size: 1.86rem !important;
  }

  body:not(.admin-body) .hero-actions .btn,
  body:not(.admin-body) .hero-actions a {
    font-size: 0.68rem !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
}
