/* ===================================
   Haus des Hundes - Modern, Elegant Design
   Focus on warmth, care & professionalism
   =================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;800&family=Open+Sans:wght@300;400;600;700&display=swap');

:root {
  /* Refined color palette - subtle, warm accents */
  --color-primary: #C62E3A;        /* Softened red from logo */
  --color-primary-hover: #A02530;  /* Darker on hover */
  --color-accent: #8B4450;         /* Muted burgundy accent */
  --color-surface: #F9FAFB;        /* Soft gray background */
  --color-surface-2: #F3F4F6;      /* Slightly darker surface */
  --color-bg: #FFFFFF;             /* Pure white */
  --color-text: #1F2937;           /* Deep gray for text */
  --color-text-secondary: #6B7280; /* Lighter gray for secondary text */
  --color-border: #E5E7EB;         /* Subtle borders */
  --color-success: #059669;        /* Green for success states */
  --color-footer: #1F2937;         /* Dark footer */
  
  /* Typography */
  --font-heading: 'Nunito', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --card-radius: 0.75rem;
}

/* ===================================
   Base Styles
   =================================== */

* {
  box-sizing: border-box;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.7;
  font-size: 16px;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
  margin-top: 0;
}

h1 {
  font-size: 3.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--color-primary-hover);
}

section {
  padding: var(--section-padding);
}

/* ===================================
   Modern Navigation
   =================================== */

.navbar {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  padding: 0.875rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar .logo {
  height: 70px;
  width: auto;
  transition: all 0.3s ease;
}

.navbar .logo:hover {
  transform: translateY(-2px);
}

.navbar-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--color-text);
}

.navbar-nav .nav-link {
  color: var(--color-text);
  font-weight: 500;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  transition: all 0.3s ease;
  position: relative;
  border-radius: 0.5rem;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0.25rem;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background: var(--color-primary);
  transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--color-primary);
  background: var(--color-surface);
}

.navbar-nav .nav-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

/* ===================================
   Buttons
   =================================== */

.btn {
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  border: none;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-primary {
  background: var(--color-primary);
  color: white;
  box-shadow: 0 2px 8px rgba(198, 46, 58, 0.25);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(198, 46, 58, 0.3);
  color: white;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline-primary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-outline-primary:hover {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

/* Outline button on hero/dark backgrounds */
.hero .btn-outline-primary,
.btn-outline-primary.btn-outline-white {
  color: white;
  border-color: white;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.15);
}

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

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.0625rem;
}

.btn i {
  font-size: 1.125rem;
}

/* ===================================
   Sticky Navigation
   =================================== */

.sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  padding: 1.5rem 0;
  transition: all 0.3s ease;
}

.sticky-nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  padding: 0.75rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-card-sticky {
  background: white;
  border-radius: 20px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
}

.sticky-nav.scrolled .nav-card-sticky {
  padding: 0.75rem 1.5rem;
  box-shadow: none;
}

/* Logo Full Image */
.nav-logo-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.nav-logo-brand:hover {
  transform: scale(1.02);
}

.logo-nav-full {
  height: 65px;
  width: 100%;
  max-width: 400px;
  object-fit: contain;
  object-position: left center;
  transition: all 0.3s ease;
}

.sticky-nav.scrolled .logo-nav-full {
  height: 55px;
}

