/* ==========================================================================
   OeDS - Oesterreichischer Dienstleistungsservice
   Main Stylesheet
   Professional Cleaning & Clearance Services - Austria

   Table of Contents:
   1.  CSS Custom Properties (Design Tokens)
   2.  Base / Reset
   3.  Typography
   4.  Utility Classes
   5.  Buttons
   6.  Header / Navigation
   7.  Mobile Navigation
   8.  Hero Section
   9.  Trust Bar
   10. Location Bar
   11. Section Layout
   12. Service Category Cards
   13. Process Section
   14. Why Us Section
   15. Testimonials
   16. Top Services Grid
   17. CTA Banner
   18. Blog Teasers
   19. Contact Form
   20. FAQ Section
   21. Breadcrumb
   22. Pre-Footer CTA
   23. Footer
   24. WhatsApp Float
   25. Mobile Sticky Bar
   26. Cookie Banner
   27. Animations
   28. Responsive Overrides
   29. Subpage Utility: section-py
   30. Service Hero (Detail Pages)
   31. Service Content (Detail Pages)
   32. Service Checklist
   33. Service Process (3-Step)
   34. Service Locations
   35. Service Sidebar
   36. Service Reviews
   37. Category Hero
   38. Category Services Grid
   39. Category Why Us
   40. Category Locations
   41. Category CTA
   42. Blog Post
   43. Legal Pages
   44. Contact Page
   45. 404 Error Page
   46. Blog Pagination
   47. Blog Related Posts
   ========================================================================== */


/* ==========================================================================
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ========================================================================== */

:root {
  /* ---- Brand Colors ---- */
  --oeds-red:             #CC1321;
  --oeds-red-dark:        #a50f1a;
  --oeds-red-light:       #E8323F;
  --oeds-red-rgb:         204, 19, 33;

  /* ---- Neutral Colors ---- */
  --oeds-bg:              #F8F7F5;
  --oeds-white:           #FFFFFF;
  --oeds-black:           #000000;
  --oeds-footer-bg:       #242526;
  --oeds-footer-bg-rgb:   36, 37, 38;
  --footer-text:          rgba(255, 255, 255, 0.88);
  --footer-text-muted:    rgba(255, 255, 255, 0.65);
  --footer-link:          rgba(255, 255, 255, 0.82);
  --footer-link-hover:    var(--oeds-red-light);
  --footer-border:        rgba(255, 255, 255, 0.12);
  --footer-card-bg:       rgba(255, 255, 255, 0.05);
  --footer-card-border:   rgba(255, 255, 255, 0.08);
  --oeds-dark:            #1a1a1a;
  --oeds-text:            #2D2D2D;
  --oeds-text-dark:       #333333;
  --oeds-text-muted:      #787878;
  --oeds-border:          #e5e5e5;
  --oeds-border-light:    #e5e5e5;
  --oeds-gray-100:        #F8F9FA;
  --oeds-gray-200:        #EEEEEE;
  --oeds-gray-300:        #DDDDDD;

  /* ---- Accent Colors ---- */
  --oeds-whatsapp:        #25D366;
  --oeds-whatsapp-dark:   #1EBE57;
  --oeds-star:            #f59e0b;
  --oeds-success:         #10b981;
  --oeds-warning:         #f59e0b;
  --oeds-error:           #EF4444;
  --oeds-info:            #17A2B8;

  /* ---- Typography ---- */
  --font-body:            'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display:         'Playfair Display', Georgia, serif;
  --font-size-base:       1rem;
  --font-size-sm:         0.875rem;
  --font-size-xs:         0.8125rem;
  --font-size-lg:         1.125rem;
  --font-size-xl:         1.25rem;
  --line-height-base:     1.6;
  --line-height-tight:    1.15;
  --line-height-snug:     1.35;

  /* ---- Font Weights ---- */
  --fw-regular:           400;
  --fw-medium:            500;
  --fw-semibold:          600;
  --fw-bold:              700;

  /* ---- Spacing ---- */
  --section-py:           5rem;
  --section-py-mobile:    3rem;
  --header-height:        76px;
  --header-height-mobile: 64px;

  /* ---- Layout ---- */
  --container-max:        1200px;
  --border-radius:        0.5rem;
  --border-radius-sm:     0.375rem;
  --border-radius-lg:     0.75rem;
  --border-radius-xl:     1rem;
  --border-radius-pill:   50rem;

  /* ---- Shadows (warmer tone) ---- */
  --shadow-xs:            0 1px 2px rgba(20, 20, 40, 0.05);
  --shadow-sm:            0 2px 4px rgba(20, 20, 40, 0.06);
  --shadow-md:            0 4px 12px rgba(20, 20, 40, 0.08);
  --shadow-lg:            0 8px 24px rgba(20, 20, 40, 0.10);
  --shadow-xl:            0 12px 40px rgba(20, 20, 40, 0.12);
  --shadow-header:        0 2px 10px rgba(20, 20, 40, 0.08);
  --shadow-card:          0 2px 16px rgba(20, 20, 40, 0.07);
  --shadow-card-hover:    0 8px 32px rgba(20, 20, 40, 0.12);

  /* ---- Icon Sizes ---- */
  --icon-sm:              1.25rem;    /* 20px - inline, small UI */
  --icon-md:              1.75rem;    /* 28px - trust-bar, cards */
  --icon-lg:              2.25rem;    /* 36px - process steps */
  --icon-xl:              3.5rem;     /* 56px - icon banners */

  /* ---- Responsive Typography ---- */
  --fs-display:           clamp(2rem, 4vw, 3.25rem);      /* Hero H1 */
  --fs-section:           clamp(1.5rem, 3vw, 2.25rem);    /* Section H2 */
  --fs-card-title:        clamp(1.125rem, 2vw, 1.5rem);   /* Card H3 */

  /* ---- Transitions ---- */
  --transition-fast:      150ms ease;
  --transition-base:      250ms ease;
  --transition-slow:      400ms ease;
  --transition-bounce:    400ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* ---- Z-Index Scale ---- */
  --z-dropdown:           1000;
  --z-sticky:             1020;
  --z-fixed:              1030;
  --z-offcanvas:          1045;
  --z-modal:              1055;
  --z-whatsapp:           1060;
  --z-mobile-bar:         1070;
  --z-cookie:             1080;
}


/* ==========================================================================
   2. BASE / RESET
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-height) + 1rem);
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  font-weight: var(--fw-regular);
  line-height: var(--line-height-base);
  color: var(--oeds-text);
  background-color: var(--oeds-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  padding-top: var(--header-height-mobile);
}

/* Override Bootstrap container max-width */
.container,
.container-lg,
.container-xl,
.container-xxl {
  max-width: var(--container-max);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--oeds-red);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--oeds-red-dark);
}

::selection {
  background-color: var(--oeds-red);
  color: var(--oeds-white);
}

:focus-visible {
  outline: 2px solid var(--oeds-red);
  outline-offset: 2px;
}

/* Alpine.js cloak */
[x-cloak] {
  display: none !important;
}


/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  color: var(--oeds-dark);
  line-height: var(--line-height-snug);
  margin-bottom: 0.5em;
}

h1, .h1 {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: var(--fw-bold);
  line-height: var(--line-height-tight);
}

h2, .h2 {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  font-weight: var(--fw-bold);
}

h3, .h3 {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  font-weight: var(--fw-semibold);
}

h4, .h4 { font-size: 1.25rem; font-weight: var(--fw-semibold); }
h5, .h5 { font-size: 1.125rem; font-weight: var(--fw-semibold); }
h6, .h6 { font-size: 1rem; font-weight: var(--fw-semibold); }

p {
  margin-bottom: 1rem;
  color: var(--oeds-text);
}

.lead {
  font-size: var(--font-size-lg);
  font-weight: var(--fw-regular);
  line-height: var(--line-height-base);
  color: var(--oeds-text);
}

small, .small {
  font-size: var(--font-size-sm);
}


/* ==========================================================================
   4. UTILITY CLASSES
   ========================================================================== */

.text-primary-red {
  color: var(--oeds-red) !important;
}

.bg-light {
  background-color: var(--oeds-gray-100) !important;
}

.section-padding {
  padding-top: var(--section-py-mobile);
  padding-bottom: var(--section-py-mobile);
}

.section-header {
  margin-bottom: 2.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--fs-section);
  font-weight: var(--fw-bold);
  letter-spacing: 0;
  color: var(--oeds-dark);
  line-height: var(--line-height-tight);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: var(--font-size-lg);
  color: var(--oeds-text);
  max-width: 640px;
  margin-bottom: 0;
}

/* When section-header is centered, center the subtitle */
.section-header.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* When section-header is NOT centered (left-aligned), constrain width */
.section-header:not(.text-center) .section-subtitle {
  max-width: 600px;
}


/* ==========================================================================
   5. BUTTONS
   ========================================================================== */

/* ---- Primary Red Button ---- */
.btn-oeds {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  font-weight: var(--fw-semibold);
  color: var(--oeds-white);
  background-color: var(--oeds-red);
  border: 2px solid var(--oeds-red);
  border-radius: var(--border-radius);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  line-height: 1.5;
}

.btn-oeds:hover,
.btn-oeds:focus-visible {
  background-color: var(--oeds-red-dark);
  border-color: var(--oeds-red-dark);
  color: var(--oeds-white);
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(var(--oeds-red-rgb), 0.35);
}

.btn-oeds:active {
  transform: scale(1);
  box-shadow: none;
}

/* ---- Outline Red Button ---- */
.btn-oeds-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  font-weight: var(--fw-semibold);
  color: var(--oeds-red);
  background-color: transparent;
  border: 2px solid var(--oeds-red);
  border-radius: var(--border-radius);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  line-height: 1.5;
}

.btn-oeds-outline:hover,
.btn-oeds-outline:focus-visible {
  background-color: var(--oeds-red);
  color: var(--oeds-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(var(--oeds-red-rgb), 0.25);
}

.btn-oeds-outline:active {
  transform: translateY(0);
}

/* ---- Call Button ---- */
.btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  font-weight: var(--fw-semibold);
  color: var(--oeds-dark);
  background-color: transparent;
  border: 2px solid var(--oeds-border);
  border-radius: var(--border-radius);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  line-height: 1.5;
}

.btn-call:hover,
.btn-call:focus-visible {
  color: var(--oeds-red);
  border-color: var(--oeds-red);
  background-color: rgba(var(--oeds-red-rgb), 0.04);
}

.btn-call i,
.btn-call svg {
  color: var(--oeds-red);
}

/* ---- WhatsApp Button ---- */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  font-weight: var(--fw-semibold);
  color: var(--oeds-white);
  background-color: var(--oeds-whatsapp);
  border: 2px solid var(--oeds-whatsapp);
  border-radius: var(--border-radius);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  line-height: 1.5;
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  background-color: var(--oeds-whatsapp-dark);
  border-color: var(--oeds-whatsapp-dark);
  color: var(--oeds-white);
}

/* ---- Button Size Modifiers ---- */
.btn-oeds.btn-lg,
.btn-oeds-outline.btn-lg,
.btn-call.btn-lg,
.btn-whatsapp.btn-lg {
  padding: 0.75rem 2rem;
}

.btn-oeds.btn-sm,
.btn-oeds-outline.btn-sm,
.btn-call.btn-sm,
.btn-whatsapp.btn-sm {
  padding: 0.5rem 1rem;
}

/* Contact form submit uses Bootstrap .btn-primary - override to match brand */
.contact-form-short__submit.btn-primary {
  background-color: var(--oeds-red);
  border-color: var(--oeds-red);
}

.contact-form-short__submit.btn-primary:hover,
.contact-form-short__submit.btn-primary:focus-visible {
  background-color: var(--oeds-red-dark);
  border-color: var(--oeds-red-dark);
  box-shadow: 0 4px 12px rgba(var(--oeds-red-rgb), 0.35);
}

