/**
 * CTA Band Component — shared across all templates
 */
.cta-band {
  background: #1a3750;
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--bs-primary, #ffaa17);
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 170, 23, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
}

.cta-band-text {
  flex: 1;
  min-width: 0;
}

.cta-band-heading {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  line-height: 1.25;
}

.cta-band-sub {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.05rem;
  margin: 0;
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}

.cta-band-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.7rem 1.4rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cta-band-pill--phone {
  background: var(--bs-primary, #ffaa17);
  color: #fff;
}

.cta-band-pill--phone:hover {
  background: #e89a0e;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 170, 23, 0.3);
}

.cta-band-pill--wa {
  background: #25d366;
  color: #fff;
}

.cta-band-pill--wa:hover {
  background: #1fb855;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.cta-band-pill--contact {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-band-pill--contact:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .cta-band-inner {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .cta-band-actions {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .cta-band {
    padding: 3rem 0;
  }

  .cta-band-heading {
    font-size: 1.5rem;
  }

  .cta-band-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-band-pill {
    justify-content: center;
  }
}
