/* Service Pages Styles - Modernized Design */

/* Hero Section */
.service-hero {
  position: relative;
  padding: calc(var(--header-height) + 4rem) 0 4rem;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.95) 0%, 
    rgba(248, 250, 252, 0.9) 100%);
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.service-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 107, 0, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 136, 204, 0.06) 0%, transparent 50%);
  z-index: 1;
}

.service-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

.service-hero-text {
  position: relative;
}

.service-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-description {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.service-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.service-hero-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.1),
    0 10px 20px rgba(0, 0, 0, 0.05);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
}

.service-hero-image:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.service-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-cta .btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
}

.service-cta .btn-secondary {
  background: rgba(255, 255, 255, 0.15);

  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.service-cta .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Service Benefits Section */
.benefits-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, 
    rgba(248, 250, 252, 0.8) 0%, 
    rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(10px);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-item {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.98) 0%, 
    rgba(248, 250, 252, 0.95) 100%);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(0, 136, 204, 0.12);
  box-shadow: 
    0 10px 30px rgba(0, 136, 204, 0.1),
    0 5px 15px rgba(255, 107, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  transform: translateY(30px);
  position: relative;
  overflow: hidden;
}

.benefit-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-orange), var(--primary-blue));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit-item.in-view {
  opacity: 1;
  transform: translateY(0);
}

.benefit-item:hover {
  transform: translateY(-10px);
  box-shadow: 
    0 20px 40px rgba(0, 136, 204, 0.15),
    0 10px 25px rgba(255, 107, 0, 0.1);
  border-color: rgba(0, 136, 204, 0.2);
}

.benefit-item:hover::before {
  opacity: 1;
}

.benefit-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-blue));
  border-radius: 50%;
  box-shadow: 
    0 10px 25px rgba(255, 107, 0, 0.3),
    0 5px 15px rgba(0, 136, 204, 0.2);
  transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
  transform: scale(1.1);
  box-shadow: 
    0 15px 35px rgba(255, 107, 0, 0.4),
    0 8px 20px rgba(0, 136, 204, 0.3);
}

.benefit-icon svg {
  width: 40px;
  height: 40px;
  color: white;
}

.benefit-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text-dark), #333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.benefit-description {
  color: #2d3748;
  line-height: 1.6;
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
}

/* Service Process Section */
.process-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, 
    rgba(248, 250, 252, 0.9) 0%, 
    rgba(255, 255, 255, 0.8) 100%);
}

.process-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease;
  padding: 1.5rem;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.98) 0%, 
    rgba(248, 250, 252, 0.95) 100%);
  border-radius: 15px;
  border: 1px solid rgba(0, 136, 204, 0.12);
  box-shadow: 0 5px 15px rgba(0, 136, 204, 0.08);
}

.process-step.in-view {
  opacity: 1;
  transform: translateX(0);
}

.process-step:hover {
  border-color: rgba(0, 136, 204, 0.15);
  box-shadow: 
    0 10px 25px rgba(0, 136, 204, 0.1),
    0 5px 15px rgba(255, 107, 0, 0.05);
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-blue));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
  transition: all 0.3s ease;
}

.process-step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--text-dark), #333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step-description {
  color: #2d3748;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

.process-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 20px 40px rgba(0, 136, 204, 0.1),
    0 10px 20px rgba(255, 107, 0, 0.05);
}

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

/* Pricing Section */
.pricing-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.95) 0%, 
    rgba(248, 250, 252, 0.9) 100%);
}

.pricing-table {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.95) 0%, 
    rgba(248, 250, 252, 0.9) 100%);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 2rem;
  margin: 3rem 0;
  box-shadow: 
    0 10px 30px rgba(0, 136, 204, 0.08),
    0 5px 15px rgba(255, 107, 0, 0.05);
  border: 1px solid rgba(0, 136, 204, 0.1);
  position: relative;
  overflow: hidden;
}

.pricing-table::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-orange), var(--primary-blue));
}

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

.pricing-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
  background: linear-gradient(135deg, var(--text-dark), #333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.9) 0%, 
    rgba(248, 250, 252, 0.8) 100%);
  border-radius: 10px;
  border: 1px solid rgba(0, 136, 204, 0.08);
  transition: all 0.3s ease;
}