.contact-form-short__submit.btn-primary:disabled {
  background-color: var(--oeds-red);
  border-color: var(--oeds-red);
  opacity: 0.65;
}

/* Alpine.js-kompatible Flex-Utilities (ohne !important, damit x-show funktioniert) */
.form-alert-flex {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-spinner-flex {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}


/* ==========================================================================
   6. HEADER / NAVIGATION
   ========================================================================== */

/* ---- Main Header ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fixed);
  background-color: var(--oeds-white);
  transition: box-shadow var(--transition-base);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  box-shadow: var(--shadow-header);
  border-bottom-color: var(--oeds-border-light);
}

.site-header .navbar {
  padding-top: 0;
  padding-bottom: 0;
  min-height: var(--header-height-mobile);
}

/* ---- Logo ---- */
.site-header .navbar-brand {
  padding: 0;
  margin-right: 0;
  flex-shrink: 0;
}

.oeds-logo {
  height: 38px;
  width: auto;
}

/* ---- Desktop Nav Links ---- */
.site-header .navbar-nav .nav-link {
  font-size: var(--font-size-sm);
  font-weight: var(--fw-medium);
  color: var(--oeds-dark);
  padding: 0.5rem 0.6rem;
  transition: color var(--transition-fast);
  position: relative;
  white-space: nowrap;
}

.site-header .navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.875rem;
  right: 0.875rem;
  height: 2px;
  background-color: var(--oeds-red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition-base);
}

/* Bootstrap adds ::after for dropdown-toggle caret -- reset it */
.site-header .navbar-nav .nav-link.dropdown-toggle::after {
  position: static;
  transform: none;
  background: none;
  height: auto;
  left: auto;
  right: auto;
  bottom: auto;
  content: '';
  display: inline-block;
  margin-left: 0.25em;
  vertical-align: 0.2em;
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  transition: transform var(--transition-fast);
}

.site-header .navbar-nav .nav-link:hover::after,
.site-header .navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

/* Reset underline for dropdown toggles to avoid conflict */
.site-header .navbar-nav .nav-link.dropdown-toggle:hover::after,
.site-header .navbar-nav .nav-link.dropdown-toggle.active::after {
  transform: none;
}

.site-header .navbar-nav .nav-link:hover,
.site-header .navbar-nav .nav-link:focus-visible,
.site-header .navbar-nav .nav-link.active {
  color: var(--oeds-red);
}

/* ---- Dropdown Menus ---- */
.oeds-dropdown {
  position: relative;
}

.oeds-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background-color: var(--oeds-white);
  border: 1px solid var(--oeds-border-light);
  border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 0;
  z-index: var(--z-dropdown);
  display: none;
}

/* Alpine.js shows/hides via x-show, so when visible: */
.oeds-dropdown-menu[style*="display: block"],
.oeds-dropdown-menu:not([style*="display: none"]):not([x-cloak]) {
  display: block;
}

.dropdown-menu-inner {
  padding: 0.75rem 0;
}

.dropdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 1.25rem 0.75rem;
  border-bottom: 1px solid var(--oeds-border-light);
  margin-bottom: 0.5rem;
}

.dropdown-header strong {
  font-size: var(--font-size-sm);
  font-weight: var(--fw-semibold);
  color: var(--oeds-dark);
  white-space: nowrap;
}

.dropdown-header-link {
  font-size: var(--font-size-xs);
  font-weight: var(--fw-medium);
  color: var(--oeds-red);
  white-space: nowrap;
}

.dropdown-header-link:hover {
  color: var(--oeds-red-dark);
  text-decoration: underline;
}

.oeds-dropdown-menu .dropdown-item {
  display: block;
  padding: 0.5rem 1.25rem;
  font-size: var(--font-size-sm);
  font-weight: var(--fw-regular);
  color: var(--oeds-text);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.oeds-dropdown-menu .dropdown-item:hover,
.oeds-dropdown-menu .dropdown-item:focus-visible {
  background-color: rgba(var(--oeds-red-rgb), 0.05);
  color: var(--oeds-red);
  padding-left: 1.5rem;
}

/* ---- Mega Dropdown ---- */
.oeds-mega-dropdown {
  left: 50%;
  transform: translateX(-50%);
}

.oeds-mega-dropdown .dropdown-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.oeds-mega-dropdown .dropdown-grid .dropdown-item {
  padding: 0.4375rem 1.25rem;
}

/* ---- Header CTA Buttons (Desktop) ---- */
.site-header .btn-call {
  padding: 0.5rem 1rem;
  font-size: var(--font-size-sm);
}

.site-header .btn-oeds {
  padding: 0.5rem 1rem;
  font-size: var(--font-size-sm);
}

/* ---- Navbar Toggler ---- */
.site-header .navbar-toggler {
  padding: 0.25rem 0.5rem;
  font-size: 1.25rem;
  border: none;
  box-shadow: none;
}

.site-header .navbar-toggler:focus {
  box-shadow: none;
}


/* ==========================================================================
   7. MOBILE NAVIGATION
   ========================================================================== */

.oeds-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: var(--z-offcanvas);
  background-color: rgba(20, 20, 40, 0.5);
  backdrop-filter: blur(4px);
}

.oeds-mobile-menu-inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 360px;
  background-color: var(--oeds-footer-bg);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.oeds-mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.oeds-mobile-menu-header img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
}

.oeds-mobile-menu-header .btn-close-white {
  filter: invert(1) grayscale(100%) brightness(200%);
  opacity: 0.8;
}

.oeds-mobile-menu-header .btn-close-white:hover {
  opacity: 1;
}

/* ---- Mobile Nav List ---- */
.oeds-mobile-nav {
  flex: 1;
  padding: 0.5rem 0;
  overflow-y: auto;
}

.oeds-mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.oeds-mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.875rem 1.25rem;
  font-size: 1.0625rem;
  font-weight: var(--fw-medium);
  color: var(--oeds-white);
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: left;
}

.oeds-mobile-link:hover,
.oeds-mobile-link.active {
  color: var(--oeds-red-light);
  background-color: rgba(255, 255, 255, 0.04);
}

.oeds-mobile-toggle i {
  font-size: 0.875rem;
  transition: transform var(--transition-fast);
  opacity: 0.7;
}

/* ---- Mobile Sub Navigation ---- */
.oeds-mobile-sub {
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: rgba(0, 0, 0, 0.15);
}

.oeds-mobile-sublink {
  display: block;
  padding: 0.625rem 1.25rem 0.625rem 2rem;
  font-size: var(--font-size-sm);
  font-weight: var(--fw-regular);
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: all var(--transition-fast);
}

.oeds-mobile-sublink:hover {
  color: var(--oeds-white);
  padding-left: 2.25rem;
}

.oeds-mobile-sublink strong {
  font-weight: var(--fw-semibold);
  color: var(--oeds-white);
}

/* ---- Mobile CTA Buttons ---- */
.oeds-mobile-cta {
  padding: 1.25rem;
  padding-bottom: calc(1.25rem + 60px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.oeds-mobile-cta .btn {
  font-size: var(--font-size-base);
}

.oeds-mobile-cta .btn-call {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  background-color: transparent;
}

.oeds-mobile-cta .btn-call i {
  color: #fff;
}

.oeds-mobile-cta .btn-call:hover,
.oeds-mobile-cta .btn-call:focus-visible {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}


/* ==========================================================================
   8. HERO SECTION
   ========================================================================== */

.hero-section {
  position: relative;
  background: linear-gradient(135deg, #f3f1ee 0%, #f7f6f3 50%, #eef2ee 100%);
  padding: 2.5rem 0 var(--section-py-mobile);
  overflow: hidden;
}

/* Subtle decorative radial gradient -- reduced opacity for less AI feel */
.hero-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--oeds-red-rgb), 0.02) 0%, transparent 70%);
  pointer-events: none;
}

/* ---- Hero Title ---- */
.hero-title {
  font-family: var(--font-display);
  font-size: var(--fs-display);
  font-weight: var(--fw-bold);
  letter-spacing: 0;
  color: var(--oeds-dark);
  line-height: var(--line-height-tight);
  margin-bottom: 1rem;
}

/* ---- Hero Subtitle ---- */
.hero-subtitle {
  font-size: var(--font-size-lg);
  color: var(--oeds-text);
  line-height: var(--line-height-base);
  margin-bottom: 1.5rem;
  max-width: 520px;
}

/* ---- Hero CTA Buttons ---- */
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 0;
}

.hero-cta .btn {
  white-space: nowrap;
}

/* ---- Hero Trust Badge ---- */
.hero-trust {
  display: flex;
  align-items: center;
}

.hero-trust__item {
  font-size: var(--font-size-sm);
  color: var(--oeds-text);
}

.hero-trust__stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

.hero-trust__stars svg {
  flex-shrink: 0;
}

/* ---- Hero Image Grid ---- */
.hero-images__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.hero-images__col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-images__col--offset {
  margin-top: 2.5rem;
}

.hero-img {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.hero-img:hover {
  transform: scale(1.03);
}

/* ---------- Page Hero (Kontakt, Über uns, FAQ) ---------- */
.page-hero {
    background: linear-gradient(135deg, #f3f1ee 0%, #f7f6f3 50%, #eef2ee 100%);
    padding: 2rem 0 2.5rem;
    position: relative;
    border-bottom: 1px solid var(--oeds-border-light);
}
.page-hero__content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.page-hero__title {
    font-family: var(--font-display);
    font-size: var(--fs-display);
    font-weight: var(--fw-bold);
    line-height: var(--line-height-tight);
    margin-bottom: 0.75rem;
}
.page-hero__subtitle {
    font-size: var(--font-size-lg);
    color: var(--oeds-text-muted);
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .page-hero {
        padding: 2.5rem 0 3.5rem;
    }
}


/* ==========================================================================
   9. TRUST BAR
   ========================================================================== */

.trust-bar {
  background-color: var(--oeds-footer-bg);
  color: var(--oeds-white);
  padding: 1.25rem 0;
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 0.5rem;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-bar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.trust-bar__icon svg {
  width: var(--icon-sm);
  height: var(--icon-sm);
  color: var(--oeds-white);
  stroke: var(--oeds-white);
  opacity: 0.9;
}

.trust-bar__content {
  display: flex;
  flex-direction: column;
}

.trust-bar__label {
  font-size: var(--font-size-sm);
  font-weight: var(--fw-semibold);
  color: var(--oeds-white);
  line-height: 1.2;
}

.trust-bar__desc {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.2;
}


/* ==========================================================================
   10. LOCATION BAR
   ========================================================================== */

.location-bar {
  background-color: var(--oeds-red);
  color: var(--oeds-white);
  padding: 1rem 0;
}

.location-bar__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.location-bar__info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.location-bar__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
}

.location-bar__icon svg {
  width: 32px;
  height: 32px;
}

.location-bar__text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.location-bar__name {
  font-size: var(--font-size-base);
  font-weight: var(--fw-semibold);
  color: var(--oeds-white);
}

.location-bar__address {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.85);
}

.location-bar__regions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.location-bar__label {
  font-size: var(--font-size-sm);
  font-weight: var(--fw-semibold);
  color: rgba(255, 255, 255, 0.9);
}

.location-bar__list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.location-bar__region {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.3125rem 0.875rem;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius-pill);
  font-size: var(--font-size-sm);
  font-weight: var(--fw-medium);
  color: var(--oeds-white);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.location-bar__region:hover {
  background-color: rgba(255, 255, 255, 0.25);
  color: var(--oeds-white);
}

.location-bar__region svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}


/* ==========================================================================
   10b. AUSTRIA MAP / EINSATZGEBIETE
   ========================================================================== */

/* ---- Map Container ---- */
.austria-map {
  max-width: 520px;
  margin: 0 auto;
}

.austria-map svg {
  width: 100%;
  height: auto;
}

