/* Farbvariablen und Styles aus index.html */
:root {
  /* Grüne Markenfarben */
  --green-light: #6fbd7a !important;
  --green-medium: #429c53 !important;
  --green-brand: #267d35 !important;
  --green-dark: #1f5e2a !important;
  --green-deep: #153d1b !important;
  
  /* Bootstrap Farben mit grünen Markenfarben */
  --bs-primary: var(--green-brand) !important;
  --bs-primary-rgb: 38, 125, 53 !important;
  --bs-secondary: #f3f0e6 !important;
  --bs-secondary-rgb: 243, 240, 230 !important;
  --bs-accent: var(--green-dark) !important;
  --bs-accent-rgb: 31, 94, 42 !important;
  --bs-neutral: var(--green-deep) !important;
  --bs-neutral-rgb: 21, 61, 27 !important;
}

.text-primary { color: var(--bs-primary) !important; }
.text-success { color: var(--bs-success) !important; }
.text-warning { color: var(--bs-warning) !important; }
.text-info { color: var(--bs-info) !important; }
.text-accent { color: var(--bs-accent) !important; }
.text-neutral { color: var(--bs-neutral) !important; }

.bg-primary { background-color: var(--bs-primary) !important; }
.bg-success { background-color: var(--bs-success) !important; }
.bg-warning { background-color: var(--bs-warning) !important; }
.bg-accent { background-color: var(--bs-accent) !important; }
.bg-neutral { background-color: var(--bs-neutral) !important; }

.btn-primary { background-color: var(--bs-primary) !important; border-color: var(--bs-primary) !important; }
.btn-success { background-color: var(--bs-success) !important; border-color: var(--bs-success) !important; }
.btn-warning { background-color: var(--bs-warning) !important; border-color: var(--bs-warning) !important; color: var(--bs-accent) !important; }
.btn-accent { background-color: var(--bs-accent) !important; border-color: var(--bs-accent) !important; }

.btn-outline-primary { color: var(--bs-primary) !important; border-color: var(--bs-primary) !important; }
.btn-outline-primary:hover { background-color: var(--bs-primary) !important; color: white !important; }
.btn-outline-success { color: var(--bs-success) !important; border-color: var(--bs-success) !important; }
.btn-outline-success:hover { background-color: var(--bs-success) !important; color: white !important; }
.btn-outline-accent { color: var(--bs-accent) !important; border-color: var(--bs-accent) !important; }
.btn-outline-accent:hover { background-color: var(--bs-accent) !important; color: var(--bs-secondary) !important; }

/* Einfache, benutzerfreundliche Struktur - alle Sektionen haben cremigen Hintergrund */
.bg-light {
  background-color: var(--brand-cream) !important;
}

.search-section {
  background-color: var(--brand-cream) !important;
}

.stats-section {
  background-color: var(--brand-cream) !important;
}

.about-section {
  background-color: var(--brand-cream) !important;
}

/* About Cards */
.about-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-green), var(--brand-green-dark));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--brand-green);
}

.about-card:hover::before {
  transform: scaleX(1);
}

.about-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--brand-green), var(--brand-green-dark));
  border-radius: 50%;
  margin-bottom: 1rem;
}

.about-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.about-card h3 {
  color: var(--brand-green);
  font-weight: 600;
  margin-bottom: 1rem;
}

.about-card p {
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .about-card {
    margin-bottom: 1rem;
  }
  
  .about-icon {
    width: 50px;
    height: 50px;
  }
  
  .about-icon i {
    font-size: 1.25rem;
  }
}

.services-section {
  background-color: var(--brand-cream) !important;
}

.faq-section {
  background-color: var(--brand-cream) !important;
}

.contact-section {
  background-color: var(--brand-cream) !important;
}

/* Footer Styles für Hauptseite */
footer a {
  color: var(--bs-secondary) !important;
  text-decoration: none;
  transition: all 0.3s ease;
}
footer a:hover {
  color: var(--bs-primary) !important;
  transform: translateY(-2px);
}
footer .text-secondary {
  color: var(--bs-secondary) !important;
}
footer .social-links a:hover {
  color: var(--bs-primary) !important;
  transform: translateY(-2px);
}

/* Grundlegende Styles - Exuel Brand Color Scheme */
:root {
  /* Exuel Brand Color Scheme - Grüne Markenfarben */
  --brand-cream: #f3f0e6;           /* RGB: 243, 240, 230 */
  --brand-green-light: #6fbd7a;     /* RGB: 111, 189, 122 */
  --brand-green-medium: #429c53;    /* RGB: 66, 156, 83 */
  --brand-green: #267d35;           /* RGB: 38, 125, 53 */
  --brand-green-dark: #1f5e2a;      /* RGB: 31, 94, 42 */
  --brand-green-deep: #153d1b;      /* RGB: 21, 61, 27 */
  
  /* Abgeleitete Farben */
  --primary-color: var(--brand-green);
  --secondary-color: var(--brand-cream);
  --accent-color: var(--brand-green-dark);
  --neutral-color: var(--brand-green-deep);
  --danger-color: #781414;
  
  /* System Farben */
  --success-color: var(--brand-green-medium);
  --warning-color: var(--brand-cream);
  --info-color: var(--brand-green-light);
  
  /* Grau-Skala basierend auf Brand Colors */
  --light-color: var(--brand-cream);
  --dark-color: var(--brand-green);
  --white: #ffffff;
  --black: #000000;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: var(--brand-green);
  --gray-900: #212529;
}

