/* Sticky Call / Text CTA bar — shown on location pages for easy conversion */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, #003366 0%, #004080 100%);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  border-top: 2px solid var(--brand-color, #11d3ac);
}

.sticky-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0 1.25rem;
  border-radius: 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
  flex: 1;
  min-width: 200px;
  max-width: 280px;
}

.sticky-cta__btn:active {
  transform: scale(0.98);
}

.sticky-cta__btn_call {
  background: var(--brand-color, #11d3ac);
  color: #003366;
  box-shadow: 0 2px 12px rgba(17, 211, 172, 0.4);
}

.sticky-cta__btn_call:hover {
  background: var(--hover-btn-color, #01af8c);
  color: #fff;
  box-shadow: 0 4px 16px rgba(17, 211, 172, 0.5);
}


/* Reserve space so content isn't hidden behind sticky bar */
body.has-sticky-cta {
  padding-bottom: 76px;
}

@media (max-width: 479px) {
  .sticky-cta {
    padding: 0.625rem 0.75rem;
    gap: 0.5rem;
  }
  .sticky-cta__btn {
    min-height: 44px;
    padding: 0 1rem;
    font-size: 0.9375rem;
    max-width: none;
  }
  body.has-sticky-cta {
    padding-bottom: 68px;
  }
}

/* Hero & CTA section button row — Call + Text alongside primary CTA */
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.cta-buttons .button,
.cta-buttons .cta-btn-call {
  flex: 0 0 auto;
}

.cta-btn-call,
.cta-btn-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.5rem;
  padding: 0 1.25rem;
  border-radius: 1.875rem;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: background-color 0.2s, transform 0.2s;
}

.cta-btn-call {
  background-color: var(--brand-color, #11d3ac);
  color: #003366;
}

.cta-btn-call:hover {
  background-color: var(--hover-btn-color, #01af8c);
  color: #fff;
}


@media (max-width: 29.99875em) {
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-buttons .button,
  .cta-buttons .cta-btn-call {
    justify-content: center;
  }
}