/* ---- State Colors ---- */
.austria-map svg path {
  transition: fill var(--transition-base), opacity var(--transition-base);
  cursor: default;
}

/* Active service areas */
.austria-map svg #salzburg,
.austria-map svg #steiermark,
.austria-map svg #wien {
  fill: var(--oeds-red);
  opacity: 0.85;
}

/* On-request areas */
.austria-map svg #oberoesterreich,
.austria-map svg #niederoesterreich {
  fill: var(--oeds-red);
  opacity: 0.4;
}

/* Inactive areas */
.austria-map svg #vorarlberg,
.austria-map svg #tirol,
.austria-map svg #kaernten,
.austria-map svg #burgenland {
  fill: #d5d5d5;
  opacity: 0.7;
}

/* Hover effects on active/request areas */
.austria-map svg #salzburg:hover,
.austria-map svg #steiermark:hover,
.austria-map svg #wien:hover {
  opacity: 1;
}

.austria-map svg #oberoesterreich:hover,
.austria-map svg #niederoesterreich:hover {
  opacity: 0.6;
}

/* ---- Legend ---- */
.austria-map__legend {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
  font-size: var(--font-size-sm);
  color: var(--oeds-text-muted);
}

.austria-map__legend-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.austria-map__legend-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background-color: #d5d5d5;
}

.austria-map__legend-dot--active {
  background-color: var(--oeds-red);
}

/* ---- Einsatzgebiete List ---- */
.einsatzgebiete-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.einsatzgebiete-list__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background-color: var(--oeds-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-xs);
  text-decoration: none;
  color: var(--oeds-text);
  transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}

a.einsatzgebiete-list__item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.einsatzgebiete-list__item i {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.einsatzgebiete-list__item strong {
  display: block;
  font-weight: var(--fw-semibold);
  color: var(--oeds-dark);
  font-size: var(--font-size-base);
}

.einsatzgebiete-list__item span {
  font-size: var(--font-size-sm);
  color: var(--oeds-text-muted);
}

.einsatzgebiete-list__item--info {
  opacity: 0.7;
  cursor: default;
}


/* ==========================================================================
   11. SECTION LAYOUT
   ========================================================================== */

.services-overview,
.top-services-section,
.blog-teaser-section,
.why-us-section,
.contact-section {
  background-color: var(--oeds-white);
}

.process-section,
.testimonials-section {
  background-color: var(--oeds-gray-100);
}


/* ==========================================================================
   12. SERVICE CATEGORY CARDS
   ========================================================================== */

.service-category-card {
  background-color: var(--oeds-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.service-category-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.service-category-card__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.service-category-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.service-category-card:hover .service-category-card__img img {
  transform: scale(1.04);
}

.service-category-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.75rem;
}

.service-category-card__title {
  font-family: var(--font-display);
  font-size: var(--fs-card-title);
  letter-spacing: 0;
  color: var(--oeds-dark);
  margin-bottom: 0.75rem;
}

.service-category-card__text {
  font-size: var(--font-size-base);
  color: var(--oeds-text);
  margin-bottom: 1rem;
  line-height: var(--line-height-base);
}

/* ---- Tag Pills ---- */
.service-category-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0;
  align-content: flex-start;
}

.service-category-card__tags + .btn {
  margin-top: auto !important;
  min-height: 48px;
}

/* ---- Icon Banner (replaces image for cards without photos) ---- */
.service-category-card__icon-banner {
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  position: relative;
}

.service-category-card__icon-banner i {
  font-size: var(--icon-xl);
  color: #fff;
  opacity: 0.9;
}

.service-category-card__icon-banner .badge {
  font-size: 0.75rem;
  font-weight: var(--fw-semibold);
  padding: 0.35em 0.85em;
  border-radius: var(--border-radius-pill);
}

.service-category-card__icon-banner--social {
  background: linear-gradient(135deg, #e8556d 0%, #cc1321 100%);
}

.service-category-card__icon-banner--funeral {
  background: linear-gradient(135deg, #6b7280 0%, #374151 100%);
}

/* Push last .btn to bottom in any card body */
.service-category-card__body > .btn:last-child {
  margin-top: auto !important;
  min-height: 48px;
}

.bg-primary-red {
  background-color: var(--oeds-red) !important;
}

.tag {
  display: inline-block;
  padding: 0.3125rem 0.75rem;
  font-size: var(--font-size-xs);
  font-weight: var(--fw-medium);
  color: var(--oeds-red);
  background-color: rgba(var(--oeds-red-rgb), 0.08);
  border-radius: var(--border-radius-pill);
  text-decoration: none;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

a.tag:hover {
  background-color: var(--oeds-red);
  color: var(--oeds-white);
}

.tag--more {
  background-color: var(--oeds-gray-200);
  color: var(--oeds-text-muted);
  font-style: italic;
  cursor: default;
}


/* ==========================================================================
   13. PROCESS SECTION
   ========================================================================== */

.process-step {
  padding: 2rem 1.5rem;
}

.process-step__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid rgba(63, 63, 63, 0.2);
  box-shadow: 0 0 0 10px rgba(var(--oeds-red-rgb), 0.06);
  color: var(--oeds-red);
  margin-bottom: 1.25rem;
  margin-left: auto;
  margin-right: auto;
}

.process-step__icon svg {
  color: var(--oeds-red);
}

.process-step__number {
  position: absolute;
  top: -4px;
  right: -4px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--oeds-red);
  color: var(--oeds-white);
  font-size: var(--font-size-sm);
  font-weight: var(--fw-bold);
  box-shadow: 0 2px 6px rgba(var(--oeds-red-rgb), 0.3);
}

.process-step__title {
  font-size: 1.25rem;
  font-weight: var(--fw-semibold);
  color: var(--oeds-dark);
  margin-bottom: 0.5rem;
}

.process-step__text {
  font-size: var(--font-size-sm);
  color: var(--oeds-text);
  line-height: var(--line-height-base);
  margin-bottom: 0;
}


/* ==========================================================================
   14. WHY US SECTION
   ========================================================================== */

.why-us-image {
  position: relative;
}

.why-us-image img {
  box-shadow: var(--shadow-lg);
}

/* ---- Checklist ---- */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist li {
  position: relative;
  padding: 0.75rem 0 0.75rem 2rem;
  font-size: var(--font-size-base);
  color: var(--oeds-text);
  border-bottom: 1px solid var(--oeds-border-light);
  line-height: var(--line-height-base);
}

.checklist li:last-child {
  border-bottom: none;
}

.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--oeds-success);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath d='M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
  background-size: 12px 12px;
  background-position: center;
  background-repeat: no-repeat;
}

.checklist li strong {
  font-weight: var(--fw-semibold);
  color: var(--oeds-dark);
}


/* ==========================================================================
   15. TESTIMONIALS
   ========================================================================== */

.testimonial-card {
  position: relative;
  background-color: var(--oeds-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-card);
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition-base);
}

/* ---- Google Badge (top-right) ---- */
.testimonial-card__google {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  opacity: 0.5;
  transition: opacity var(--transition-base);
  cursor: default;
  line-height: 1;
}

.testimonial-card__google:hover {
  opacity: 1;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-card-hover);
}

/* ---- Featured Testimonial Card ---- */
.testimonial-card--featured {
  background-color: var(--oeds-red);
  color: var(--oeds-white);
  box-shadow: 0 4px 24px rgba(var(--oeds-red-rgb), 0.25);
}

.testimonial-card--featured:hover {
  box-shadow: 0 8px 36px rgba(var(--oeds-red-rgb), 0.3);
}

.testimonial-card--featured .testimonial-card__text {
  color: rgba(255, 255, 255, 0.95);
}

.testimonial-card--featured .testimonial-card__author {
  border-top-color: rgba(255, 255, 255, 0.2);
}

.testimonial-card--featured .testimonial-card__author strong {
  color: var(--oeds-white);
}

.testimonial-card--featured .testimonial-card__author span {
  color: rgba(255, 255, 255, 0.75);
}

.testimonial-card--featured .testimonial-card__google {
  opacity: 0.4;
}

.testimonial-card--featured .testimonial-card__google svg path {
  fill: #ffffff;
}

.testimonial-card--featured .testimonial-card__google:hover {
  opacity: 0.8;
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}

.testimonial-card__stars svg {
  flex-shrink: 0;
}

.testimonial-card__text {
  font-size: var(--font-size-base);
  color: var(--oeds-text);
  line-height: var(--line-height-base);
  font-style: italic;
  flex: 1;
  margin-bottom: 0.5rem;
}

.testimonial-card__text--clamped {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimonial-card__text-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.testimonial-card__more {
  background: none;
  border: none;
  padding: 0;
  color: var(--oeds-primary);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  align-self: flex-start;
}

.testimonial-card--featured .testimonial-card__more {
  color: rgba(255, 255, 255, 0.85);
}

.testimonial-card__more:hover {
  text-decoration: underline;
}

.testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  border-top: 1px solid var(--oeds-border-light);
  padding-top: 1rem;
}

.testimonial-card__author strong {
  font-size: var(--font-size-base);
  font-weight: var(--fw-semibold);
  color: var(--oeds-dark);
}

.testimonial-card__author span {
  font-size: var(--font-size-sm);
  color: var(--oeds-text-muted);
}

/* ---- Testimonials Carousel ---- */
.testimonials-carousel {
  position: relative;
  padding: 0 56px;
}

.testimonials-carousel__inner {
  overflow: hidden;
}

.testimonials-carousel__track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s ease;
}

.testimonials-carousel__slide {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 0;
}

.testimonials-carousel__slide .testimonial-card {
  height: 100%;
}

.testimonials-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--oeds-white);
  border: 2px solid var(--oeds-red);
  border-radius: 50%;
  color: var(--oeds-red);
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
  padding: 0;
}

.testimonials-carousel__btn:hover {
  background: var(--oeds-red);
  color: var(--oeds-white);
}

.testimonials-carousel__btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.testimonials-carousel__btn--prev {
  left: 0;
}

.testimonials-carousel__btn--next {
  right: 0;
}

@media (max-width: 991.98px) {
  .testimonials-carousel {
    padding: 0 48px;
  }

  .testimonials-carousel__slide {
    flex: 0 0 calc(50% - 0.75rem);
  }
}

@media (max-width: 575.98px) {
  .testimonials-carousel {
    padding: 0 42px;
  }

  .testimonials-carousel__slide {
    flex: 0 0 100%;
  }

  .testimonials-carousel__btn {
    width: 36px;
    height: 36px;
  }

  .testimonials-carousel__btn svg {
    width: 16px;
    height: 16px;
  }
}


/* ==========================================================================
   16. TOP SERVICES GRID
   ========================================================================== */

a.service-card {
  display: flex;
  flex-direction: column;
  background-color: var(--oeds-white);
  border: 1px solid var(--oeds-border-light);
  border-radius: var(--border-radius-lg);
  padding: 1.75rem;
  height: 100%;
  text-decoration: none;
  transition: all var(--transition-base);
}

a.service-card:hover {
  border-color: var(--oeds-red);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--border-radius-lg);
  background-color: rgba(var(--oeds-red-rgb), 0.08);
  color: var(--oeds-red);
  margin-bottom: 1.25rem;
  transition: all var(--transition-base);
}

a.service-card:hover .service-card__icon {
  background-color: var(--oeds-red);
  color: var(--oeds-white);
}

.service-card__title {
  font-size: 1.125rem;
  font-weight: var(--fw-semibold);
  color: var(--oeds-dark);
  margin-bottom: 0.5rem;
  transition: color var(--transition-fast);
}

a.service-card:hover .service-card__title {
  color: var(--oeds-red);
}

.service-card__text {
  font-size: var(--font-size-sm);
  color: var(--oeds-text);
  line-height: var(--line-height-base);
  flex: 1;
  margin-bottom: 1rem;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: var(--font-size-sm);
  font-weight: var(--fw-semibold);
  color: var(--oeds-red);
  transition: gap var(--transition-fast);
}

