/* ============================================================
   CTA BANNER SECTION  (.cta-banner-section + .cta-banner__* classes)
   Template part: template-parts/sections/section-cta-banner.php
   Enqueued on: front page + Contact page
   ============================================================ */

.cta-banner-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 0;
}

.cta-banner__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 144px;
  width: 100%;
}

.cta-banner__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cta-banner__title {
  color: #FFFFFF;
  max-width: 1100px;
  margin: 0 0 24px;
}

.cta-banner__subtitle {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #D1D5DC;
  max-width: 760px;
  margin: 0 0 40px;
}

.cta-banner__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 24px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.25s ease;
  white-space: nowrap;
}

.cta-banner__btn:hover {
  transform: translateY(-2px);
}

.cta-banner__btn--primary {
  background: #D6B54A;
  color: #071B2E;
}

.cta-banner__btn--secondary {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.30);
  color: #FFFFFF;
}

.cta-banner__btn--secondary:hover {
  color: #FFFFFF;
}

@media (max-width: 991px) {
  .cta-banner-section { padding: 90px 0; }
  .cta-banner__container { padding: 0 40px; }
}

@media (max-width: 767px) {
  .cta-banner-section { padding: 70px 0; }
  .cta-banner__container { padding: 0 20px; }
  .cta-banner__subtitle { font-size: 16px; line-height: 26px; }
  .cta-banner__actions { flex-direction: column; width: 100%; gap: 16px; }
  .cta-banner__btn { width: 100%; max-width: 320px; font-size: 16px; padding: 12px 24px; }
}