/* Body und Typography */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--gray-800);
  background-color: var(--brand-cream);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Skip Link für Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--brand-navy);
  color: var(--brand-cream);
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 9999;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 6px;
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-navy), var(--brand-purple));
  z-index: 9999;
  transition: width 0.3s ease;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-dark) 50%, var(--brand-green-deep) 100%);
  position: relative;
  overflow: hidden;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  color: var(--white) !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section .lead {
  color: var(--brand-cream) !important;
  font-size: 1.25rem;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-section p {
  color: var(--white) !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-logo {
  filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.4));
  transition: transform 0.3s ease;
}

.hero-logo:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .hero-logo {
    width: 100px !important;
    height: 100px !important;
  }
}

@media (max-width: 576px) {
  .hero-logo {
    width: 80px !important;
    height: 80px !important;
  }
}

/* Navigation */
.navbar {
  background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-dark) 50%, var(--brand-green-deep) 100%);
  box-shadow: none !important;
  transition: all 0.3s ease;
  padding: 1rem 0;
  position: relative;
}

.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  pointer-events: none;
}

.navbar-brand {
  font-weight: 700;
  color: white !important;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.navbar-logo {
  transition: none;
  filter: brightness(0) invert(1);
  box-shadow: none !important;
}

.navbar-nav .nav-link {
  color: #fff !important;
  font-weight: 500;
  font-size: 1.1rem;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

/* Header Offset für Fixed Navigation */
.header-offset {
  margin-top: 0;
}

/* Hero Section */
.bg-primary {
  background: linear-gradient(135deg, var(--dark-imperial-blue) 0%, var(--light-gold) 100%) !important;
}

/* Cards */
.card {
  border: none;
  border-radius: 15px;
  background-color: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

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

.card-body {
  padding: 2rem;
}

/* Spezielle Styles für Inhaber-Karten */
.owner-card-special {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  padding: 2rem;
  width: 100%;
}

.owner-card-special .card-title {
  text-align: center !important;
  width: 100% !important;
  margin-bottom: 0.5rem !important;
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.owner-card-special .card-text {
  text-align: center !important;
  width: 100% !important;
  margin-bottom: 0.5rem !important;
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.owner-card-special .text-muted {
  text-align: center !important;
  width: 100% !important;
  margin-bottom: 1rem !important;
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.owner-card-special .btn-group {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 0.5rem !important;
  width: 100% !important;
  margin: 0 auto !important;
}

/* Spezielle Styles für Branchenkarten */
.industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  padding: 2rem;
  width: 100%;
}

.industry-card .card-title {
  text-align: center !important;
  width: 100% !important;
  margin-bottom: 1rem !important;
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
  font-weight: 600 !important;
}

.industry-card .card-text {
  text-align: center !important;
  width: 100% !important;
  margin-bottom: 1.5rem !important;
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
  line-height: 1.6 !important;
}

.industry-card .btn {
  margin: 0 auto !important;
  display: inline-block !important;
}

/* Spezielle Styles für Expertise-Karte */
.expertise-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  padding: 2rem;
  width: 100%;
}

.expertise-card .card-title {
  text-align: center !important;
  width: 100% !important;
  margin-bottom: 1rem !important;
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
  font-weight: 600 !important;
}

.expertise-card .card-text {
  text-align: center !important;
  width: 100% !important;
  margin-bottom: 1.5rem !important;
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
  line-height: 1.6 !important;
}

.expertise-card .btn {
  margin: 0 auto !important;
  display: inline-block !important;
}

/* Spezielle Styles für Services-Karten */
.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  height: 100%;
  padding: 2rem;
  width: 100%;
}

.service-card .card-title {
  text-align: center !important;
  width: 100% !important;
  margin-bottom: 1rem !important;
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
  font-weight: 600 !important;
}

.service-card .card-text {
  text-align: center !important;
  width: 100% !important;
  margin-bottom: 1.5rem !important;
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
  line-height: 1.6 !important;
}

.service-card .list-unstyled {
  text-align: left !important;
  margin-bottom: 1.5rem !important;
}

.service-card .btn {
  margin: 0 auto !important;
  display: inline-block !important;
}

/* Benutzerfreundliches Styling für Leistungen-Liste */
.service-card ul li {
  font-size: 1.15rem;
  line-height: 1.7;
  background: rgba(255,255,255,0.85);
  border-radius: 10px;
  padding: 0.85rem 1.2rem;
  margin-bottom: 0.7rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
}

.service-card ul li i {
  font-size: 1.5rem;
  min-width: 2.2rem;
  text-align: center;
}

/* Stats Cards */
.stats-card {
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-100) 100%);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.stats-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.stats-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stats-label {
  font-size: 1rem;
  color: var(--gray-600);
  font-weight: 500;
}

/* Icons */
.icon-2rem {
  font-size: 2rem;
}

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

/* Buttons */
.btn {
  border-radius: 25px;
  font-weight: 600;
  padding: 0.75rem 2rem;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::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;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  color: var(--white);
}

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

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

.btn-light {
  background: var(--white);
  color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
  background: var(--gray-100);
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* Search Section */
.search-container {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.search-input {
  width: 100%;
  padding: 1rem 3rem 1rem 1.5rem;
  border: 2px solid var(--gray-300);
  border-radius: 50px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--white);
}

.search-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.search-btn {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-btn:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Erweiterte Suchfunktionalität */
.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-top: none;
  border-radius: 0 0 15px 15px;
  max-height: 500px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Suchtipps Header */
.search-tips-header,
.search-results-header,
.search-suggestions-header {
  padding: 1rem;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
  border-bottom: 1px solid var(--gray-300);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.search-tips-title,
.search-results-title,
.search-suggestions-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--gray-700);
}

.search-tips-title i,
.search-results-title i,
.search-suggestions-title i {
  color: var(--primary-color);
}

.search-clear-btn {
  background: none;
  border: none;
  color: var(--gray-600);
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.search-clear-btn:hover {
  background: var(--gray-300);
  color: var(--gray-800);
}

/* Beliebte Suchbegriffe */
.search-popular {
  padding: 1rem;
  border-bottom: 1px solid var(--gray-200);
}

.search-popular h6 {
  margin-bottom: 0.75rem;
  color: var(--gray-700);
  font-weight: 600;
}

.search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.search-tag {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.search-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Kategorien Grid */
.search-categories {
  padding: 1rem;
}

.search-categories h6 {
  margin-bottom: 0.75rem;
  color: var(--gray-700);
  font-weight: 600;
}

.search-category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.search-category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  background: var(--gray-100);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.search-category-item:hover {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.search-category-item i {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.search-category-item:hover i {
  color: var(--white);
}

.search-category-item span {
  font-weight: 500;
  font-size: 0.9rem;
}

/* Keine Ergebnisse */
.search-no-results {
  padding: 2rem 1rem;
  text-align: center;
}

.no-results-content i {
  font-size: 3rem;
  color: var(--gray-400);
  margin-bottom: 1rem;
}

.no-results-content h6 {
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

.no-results-content p {
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.search-suggestions-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.search-suggestion-tag {
  background: var(--gray-200);
  color: var(--gray-700);
  padding: 0.4rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-suggestion-tag:hover {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  transform: translateY(-1px);
}

/* Suchvorschläge */
.search-suggestion-item {
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid var(--gray-200);
}

.search-suggestion-item:last-child {
  border-bottom: none;
}

.search-suggestion-item:hover {
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
  transform: translateX(5px);
}

.suggestion-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gray-700);
}

.suggestion-content i:first-child {
  color: var(--primary-color);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.suggestion-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.suggestion-title {
  font-weight: 500;
  color: var(--gray-800);
}

.suggestion-category {
  font-size: 0.75rem;
  color: var(--gray-500);
  background: var(--gray-200);
  padding: 0.1rem 0.4rem;
  border-radius: 8px;
  align-self: flex-start;
}

.suggestion-arrow {
  color: var(--gray-400);
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.search-suggestion-item:hover .suggestion-arrow {
  transform: translateX(3px);
  color: var(--primary-color);
}

/* Suchergebnisse */
.search-result-item {
  padding: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--gray-200);
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-item:hover {
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
  transform: translateX(5px);
}

.search-result-content {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.search-result-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
}

.search-result-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.search-result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.search-result-title {
  margin: 0;
  color: var(--light-gold);
  font-weight: 600;
  font-size: 1rem;
}

.search-result-category {
  background: linear-gradient(135deg, var(--light-gold) 0%, var(--pale-silver) 100%);
  color: var(--dark-imperial-blue);
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
}

.search-result-page {
  background: linear-gradient(135deg, var(--dark-imperial-blue) 0%, var(--quartz) 100%);
  color: var(--pale-silver);
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  margin-left: 0.5rem;
}

.search-result-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.search-result-description {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.4;
}

.search-result-link {
  color: var(--light-gold);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.search-result-link:hover {
  color: var(--pale-silver);
  transform: translateX(5px);
}

.search-result-link i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.search-result-link:hover i {
  transform: translateX(3px);
}

/* Hervorhebung der Suchbegriffe */
mark {
  background: linear-gradient(135deg, var(--light-gold) 0%, var(--pale-silver) 100%);
  color: var(--dark-imperial-blue);
  padding: 0.1rem 0.3rem;
  border-radius: 3px;
  font-weight: 600;
}

/* Scrollbar für Suchvorschläge */
.search-suggestions::-webkit-scrollbar {
  width: 6px;
}

.search-suggestions::-webkit-scrollbar-track {
  background: var(--gray-200);
  border-radius: 3px;
}

.search-suggestions::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--light-gold) 0%, var(--pale-silver) 100%);
  border-radius: 3px;
}

.search-suggestions::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--pale-silver) 0%, var(--light-gold) 100%);
}

/* FAQ Section */
.faq-item {
  margin-bottom: 1rem;
  border: 1px solid var(--gray-300);
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: var(--white);
  border: none;
  text-align: left;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.faq-question.active {
  background: var(--dark-imperial-blue);
  color: var(--pale-silver);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: var(--gray-50);
}

.faq-answer.show {
  padding: 1.5rem;
  max-height: 500px;
}

/* Testimonials */
.testimonial-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-color: var(--light-gold);
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--light-gold) 0%, var(--pale-silver) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-imperial-blue);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Contact Form */
.form-max-600 {
  max-width: 600px;
}

.form-control {
  border: 2px solid var(--gray-300);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--light-gold);
  box-shadow: 0 0 0 3px rgba(183, 149, 1, 0.1);
}

.form-label {
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--dark-imperial-blue) 0%, var(--quartz) 100%);
  color: var(--pale-silver);
  padding: 3rem 0 1rem;
  box-shadow: none !important;
}

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

footer a:hover {
  color: var(--light-gold);
  transform: translateY(-2px);
}

/* Footer Sections */
.footer-section {
  margin-bottom: 1rem;
}

.footer-section h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-section p {
  line-height: 1.6;
  color: var(--gray-400);
}

/* Contact Info */
.contact-info .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.contact-info .contact-item i {
  color: var(--primary-color);
  margin-right: 0.5rem;
  width: 16px;
}

.contact-info .contact-item a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info .contact-item a:hover {
  color: var(--primary-color);
}

/* Legal Links */
.legal-links a {
  display: flex;
  align-items: center;
  color: var(--gray-400);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.25rem 0;
}

.legal-links a:hover {
  color: var(--primary-color) !important;
  background: var(--brand-cream);
  border-radius: 6px;
  transform: translateX(5px);
  text-decoration: underline;
}

.legal-links a i {
  margin-right: 0.5rem;
  width: 16px;
}

/* Social Links */
.social-links a {
  display: inline-block;
  color: var(--gray-400);
  transition: all 0.3s ease;
  margin-right: 1rem;
}

.social-links a:hover {
  color: var(--primary-color);
  transform: translateY(-3px);
}

.social-links a:last-child {
  margin-right: 0;
}

/* Footer Bottom */
footer hr {
  border-color: var(--gray-600);
  margin: 2rem 0 1rem;
}

footer .text-muted {
  color: var(--gray-500) !important;
}

/* Mission Card Styles */
.mission-card {
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.mission-header {
  text-align: center;
  margin-bottom: 2rem;
}

.mission-header i {
  display: block;
  margin: 0 auto 1rem;
}

.mission-highlights {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  margin-top: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.highlight-item {
  display: flex;
  align-items: center;
  padding: 0.75rem;
  background: var(--gray-50);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateX(5px);
}

.highlight-item i {
  font-size: 1.2rem;
  margin-right: 0.75rem;
}

.highlight-item span {
  font-weight: 500;
}

/* Expertise Section */
.expertise-section {
  background: var(--white);
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--primary-color);
}

.expertise-section h4 {
  color: var(--dark-color);
  margin-bottom: 1.5rem;
}

.expertise-section p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gray-700);
}