/* Navigation Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-sticky-cta {
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
}

/* Instagram Button in Nav */
.btn-instagram-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C62E3A 0%, #A02530 100%);
  color: white;
  text-decoration: none;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.btn-instagram-nav:hover {
  transform: scale(1.1);
  background: linear-gradient(135deg, #A02530 0%, #8B1F2A 100%);
  box-shadow: 0 4px 12px rgba(198, 46, 58, 0.3);
  color: white;
}

.nav-toggle-sticky {
  background: var(--color-surface);
  border: none;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 1.5rem;
  color: var(--color-text);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
}

.nav-toggle-sticky:hover {
  background: var(--color-primary);
  color: white;
  transform: scale(1.05);
}

/* Mobile Navigation */
.nav-link-mobile {
  display: flex;
  align-items: center;
  color: var(--color-text);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.nav-link-mobile:hover {
  background: var(--color-surface);
  color: var(--color-primary);
  transform: translateX(5px);
}

.nav-link-instagram {
  color: #C62E3A;
}

.nav-link-instagram:hover {
  color: #A02530;
  background: rgba(198, 46, 58, 0.1);
}

/* ===================================
   Modern Buttons
   =================================== */

.btn-modern {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-family: var(--font-heading);
  padding: 0.875rem 2rem;
  font-size: 1rem;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-modern:hover::before {
  left: 100%;
}

.btn-modern-primary {
  background: var(--color-primary);
  color: white;
  box-shadow: 0 4px 14px rgba(198, 46, 58, 0.35);
}

.btn-modern-primary:hover {
  background: var(--color-primary-hover);
  color: white;
  box-shadow: 0 6px 20px rgba(198, 46, 58, 0.45);
  transform: translateY(-2px);
}

.btn-modern-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(198, 46, 58, 0.3);
}

.btn-modern-outline {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  color: var(--color-text);
  border-color: white;
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.3);
}

.btn-modern-outline:hover {
  background: white;
  color: var(--color-primary);
  border-color: white;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.btn-modern-lg {
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
  border-radius: 16px;
}

.btn-modern i {
  font-size: 1.25rem;
}

/* ===================================
   Modern Hero Section
   =================================== */

.hero-modern {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  padding: 10rem 0 6rem;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(31, 41, 55, 0.92) 0%,
    rgba(31, 41, 55, 0.8) 40%,
    rgba(139, 68, 80, 0.55) 100%
  );
  z-index: 1;
}

.hero-content-modern {
  position: relative;
  z-index: 2;
}

.hero-title {
  color: white;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  letter-spacing: -0.02em;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.375rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  max-width: 600px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.rating-stars {
  display: flex;
  gap: 0.25rem;
  color: #FFB800;
  font-size: 1.25rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.rating-text {
  color: white;
  font-weight: 600;
  font-size: 1.0625rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* ===================================
   About / Über uns Section
   =================================== */

.about-logo-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  background-image: url('/assets/img/gallery-1.jpg');
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-logo-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.85);
  z-index: 1;
}

.about-logo {
  position: relative;
  z-index: 2;
  width: 280px;
  height: 280px;
  object-fit: contain;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 10px 30px rgba(198, 46, 58, 0.3));
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.about-content {
  font-size: 1.0625rem;
  line-height: 1.75;
}

.about-content .lead {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-text);
}

.stat-card {
  text-align: center;
  padding: 1.5rem;
  background: var(--color-surface);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.stat-icon {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-text);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  font-weight: 600;
}

/* ===================================
   Why Us Section with Image
   =================================== */

.why-us-section {
  padding: 5rem 0;
  background: var(--color-background);
}

.why-us-image {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease;
}

.why-us-image:hover {
  transform: scale(1.02);
}

.why-us-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.value-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  border-color: var(--color-surface);
}

.value-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.75rem;
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotate(5deg);
}

.value-icon-heart {
  background: rgba(198, 46, 58, 0.15);
  color: var(--color-primary);
}

.value-icon-smile {
  background: rgba(198, 46, 58, 0.15);
  color: var(--color-primary);
}

.value-icon-scissors {
  background: rgba(198, 46, 58, 0.15);
  color: var(--color-primary);
}

.value-icon-award {
  background: rgba(198, 46, 58, 0.15);
  color: var(--color-primary);
}

.value-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.value-text {
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

/* ===================================
   Wellness Values Row
   =================================== */

.wellness-values-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 2rem 0;
}

.wellness-value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.wellness-icon {
  font-size: 2.5rem;
  color: var(--color-primary);
  transition: transform 0.3s ease;
}

.wellness-value-item:hover .wellness-icon {
  transform: scale(1.15);
}

.wellness-value-label {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  text-align: center;
}

.pricing-emphasis {
  background: linear-gradient(135deg, rgba(198, 46, 58, 0.1) 0%, rgba(198, 46, 58, 0.05) 100%);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--color-primary);
  font-size: 1.0625rem;
  color: var(--color-text);
  text-align: center;
}