a.service-card:hover .service-card__link {
  gap: 0.625rem;
}

.service-card__link svg {
  transition: transform var(--transition-fast);
}

a.service-card:hover .service-card__link svg {
  transform: translateX(2px);
}


/* ==========================================================================
   17. CTA BANNER
   ========================================================================== */

.cta-banner {
  background: linear-gradient(135deg, var(--oeds-red) 0%, var(--oeds-red-dark) 100%);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

/* Decorative pseudo-elements removed for cleaner look */

.cta-banner__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.cta-banner__content {
  max-width: 720px;
}

.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);
  font-weight: var(--fw-bold);
  letter-spacing: 0;
  color: var(--oeds-white);
  line-height: var(--line-height-tight);
  margin-bottom: 0.75rem;
}

.cta-banner__text {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  line-height: var(--line-height-base);
}

.cta-banner__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.cta-banner__btn {
  font-weight: var(--fw-semibold);
  font-size: var(--font-size-lg);
  padding: 0.875rem 2.5rem;
  border-radius: var(--border-radius);
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.cta-banner__btn:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}


/* ==========================================================================
   18. BLOG TEASERS
   ========================================================================== */

.blog-card {
  background-color: var(--oeds-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.blog-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.blog-card__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card__img img {
  transform: scale(1.04);
}

.blog-card__category {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.75rem;
  font-size: var(--font-size-xs);
  font-weight: var(--fw-semibold);
  color: var(--oeds-white);
  background-color: var(--oeds-red);
  border-radius: var(--border-radius-pill);
  letter-spacing: 0.05em;
}

.blog-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card__title {
  font-size: 1.125rem;
  font-weight: var(--fw-semibold);
  color: var(--oeds-dark);
  margin-bottom: 0.5rem;
  line-height: var(--line-height-snug);
}

.blog-card__excerpt {
  font-size: var(--font-size-sm);
  color: var(--oeds-text);
  line-height: var(--line-height-base);
  flex: 1;
  margin-bottom: 1rem;
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: var(--font-size-sm);
  font-weight: var(--fw-semibold);
  color: var(--oeds-red);
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.blog-card:hover .blog-card__link {
  gap: 0.625rem;
  color: var(--oeds-red-dark);
}

.blog-card__link svg {
  transition: transform var(--transition-fast);
}

.blog-card:hover .blog-card__link svg {
  transform: translateX(2px);
}


/* ==========================================================================
   19. CONTACT FORM
   ========================================================================== */

.contact-section {
  background-color: var(--oeds-gray-100);
}

.contact-image img {
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

/* ---- Contact Form Short ---- */
.contact-form-short {
  background-color: var(--oeds-white);
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 2rem;
}

.contact-form-short__header {
  margin-bottom: 1.5rem;
}

.contact-form-short__title {
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  color: var(--oeds-dark);
  margin-bottom: 0.25rem;
}

.contact-form-short__subtitle {
  font-size: var(--font-size-sm);
  color: var(--oeds-text-muted);
  margin-bottom: 0;
}

/* ---- Form Inputs ---- */
.contact-form-short .form-label {
  font-size: var(--font-size-sm);
  font-weight: var(--fw-medium);
  color: var(--oeds-dark);
  margin-bottom: 0.375rem;
}

.contact-form-short .form-control {
  padding: 0.625rem 0.875rem;
  font-size: var(--font-size-base);
  border: 1px solid var(--oeds-border);
  border-radius: var(--border-radius);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-form-short .form-control:focus {
  border-color: var(--oeds-red);
  box-shadow: 0 0 0 3px rgba(var(--oeds-red-rgb), 0.15);
}

.contact-form-short .form-control.is-invalid {
  border-color: var(--oeds-error);
}

.contact-form-short .form-control.is-invalid:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

/* ---- Toggle Button (Message expand) ---- */
.contact-form-short__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: none;
  border: none;
  padding: 0;
  font-size: var(--font-size-sm);
  font-weight: var(--fw-medium);
  color: var(--oeds-red);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.contact-form-short__toggle:hover {
  color: var(--oeds-red-dark);
}

.contact-form-short__toggle svg {
  transition: transform var(--transition-fast);
}

.contact-form-short__toggle svg.rotate-90 {
  transform: rotate(90deg);
}

/* ---- Privacy Note ---- */
.contact-form-short__privacy {
  font-size: var(--font-size-xs);
  color: var(--oeds-text-muted);
  margin-bottom: 1rem;
}

.contact-form-short__privacy a {
  color: var(--oeds-red);
  text-decoration: underline;
}

/* ---- Trust Badge under Submit ---- */
.contact-form-short__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  margin-top: 0.75rem;
  font-size: var(--font-size-xs);
  color: var(--oeds-text-muted);
}

.contact-form-short__trust svg {
  color: var(--oeds-success);
  flex-shrink: 0;
}

/* ---- Success / Error Messages ---- */
.contact-form-short__success {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.25rem;
  background-color: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: var(--border-radius);
  color: #065f46;
  margin-bottom: 1rem;
}

.contact-form-short__success svg {
  color: var(--oeds-success);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-form-short__success strong {
  display: block;
  margin-bottom: 0.25rem;
}

.contact-form-short__error {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.25rem;
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--border-radius);
  color: #991b1b;
  margin-bottom: 1rem;
}

.contact-form-short__error svg {
  color: var(--oeds-error);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-form-short__error strong {
  display: block;
  margin-bottom: 0.25rem;
}


/* ==========================================================================
   20. FAQ SECTION
   ========================================================================== */

.faq-section {
  padding: var(--section-py-mobile) 0;
}

.faq-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);
  font-weight: var(--fw-bold);
  letter-spacing: 0;
  color: var(--oeds-dark);
  margin-bottom: 2rem;
  text-align: center;
}

.faq-section__accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-section__item {
  border: 1px solid var(--oeds-border-light);
  border-radius: var(--border-radius) !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-section__item .accordion-button {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  font-weight: var(--fw-semibold);
  color: var(--oeds-dark);
  background-color: var(--oeds-white);
  padding: 1rem 1.25rem;
  box-shadow: none;
}

.faq-section__item .accordion-button:not(.collapsed) {
  background-color: rgba(var(--oeds-red-rgb), 0.04);
  color: var(--oeds-red);
  box-shadow: none;
}

.faq-section__item .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23CC1321' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  width: 1.125rem;
  height: 1.125rem;
}

.faq-section__answer {
  font-size: var(--font-size-base);
  color: var(--oeds-text);
  line-height: var(--line-height-base);
}

.faq-section__answer p:last-child {
  margin-bottom: 0;
}


/* ==========================================================================
   20a. STATS SECTION (Zahlen / Statistiken)
   ========================================================================== */

.stats-section {
  padding: var(--section-py-mobile) 0;
}

.stats-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 1.5rem 1rem;
}

.stats-card__number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw + 0.5rem, 2.75rem);
  font-weight: var(--fw-bold);
  color: var(--oeds-red);
  line-height: 1.1;
}

.stats-card__label {
  font-size: var(--font-size-base);
  font-weight: var(--fw-medium);
  color: var(--oeds-text-muted);
}


/* ==========================================================================
   20b. BEFORE/AFTER SECTION (Vorher / Nachher)
   ========================================================================== */

.before-after-card {
  background-color: var(--oeds-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  height: 100%;
}

.before-after-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}

.before-after-card__images {
  position: relative;
}

.before-after-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  background-color: var(--oeds-gray-100);
  color: var(--oeds-text-muted);
  font-size: var(--font-size-sm);
  font-weight: var(--fw-medium);
  border-bottom: 1px solid var(--oeds-border-light);
}

.before-after-card__comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background-color: var(--oeds-white);
}

.before-after-card__side {
  position: relative;
  overflow: hidden;
}

.before-after-card__side img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.before-after-card__label {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  background-color: rgba(0, 0, 0, 0.6);
  color: var(--oeds-white);
  font-size: 0.6875rem;
  font-weight: var(--fw-semibold);
  padding: 0.2rem 0.5rem;
  border-radius: var(--border-radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.before-after-card__label--after {
  background-color: var(--oeds-primary);
}

.before-after-card__body {
  padding: 1.25rem;
}

.before-after-card__title {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: var(--fw-semibold);
  color: var(--oeds-dark);
  margin-bottom: 0.5rem;
}

.before-after-card__text {
  font-size: var(--font-size-sm);
  color: var(--oeds-text-muted);
  margin-bottom: 0;
  line-height: var(--line-height-base);
}


/* ==========================================================================
   21. BREADCRUMB
   ========================================================================== */

.breadcrumb-nav {
  background-color: var(--oeds-gray-100);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--oeds-border-light);
}

.breadcrumb-nav__list {
  font-size: var(--font-size-sm);
}

.breadcrumb-nav__list .breadcrumb-item a {
  color: var(--oeds-text-muted);
  text-decoration: none;
}

.breadcrumb-nav__list .breadcrumb-item a:hover {
  color: var(--oeds-red);
  text-decoration: underline;
}

.breadcrumb-nav__list .breadcrumb-item.active {
  color: var(--oeds-dark);
  font-weight: var(--fw-medium);
}

.breadcrumb-nav__list .breadcrumb-item + .breadcrumb-item::before {
  color: var(--oeds-text-muted);
}


/* ==========================================================================
   22. PRE-FOOTER CTA
   ========================================================================== */

.cta-prefooter {
  background: linear-gradient(135deg, var(--oeds-red) 0%, #8b0a13 100%);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

/* Decorative pseudo-element removed for cleaner look */

.cta-prefooter__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.cta-prefooter__text {
  max-width: 720px;
}

.cta-prefooter__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);
  font-weight: var(--fw-bold);
  letter-spacing: 0;
  color: var(--oeds-white);
  line-height: var(--line-height-tight);
  margin-bottom: 0.5rem;
}

.cta-prefooter__subtitle {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
  line-height: var(--line-height-base);
}

.cta-prefooter__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.cta-prefooter__cta {
  font-weight: var(--fw-semibold);
  font-size: var(--font-size-lg);
  padding: 0.875rem 2.5rem;
  border-radius: var(--border-radius);
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.cta-prefooter__cta:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}



/* ==========================================================================
   23. FOOTER
   ========================================================================== */

.site-footer {
  background-color: var(--oeds-footer-bg);
  background-image: radial-gradient(circle at 10% -20%, rgba(var(--oeds-red-rgb), 0.22) 0%, rgba(var(--oeds-red-rgb), 0) 46%);
  color: var(--footer-text);
  font-size: var(--font-size-sm);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0) 100%);
}

.site-footer__decor {
  position: absolute;
  right: -120px;
  bottom: 15px;
  width: min(56vw, 700px);
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

/* ---- Footer Main (columns wrapper) ---- */
.site-footer__main {
  position: relative;
  z-index: 1;
  padding: 3.1rem 0 2.2rem;
}

.site-footer__logo {
  display: inline-block;
  margin-bottom: 0.8rem;
}

.site-footer__brand {
  max-width: 35rem;
}

.site-footer__tagline {
  font-family: var(--font-display);
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.18rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.97);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.site-footer__desc {
  max-width: 31rem;
  color: var(--footer-text-muted);
  line-height: 1.65;
  margin-bottom: 1.1rem;
}

.site-footer__heading {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.98);
  letter-spacing: 0.01em;
  margin-bottom: 0.75rem;
}

.site-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__links li {
  margin-bottom: 0.42rem;
}