.pricing-item:hover {
  border-color: rgba(0, 136, 204, 0.15);
  box-shadow: 0 5px 15px rgba(0, 136, 204, 0.1);
}

.pricing-title {
  font-weight: 500;
  color: var(--text-dark);
}

.pricing-value {
  font-weight: 700;
  color: var(--primary-orange);
  font-size: 1.1rem;
  background: linear-gradient(135deg, var(--primary-orange), #ff8533);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.95) 0%, 
    rgba(248, 250, 252, 0.9) 100%);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(0, 136, 204, 0.1);
  box-shadow: 
    0 10px 30px rgba(0, 136, 204, 0.08),
    0 5px 15px rgba(255, 107, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

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

.pricing-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 
    0 20px 40px rgba(0, 136, 204, 0.12),
    0 10px 25px rgba(255, 107, 0, 0.08);
  border-color: rgba(0, 136, 204, 0.2);
}

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

.pricing-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text-dark), #333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-amount {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.pricing-period {
  color: #374151;
  font-size: 0.9rem;
  margin: 0;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.pricing-feature {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 136, 204, 0.08);
  position: relative;
  padding-left: 2rem;
  color: #374151;
  font-size: 0.95rem;
  font-weight: 500;
}

.pricing-feature::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-orange);
  font-weight: 700;
  font-size: 1rem;
}

.pricing-note {
  font-size: 0.9rem;
  color: #374151;
  font-style: italic;
  margin-bottom: 2rem;
  padding: 1rem;
  background: linear-gradient(135deg, 
    rgba(248, 250, 252, 0.95) 0%, 
    rgba(255, 255, 255, 0.9) 100%);
  border-radius: 10px;
  border: 1px solid rgba(0, 136, 204, 0.08);
}

.pricing-cta {
  text-align: center;
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, 
    rgba(248, 250, 252, 0.8) 0%, 
    rgba(255, 255, 255, 0.6) 100%);
}

.faq-container {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.95) 0%, 
    rgba(248, 250, 252, 0.9) 100%);
  backdrop-filter: blur(15px);
  border-radius: 15px;
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 136, 204, 0.1);
  box-shadow: 
    0 5px 15px rgba(0, 136, 204, 0.05),
    0 3px 8px rgba(255, 107, 0, 0.03);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-orange), var(--primary-blue));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-item:hover {
  box-shadow: 
    0 10px 25px rgba(0, 136, 204, 0.1),
    0 5px 15px rgba(255, 107, 0, 0.05);
  border-color: rgba(0, 136, 204, 0.15);
}

.faq-item:hover::before,
.faq-item.open::before {
  opacity: 1;
}

.faq-question {
  padding: 1.5rem 2rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 136, 204, 0.08);
  background: linear-gradient(135deg, var(--text-dark), #333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-question:hover {
  background: linear-gradient(135deg, 
    rgba(255, 107, 0, 0.05) 0%, 
    rgba(0, 136, 204, 0.03) 100%);
  -webkit-background-clip: initial;
  -webkit-text-fill-color: var(--text-dark);
  background-clip: initial;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--primary-orange);
  transition: all 0.3s ease;
  font-weight: 600;
}

.faq-item.open .faq-question::after {
  transform: translateY(-50%) rotate(45deg);
  color: var(--primary-blue);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.9) 0%, 
    rgba(248, 250, 252, 0.8) 100%);
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 2rem 1.5rem 2rem;
}