/* ===================================
   Instagram Banner
   =================================== */

.instagram-banner {
  background: linear-gradient(135deg, #C62E3A 0%, #A02530 100%);
  padding: 0;
  overflow: hidden;
}

.instagram-banner-link {
  display: block;
  text-decoration: none;
  transition: all 0.3s ease;
}

.instagram-banner-link:hover {
  transform: scale(1.02);
}

.instagram-banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  color: white;
}

.instagram-icon {
  font-size: 3.5rem;
  color: white;
  animation: pulse-icon 2s ease-in-out infinite;
}

.instagram-text {
  flex: 1;
  max-width: 600px;
}

.instagram-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.instagram-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.instagram-arrow {
  font-size: 2.5rem;
  color: white;
  transition: transform 0.3s ease;
}

.instagram-banner-link:hover .instagram-arrow {
  transform: translateX(10px);
}

@keyframes pulse-icon {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* ===================================
   Interactive Timeline
   =================================== */

.timeline-interactive {
  position: relative;
  padding: 2rem 0;
}

.timeline-interactive::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 80px;
  height: calc(100% - 240px);
  width: 3px;
  background: linear-gradient(180deg, 
    var(--color-primary) 0%, 
    var(--color-primary) 100%);
  border-radius: 4px;
}

.timeline-step {
  position: relative;
  padding-left: 90px;
  margin-bottom: 3.5rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.timeline-step:hover {
  transform: translateX(8px);
}

.timeline-step-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 58px;
  height: 58px;
  background: white;
  border: 3px solid var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.timeline-step:hover .timeline-step-marker {
  transform: scale(1.15);
  box-shadow: 0 0 0 8px rgba(198, 46, 58, 0.15);
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.timeline-step-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-heading);
  transition: color 0.3s ease;
}

.timeline-step:hover .timeline-step-number {
  color: white;
}

.timeline-step-content {
  background: white;
  padding: 2rem 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.timeline-step:hover .timeline-step-content {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-color: rgba(198, 46, 58, 0.2);
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

.timeline-step-title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.75rem;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.timeline-step:hover .timeline-step-title {
  color: var(--color-primary);
}

.timeline-step-text {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Arrow to Gallery */
.timeline-arrow-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 3rem;
  gap: 1rem;
  animation: pulse-arrow 2s ease-in-out infinite;
}

.timeline-arrow-label {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.timeline-arrow {
  font-size: 3rem;
  color: var(--color-primary);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.timeline-arrow:hover {
  transform: scale(1.2) translateY(5px);
}

@keyframes pulse-arrow {
  0%, 100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(10px);
    opacity: 0.7;
  }
}

/* ===================================
   Multi-Step Form Wizard
   =================================== */

.form-wizard {
  background: white;
  border-radius: var(--card-radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 2.5rem;
  margin-top: 3rem;
}

.form-wizard-compact {
  padding: 2rem;
  margin-top: 2rem;
}

.wizard-content-compact {
  min-height: 200px;
  padding: 1.5rem 0;
}

.wizard-content-compact h5 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

.wizard-steps-compact {
  margin-bottom: 2rem;
}

.wizard-steps-compact .wizard-step-label {
  font-size: 0.875rem;
}

.wizard-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
  position: relative;
}

.wizard-steps::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 16.66%;
  right: 16.66%;
  height: 3px;
  background: var(--color-border);
  z-index: 0;
}

.wizard-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.wizard-step-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 3px solid var(--color-border);
  color: var(--color-text-secondary);
  font-weight: 700;
  font-family: var(--font-heading);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.wizard-step.active .wizard-step-number {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
  box-shadow: 0 4px 12px rgba(198, 46, 58, 0.25);
  transform: scale(1.1);
}

.wizard-step.completed .wizard-step-number {
  background: var(--color-success);
  border-color: var(--color-success);
  color: white;
}

.wizard-step-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  font-family: var(--font-heading);
}

.wizard-step.active .wizard-step-label {
  color: var(--color-primary);
}

.wizard-content {
  min-height: 320px;
}

.wizard-panel {
  display: none;
}

.wizard-panel.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

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

.wizard-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

/* ===================================
   Section Headers
   =================================== */

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.section-subtitle {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  color: var(--color-text);
}

.section-description {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ===================================
   Background Surfaces
   =================================== */

.bg-surface {
  background: var(--color-surface);
}

/* ===================================
   Icon Boxes (USPs)
   =================================== */

.icon-box {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border-radius: var(--card-radius);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid var(--color-border);
}

.icon-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: var(--color-primary);
}

.icon-box .icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(198, 46, 58, 0.1), rgba(139, 68, 80, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--color-primary);
  transition: all 0.3s ease;
}