.site-footer__links a {
  color: var(--footer-link);
  text-decoration: none;
  font-size: var(--font-size-sm);
  line-height: 1.5;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.site-footer__links a:hover {
  color: var(--footer-link-hover);
  transform: translateX(4px);
}

.site-footer__address {
  display: flex;
  flex-direction: column;
  font-style: normal;
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.6;
}

.site-footer__address a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.site-footer__address a:hover {
  color: var(--oeds-white);
}

.site-footer__logo-img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.site-footer__contact {
  background: var(--footer-card-bg);
  border: 1px solid var(--footer-card-border);
  border-radius: var(--border-radius-xl);
  padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.site-footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--font-size-sm);
}

.site-footer__contact-item i {
  color: rgba(232, 50, 63, 0.95);
  font-size: var(--icon-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0;
  width: 1rem;
  text-align: center;
}

.site-footer__contact-item a {
  color: rgba(255, 255, 255, 0.96);
  text-decoration: none;
}

.site-footer__contact-item a:hover {
  color: var(--oeds-red-light);
}

/* ---- Trust Badges ---- */
.site-footer__trust-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
}

.site-footer__trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--font-size-sm);
  color: var(--footer-text-muted);
  margin-bottom: 0.35rem;
}

.site-footer__trust-item i {
  color: var(--oeds-red-light);
  font-size: 0.875rem;
}

/* ---- Öffnungszeiten ---- */
.site-footer__hours {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--footer-border);
  font-size: var(--font-size-sm);
  color: var(--footer-text-muted);
}

.site-footer__hours strong {
  color: var(--footer-text);
  display: block;
  margin-bottom: 0.25rem;
}

/* ---- Heading Sub-Variant ---- */
.site-footer__heading--sub {
  font-size: 1rem;
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
}

/* ---- Alpine.js Nav Toggle ---- */
.site-footer__nav-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: inherit;
}

.site-footer__nav-toggle i {
  color: rgba(255, 255, 255, 0.5);
  transition: transform var(--transition-fast);
}

.rotate-180 {
  transform: rotate(180deg);
}

/* ---- Footer Bottom ---- */
.site-footer__bottom {
  padding: 1.1rem 0;
  border-top: 1px solid var(--footer-border);
  position: relative;
  z-index: 1;
}

/* ---- Footer Bottom Inner ---- */
.site-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.875rem 1.5rem;
}

.site-footer__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.375rem 0.875rem;
}

.site-footer__copyright {
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.66);
}

.site-footer__legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.site-footer__legal a {
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--font-size-xs);
  text-decoration: none;
  transition: color var(--transition-fast), text-decoration-color var(--transition-fast);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0);
  text-underline-offset: 3px;
}

.site-footer__legal a:hover {
  text-decoration-color: currentColor;
  color: var(--oeds-white);
}

.site-footer__credit {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

#expenia-logo {
  width: 60px;
  height: auto;
  opacity: 0.4;
  transition: opacity 0.2s ease-in-out;
}

.site-footer__credit:hover #expenia-logo,
.site-footer__credit:focus-visible #expenia-logo {
  opacity: 1;
}

.site-footer a:focus-visible {
  outline-color: var(--oeds-red-light);
}

@media (max-width: 991.98px) {
  .site-footer__decor {
    opacity: 0.03;
    width: 120%;
    right: -35%;
  }

  .site-footer__main {
    padding-top: 2.25rem;
    padding-bottom: 1.5rem;
  }

  .site-footer__main .row {
    row-gap: 1.35rem;
  }

  .site-footer__tagline {
    font-size: 1.05rem;
  }

  .site-footer__brand {
    padding-bottom: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-footer__contact-col {
    order: 2 !important;
  }

  .site-footer__contact {
    text-align: center;
  }

  .site-footer__contact .site-footer__address {
    align-items: center;
  }

  .site-footer__contact .site-footer__contact-item {
    justify-content: center;
    text-align: center;
  }

  .site-footer__nav-col {
    background-color: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--border-radius);
    padding: 0.6rem 0.75rem 0.55rem;
  }

  .site-footer__heading {
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
  }

  .site-footer__links a {
    display: block;
    padding: 0.5rem 0;
  }

  .site-footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 0.7rem;
  }

  .site-footer__meta {
    justify-content: flex-start;
  }

  .site-footer__legal {
    justify-content: flex-start;
  }

  .site-footer__credit {
    justify-content: flex-start;
  }

}

@media (max-width: 575.98px) {
  .site-footer__decor {
    display: none;
  }

  .site-footer__main {
    padding-top: 1.9rem;
    padding-bottom: 1.25rem;
  }

  .site-footer__logo-img {
    height: 42px;
  }

  .site-footer__tagline {
    font-size: 1rem;
    line-height: 1.35;
  }

  .site-footer__desc {
    font-size: 0.8125rem;
    line-height: 1.55;
    margin-bottom: 0;
  }

  .site-footer__links li {
    margin-bottom: 0.3rem;
  }

  .site-footer__nav-col {
    padding: 0.5rem 0.65rem;
  }

  .site-footer__contact-item {
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.8125rem;
  }

  .site-footer__contact-item i {
    margin-top: 0;
  }

  .site-footer__bottom {
    padding: 0.85rem 0;
  }

  .site-footer__bottom-inner {
    align-items: center;
    text-align: center;
  }

  .site-footer__meta,
  .site-footer__legal,
  .site-footer__credit {
    justify-content: center;
    width: 100%;
  }

  .site-footer__legal {
    gap: 0.35rem 0.8rem;
  }

  #expenia-logo {
    width: 54px;
  }
}



/* ==========================================================================
   24. WHATSAPP FLOAT
   ========================================================================== */

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: var(--z-whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--oeds-whatsapp);
  color: var(--oeds-white);
  text-decoration: none;
  box-shadow: var(--shadow-lg), 0 4px 16px rgba(37, 211, 102, 0.3);
  transition: all var(--transition-base);
}

.whatsapp-float:hover {
  background-color: var(--oeds-whatsapp-dark);
  transform: scale(1.08);
  box-shadow: var(--shadow-xl), 0 6px 24px rgba(37, 211, 102, 0.4);
  color: var(--oeds-white);
}

/* Pulse animation */
.whatsapp-float::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--oeds-whatsapp);
  animation: whatsapp-pulse 2s ease-in-out infinite;
}

@keyframes whatsapp-pulse {
  0%, 100% { opacity: 0; transform: scale(0.95); }
  50% { opacity: 0.5; transform: scale(1.08); }
}


/* ==========================================================================
   25. MOBILE STICKY BAR
   ========================================================================== */

.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-mobile-bar);
  display: flex;
  align-items: stretch;
  background-color: var(--oeds-white);
  border-top: 1px solid var(--oeds-border-light);
  box-shadow: 0 -4px 12px rgba(20, 20, 40, 0.08);
}

.mobile-sticky-bar__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.625rem 0.5rem;
  font-size: 0.6875rem;
  font-weight: var(--fw-medium);
  color: var(--oeds-text);
  text-decoration: none;
  transition: all var(--transition-fast);
  border-right: 1px solid var(--oeds-border-light);
}

.mobile-sticky-bar__item:last-child {
  border-right: none;
}

.mobile-sticky-bar__item:hover {
  color: var(--oeds-red);
  background-color: rgba(var(--oeds-red-rgb), 0.04);
}

.mobile-sticky-bar__item svg {
  flex-shrink: 0;
}

.mobile-sticky-bar__item--primary {
  background-color: var(--oeds-red);
  color: var(--oeds-white);
}

.mobile-sticky-bar__item--primary:hover {
  background-color: var(--oeds-red-dark);
  color: var(--oeds-white);
}

/* Add bottom padding to body on mobile for sticky bar */
@media (max-width: 991.98px) {
  body {
    padding-bottom: 56px;
  }

  /* Move WhatsApp float above sticky bar on mobile (hidden via d-lg-none anyway) */
  .whatsapp-float {
    bottom: 5rem;
  }
}


/* ==========================================================================
   26. COOKIE BANNER
   ========================================================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-cookie);
  background-color: var(--oeds-footer-bg);
  padding: 1rem 0;
  box-shadow: 0 -4px 12px rgba(20, 20, 40, 0.1);
}

.cookie-banner__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.cookie-banner__text {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.8);
}

.cookie-banner__text a {
  color: var(--oeds-white);
  text-decoration: underline;
}

.cookie-banner__btn {
  white-space: nowrap;
  font-weight: var(--fw-semibold);
}

/* Push cookie banner above mobile sticky bar */
@media (max-width: 991.98px) {
  .cookie-banner {
    bottom: 56px;
  }
}


/* ==========================================================================
   27a. DECORATIVE ELEMENTS
   ========================================================================== */

/* ---- Shared Decorative Base ---- */
.hero-decor,
.process-connector,
.process-decor-vacuum,
.cta-prefooter__bubbles {
  pointer-events: none;
  user-select: none;
}

/* ---- Hero Image Wrapper (positioning context) ---- */
.hero-images__wrapper {
  position: relative;
}

/* ---- Hero Stars (positioned on .hero-section) ---- */
.hero-decor--star-outline {
  position: absolute;
  top: 1rem;
  right: 10%;
  z-index: 2;
  opacity: 0.5;
  animation: hero-star-float 4s ease-in-out infinite;
}

.hero-decor--star-fill {
  position: absolute;
  bottom: 2rem;
  right: 5%;
  z-index: 2;
  opacity: 0.5;
  animation: hero-star-float 3.5s ease-in-out infinite 0.5s;
}

.hero-decor--star-small {
  position: absolute;
  top: 40%;
  right: 3%;
  z-index: 2;
  opacity: 0.5;
  animation: hero-star-float 3s ease-in-out infinite 1s;
}

/* Desktop: spread stars around hero images */
@media (min-width: 992px) {
  .hero-decor--star-outline {
    top: 2rem;
    right: auto;
    left: 52%;
  }

  .hero-decor--star-fill {
    bottom: 5rem;
    right: 2%;
  }

  .hero-decor--star-small {
    top: 35%;
    right: 0;
  }
}

@keyframes hero-star-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(10deg); }
}

/* ---- Hero Mop Illustrations (positioned on .hero-section) ---- */
.hero-decor--mop-left {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 180px;
  height: auto;
  opacity: 0.45;
}

.hero-decor--mop-right {
  position: absolute;
  top: 10px;
  right: 0;
  z-index: 1;
  width: 150px;
  height: auto;
  opacity: 0.45;
}

/* ---- Process Connector Lines ---- */
.process-steps {
  position: relative;
  isolation: isolate;
}

.process-connector {
  position: absolute;
  top: 28px;
  z-index: -1;
  height: auto;
  opacity: 0.5;
}

.process-connector--1 {
  left: 17%;
  width: 35%;
}

.process-connector--2 {
  right: 16%;
  left: auto;
  width: 32%;
}

/* ---- Vacuum Cleaner Illustration (positioned on .process-section) ---- */
.process-decor-vacuum {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 220px;
  height: auto;
  opacity: 0.5;
  z-index: 1;
}

.process-section {
  position: relative;
}

/* ---- CTA Multi-Bubble Patterns ---- */
.cta-prefooter__bubbles,
.cta-banner__bubbles {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1372px;
  height: auto;
  opacity: 0.35;
  z-index: 0;
}

/* ---- Hide decorative elements on mobile (stars stay visible) ---- */
@media (max-width: 767.98px) {
  .hero-decor--mop-left,
  .hero-decor--mop-right,
  .process-connector,
  .process-decor-vacuum,
  .cta-prefooter__bubbles,
  .cta-banner__bubbles {
    display: none !important;
  }
}


/* ==========================================================================
   27. ANIMATIONS
   ========================================================================== */

/* Fade In Up - triggered by IntersectionObserver in main.js */
.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.fade-in-up:nth-child(2) { transition-delay: 0.1s; }
.fade-in-up:nth-child(3) { transition-delay: 0.2s; }
.fade-in-up:nth-child(4) { transition-delay: 0.3s; }
.fade-in-up:nth-child(5) { transition-delay: 0.4s; }
.fade-in-up:nth-child(6) { transition-delay: 0.5s; }