.faq-answer-inner p {
  color: #2d3748;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

/* Stagger Animations */
.stagger-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stagger-item.in-view {
  opacity: 1;
  transform: translateY(0);
}

.stagger-delay-1 { transition-delay: 0.1s; }
.stagger-delay-2 { transition-delay: 0.2s; }
.stagger-delay-3 { transition-delay: 0.3s; }
.stagger-delay-4 { transition-delay: 0.4s; }
.stagger-delay-5 { transition-delay: 0.5s; }

/* Responsive Design - Tablet */
@media (max-width: 1024px) {
  .service-hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .service-hero-image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .process-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .process-image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 3rem auto 0;
  }
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {
  .service-hero {
    padding: calc(var(--header-height) + 2rem) 0 2rem;
    min-height: auto;
  }
  
  .service-title {
    font-size: 2.2rem;
    text-align: center;
  }
  
  .service-description {
    font-size: 1.1rem;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  
  .service-cta {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .service-cta .btn-primary,
  .service-cta .btn-secondary {
    width: 100%;
    max-width: 300px;
    text-align: center;
    justify-content: center;
  }
  
  .benefits-section,
  .process-section,
  .pricing-section,
  .faq-section {
    padding: 3rem 0;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .benefit-item {
    padding: 2rem 1.5rem;
  }
  
  .process-steps {
    gap: 1.5rem;
  }
  
  .process-step {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .pricing-table {
    padding: 1.5rem;
    margin: 2rem 0;
  }
  
  .pricing-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .pricing-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .pricing-card {
    padding: 2rem 1.5rem;
  }
  
  .faq-question {
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
  }
  
  .faq-question::after {
    right: 1.5rem;
  }
  
  .faq-answer-inner {
    padding: 0 1.5rem 1.2rem 1.5rem;
  }
}

/* Responsive Design - Small Mobile */
@media (max-width: 480px) {
  .service-hero {
    padding: calc(var(--header-height) + 1rem) 0 1rem;
  }
  
  .service-title {
    font-size: 1.8rem;
    line-height: 1.2;
  }
  
  .service-description {
    font-size: 1rem;
  }
  
  .benefits-section,
  .process-section,
  .pricing-section,
  .faq-section {
    padding: 2rem 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .benefit-item {
    padding: 1.5rem 1rem;
  }
  
  .benefit-icon {
    width: 60px;
    height: 60px;
  }
  
  .benefit-icon svg {
    width: 30px;
    height: 30px;
  }
  
  .benefit-title {
    font-size: 1.1rem;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .step-title {
    font-size: 1.1rem;
  }
  
  .pricing-card {
    padding: 1.5rem 1rem;
  }
  
  .pricing-amount {
    font-size: 1.8rem;
  }
  
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Performance & Accessibility */
@media (prefers-reduced-motion: reduce) {
  .service-hero-image,
  .benefit-item,
  .process-step,
  .pricing-card,
  .faq-item {
    transition: none;
    animation: none;
  }
  
  .stagger-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .benefit-item,
  .pricing-card,
  .faq-item {
    border: 2px solid var(--text-dark);
  }
  
  .benefit-icon,
  .step-number {
    border: 2px solid white;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .service-hero,
  .benefits-section,
  .process-section,
  .pricing-section,
  .faq-section {
    background: rgba(30, 30, 30, 0.9);
  }
  
  .service-title,
  .benefit-title,
  .step-title,
  .pricing-name,
  .faq-question {
    color: white;
  }
  
  .service-description,
  .benefit-description,
  .step-description,
  .faq-answer-inner p {
    color: rgba(121, 118, 118, 0.8);
  }
}

/* Print styles */
@media print {
  .service-hero,
  .benefits-section,
  .process-section,
  .pricing-section,
  .faq-section {
    background: white !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
  }
  
  .benefit-item,
  .pricing-card,
  .faq-item {
    break-inside: avoid;
    box-shadow: none !important;
    border: 1px solid #ccc !important;
  }
}

/* ==========================================================================
   CTA CENTER STYLING
   ========================================================================== */

.cta-center {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(248, 250, 252, 0.8) 100%);
    border-radius: 15px;
    border: 1px solid rgba(0, 136, 204, 0.1);
    box-shadow: 
        0 10px 25px rgba(0, 136, 204, 0.08),
        0 5px 15px rgba(255, 107, 0, 0.05);
}

.cta-center p {
    color: #374151;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.btn-glow {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-blue));
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 
        0 5px 15px rgba(255, 107, 0, 0.3),
        0 3px 8px rgba(0, 136, 204, 0.2);
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(255, 107, 0, 0.4),
        0 5px 15px rgba(0, 136, 204, 0.3);
}

/* ========================================
   SERVICE-SPEZIFISCHE BENEFIT-ITEM THEMES
   ======================================== */

/* WÄRMEPUMPEN THEME - Grün/Umwelt */
#waermepumpen .benefit-item {
  background: linear-gradient(135deg, 
    rgba(76, 175, 80, 0.08) 0%, 
    rgba(129, 199, 132, 0.05) 100%) !important;
  border: 1px solid rgba(76, 175, 80, 0.15) !important;
  box-shadow: 
    0 10px 30px rgba(76, 175, 80, 0.1),
    0 5px 15px rgba(129, 199, 132, 0.08) !important;
}

#waermepumpen .benefit-item::before {
  background: linear-gradient(90deg, #4CAF50, #81C784) !important;
}

#waermepumpen .benefit-item:hover {
  border-color: rgba(76, 175, 80, 0.25) !important;
  box-shadow: 
    0 20px 40px rgba(76, 175, 80, 0.15),
    0 10px 25px rgba(129, 199, 132, 0.12) !important;
}

#waermepumpen .benefit-icon {
  background: linear-gradient(135deg, #4CAF50, #81C784) !important;
  box-shadow: 
    0 10px 25px rgba(76, 175, 80, 0.3),
    0 5px 15px rgba(129, 199, 132, 0.2) !important;
}

#waermepumpen .benefit-item:hover .benefit-icon {
  box-shadow: 
    0 15px 35px rgba(76, 175, 80, 0.4),
    0 8px 20px rgba(129, 199, 132, 0.3) !important;
}

/* HEIZUNG THEME - Orange/Wärme */
#heizungsinstallation .benefit-item,
#thermentausch .benefit-item,
#heizungsstoerung .benefit-item,
#thermenservice .benefit-item {
  background: linear-gradient(135deg, 
    rgba(255, 87, 34, 0.08) 0%, 
    rgba(255, 138, 101, 0.05) 100%) !important;
  border: 1px solid rgba(255, 87, 34, 0.15) !important;
  box-shadow: 
    0 10px 30px rgba(255, 87, 34, 0.1),
    0 5px 15px rgba(255, 138, 101, 0.08) !important;
}

#heizungsinstallation .benefit-item::before,
#thermentausch .benefit-item::before,
#heizungsstoerung .benefit-item::before,
#thermenservice .benefit-item::before {
  background: linear-gradient(90deg, #FF5722, #FF8A65) !important;
}

#heizungsinstallation .benefit-item:hover,
#thermentausch .benefit-item:hover,
#heizungsstoerung .benefit-item:hover,
#thermenservice .benefit-item:hover {
  border-color: rgba(255, 87, 34, 0.25) !important;
  box-shadow: 
    0 20px 40px rgba(255, 87, 34, 0.15),
    0 10px 25px rgba(255, 138, 101, 0.12) !important;
}

#heizungsinstallation .benefit-icon,
#thermentausch .benefit-icon,
#heizungsstoerung .benefit-icon,
#thermenservice .benefit-icon {
  background: linear-gradient(135deg, #FF5722, #FF8A65) !important;
  box-shadow: 
    0 10px 25px rgba(255, 87, 34, 0.3),
    0 5px 15px rgba(255, 138, 101, 0.2) !important;
}

#heizungsinstallation .benefit-item:hover .benefit-icon,
#thermentausch .benefit-item:hover .benefit-icon,
#heizungsstoerung .benefit-item:hover .benefit-icon,
#thermenservice .benefit-item:hover .benefit-icon {
  box-shadow: 
    0 15px 35px rgba(255, 87, 34, 0.4),
    0 8px 20px rgba(255, 138, 101, 0.3) !important;
}

/* SANITÄR THEME - Blau/Wasser */
#sanitaerservice .benefit-item,
#badsanierung .benefit-item,
#rohrverstopfung .benefit-item {
  background: linear-gradient(135deg, 
    rgba(33, 150, 243, 0.08) 0%, 
    rgba(100, 181, 246, 0.05) 100%) !important;
  border: 1px solid rgba(33, 150, 243, 0.15) !important;
  box-shadow: 
    0 10px 30px rgba(33, 150, 243, 0.1),
    0 5px 15px rgba(100, 181, 246, 0.08) !important;
}

#sanitaerservice .benefit-item::before,
#badsanierung .benefit-item::before,
#rohrverstopfung .benefit-item::before {
  background: linear-gradient(90deg, #2196F3, #64B5F6) !important;
}

#sanitaerservice .benefit-item:hover,
#badsanierung .benefit-item:hover,
#rohrverstopfung .benefit-item:hover {
  border-color: rgba(33, 150, 243, 0.25) !important;
  box-shadow: 
    0 20px 40px rgba(33, 150, 243, 0.15),
    0 10px 25px rgba(100, 181, 246, 0.12) !important;
}

