/* Contact CTA Section */
.contact-cta-section {
  background: #f8f9fa;
  padding: 100px 0;
  text-align: center;
  margin-bottom: 0 !important;
}

.contact-cta-content {
  max-width: 900px;
  margin: 0 auto;
}

.contact-cta-subtitle {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.5px;
  background: linear-gradient(135deg, #00a0c8, #0088a2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  text-transform: uppercase;
  margin: 0 0 20px 0;
}

.contact-cta-title {
  font-size: 42px;
  font-weight: 700;
  color: #1a2030;
  margin: 0 0 50px 0;
  line-height: 1.2;
}

/* Actions Container */
.contact-cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

/* E-Mail und Telefon Items */
.contact-cta-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  color: #1a2030;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
}

button.contact-cta-item {
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
  box-sizing: border-box;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

button.contact-cta-item:focus-visible {
  outline: 2px solid #0088a2;
  outline-offset: 2px;
}

@media (min-width: 993px) {
  .contact-cta-content {
    max-width: 1100px;
  }

  .contact-cta-actions {
    flex-wrap: nowrap;
    align-items: stretch;
  }

  .contact-cta-section .contact-cta-actions > .contact-cta-item.email,
  .contact-cta-section .contact-cta-actions > .contact-cta-item.phone,
  .contact-cta-section .contact-cta-actions > .contact-cta-button {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    white-space: nowrap;
    box-sizing: border-box;
    padding: 16px 20px;
  }
}

.contact-cta-item:hover {
  background: #fff;
  border-color: #0088a2;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 136, 162, 0.15);
}

.contact-cta-item svg {
  flex-shrink: 0;
}

/* Hauptbutton */
.contact-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #00a0c8, #0088a2);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 136, 162, 0.3);
}

.contact-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 136, 162, 0.4);
}

.contact-cta-button svg {
  transition: transform 0.3s ease;
}

.contact-cta-button:hover svg {
  transform: translateX(4px);
}

/* Karriere Link */
.contact-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #64748b;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 35px;
  transition: all 0.3s ease;
}

.contact-cta-link:hover {
  color: #0088a2;
}

.contact-cta-link svg {
  transition: transform 0.3s ease;
}

.contact-cta-link:hover svg {
  transform: translateX(4px);
}

/* Social Media Icons */
.contact-cta-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 35px;
}

.contact-cta-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 50%;
  color: #64748b;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-cta-social a:hover {
  background: #0088a2;
  border-color: #0088a2;
  color: #fff;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .contact-cta-section {
    padding: 70px 0;
  }
  
  .contact-cta-title {
    font-size: 36px;
    margin-bottom: 40px;
  }
  
  .contact-cta-actions {
    flex-direction: column;
    gap: 20px;
  }
  
  .contact-cta-item,
  .contact-cta-button {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media screen and (max-width: 799px) {
  .contact-cta-section .container {
    padding: 0 0px !important;
    width: auto;
  }
  
  .mobile-break {
    display: inline;
  }
  
  .contact-cta-actions {
    flex-direction: column;
    gap: 20px;
  }
  
  .contact-cta-item {
    width: 100%;
    display: flex;
    align-items: center;
  }
  
  .contact-cta-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media screen and (min-width: 800px) {
  .mobile-break {
    display: none;
  }
}

@media (max-width: 768px) {
  .contact-cta-section {
    padding: 60px 0;
  }
  
  .contact-cta-subtitle {
    font-size: 12px;
  }
  
  .contact-cta-title {
    font-size: 32px;
    margin-bottom: 35px;
  }
  
  .contact-cta-item,
  .contact-cta-button {
    font-size: 14px;
    padding: 14px 24px;
  }

  button.contact-cta-item {
    font-size: 14px;
  }
  
  .contact-cta-social {
    gap: 15px;
  }
  
  .contact-cta-social a {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 576px) {
  .contact-cta-section {
    padding: 50px 20px;
  }
  
  .contact-cta-title {
    font-size: 28px;
  }
  
  .contact-cta-item span {
    font-size: 13px;
  }
}

