/* GEORGE tecoil® Produktlinien Section Styles */

:root {
  --brand-cyan: #00bcd4;
  --brand-yellow: #fdc300;
}

/* Section Lines */
.section-lines {
  background: #f8f9fa;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* Background Pattern */
.section-lines::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* Section Header */
.section-lines .section-head {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.section-lines .title-yellow {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0a1628;
  text-transform: none;
  letter-spacing: -0.5px;
  margin-bottom: 0;
  text-shadow: none;
}

/* Product Groups Grid - Side by side layout */
.chip-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Product Group Card - Compact side by side */
.chip {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-white {
  background: white;
}

/* Product Icon */
.chip-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
  color: #fdc300;
}

/* Hover Effect */
.chip:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: #fdc300;
}

/* Product Title */
.chip h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0;
  color: #0a1628;
  position: relative;
  line-height: 1.3;
}

/* Remove paragraph for compact design */
.chip p {
  display: none;
}

/* Number Badge (optional) */
.chip::after {
  content: '';
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(253, 195, 0, 0.15);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}

.chip:hover::after {
  opacity: 1;
  transform: scale(1.2);
}

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

.chip {
  animation: fadeInUp 0.6s ease backwards;
}

.chip:nth-child(1) { animation-delay: 0.1s; }
.chip:nth-child(2) { animation-delay: 0.2s; }
.chip:nth-child(3) { animation-delay: 0.3s; }
.chip:nth-child(4) { animation-delay: 0.4s; }

/* Landau Wave Transitions for Produktlinien */
.custom-shape-divider-bottom-produktlinien {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
  z-index: 10;
}

.custom-shape-divider-bottom-produktlinien svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 120px;
}

.custom-shape-divider-top-expertise {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 10;
}

.custom-shape-divider-top-expertise svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 120px;
  transform: rotateY(180deg);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .chip-grid {
    gap: 30px;
  }
  
  .chip {
    width: 140px;
  }
}

@media (max-width: 768px) {
  .section-lines {
    padding: 60px 0;
  }

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

  .chip-grid {
    gap: 20px;
  }

  .chip {
    width: 120px;
    padding: 20px 15px;
  }
  
  .chip-icon {
    font-size: 2rem;
  }

  .chip h3 {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .section-lines {
    padding: 50px 0;
  }

  .section-lines .title-yellow {
    font-size: 1.5rem;
  }
  
  .chip-grid {
    gap: 15px;
  }

  .chip {
    width: 100px;
    padding: 15px 10px;
  }
  
  .chip-icon {
    font-size: 1.75rem;
    margin-bottom: 10px;
  }

  .chip h3 {
    font-size: 0.75rem;
  }
}