#sanitaerservice .benefit-icon,
#badsanierung .benefit-icon,
#rohrverstopfung .benefit-icon {
  background: linear-gradient(135deg, #2196F3, #64B5F6) !important;
  box-shadow: 
    0 10px 25px rgba(33, 150, 243, 0.3),
    0 5px 15px rgba(100, 181, 246, 0.2) !important;
}

#sanitaerservice .benefit-item:hover .benefit-icon,
#badsanierung .benefit-item:hover .benefit-icon,
#rohrverstopfung .benefit-item:hover .benefit-icon {
  box-shadow: 
    0 15px 35px rgba(33, 150, 243, 0.4),
    0 8px 20px rgba(100, 181, 246, 0.3) !important;
}

/* KLIMA THEME - Türkis/Luft */
#klimaservice .benefit-item,
#klimaanlageninstallation .benefit-item {
  background: linear-gradient(135deg, 
    rgba(0, 188, 212, 0.08) 0%, 
    rgba(77, 208, 225, 0.05) 100%) !important;
  border: 1px solid rgba(0, 188, 212, 0.15) !important;
  box-shadow: 
    0 10px 30px rgba(0, 188, 212, 0.1),
    0 5px 15px rgba(77, 208, 225, 0.08) !important;
}

#klimaservice .benefit-item::before,
#klimaanlageninstallation .benefit-item::before {
  background: linear-gradient(90deg, #00BCD4, #4DD0E1) !important;
}

