/* CTA Banner Section */
.cta-banner-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 100px 0;
  margin: 0;
}

/* Hintergrundbild */
.cta-banner-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/Menue/business.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Gradient Overlay */
.cta-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #00a0c8db, #0088a2c4) !important;
  z-index: 2;
}

/* Content Container */
.cta-banner-section .container {
  position: relative;
  z-index: 3;
  max-width: 1400px;
  padding: 0 40px;
}

.cta-banner-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  color: #fff;
}

/* Linke Spalte - Hauptüberschrift */
.cta-banner-left {
  padding-right: 20px;
}

.cta-banner-title {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
  color: #fff;
}

.cta-banner-title strong {
  font-weight: 700;
}

/* Rechte Spalte - Text und Button */
.cta-banner-right {
  padding-left: 20px;
}

.cta-banner-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  margin: 0 0 28px 0;
  color: #fff;
}

/* Buttons Wrapper */
.cta-banner-buttons-wrapper {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

/* Button - weißer Rahmen mit weißem Text */
.cta-banner-section .button.cta-banner-button {
  background: transparent !important;
  color: #fff !important;
  border: 2px solid #fff !important;
  padding: 16px 48px !important;
  min-width: 280px !important;
  border-radius: 5px !important;
  white-space: nowrap !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 16px !important;
  line-height: 1 !important;
  text-align: center !important;
  transition: background 0.4s cubic-bezier(0.694, 0, 0.335, 1), border 0.4s cubic-bezier(0.694, 0, 0.335, 1), color 0.2s !important;
}

.cta-banner-section .button.cta-banner-button:hover {
  background: #fff !important;
  border-color: #fff !important;
  color: #0088a2 !important;
  transform: translateY(-2px) !important;
}

/* Neuer Button - weißer Hintergrund (wie placetel-btn-primary) */
.cta-banner-section .button.cta-banner-button-white {
  background: #ffffff !important;
  color: #0088a2 !important;
  border: none !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
  padding: 18px 48px !important;
  min-width: 210px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  border-radius: 5px !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
}

.cta-banner-section .button.cta-banner-button-white:hover {
  background: #ffffff !important;
  color: #0088a2 !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2) !important;
  transform: translateY(-2px) !important;
}

/* Responsive */
@media screen and (max-width: 992px) {
  .cta-banner-section {
    padding: 80px 0;
  }
  
  .cta-banner-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .cta-banner-left,
  .cta-banner-right {
    padding: 0;
  }
  
  .cta-banner-title {
    font-size: 28px;
  }
  
  .cta-banner-text {
    font-size: 15px;
  }
  
  .cta-banner-buttons-wrapper {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 768px) {
  .cta-banner-section {
    padding: 70px 0;
  }
  
  .cta-banner-section .container {
    padding: 0 25px;
  }
  
  .cta-banner-title {
    font-size: 24px;
  }
  
  .cta-banner-text {
    font-size: 14px;
    margin-bottom: 24px;
  }
  
  .cta-banner-buttons-wrapper {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-banner-button {
    font-size: 15px !important;
    padding: 13px 28px !important;
    min-width: 100% !important;
    width: 100%;
  }
  
  .cta-banner-button-white {
    font-size: 15px !important;
    padding: 16px 28px !important;
  }
}