.icon-box:hover .icon {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: white;
  transform: scale(1.1);
}

.icon-box h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.icon-box p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ===================================
   Cards
   =================================== */

.card {
  border: 1px solid var(--color-border);
  border-radius: var(--card-radius);
  background: white;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.card:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.card-title {
  color: var(--color-text);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.card-text {
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.card-body .icon {
  color: var(--color-primary);
}

/* ===================================
   Timeline
   =================================== */

.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--color-primary), var(--color-accent));
}

.timeline-item {
  position: relative;
  padding-left: 4rem;
  padding-bottom: 3rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 42px;
  height: 42px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  box-shadow: 0 3px 12px rgba(198, 46, 58, 0.3);
}

.timeline-item h4 {
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.timeline-item p {
  margin: 0;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ===================================
   Stats Section
   =================================== */

.stats-section {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: white;
  padding: 3.5rem 0;
}

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

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: white;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* ===================================
   Pricing Card
   =================================== */

.pricing-card {
  background: white;
  border: 2px solid var(--color-border);
  border-radius: var(--card-radius);
  padding: 3rem 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.pricing-price {
  font-size: 4rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--color-primary);
  margin: 1.5rem 0;
  line-height: 1;
}

.pricing-price small {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  display: block;
  margin-top: 0.5rem;
}

.pricing-description {
  color: var(--color-text-secondary);
  font-size: 1.0625rem;
}

/* ===================================
   Gallery
   =================================== */

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--card-radius);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(198, 46, 58, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 3rem;
  color: white;
}

/* Gallery Lightbox Modal */
#galleryModal .modal-content {
  background: rgba(0, 0, 0, 0.95) !important;
}

#galleryModal .modal-header {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1050;
  padding: 1rem;
}

#galleryModal .btn-close {
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

#galleryModal .btn-close:hover {
  opacity: 1;
}

#galleryModal img {
  max-height: 85vh;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* ===================================
   Testimonials
   =================================== */

.testimonial-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--card-radius);
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: var(--color-primary);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-right: 1rem;
  flex-shrink: 0;
}

.testimonial-info h5 {
  margin: 0 0 0.375rem 0;
  font-size: 1.125rem;
  color: var(--color-text);
}

.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.testimonial-rating i {
  color: #FBBF24;
  font-size: 0.875rem;
}

.testimonial-text {
  color: var(--color-text-secondary);
  line-height: 1.7;
  font-size: 0.9375rem;
  margin: 0;
}

/* ===================================
   Forms
   =================================== */

.form-label {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
}

.form-control,
.form-select {
  border: 2px solid var(--color-border);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  color: var(--color-text);
  background: white;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(198, 46, 58, 0.1);
  outline: none;
  background: white;
}

.form-control::placeholder {
  color: var(--color-text-secondary);
  opacity: 0.6;
}

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

.form-check-input {
  border-color: var(--color-border);
  width: 1.25rem;
  height: 1.25rem;
}