.expertise-badges {
  margin-top: 1.5rem;
}

.expertise-badges .badge {
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.expertise-badges .badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Live Chat Button */
.live-chat-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
}

.live-chat-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  color: var(--white);
}

.live-chat-btn i {
  font-size: 1.5rem;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 90px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  color: var(--white);
}

.back-to-top i {
  font-size: 1.2rem;
}

/* Toast Notifications */
.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  padding: 1rem 1.5rem;
  z-index: 10000;
  transform: translateX(400px);
  transition: transform 0.3s ease;
  max-width: 300px;
  border-left: 4px solid var(--primary-color);
}

.toast.show {
  transform: translateX(0);
}

.toast-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.toast-message {
  margin-right: 1rem;
  font-weight: 500;
}

.toast-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray-600);
  padding: 0;
  line-height: 1;
}

.toast-close:hover {
  color: var(--gray-800);
}

.toast-success {
  border-left-color: var(--success-color);
}

.toast-error {
  border-left-color: var(--danger-color);
}

.toast-warning {
  border-left-color: var(--warning-color);
}

.toast-info {
  border-left-color: var(--info-color);
}

/* About Section */
.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-image img {
  transition: transform 0.3s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar-nav {
    text-align: center;
    margin-top: 1rem;
  }
  
  .navbar-nav .nav-link {
    margin: 0.5rem 0;
  }
  
  .navbar-logo {
    width: 65px !important;
    height: 65px !important;
  }
  
  .stats-card {
    margin-bottom: 1rem;
  }
  
  .btn {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .card-body {
    padding: 1.5rem;
  }
  
  .live-chat-btn {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }
  
  .back-to-top {
    width: 45px;
    height: 45px;
    bottom: 15px;
    right: 75px;
  }
  
  .toast {
    max-width: 250px;
    right: 10px;
    left: 10px;
  }
}

@media (max-width: 576px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .navbar-logo {
    width: 55px !important;
    height: 55px !important;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .stats-number {
    font-size: 2rem;
  }
  
  .search-input {
    padding: 0.75rem 2.5rem 0.75rem 1rem;
  }
  
  .search-btn {
    width: 40px;
    height: 40px;
  }
  
  .search-suggestions {
    max-height: 350px;
  }
  
  .search-result-item {
    padding: 0.75rem;
  }
  
  .search-result-title {
    font-size: 0.9rem;
  }
  
  .search-result-description {
    font-size: 0.8rem;
  }
  
  .search-result-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .search-tag {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
}

/* Animationen */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
  opacity: 1;
  transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
  opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
  opacity: 1;
    transform: translateX(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.fade-in-down {
  animation: fadeInDown 0.6s ease-out;
}

.fade-in-left {
  animation: fadeInLeft 0.6s ease-out;
}

.fade-in-right {
  animation: fadeInRight 0.6s ease-out;
}

/* Loading Animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--white);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Utility Classes */
.text-gradient {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.shadow-custom {
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.border-gradient {
  border: 2px solid;
  border-image: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) 1;
}

/* Print Styles */
@media print {
  .navbar,
  .live-chat-btn,
  .back-to-top,
  .toast {
    display: none !important;
  }
  
  body {
    background: var(--white) !important;
    color: var(--black) !important;
  }
  
  .card {
    box-shadow: none !important;
    border: 1px solid var(--gray-300) !important;
  }
} 

/* Impressum Styles */
.nav-tabs .nav-link {
  border: none;
  color: var(--gray-600);
  font-weight: 500;
  padding: 1rem 1.5rem;
  transition: all 0.3s ease;
  border-radius: 10px 10px 0 0;
  margin-right: 0.5rem;
}

.nav-tabs .nav-link:hover {
  color: var(--primary-color);
  background: var(--gray-100);
  border-color: transparent;
}

.nav-tabs .nav-link.active {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.nav-tabs .nav-link i {
  font-size: 1.1rem;
}

/* Tab Content Animation */
.tab-pane {
  animation: fadeIn 0.3s ease-in-out;
}

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

/* Company Info Cards */
.company-info h6 {
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}

.company-info p {
  color: var(--gray-600);
  line-height: 1.6;
}

/* Owner Cards */
.owner-card {
  padding: 1rem;
  background: var(--gray-50);
  border-radius: 10px;
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
}

.owner-card:hover {
  background: var(--gray-100);
  transform: translateX(5px);
}

.owner-card h6 {
  color: var(--gray-800);
  margin-bottom: 0.25rem;
}

.owner-card p {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.owner-card .badge {
  font-size: 0.75rem;
  padding: 0.4rem 0.8rem;
}

/* Contact Items */
.contact-item {
  display: flex;
  align-items: center;
  padding: 0.75rem;
  background: var(--gray-50);
  border-radius: 8px;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: var(--gray-100);
  transform: translateX(5px);
}

.contact-item i {
  font-size: 1.1rem;
  margin-right: 0.75rem;
  width: 20px;
  text-align: center;
}

.contact-item a {
  color: var(--gray-700);
  font-weight: 500;
  transition: color 0.3s ease;
}

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

/* Legal Cards */
.card-title {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-weight: 600;
}

.card-title i {
  font-size: 1.2rem;
  margin-right: 0.5rem;
}

/* Alert Styling */
.alert-info {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gray-700);
}

.alert-info i {
  color: var(--primary-color);
}

/* Responsive Design für Impressum */
@media (max-width: 768px) {
  .nav-tabs {
    flex-wrap: wrap;
  }
  
  .nav-tabs .nav-link {
    flex: 1;
    min-width: 120px;
    margin-right: 0.25rem;
    margin-bottom: 0.25rem;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
  
  .nav-tabs .nav-link i {
    font-size: 1rem;
  }
  
  .owner-card {
    padding: 0.75rem;
  }
  
  .contact-item {
    padding: 0.5rem;
  }
  
  .contact-item i {
    font-size: 1rem;
    margin-right: 0.5rem;
  }
}

@media (max-width: 576px) {
  .nav-tabs .nav-link {
    flex: 1 1 calc(50% - 0.25rem);
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
  }
  
  .nav-tabs .nav-link i {
    font-size: 0.9rem;
    margin-right: 0.25rem;
  }
  
  .card-body {
    padding: 1rem;
  }
  
  .owner-card {
    padding: 0.5rem;
  }
  
  .contact-item {
    padding: 0.5rem;
    font-size: 0.9rem;
  }
} 

/* About Section Styles */
.title-underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  margin: 0 auto;
  border-radius: 2px;
}

.section-icon {
  text-align: center;
}

.icon-4rem {
  font-size: 4rem;
}

.mission-section, .expertise-section {
  padding: 2rem 0;
  position: relative;
}

.mission-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(255, 215, 0, 0.05) 100%);
  border-radius: 20px;
  z-index: -1;
}

.expertise-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(255, 215, 0, 0.05) 100%);
  border-radius: 20px;
  z-index: -1;
}

.mission-section h3, .expertise-section h3 {
  color: var(--dark-color);
  margin-bottom: 1.5rem;
  position: relative;
}

.mission-section h3::after, .expertise-section h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
}

.mission-section p, .expertise-section p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 2rem;
}

