/* ===================================================
   ZULASSUNGSSERVICE GEMEINDEN - SPEZIAL CSS
   Datei: assets/css/zulassungsservice-gemeinden.css
   =================================================== */

/* Trust-Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 10px;
  padding: 20px;
  min-height: 140px;
}

.trust-badge {
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 110px;
  min-width: 160px;
}

.trust-badge i {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
  line-height: 1;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.4));
}

.trust-badge strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 6px;
  line-height: 1.4;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.trust-badge small {
  display: block;
  font-size: 0.95rem;
  line-height: 1.4;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn-cta {
  padding: 15px 35px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
  font-size: 1.1rem;
}

.btn-cta-primary {
  background: #28a745;
  color: white;
}

.btn-cta-primary:hover {
  background: #218838;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
  color: white;
}

.btn-cta-secondary {
  background: white;
  color: #0066cc;
}

.btn-cta-secondary:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  color: #0066cc;
}

/* Vergleichstabelle */
.comparison-section {
  padding: 80px 0;
  background: white;
}

.comparison-table {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin: 40px 0;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table thead {
  background: linear-gradient(135deg, #0066cc, #0052a3);
  color: white;
}

.comparison-table th {
  padding: 20px;
  text-align: left;
  font-weight: 600;
  font-size: 1.1rem;
  color: white;
}

.comparison-table td {
  padding: 20px;
  border-bottom: 1px solid #e9ecef;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table .highlight {
  background: #f0f8ff;
  font-weight: 600;
}

.checkmark {
  color: #28a745;
  font-size: 1.3rem;
  font-weight: bold;
}

.crossmark {
  color: #dc3545;
  font-size: 1.3rem;
  font-weight: bold;
}

/* FAQ */
.faq-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.faq-item {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  margin-bottom: 25px;
  border-left: 4px solid #0066cc;
}

.faq-item h3 {
  color: #0066cc;
  margin-bottom: 15px;
  font-size: 1.2rem;
  font-weight: 600;
}

.faq-item p {
  color: #666;
  line-height: 1.7;
  margin: 0;
}

.faq-item ul {
  color: #666;
  line-height: 1.7;
  margin-top: 10px;
}

.faq-item ul li {
  margin-bottom: 8px;
}

/* Kontakt CTA */
.contact-cta {
  background: linear-gradient(135deg, #e9ecef, #dee2e6);
  color: #333;
  padding: 60px 30px;
  border-radius: 20px;
  text-align: center;
  margin: 60px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-cta h2 {
  color: #0066cc;
  margin-bottom: 20px;
  font-size: 2.2rem;
}

.contact-cta p {
  color: #333;
}

.contact-info-box {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.2rem;
  color: #333;
}

.contact-item i {
  font-size: 1.8rem;
  color: #0066cc;
}

.contact-item a {
  color: #0066cc;
  text-decoration: none;
  font-weight: 600;
}

.contact-item a:hover {
  color: #0052a3;
  text-decoration: underline;
}

/* Samstag Badge */
.samstag-badge {
  animation: samstag-pulse 3s infinite;
}

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

/* Breadcrumbs */
#breadcrumbs.breadcrumbs-2 {
  min-height: 600px !important;
}

/* Wappen Größen */
.hero-wappen {
  width: 80px;
  flex-shrink: 0;
}

/* H1 Umbruch-Kontrolle */
.hero-title {
  max-width: 600px;
  line-height: 1.2;
}

/* Tablets */
@media (max-width: 992px) {
  #breadcrumbs.breadcrumbs-2 {
    min-height: 650px !important;
  }
  
  .hero-wappen {
    width: 60px !important;
  }
  
  .hero-title {
    font-size: 2rem !important;
    max-width: 450px !important;
  }
  
  .hero-lead {
    font-size: 1.1rem !important;
  }
}

/* Tablets Klein */
@media (max-width: 768px) {
  .hero-wappen {
    width: 50px !important;
  }

  .hero-title {
    font-size: 1.8rem !important;
    max-width: 400px !important;
  }
  
  .hero-lead {
    font-size: 1rem !important;
  }

  .samstag-badge {
    margin-top: 10px;
  }

  .trust-badges {
    gap: 20px;
  }
  
  .comparison-table {
    overflow-x: auto;
  }
}

/* Smartphones */
@media (max-width: 576px) {
  #breadcrumbs.breadcrumbs-2 {
    min-height: 720px !important;
    padding: 40px 15px !important;
  }
  
  .hero-wappen {
    width: 40px !important;
  }
  
  .hero-title {
    font-size: 1.2rem !important;
    max-width: 280px !important;
  }
  
  .hero-lead {
    font-size: 0.95rem !important;
  }
  
  .trust-badges {
    gap: 15px !important;
    margin-top: 15px !important;
    padding: 15px 10px !important;
  }
  
  .trust-badge {
    min-height: 80px !important;
    min-width: 160px !important;
  }
  
  .trust-badge i {
    font-size: 2rem !important;
    margin-bottom: 8px !important;
  }
  
  .trust-badge strong {
    font-size: 0.95rem !important;
  }
  
  .trust-badge small {
    font-size: 0.8rem !important;
  }
  
  .btn-cta {
    padding: 12px 25px !important;
    font-size: 0.95rem !important;
    width: 100%;
    justify-content: center;
  }
  
  .cta-buttons {
    margin-top: 20px !important;
    gap: 10px !important;
    flex-direction: column;
  }

  .samstag-badge h3 {
    font-size: 20px !important;
  }

  .samstag-badge p {
    font-size: 14px !important;
  }
}