/* Fade In - opacity only, no movement (for section headers) */
.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}

.fade-in.is-visible {
  opacity: 1;
}

/* Scale In - subtle scale + opacity (for testimonials) */
.scale-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger scale-in children */
.scale-in:nth-child(2) { transition-delay: 0.1s; }
.scale-in:nth-child(3) { transition-delay: 0.2s; }


/* ==========================================================================
   28. RESPONSIVE OVERRIDES
   ========================================================================== */

/* ---- Small screens (< 576px) ---- */
@media (max-width: 575.98px) {
  .hero-decor--star-outline { width: 36px; height: 36px; }
  .hero-decor--star-fill { width: 26px; height: 26px; }
  .hero-decor--star-small { width: 16px; height: 16px; }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .location-bar__info {
    flex-direction: column;
    text-align: center;
  }

  .location-bar__text {
    text-align: center;
  }

  .service-category-card__body {
    padding: 1.25rem;
  }

  .contact-form-short {
    padding: 1.5rem;
  }

  .cta-prefooter__cta {
    width: 100%;
    text-align: center;
  }
}

/* ---- Medium screens (>= 576px) ---- */
@media (min-width: 576px) {
  .hero-cta {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
  }

  .cookie-banner__inner {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
  }
}

/* ---- Medium screens (>= 768px) ---- */
@media (min-width: 768px) {
  .trust-bar {
    padding: 1.5rem 0;
  }

  .trust-bar__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }

  .trust-bar__item {
    gap: 0.75rem;
  }

  .trust-bar__icon {
    width: 48px;
    height: 48px;
  }

  .trust-bar__icon svg {
    width: var(--icon-md);
    height: var(--icon-md);
  }

  .trust-bar__label {
    font-size: var(--font-size-base);
    line-height: 1.3;
  }

  .trust-bar__desc {
    font-size: var(--font-size-xs);
    line-height: 1.3;
  }

  .location-bar__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .location-bar__regions {
    flex-direction: row;
    align-items: center;
  }

  .cta-banner__inner {
    flex-direction: row;
    align-items: center;
    text-align: left;
    justify-content: space-between;
    gap: 3rem;
  }

  .cta-banner__content {
    flex: 1;
  }

  .cta-banner__actions {
    flex-shrink: 0;
    margin-left: auto;
  }

  .cta-prefooter__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 3rem;
  }

  .cta-prefooter__text {
    flex: 1;
  }

  .cta-prefooter__actions {
    flex-shrink: 0;
    margin-left: auto;
  }
}

/* ---- Large screens (>= 992px) ---- */
@media (min-width: 992px) {
  .section-padding {
    padding-top: var(--section-py);
    padding-bottom: var(--section-py);
  }

  /* Varied section spacing */
  .hero-section {
    padding-bottom: 6rem;
  }

  .process-section {
    padding: 4rem 0;
  }

  .testimonials-section {
    padding: 4rem 0;
  }

  .blog-teaser-section {
    padding: 4.5rem 0;
  }

  .faq-section {
    padding: var(--section-py) 0;
  }

  .stats-section {
    padding: 4rem 0;
  }

  .hero-section {
    padding: 5rem 0;
    padding-bottom: 6rem;
  }

}

/* ---- XL screens (>= 1200px) - Desktop nav breakpoint ---- */
@media (min-width: 1200px) {
  body {
    padding-top: var(--header-height);
  }

  .site-header .navbar {
    min-height: var(--header-height);
  }

  html {
    scroll-padding-top: calc(var(--header-height) + 1rem);
  }

  .oeds-logo {
    height: 44px;
  }
}


/* ==========================================================================
   29. SUBPAGE UTILITY: section-py
   ========================================================================== */

.section-py {
  padding-top: var(--section-py-mobile);
  padding-bottom: var(--section-py-mobile);
}

@media (min-width: 992px) {
  .section-py {
    padding-top: var(--section-py);
    padding-bottom: var(--section-py);
  }
}


/* ==========================================================================
   30. SERVICE HERO (Detail Pages)
   ========================================================================== */

.service-hero {
  background: linear-gradient(135deg, #f3f1ee 0%, #f7f6f3 50%, #eef2ee 100%);
  padding: 2.5rem 0 var(--section-py-mobile);
}

.service-hero__title {
  font-family: var(--font-display);
  font-size: var(--fs-display);
  font-weight: var(--fw-bold);
  color: var(--oeds-dark);
  line-height: var(--line-height-tight);
  margin-bottom: 0.75rem;
}

.service-hero__subtitle {
  font-size: var(--font-size-lg);
  color: var(--oeds-text);
  line-height: var(--line-height-base);
  margin-bottom: 1.5rem;
  max-width: 560px;
}

.service-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.service-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.service-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: var(--font-size-sm);
  color: var(--oeds-text);
}

.service-hero__trust-item i {
  color: var(--oeds-star);
  font-size: 1rem;
}

.service-hero__trust-item strong {
  font-weight: var(--fw-semibold);
  color: var(--oeds-dark);
}

.service-hero__image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.service-hero__image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 3 / 2;
  background-color: var(--oeds-gray-100);
  border-radius: var(--border-radius-lg);
  border: 2px dashed var(--oeds-border);
}

@media (min-width: 992px) {
  .service-hero {
    padding: 3.5rem 0 4rem;
  }
}

@media (max-width: 575.98px) {
  .service-hero__actions {
    flex-direction: column;
  }

  .service-hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
}


/* ==========================================================================
   31. SERVICE CONTENT (Detail Pages)
   ========================================================================== */

.service-content__description {
  font-size: var(--font-size-base);
  line-height: 1.75;
  color: var(--oeds-text);
  max-width: 72ch;
}

.service-content__description h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.service-content__description h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.service-content__description p {
  margin-bottom: 1.125rem;
}

.service-content__description ul,
.service-content__description ol {
  margin-bottom: 1.125rem;
  padding-left: 1.5rem;
}

.service-content__description li {
  margin-bottom: 0.375rem;
}

.service-content__description blockquote {
  border-left: 4px solid var(--oeds-red);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  background-color: var(--oeds-gray-100);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  font-style: italic;
  color: var(--oeds-text);
}


/* ==========================================================================
   32. SERVICE CHECKLIST
   ========================================================================== */

.service-checklist__title {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
  font-weight: var(--fw-bold);
  color: var(--oeds-dark);
  margin-bottom: 1.25rem;
}

.service-checklist__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.625rem 0;
  font-size: var(--font-size-base);
  color: var(--oeds-text);
  line-height: var(--line-height-base);
  border-bottom: 1px solid var(--oeds-border-light);
}

.service-checklist__item:last-child {
  border-bottom: none;
}

.service-checklist__icon {
  color: var(--oeds-success);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}


/* ==========================================================================
   33. SERVICE PROCESS (3-Step)
   ========================================================================== */

.service-process__title {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
  font-weight: var(--fw-bold);
  color: var(--oeds-dark);
  margin-bottom: 1.5rem;
}

.service-process__step {
  text-align: center;
  padding: 1.5rem 1rem;
  background-color: var(--oeds-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.service-process__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--oeds-red);
  color: var(--oeds-white);
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  margin-bottom: 1rem;
}

.service-process__step-title {
  font-size: 1.125rem;
  font-weight: var(--fw-semibold);
  color: var(--oeds-dark);
  margin-bottom: 0.5rem;
}

.service-process__step-text {
  font-size: var(--font-size-sm);
  color: var(--oeds-text);
  line-height: var(--line-height-base);
  margin-bottom: 0;
}


/* ==========================================================================
   34. SERVICE LOCATIONS (Einsatzgebiete on Detail Page)
   ========================================================================== */

.service-locations__title {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
  font-weight: var(--fw-bold);
  color: var(--oeds-dark);
  margin-bottom: 0.5rem;
}

.service-locations__intro {
  color: var(--oeds-text);
  margin-bottom: 1.25rem;
}

.service-locations__card {
  text-align: center;
  padding: 1.5rem 1rem;
  background-color: var(--oeds-gray-100);
  border-radius: var(--border-radius);
  height: 100%;
}

.service-locations__icon {
  color: var(--oeds-red);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.service-locations__city {
  font-size: 1.125rem;
  font-weight: var(--fw-semibold);
  color: var(--oeds-dark);
  margin-bottom: 0.25rem;
}

.service-locations__text {
  font-size: var(--font-size-sm);
  color: var(--oeds-text-muted);
}


/* ==========================================================================
   35. SERVICE SIDEBAR
   ========================================================================== */

.service-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
}

@media (max-width: 991.98px) {
  .service-sidebar {
    position: static;
  }
}

/* ---- Related Services ---- */
.service-related {
  background-color: var(--oeds-white);
  border: 1px solid var(--oeds-border-light);
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
}

.service-related__title {
  font-size: 1.125rem;
  font-weight: var(--fw-semibold);
  color: var(--oeds-dark);
  margin-bottom: 1rem;
}

.service-related__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-related__item {
  border-bottom: 1px solid var(--oeds-border-light);
}

.service-related__item:last-child {
  border-bottom: none;
}

.service-related__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 0;
  font-size: var(--font-size-sm);
  font-weight: var(--fw-medium);
  color: var(--oeds-text);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.service-related__link:hover {
  color: var(--oeds-red);
}

.service-related__link i {
  color: var(--oeds-red);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ---- CTA Card (Sidebar) ---- */
.service-cta-card {
  background-color: var(--oeds-white);
  border: 1px solid var(--oeds-border-light);
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
  text-align: center;
}

.service-cta-card__title {
  font-size: 1.125rem;
  font-weight: var(--fw-bold);
  color: var(--oeds-dark);
  margin-bottom: 0.5rem;
}

.service-cta-card__text {
  font-size: var(--font-size-sm);
  color: var(--oeds-text);
  margin-bottom: 1rem;
}


/* ==========================================================================
   36. SERVICE REVIEWS (now uses testimonial-card components)
   ========================================================================== */


/* ==========================================================================
   37. CATEGORY HERO (Category Overview Pages)
   ========================================================================== */

.category-hero {
  position: relative;
  background-color: var(--oeds-dark);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 4rem 0;
  min-height: 540px;
  display: flex;
  align-items: center;
}

.category-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

.category-hero .container {
  position: relative;
  z-index: 2;
}

.category-hero__content {
  max-width: 720px;
}

.category-hero__title {
  font-family: var(--font-display);
  font-size: var(--fs-display);
  font-weight: var(--fw-bold);
  color: #fff;
  line-height: var(--line-height-tight);
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.category-hero__subtitle {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.9);
  line-height: var(--line-height-base);
  margin-bottom: 1.5rem;
  max-width: 600px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.category-hero .btn-call {
  background-color: #fff;
  color: var(--oeds-dark);
  border-color: #fff;
  font-weight: var(--fw-semibold);
}

.category-hero .btn-call:hover,
.category-hero .btn-call:focus-visible {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--oeds-red);
  border-color: #fff;
}

.category-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.category-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.category-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.category-hero__trust-item i {
  color: var(--oeds-star);
  font-size: 1rem;
}

.category-hero__trust-item strong {
  font-weight: var(--fw-semibold);
  color: #fff;
}

@media (min-width: 992px) {
  .category-hero {
    padding: 5rem 0 5.5rem;
    min-height: 484px;
  }
}

@media (max-width: 575.98px) {
  .category-hero__actions {
    flex-direction: column;
  }

  .category-hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
}


/* ==========================================================================
   38. CATEGORY SERVICES GRID
   ========================================================================== */

.category-services__title {
  font-family: var(--font-display);
  font-size: var(--fs-section);
  font-weight: var(--fw-bold);
  color: var(--oeds-dark);
  margin-bottom: 0.5rem;
}

.category-services__subtitle {
  font-size: var(--font-size-lg);
  color: var(--oeds-text);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- Category Service Card ---- */
.category-service-card {
  background-color: var(--oeds-white);
  border: 1px solid var(--oeds-border-light);
  border-radius: var(--border-radius-lg);
  padding: 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
}

.category-service-card:hover {
  border-color: var(--oeds-red);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.category-service-card--featured {
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  border-color: var(--oeds-red);
  border-width: 2px;
  background: linear-gradient(135deg, #fff 0%, rgba(var(--oeds-red-rgb), 0.03) 100%);
}

.category-service-card--featured .category-service-card__icon {
  width: 72px;
  height: 72px;
  font-size: 2rem;
  flex-shrink: 0;
  margin-bottom: 0;
}

.category-service-card--featured .category-service-card__title {
  font-size: 1.375rem;
}

.category-service-card--featured .category-service-card__description {
  font-size: var(--font-size-base);
  margin-bottom: 0.5rem;
}

@media (max-width: 575.98px) {
  .category-service-card--featured {
    flex-direction: column;
    align-items: flex-start;
  }

  .category-service-card--featured .category-service-card__icon {
    margin-bottom: 1rem;
  }
}

/* --- Bestattungsvorsorge Highlight Card --- */
.category-service-card--vorsorge {
  position: relative;
  border-color: var(--oeds-red);
  box-shadow: 0 4px 20px rgba(var(--oeds-red-rgb), 0.12);
}

.category-service-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--oeds-red);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25em 0.75em;
  border-radius: var(--border-radius-pill);
  line-height: 1.4;
}

.category-service-card__price {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--oeds-red);
  margin-bottom: 0.75rem;
}

.category-service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--border-radius-lg);
  background-color: rgba(var(--oeds-red-rgb), 0.08);
  color: var(--oeds-red);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  transition: all var(--transition-base);
}