.form-check-input:checked {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.form-check-input:focus {
  box-shadow: 0 0 0 3px rgba(198, 46, 58, 0.1);
  border-color: var(--color-primary);
}

.form-check-label {
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
}

.alert-info {
  background: #DBEAFE;
  border: 1px solid #93C5FD;
  color: #1E40AF;
  border-radius: 0.5rem;
  padding: 1rem 1.25rem;
}

/* ===================================
   Footer
   =================================== */

.footer {
  background: var(--color-surface);
  color: var(--color-text);
  padding: 4rem 0 0;
  border-top: 1px solid var(--color-border);
}

.footer h5 {
  color: var(--color-text);
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.footer p {
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a,
.footer-links button {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
  background: none;
  border: none;
  padding: 0;
  font-size: 1rem;
}

.footer-links a:hover,
.footer-links button:hover {
  color: var(--color-primary);
}

.footer-links i {
  margin-right: 0.5rem;
  color: var(--color-primary);
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding: 2rem 0;
  margin-top: 3rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
}

.footer-minimal {
  background: var(--color-surface);
  padding: 2.5rem 0;
  border-top: 1px solid var(--color-border);
  margin-top: 4rem;
}

.footer-minimal p {
  color: var(--color-text-secondary);
  margin: 0;
  font-size: 0.9375rem;
}

.footer-minimal a {
  color: var(--color-text);
  margin: 0 0.75rem;
}

.footer-minimal a:hover {
  color: var(--color-primary);
}

/* ===================================
   Cookie Banner
   =================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  color: var(--color-text);
  padding: 1.5rem 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  animation: slideUp 0.4s ease;
  border-top: 1px solid var(--color-border);
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-banner p {
  color: var(--color-text);
  margin: 0;
  line-height: 1.6;
}

.cookie-banner strong {
  color: var(--color-text);
}

.cookie-details-link {
  color: var(--color-primary) !important;
  text-decoration: underline;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.cookie-details-link:hover {
  color: var(--color-primary-hover) !important;
}

.cookie-banner .btn-outline-secondary {
  border-color: var(--color-border);
  color: var(--color-text);
  background: transparent;
}

.cookie-banner .btn-outline-secondary:hover {
  background: var(--color-surface);
  border-color: var(--color-text);
  color: var(--color-text);
}

.cookie-banner .btn-primary {
  background: var(--color-primary);
  border: none;
}

.cookie-banner .btn-primary:hover {
  background: var(--color-primary-hover);
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 991px) {
  h1 {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .sticky-nav {
    padding: 1rem 0;
  }

  .nav-card-sticky {
    padding: 0.875rem 1rem;
    border-radius: 16px;
  }

  .logo-nav-full {
    height: 60px;
    max-width: 350px;
  }

  .sticky-nav.scrolled .logo-nav-full {
    height: 50px;
  }

  .btn-sticky-cta {
    display: none !important;
  }

  .btn-instagram-nav {
    display: none !important;
  }

  .hero-modern {
    padding: 8rem 0 5rem;
  }

  .why-us-section {
    padding: 4rem 0;
  }

  .why-us-image {
    margin-bottom: 2rem;
  }

  .value-card {
    padding: 1.5rem;
  }

  .value-icon {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }

  .value-title {
    font-size: 1.0625rem;
  }

  .value-text {
    font-size: 0.875rem;
  }

  .timeline-interactive::before {
    display: none;
  }

  .timeline-step {
    padding-left: 75px;
    margin-bottom: 3rem;
  }

  .timeline-step-marker {
    width: 52px;
    height: 52px;
  }

  .timeline-step-number {
    font-size: 1.375rem;
  }

  .timeline-step-content {
    padding: 1.5rem 2rem;
  }

  .timeline-step-title {
    font-size: 1.25rem;
  }

  .timeline-step-text {
    font-size: 0.9375rem;
  }

  .wellness-values-row {
    gap: 2rem;
  }

  .wellness-icon {
    font-size: 2.25rem;
  }

  .wellness-value-label {
    font-size: 0.9375rem;
  }

  .about-logo-wrapper {
    max-width: 350px;
    height: 350px;
  }

  .about-logo {
    width: 240px;
    height: 240px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .btn-modern-lg {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
  }

  .wizard-steps {
    /* Behalten horizontal layout auch auf Tablets */
    gap: 0.5rem;
  }

  .wizard-step-label {
    font-size: 0.75rem;
  }

  .form-wizard {
    padding: 2rem 1.5rem;
  }

  .wizard-content {
    min-height: auto;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  section {
    padding: 3.5rem 0;
  }

  .sticky-nav {
    padding: 0.75rem 0;
  }

  .nav-card-sticky {
    padding: 0.75rem 0.875rem;
    border-radius: 14px;
    gap: 0.75rem;
  }

  .logo-nav-full {
    height: 50px;
    max-width: 280px;
  }

  .sticky-nav.scrolled .logo-nav-full {
    height: 42px;
  }

  .nav-actions {
    gap: 0.5rem;
  }

  .btn-sticky-cta {
    display: none !important;
  }

  .btn-instagram-nav {
    display: none !important;
  }

  .nav-toggle-sticky {
    padding: 0.625rem 0.875rem;
    font-size: 1.375rem;
    min-width: 42px;
    min-height: 42px;
  }

  .wizard-steps {
    margin-bottom: 2rem;
    gap: 0.25rem;
  }

  .wizard-step-number {
    width: 36px;
    height: 36px;
    font-size: 0.875rem;
    border-width: 2px;
  }

  .wizard-step-label {
    font-size: 0.6875rem;
  }

  .why-us-section {
    padding: 3.5rem 0;
  }

  .why-us-image {
    margin-bottom: 1.5rem;
    border-radius: 20px;
  }

  .value-card {
    padding: 1.25rem;
  }

  .value-icon {
    width: 52px;
    height: 52px;
    font-size: 1.375rem;
    margin-bottom: 1rem;
  }

  .value-title {
    font-size: 1rem;
  }

  .value-text {
    font-size: 0.8125rem;
  }

  .timeline-interactive::before {
    display: none;
  }

  .timeline-step {
    padding-left: 70px;
    margin-bottom: 2.5rem;
  }

  .timeline-step:hover {
    transform: translateX(4px);
  }

  .timeline-step-marker {
    width: 48px;
    height: 48px;
  }

  .timeline-step-number {
    font-size: 1.25rem;
  }

  .timeline-step-content {
    padding: 1.25rem 1.5rem;
  }

  .timeline-step-title {
    font-size: 1.125rem;
  }

  .timeline-step-text {
    font-size: 0.875rem;
  }

  .wellness-values-row {
    gap: 1.5rem;
    padding: 1.5rem 0;
  }

  .wellness-icon {
    font-size: 2rem;
  }

  .wellness-value-label {
    font-size: 0.875rem;
  }

  .about-logo-wrapper {
    max-width: 300px;
    height: 300px;
  }

  .about-logo {
    width: 200px;
    height: 200px;
  }

  .pricing-emphasis {
    font-size: 0.9375rem;
    padding: 0.875rem 1.25rem;
  }

  .instagram-banner-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .instagram-icon {
    font-size: 3rem;
  }

  .instagram-title {
    font-size: 1.5rem;
  }

  .instagram-subtitle {
    font-size: 1rem;
  }

  .instagram-arrow {
    font-size: 2rem;
  }

  .hero-modern {
    padding: 7rem 0 4rem;
    min-height: 90vh;
  }

  .hero-title {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.875rem;
    margin-bottom: 2rem;
  }

  .hero-actions .btn-modern {
    width: 100%;
  }

  .btn-modern {
    padding: 0.875rem 1.75rem;
  }

  .btn-modern-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .rating-stars {
    font-size: 1.125rem;
  }

  .rating-text {
    font-size: 0.9375rem;
  }

  .pricing-price {
    font-size: 3rem;
  }

  .stat-number {
    font-size: 2.25rem;
  }

  .gallery-item img {
    height: 240px;
  }

  .icon-box .icon {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
  }

  .form-wizard {
    padding: 1.5rem 1rem;
  }

  .wizard-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .wizard-actions .btn {
    width: 100%;
  }
}

/* ===================================
   Utility Classes
   =================================== */

.text-primary {
  color: var(--color-primary) !important;
}

.text-warning {
  color: #FBBF24 !important;
}

.text-success {
  color: var(--color-success) !important;
}

.text-muted {
  color: var(--color-text-secondary) !important;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
}