.mission-features {
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.feature-item:hover {
  border-left-color: var(--primary-color);
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feature-item i {
  font-size: 1.3rem;
  margin-right: 1rem;
  color: var(--success-color);
}

.feature-item span {
  font-size: 1rem;
  color: var(--gray-800);
}

.expertise-badges {
  margin-top: 2rem;
}

.expertise-badges .badge {
  font-size: 0.9rem;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.expertise-badges .badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive Design für About Section */
@media (max-width: 768px) {
  .mission-section, .expertise-section {
    padding: 1.5rem 0;
    margin-bottom: 2rem;
  }
  
  .feature-item {
    padding: 0.75rem;
    margin-bottom: 0.5rem;
  }
  
  .feature-item:hover {
    transform: translateX(5px);
  }
  
  .expertise-badges .badge {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
  
  .icon-4rem {
    font-size: 3rem;
  }
} 

.gold {
  background: linear-gradient(135deg, var(--brand-cream) 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(243, 240, 230, 0.3);
} 

/* Feature Cards für Leistungen */
.feature-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(41,56,99,0.07);
  transition: box-shadow 0.2s, transform 0.2s;
  border: none;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.feature-card:hover {
  box-shadow: 0 8px 32px rgba(41,56,99,0.13);
  transform: translateY(-4px) scale(1.03);
}
.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-dark) 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto;
  box-shadow: 0 2px 8px rgba(38,125,53,0.10);
}
.feature-card h5 {
  font-weight: 600;
  margin-top: 0.5rem;
}
.feature-card p {
  font-size: 1.05rem;
  color: #4D4C53;
} 

/* Suchfunktion: Moderne Ergebnis-Karten */
.search-result-card {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(38,125,53,0.07);
  padding: 1rem;
  margin-bottom: 0.7rem;
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
}
.search-result-card:hover {
  box-shadow: 0 6px 24px rgba(38,125,53,0.13);
  transform: translateY(-2px) scale(1.02);
}
.search-result-icon {
  font-size: 2rem;
  color: var(--brand-green);
  margin-right: 1rem;
}
.search-result-title {
  font-weight: 600;
  font-size: 1.1rem;
}
.search-result-desc {
  color: #4D4C53;
  font-size: 0.98rem;
}

/* Suchvorschläge Dropdown */
.search-suggestions {
  position: absolute;
  z-index: 1000;
  width: 100%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(38,125,53,0.10);
  margin-top: 0.2rem;
  padding: 0.5rem 0.5rem 0.5rem 0.5rem;
  max-height: 350px;
  overflow-y: auto;
}
.search-suggestion-item {
  padding: 0.7rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s;
}
.search-suggestion-item:hover, .search-suggestion-item.active {
  background: #f7f6f2;
}

/* Keine Ergebnisse */
.no-results-message {
  text-align: center;
  color: var(--brand-green);
  font-weight: 500;
  padding: 1.2rem 0.5rem;
} 

.search-result-card.active, .search-suggestion-item.active {
  background: #f7f6f2;
  outline: 2px solid var(--brand-green);
}
.search-result-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.98rem;
}
@media (max-width: 600px) {
  .search-result-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.7rem;
  }
  .search-result-icon {
    margin-bottom: 0.5rem;
    margin-right: 0;
  }
  .search-result-title {
    font-size: 1rem;
  }
  .search-result-desc {
    font-size: 0.93rem;
  }
} 


.text-primary { color: var(--bs-primary) !important; }
.text-success { color: var(--bs-success) !important; }
.text-warning { color: var(--bs-warning) !important; }
.text-info { color: var(--bs-info) !important; }
.text-accent { color: var(--bs-accent) !important; }
.text-neutral { color: var(--bs-neutral) !important; }
.bg-primary { background-color: var(--bs-primary) !important; }
.bg-success { background-color: var(--bs-success) !important; }
.bg-warning { background-color: var(--bs-warning) !important; }
.bg-accent { background-color: var(--bs-accent) !important; }
.bg-neutral { background-color: var(--bs-neutral) !important; }
.btn-primary { background-color: var(--bs-primary) !important; border-color: var(--bs-primary) !important; }
.btn-success { background-color: var(--bs-success) !important; border-color: var(--bs-success) !important; }
.btn-warning { background-color: var(--bs-warning) !important; border-color: var(--bs-warning) !important; color: var(--bs-accent) !important; }
.btn-accent { background-color: var(--bs-accent) !important; border-color: var(--bs-accent) !important; }
.btn-outline-primary { color: var(--bs-primary) !important; border-color: var(--bs-primary) !important; }
.btn-outline-primary:hover { background-color: var(--bs-primary) !important; color: white !important; }
.btn-outline-success { color: var(--bs-success) !important; border-color: var(--bs-success) !important; }
.btn-outline-success:hover { background-color: var(--bs-success) !important; color: white !important; }
.btn-outline-accent { color: var(--bs-accent) !important; border-color: var(--bs-accent) !important; }
.btn-outline-accent:hover { background-color: var(--bs-accent) !important; color: var(--bs-secondary) !important; }
/* Footer Styles für Impressum */
footer a {
  color: var(--bs-secondary) !important;
  text-decoration: none;
  transition: all 0.3s ease;
}
footer a:hover {
  color: var(--bs-primary) !important;
  transform: translateY(-2px);
}
footer .text-secondary {
  color: var(--bs-secondary) !important;
}
footer .social-links a:hover {
  color: var(--bs-primary) !important;
  transform: translateY(-2px);
}
/* Impressum specific styles */
.impressum-logo {
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}
.impressum-logo:hover {
  transform: scale(1.05);
}
.navbar-logo {
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
}
.footer-logo {
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
}
.nav-tabs .nav-link {
  color: var(--brand-green);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.nav-tabs .nav-link:hover {
  color: var(--brand-green-dark);
  border-color: var(--brand-cream);
}
.nav-tabs .nav-link.active {
  color: var(--brand-green-dark);
  background-color: var(--brand-cream);
  border-color: var(--brand-green-dark);
  font-weight: 600;
}
.card {
  border: 1px solid var(--brand-cream);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.alert-info {
  background-color: var(--brand-cream);
  border-color: var(--brand-navy);
  color: var(--brand-navy);
}
.alert-warning {
  background-color: var(--brand-cream);
  border-color: var(--brand-red);
  color: var(--brand-red);
} 

/* About Section Improvements */
.about-intro-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  padding: 0.5rem !important;
}

.about-intro-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.about-intro-icon {
  font-size: 3rem;
  color: var(--brand-primary);
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.about-card:hover::before {
  transform: scaleX(1);
}

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

.about-card:hover .about-icon {
  transform: scale(1.1);
  color: var(--brand-secondary);
}

/* Team Cards */
.team-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(var(--brand-primary-rgb), 0.05) 0%, rgba(var(--brand-secondary-rgb), 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

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

.team-avatar {
  font-size: 3rem;
  color: var(--brand-primary);
  background: linear-gradient(135deg, rgba(var(--brand-primary-rgb), 0.1), rgba(var(--brand-secondary-rgb), 0.1));
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.team-card:hover .team-avatar {
  transform: scale(1.1);
  background: linear-gradient(135deg, rgba(var(--brand-primary-rgb), 0.2), rgba(var(--brand-secondary-rgb), 0.2));
}

.team-expertise .badge {
  font-size: 0.75rem;
  padding: 0.5rem 0.75rem;
  border-radius: 20px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.team-expertise .badge:hover {
  background: var(--brand-primary) !important;
  color: white !important;
  transform: scale(1.05);
}

.team-contact .btn {
  transition: all 0.3s ease;
  border-radius: 25px;
  font-weight: 500;
}

.team-contact .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Expertise Highlight Card */
.expertise-highlight-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
  border: 2px solid rgba(var(--brand-primary-rgb), 0.2);
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  padding: 0.5rem !important;
}

.expertise-highlight-card.p-5 {
  padding: 0.5rem !important;
}

.expertise-highlight-card.text-center.p-5 {
  padding: 0.5rem !important;
}

.expertise-highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary), var(--brand-accent));
}

.expertise-icon {
  font-size: 3.5rem;
  color: var(--brand-primary);
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.expertise-stats {
  margin: 2rem 0;
}

.expertise-stat {
  text-align: center;
  padding: 1rem;
  background: rgba(var(--brand-primary-rgb), 0.05);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.expertise-stat:hover {
  background: rgba(var(--brand-primary-rgb), 0.1);
  transform: scale(1.05);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Responsive improvements */
@media (max-width: 768px) {
  .about-intro-card {
    padding: 0.25rem !important;
  }
  
  .about-intro-icon {
    font-size: 2.5rem;
  }
  
  .team-avatar {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
  
  .expertise-highlight-card {
    padding: 0.25rem !important;
  }
  
  .expertise-stats .col-4 {
    margin-bottom: 1rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
}

/* Animation improvements */
.about-card,
.team-card,
.expertise-highlight-card {
  animation: fadeInUp 0.6s ease-out;
}

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

/* Focus states for accessibility */
.about-card:focus-within,
.team-card:focus-within,
.expertise-highlight-card:focus-within {
  outline: 2px solid var(--brand-primary);
  outline-offset: 2px;
}

/* Loading states */
.about-card.loading,
.team-card.loading,
.expertise-highlight-card.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Print styles */
@media print {
  .about-card,
  .team-card,
  .expertise-highlight-card {
    box-shadow: none;
    border: 1px solid #ccc;
  }
  
  .about-card:hover,
  .team-card:hover,
  .expertise-highlight-card:hover {
    transform: none;
  }
} 

@media (max-width: 992px) {
  .navbar-toggler {
    width: 48px;
    height: 48px;
    font-size: 2rem;
    padding: 0.5rem;
    border-radius: 12px;
    margin-right: 0.5rem;
    background: rgba(255,255,255,0.15);
    border: 2px solid var(--brand-green-dark);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(38,125,53,0.10);
    transition: background 0.2s, box-shadow 0.2s;
  }
  .navbar-toggler:focus, .navbar-toggler:hover {
    background: var(--brand-green-dark);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(38,125,53,0.18);
  }
  .navbar-nav {
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-dark) 100%);
    border-radius: 0 0 18px 18px;
    margin-top: 0.5rem;
    padding: 1rem 0.5rem;
    box-shadow: 0 8px 32px rgba(38,125,53,0.13);
  }
  .navbar-nav .nav-link {
    font-size: 1.2rem;
    padding: 0.75rem 0;
    margin: 0.25rem 0;
    text-align: left;
  }
}

@media (max-width: 768px) {
  h1, .display-4 { font-size: 2rem !important; }
  h2 { font-size: 1.4rem !important; }
  h3, .h3 { font-size: 1.15rem !important; }
  h4, .h4 { font-size: 1.05rem !important; }
  h5, .h5 { font-size: 1rem !important; }
  .btn, .btn-lg, .btn-primary, .btn-outline-primary {
    font-size: 1rem !important;
    padding: 0.7rem 1.2rem !important;
    border-radius: 18px !important;
  }
  .about-card, .team-card, .feature-card, .service-card, .stats-card, .testimonial-card {
    padding: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .about-intro-card, .expertise-highlight-card {
    padding: 0.25rem !important;
  }
  .container, .container-fluid {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .navbar-logo {
    width: 48px !important;
    height: 48px !important;
  }
  .footer-section {
    margin-bottom: 1.5rem !important;
  }
}
@media (max-width: 400px) {
  h1, .display-4 { font-size: 1.3rem !important; }
  h2 { font-size: 1.1rem !important; }
  .btn, .btn-lg { font-size: 0.95rem !important; padding: 0.5rem 0.7rem !important; }
}

@media (max-width: 768px) {
  .row, .g-4, .g-3, .g-2 {
    gap: 0.5rem !important;
  }
  .about-card, .team-card, .feature-card, .service-card, .stats-card, .testimonial-card {
    min-width: 0;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }
  img, .navbar-logo, .footer-logo {
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }
  p, .lead, .card-text {
    font-size: 1rem !important;
    word-break: break-word;
  }
}

@media (min-width: 1400px) {
  .container, .container-lg, .container-xl, .container-xxl {
    max-width: 1320px !important;
    padding-left: 32px !important;
    padding-right: 32px !important;
  }
  h1, .display-4 { font-size: 3.5rem !important; }
  h2 { font-size: 2.2rem !important; }
}
@media (max-width: 400px) {
  .navbar-logo, .footer-logo {
    width: 36px !important;
    height: 36px !important;
  }
  .btn, .btn-lg {
    font-size: 0.9rem !important;
    padding: 0.4rem 0.6rem !important;
  }
  .about-card, .team-card, .feature-card, .service-card, .stats-card, .testimonial-card {
    padding: 0.5rem !important;
  }
}

@media (max-width: 1200px) {
  .container, .container-lg, .container-xl {
    max-width: 98vw !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
}
@media (max-width: 992px) {
  .navbar-nav .nav-link {
    font-size: 1.15rem !important;
    padding: 0.7rem 0.5rem !important;
  }
  .btn, .btn-lg {
    font-size: 1.05rem !important;
    min-width: 44px;
    min-height: 44px;
  }
}
@media (max-width: 768px) {
  .container, .container-fluid {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  .about-card, .team-card, .feature-card, .service-card, .stats-card, .testimonial-card {
    padding: 0.7rem !important;
    margin-bottom: 0.7rem !important;
  }
  .navbar-logo, .footer-logo {
    width: 44px !important;
    height: 44px !important;
  }
  .btn, .btn-lg {
    font-size: 1rem !important;
    min-width: 44px;
    min-height: 44px;
    padding: 0.7rem 1rem !important;
  }
  h1, .display-4 { font-size: 1.5rem !important; }
  h2 { font-size: 1.2rem !important; }
  h3, .h3 { font-size: 1.05rem !important; }
  h4, .h4 { font-size: 1rem !important; }
  h5, .h5 { font-size: 0.95rem !important; }
}
@media (max-width: 576px) {
  .container, .container-fluid {
    padding-left: 4px !important;
    padding-right: 4px !important;
  }
  .navbar-logo, .footer-logo {
    width: 36px !important;
    height: 36px !important;
  }
  .btn, .btn-lg {
    font-size: 0.95rem !important;
    min-width: 40px;
    min-height: 40px;
    padding: 0.5rem 0.7rem !important;
  }
  h1, .display-4 { font-size: 1.1rem !important; }
  h2 { font-size: 1rem !important; }
}
@media (max-width: 400px) {
  .navbar-logo, .footer-logo {
    width: 28px !important;
    height: 28px !important;
  }
  .btn, .btn-lg {
    font-size: 0.9rem !important;
    min-width: 36px;
    min-height: 36px;
    padding: 0.4rem 0.5rem !important;
  }
  .about-card, .team-card, .feature-card, .service-card, .stats-card, .testimonial-card {
    padding: 0.3rem !important;
  }
}

/* --- Mobile Usability: Minimum Touch Area for Buttons & Links --- */
@media (pointer: coarse), (max-width: 600px) {
  a, button, .btn, .nav-link, .search-btn, .live-chat-btn, .back-to-top, .faq-question {
    min-width: 44px;
    min-height: 44px;
    padding: 0.5rem 1rem;
    font-size: 1.1rem;
    line-height: 1.2;
    /* Ensure inline links are not stretched, only block/flex elements */
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .btn, button, .search-btn, .live-chat-btn, .back-to-top, .faq-question {
    border-radius: 12px;
  }
  .form-control, input[type="text"], input[type="email"], textarea {
    min-height: 48px;
    font-size: 1.1rem;
    padding: 0.75rem 1rem;
  }
  .form-label {
    font-size: 1rem;
  }
}

/* --- End Mobile Usability --- */

/* --- RTL Header Fix - Header bleibt links bei Arabisch --- */
[dir="rtl"] .navbar {
  justify-content: flex-start !important;
}

[dir="rtl"] .navbar-brand {
  margin-right: 0 !important;
  margin-left: auto !important;
}

[dir="rtl"] .navbar-nav {
  margin-left: 0 !important;
  margin-right: auto !important;
}

[dir="rtl"] .navbar-nav .nav-item {
  margin-left: 0 !important;
  margin-right: 0.5rem !important;
}

[dir="rtl"] .navbar-nav .nav-item:last-child {
  margin-right: 0 !important;
}

[dir="rtl"] .navbar-nav .nav-item .btn {
  margin-left: 0 !important;
  margin-right: 0.5rem !important;
}

.navbar-logo {
  max-width: 320px;
  height: auto;
  width: 100%;
  transition: max-width 0.3s;
}

@media (max-width: 992px) {
  .navbar-logo {
    max-width: 220px;
  }
}

@media (max-width: 576px) {
  .navbar-logo {
    max-width: 150px;
  }
}