.category-service-card:hover .category-service-card__icon {
  background-color: var(--oeds-red);
  color: var(--oeds-white);
}

.category-service-card__title {
  font-size: 1.125rem;
  font-weight: var(--fw-semibold);
  color: var(--oeds-dark);
  margin-bottom: 0.5rem;
}

.category-service-card__description {
  font-size: var(--font-size-sm);
  color: var(--oeds-text);
  line-height: var(--line-height-base);
  flex: 1;
  margin-bottom: 1rem;
}

.category-service-card__link {
  display: inline-flex;
  align-items: center;
  font-size: var(--font-size-sm);
  font-weight: var(--fw-semibold);
  color: var(--oeds-red);
  text-decoration: none;
  transition: gap var(--transition-fast);
  gap: 0.25rem;
  margin-top: auto;
}

.category-service-card__link:hover {
  color: var(--oeds-red-dark);
  gap: 0.5rem;
}


/* ==========================================================================
   39. CATEGORY WHY US
   ========================================================================== */

.category-why__card {
  background-color: var(--oeds-white);
  border-radius: var(--border-radius-lg);
  padding: 2rem 1.25rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.category-why__card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.category-why__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(var(--oeds-red-rgb), 0.08);
  color: var(--oeds-red);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.category-why__title {
  font-size: 1.125rem;
  font-weight: var(--fw-semibold);
  color: var(--oeds-dark);
  margin-bottom: 0.5rem;
}

.category-why__text {
  font-size: var(--font-size-sm);
  color: var(--oeds-text);
  line-height: var(--line-height-base);
}


/* ==========================================================================
   40. CATEGORY LOCATIONS
   ========================================================================== */

.category-locations__card {
  text-align: center;
  padding: 2rem 1.5rem;
  background-color: var(--oeds-white);
  border: 1px solid var(--oeds-border-light);
  border-radius: var(--border-radius-lg);
  height: 100%;
  transition: all var(--transition-base);
}

.category-locations__card:hover {
  border-color: var(--oeds-red);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.category-locations__icon {
  color: var(--oeds-red);
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.category-locations__city {
  font-size: 1.25rem;
  font-weight: var(--fw-semibold);
  color: var(--oeds-dark);
  margin-bottom: 0.25rem;
}

.category-locations__text {
  font-size: var(--font-size-sm);
  color: var(--oeds-text-muted);
  margin-bottom: 0.75rem;
}

.category-locations__link {
  display: inline-flex;
  align-items: center;
  font-size: var(--font-size-sm);
  font-weight: var(--fw-semibold);
  color: var(--oeds-red);
  text-decoration: none;
  transition: gap var(--transition-fast);
  gap: 0.25rem;
}

.category-locations__link:hover {
  color: var(--oeds-red-dark);
  gap: 0.5rem;
}


/* ==========================================================================
   41. CATEGORY CTA
   ========================================================================== */

.category-cta {
  padding: var(--section-py-mobile) 0;
}

.category-cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  font-weight: var(--fw-bold);
  color: var(--oeds-white);
  margin-bottom: 0.75rem;
}

.category-cta__subtitle {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.category-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

@media (min-width: 992px) {
  .category-cta {
    padding: var(--section-py) 0;
  }
}

@media (max-width: 575.98px) {
  .category-cta__actions {
    flex-direction: column;
    align-items: center;
  }

  .category-cta__actions .btn {
    width: 100%;
    justify-content: center;
  }
}


/* ==========================================================================
   42. BLOG POST (Single Article)
   ========================================================================== */

.blog-post__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);
  font-weight: var(--fw-bold);
  color: var(--oeds-dark);
  line-height: var(--line-height-tight);
  margin-bottom: 0.75rem;
}

.blog-post__meta {
  font-size: var(--font-size-sm);
  color: var(--oeds-text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.blog-post__image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

/* ---- Blog Content Typography ---- */
.blog-post__content {
  font-size: var(--font-size-base);
  line-height: 1.8;
  color: var(--oeds-text);
}

.blog-post__content h2 {
  font-size: clamp(1.375rem, 2vw + 0.5rem, 1.75rem);
  font-weight: var(--fw-bold);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--oeds-dark);
}

.blog-post__content h3 {
  font-size: clamp(1.125rem, 1.5vw + 0.5rem, 1.375rem);
  font-weight: var(--fw-semibold);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  color: var(--oeds-dark);
}

.blog-post__content p {
  margin-bottom: 1.25rem;
}

.blog-post__content ul,
.blog-post__content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.blog-post__content li {
  margin-bottom: 0.375rem;
  line-height: 1.7;
}

.blog-post__content blockquote {
  border-left: 4px solid var(--oeds-red);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background-color: var(--oeds-gray-100);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  font-style: italic;
  color: var(--oeds-text);
}

.blog-post__content blockquote p:last-child {
  margin-bottom: 0;
}

.blog-post__content img {
  border-radius: var(--border-radius);
  margin: 1.5rem 0;
}

.blog-post__content a {
  color: var(--oeds-red);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.blog-post__content a:hover {
  color: var(--oeds-red-dark);
}

.blog-post__footer {
  border-top-color: var(--oeds-border-light) !important;
}


/* ==========================================================================
   43. LEGAL PAGES (Impressum, Datenschutz, AGB)
   ========================================================================== */

.page-impressum .section-padding,
.page-datenschutz .section-padding {
  max-width: 100%;
}

.page-impressum .section-padding h1,
.page-datenschutz .section-padding h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);
  font-weight: var(--fw-bold);
  color: var(--oeds-dark);
}

.page-impressum .section-padding h2,
.page-datenschutz .section-padding h2 {
  color: var(--oeds-dark);
  margin-top: 1.5rem;
}

.page-impressum .section-padding p,
.page-datenschutz .section-padding p {
  line-height: 1.75;
  color: var(--oeds-text);
}

.page-impressum .section-padding ul,
.page-datenschutz .section-padding ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.page-impressum .section-padding li,
.page-datenschutz .section-padding li {
  margin-bottom: 0.375rem;
  line-height: 1.7;
}


/* ==========================================================================
   44. CONTACT PAGE
   ========================================================================== */

.contact-section .section-title {
  margin-bottom: 0.5rem;
}

.contact-section .card {
  border-radius: var(--border-radius-lg);
}


/* ==========================================================================
   45. 404 ERROR PAGE
   ========================================================================== */

.page-404 .section-py,
.page-404 .section-padding {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-404 .display-1 {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 10rem);
  line-height: 1;
  opacity: 0.9;
}


/* ==========================================================================
   PRINT STYLES
   ========================================================================== */

@media print {
  .site-header,
  .whatsapp-float,
  .mobile-sticky-bar,
  .cookie-banner,
  .cta-banner,
  .cta-prefooter {
    display: none !important;
  }

  body {
    padding-top: 0;
    padding-bottom: 0;
    background: white;
    color: black;
  }

  .hero-section {
    padding: 1rem 0;
    background: none;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: #666;
  }
}

/* ================================================================
   UX IMPROVEMENTS - Added for accessibility, cookie banner,
   carousel, and visual polish
   ================================================================ */

/* --- Skip Link (K2) --- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 10000;
    padding: 0.75rem 1.5rem;
    background: var(--oeds-primary, #CC1321);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0 0 0.5rem 0.5rem;
    transition: top 0.2s ease;
}
.skip-link:focus {
    top: 0;
    outline: 3px solid var(--oeds-primary, #CC1321);
    outline-offset: 2px;
}

/* --- Cookie Banner Enhanced (K3) --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--oeds-footer-bg, #242526);
    color: #fff;
    padding: 1rem 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.cookie-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.cookie-banner__content {
    flex: 1;
    min-width: 280px;
}
.cookie-banner__title {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}
.cookie-banner__text {
    font-size: 0.875rem;
    opacity: 0.85;
}
.cookie-banner__text a {
    color: #fff;
    text-decoration: underline;
}
.cookie-banner__actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}
.cookie-banner__btn--link {
    color: rgba(255,255,255,0.7) !important;
    font-size: 0.8125rem;
    text-decoration: underline !important;
    padding: 0.25rem 0.5rem !important;
}
.cookie-banner__btn--link:hover {
    color: #fff !important;
}

/* Cookie Settings Panel */
.cookie-settings {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cookie-settings__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}
.cookie-settings__panel {
    position: relative;
    background: #fff;
    border-radius: 1rem;
    max-width: 480px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.cookie-settings__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e5e5e5;
}
.cookie-settings__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
}
.cookie-settings__body {
    padding: 1.25rem 1.5rem;
}
.cookie-settings__category {
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}
.cookie-settings__category:last-child {
    border-bottom: none;
}
.cookie-settings__footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid #e5e5e5;
}