#klimaservice .benefit-item:hover,
#klimaanlageninstallation .benefit-item:hover {
  border-color: rgba(0, 188, 212, 0.25) !important;
  box-shadow: 
    0 20px 40px rgba(0, 188, 212, 0.15),
    0 10px 25px rgba(77, 208, 225, 0.12) !important;
}

#klimaservice .benefit-icon,
#klimaanlageninstallation .benefit-icon {
  background: linear-gradient(135deg, #00BCD4, #4DD0E1) !important;
  box-shadow: 
    0 10px 25px rgba(0, 188, 212, 0.3),
    0 5px 15px rgba(77, 208, 225, 0.2) !important;
}

#klimaservice .benefit-item:hover .benefit-icon,
#klimaanlageninstallation .benefit-item:hover .benefit-icon {
  box-shadow: 
    0 15px 35px rgba(0, 188, 212, 0.4),
    0 8px 20px rgba(77, 208, 225, 0.3) !important;
}

/* GAS INSTALLATION THEME - Violett/Gas */
#gasinstallation .benefit-item {
  background: linear-gradient(135deg, 
    rgba(156, 39, 176, 0.08) 0%, 
    rgba(186, 104, 200, 0.05) 100%) !important;
  border: 1px solid rgba(156, 39, 176, 0.15) !important;
  box-shadow: 
    0 10px 30px rgba(156, 39, 176, 0.1),
    0 5px 15px rgba(186, 104, 200, 0.08) !important;
}

#gasinstallation .benefit-item::before {
  background: linear-gradient(90deg, #9C27B0, #BA68C8) !important;
}

#gasinstallation .benefit-item:hover {
  border-color: rgba(156, 39, 176, 0.25) !important;
  box-shadow: 
    0 20px 40px rgba(156, 39, 176, 0.15),
    0 10px 25px rgba(186, 104, 200, 0.12) !important;
}

#gasinstallation .benefit-icon {
  background: linear-gradient(135deg, #9C27B0, #BA68C8) !important;
  box-shadow: 
    0 10px 25px rgba(156, 39, 176, 0.3),
    0 5px 15px rgba(186, 104, 200, 0.2) !important;
}

#gasinstallation .benefit-item:hover .benefit-icon {
  box-shadow: 
    0 15px 35px rgba(156, 39, 176, 0.4),
    0 8px 20px rgba(186, 104, 200, 0.3) !important;
}

/* ALLGEMEINE ANPASSUNG FÜR BESSERE LESBARKEIT */
.benefit-item .benefit-title {
  background: linear-gradient(135deg, var(--text-dark), #333) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  font-weight: 600 !important;
} 