/* --- Dropdown "Alle" links more prominent (K1) --- */
.dropdown-header-link {
    font-weight: 600;
    color: var(--oeds-primary, #CC1321) !important;
    font-size: 0.9375rem;
}
.dropdown-header-link:hover {
    text-decoration: underline !important;
}

/* --- WhatsApp green in Mobile Sticky Bar (W10) --- */
.mobile-sticky-bar__item--whatsapp {
    color: #25D366;
}
.mobile-sticky-bar__item--whatsapp i {
    color: #25D366;
}

/* --- Category Hero Overlay higher contrast (N5) --- */
.category-hero__overlay {
    background: rgba(0,0,0,0.65);
}

/* --- Body padding-top Breakpoint fix at 992px (N10) --- */
@media (min-width: 992px) and (max-width: 1199.98px) {
    body {
        padding-top: 80px;
    }
}

/* --- Blog card link style reset (K5) --- */
.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    height: 100%;
}
.blog-card-link:hover {
    text-decoration: none;
    color: inherit;
}
.blog-card-link:hover .blog-card {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* --- Einsatzgebiete Cards (for new overview page) --- */
.einsatzgebiete-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
}
.einsatzgebiete-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    color: inherit;
    text-decoration: none;
}
.einsatzgebiete-card--muted {
    background: var(--oeds-bg, #F8F7F5);
    border: 1px dashed #ccc;
}
.einsatzgebiete-card__icon {
    font-size: 2.5rem;
    color: var(--oeds-primary, #CC1321);
    margin-bottom: 1rem;
}
.einsatzgebiete-card--muted .einsatzgebiete-card__icon {
    color: #999;
}
.einsatzgebiete-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.einsatzgebiete-card__text {
    font-size: 0.9375rem;
    color: #666;
    margin-bottom: 1rem;
}
.einsatzgebiete-card__link {
    color: var(--oeds-primary, #CC1321);
    font-weight: 500;
    font-size: 0.9375rem;
}

/* --- Kontakt Sidebar kompakter (N13) --- */
.page-kontakt .col-lg-5 .card-body {
    padding: 1rem !important;
}
.page-kontakt .col-lg-5 .card {
    margin-bottom: 0.75rem !important;
}

/* --- Tag more link style (N11) --- */
a.tag--more {
    text-decoration: none;
    cursor: pointer;
}
a.tag--more:hover {
    background: var(--oeds-primary, #CC1321);
    color: #fff;
}


/* ==========================================================================
   46. BESTATTUNGSVORSORGE LANDINGPAGE
   ========================================================================== */

/* --- NEU Badge (Navigation) --- */
.badge-neu {
  display: inline-block;
  background: var(--oeds-red);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.15em 0.5em;
  border-radius: var(--border-radius-pill);
  margin-left: 0.5rem;
  vertical-align: middle;
  line-height: 1.4;
}

.dropdown-item--highlight {
  font-weight: 600;
}

.oeds-mobile-sublink--highlight {
  font-weight: 600;
  color: var(--oeds-red) !important;
}

/* --- Hero --- */
.bv-hero {
  position: relative;
  overflow: hidden;
  background: var(--oeds-footer-bg);
  color: #fff;
  padding: 2rem 0;
  min-height: 440px;
  display: flex;
  align-items: center;
}

.bv-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bv-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bv-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

.bv-hero .container {
  position: relative;
  z-index: 2;
}

.bv-hero__title {
  font-family: var(--font-display);
  font-size: var(--fs-display);
  font-weight: var(--fw-bold);
  line-height: var(--line-height-tight);
  margin-bottom: 0.75rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.bv-hero__subtitle {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.9);
  line-height: var(--line-height-base);
  margin-bottom: 2rem;
  max-width: 600px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.bv-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.bv-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.bv-hero .btn-call {
  background-color: #fff;
  color: var(--oeds-dark);
  border-color: #fff;
  font-weight: var(--fw-semibold);
}

.bv-hero .btn-call:hover,
.bv-hero .btn-call:focus-visible {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--oeds-red);
  border-color: #fff;
}

.bv-hero .btn-call i {
  color: inherit;
}

.bv-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.bv-hero__trust-item i {
  font-size: 1.125rem;
  color: var(--oeds-success);
}

.min-vh-50 {
  min-height: 50vh;
}

/* --- Section Titles --- */
.bv-section-title {
  font-family: var(--font-display);
  font-size: var(--fs-section);
  font-weight: 700;
  color: var(--oeds-text);
  margin-bottom: 0.75rem;
}

.bv-section-subtitle {
  font-size: var(--font-size-lg);
  color: var(--oeds-text-muted);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Problem / Why Section --- */
.bv-problem__lead {
  font-size: var(--font-size-lg);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.bv-problem__stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.bv-problem__stat {
  background: var(--oeds-white);
  border: 1px solid var(--oeds-border);
  border-left: 4px solid var(--oeds-red);
  border-radius: var(--border-radius);
  padding: 1.25rem 1.5rem;
}

.bv-problem__stat-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--oeds-red);
  margin-bottom: 0.25rem;
}

.bv-problem__stat-label {
  font-size: var(--font-size-sm);
  color: var(--oeds-text-muted);
}

/* --- Steps --- */
.bv-step {
  background: var(--oeds-white);
  border: 1px solid var(--oeds-border);
  border-radius: var(--border-radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  position: relative;
  transition: all var(--transition-base);
}

.bv-step:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.bv-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--oeds-red);
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.bv-step__icon {
  font-size: 2rem;
  color: var(--oeds-red);
  margin-bottom: 1rem;
}

.bv-step__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.bv-step__text {
  font-size: var(--font-size-sm);
  color: var(--oeds-text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* --- Price Cards --- */
.bv-price-card {
  background: var(--oeds-white);
  border: 2px solid var(--oeds-border);
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  height: 100%;
  transition: all var(--transition-base);
}

.bv-price-card:hover {
  border-color: var(--oeds-red);
  box-shadow: var(--shadow-lg);
}

.bv-price-card__header {
  background: var(--oeds-red);
  color: #fff;
  text-align: center;
  padding: 1.25rem;
}

.bv-price-card__age {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  color: #fff;
}

.bv-price-card__body {
  padding: 2rem;
  text-align: center;
}

.bv-price-card__amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.25rem;
}

.bv-price-card__currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--oeds-text);
}

.bv-price-card__value {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--oeds-red);
  line-height: 1;
}

.bv-price-card__unit {
  font-size: 1.125rem;
  color: var(--oeds-text-muted);
  font-weight: 500;
}

.bv-price-card__yearly {
  font-size: var(--font-size-sm);
  color: var(--oeds-text-muted);
  margin-bottom: 1.5rem;
}

.bv-price-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  text-align: left;
}

.bv-price-card__features li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 0;
  font-size: var(--font-size-sm);
  border-bottom: 1px solid var(--oeds-gray-200);
}

.bv-price-card__features li:last-child {
  border-bottom: none;
}

.bv-price-card__features i {
  color: var(--oeds-success);
  font-size: 1rem;
  flex-shrink: 0;
}

.bv-price-card__fee {
  font-size: var(--font-size-xs);
  color: var(--oeds-text-muted);
  margin-bottom: 1.5rem;
  padding: 0.75rem;
  background: var(--oeds-gray-100);
  border-radius: var(--border-radius-sm);
}

/* --- Coverage Cards --- */
.bv-coverage__card {
  background: var(--oeds-white);
  border: 1px solid var(--oeds-border);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  height: 100%;
}

.bv-coverage__card-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--oeds-red);
}

.bv-coverage__card-header > i {
  font-size: 2rem;
  color: var(--oeds-red);
  flex-shrink: 0;
}

.bv-coverage__card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.bv-coverage__card-provider {
  font-size: var(--font-size-sm);
  color: var(--oeds-text-muted);
}

.bv-coverage__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bv-coverage__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--oeds-gray-200);
}

.bv-coverage__list li:last-child {
  border-bottom: none;
}

.bv-coverage__list i {
  color: var(--oeds-success);
  font-size: 1.125rem;
  flex-shrink: 0;
}

/* --- Target Audience Cards --- */
.bv-target__card {
  background: var(--oeds-white);
  border: 1px solid var(--oeds-border);
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
  text-align: center;
  height: 100%;
  transition: all var(--transition-base);
}

.bv-target__card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.bv-target__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(var(--oeds-red-rgb), 0.08);
  color: var(--oeds-red);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.bv-target__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.bv-target__text {
  font-size: var(--font-size-sm);
  color: var(--oeds-text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* --- Form Section --- */
.bv-form__card {
  background: var(--oeds-white);
  border: 1px solid var(--oeds-border);
  border-radius: var(--border-radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.bv-form__success {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: var(--border-radius);
  color: #065f46;
}

.bv-form__success i {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.bv-form__error {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--border-radius);
  color: #991b1b;
  margin-bottom: 1.5rem;
}

.bv-form__error i {
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* --- Trust Footer --- */
.bv-trust__item {
  padding: 1.5rem;
}

.bv-trust__icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.bv-trust__value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--oeds-text);
  margin-bottom: 0.25rem;
}

.bv-trust__label {
  font-size: var(--font-size-sm);
  color: var(--oeds-text-muted);
}

/* --- Responsive --- */
@media (max-width: 991.98px) {
  .bv-hero {
    padding: 3rem 0;
    min-height: auto;
  }

  .bv-hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(36, 37, 38, 0.8) 0%,
      rgba(36, 37, 38, 0.7) 100%
    );
  }
}

@media (max-width: 767.98px) {
  .bv-hero {
    padding: 2.5rem 0;
  }

  .bv-hero__actions {
    flex-direction: column;
  }

  .bv-hero__actions .btn {
    width: 100%;
  }

  .bv-hero__trust {
    flex-direction: column;
    gap: 0.75rem;
  }

  .bv-form__card {
    padding: 1.25rem;
  }

  .bv-coverage__card {
    padding: 1.25rem;
  }

  .bv-price-card__value {
    font-size: 3rem;
  }
}


/* ==========================================================================
   46. BLOG PAGINATION
   ========================================================================== */

.blog-pagination .page-link {
  color: var(--oeds-text);
  border-color: var(--oeds-border);
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.blog-pagination .page-item.active .page-link {
  background-color: var(--oeds-red);
  border-color: var(--oeds-red);
  color: var(--oeds-white);
}

.blog-pagination .page-link:hover {
  color: var(--oeds-red);
  background-color: var(--oeds-gray-100);
  border-color: var(--oeds-border);
}

.blog-pagination .page-link:focus {
  box-shadow: 0 0 0 0.2rem rgba(var(--oeds-red-rgb), 0.25);
}

.blog-pagination .page-item.disabled .page-link {
  color: var(--oeds-text-muted);
  background-color: var(--oeds-gray-100);
  border-color: var(--oeds-border);
}


/* ==========================================================================
   47. BLOG RELATED POSTS
   ========================================================================== */

.blog-related {
  border-top: 1px solid var(--oeds-border);
  padding-top: 3rem;
  margin-top: 3rem;
}

/* ==========================================================================
   48. REGION CTA (Einsatzgebiete Page)
   ========================================================================== */

.region-cta {
  background: #fff;
  border: 3px solid var(--oeds-red);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 4px 16px rgba(204, 19, 33, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.region-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(204, 19, 33, 0.12);
}

.region-cta__icon {
  width: 80px;
  height: 80px;
  background: rgba(204, 19, 33, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.region-cta__icon i {
  font-size: 2.5rem;
  color: var(--oeds-red);
}

.region-cta__title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--oeds-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.region-cta__text {
  font-size: 1.125rem;
  color: var(--oeds-text);
  margin-bottom: 2rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .region-cta {
    padding: 2rem 1.5rem;
  }

  .region-cta__icon {
    width: 64px;
    height: 64px;
  }

  .region-cta__icon i {
    font-size: 2rem;
  }

  .region-cta__title {
    font-size: 1.5rem;
  }

  .region-cta__text {
    font-size: 1rem;
  }
}

/* ==========================================================================
   49. LOCATION USPs (Einsatzgebiete Detail)
   ========================================================================== */

.location-usps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.location-usp {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: #fff;
  border: 1px solid var(--oeds-border-light);
  border-radius: 12px;
  padding: 1.5rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.location-usp:hover {
  border-color: var(--oeds-red);
  box-shadow: 0 4px 12px rgba(204, 19, 33, 0.08);
}

.location-usp__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(204, 19, 33, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-usp__icon i {
  font-size: 1.25rem;
  color: var(--oeds-red);
}

.location-usp__title {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--oeds-dark);
  margin-bottom: 0.25rem;
}

.location-usp__text {
  font-size: 0.9375rem;
  color: var(--oeds-text);
  margin-bottom: 0;
  line-height: 1.5;
}

/* ==========================================================================
   50. BEZIRKE GRID (Einsatzgebiete Detail)
   ========================================================================== */

.bezirke-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.bezirke-tag {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--oeds-border-light);
  border-radius: 8px;
  padding: 0.625rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--oeds-dark);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.bezirke-tag i {
  color: var(--oeds-red);
  font-size: 0.875rem;
}

.bezirke-tag:hover {
  border-color: var(--oeds-red);
  background: rgba(204, 19, 33, 0.04);
}
