/* ============================================================
   Sticky Bottom CTA - mobile fixed footer CTA
   ============================================================ */

.sticky-bottom-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: #fff;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
  padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
  gap: 8px;
  align-items: center;
  transform: translateY(100%);
  transition: transform 0.25s ease, opacity 0.25s ease;
  opacity: 0;
}

@media (max-width: 768px) {
  .sticky-bottom-cta {
    display: flex;
  }
}

.sticky-bottom-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.sticky-bottom-cta-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 700;
  transition: transform 0.1s ease;
  gap: 2px;
}

.sticky-bottom-cta-btn:active {
  transform: scale(0.96);
}

.sticky-bottom-cta-btn--phone,
.sticky-bottom-cta-btn--line {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  color: #fff !important;
}

.sticky-bottom-cta-btn--phone {
  background: #1e6ba8;
}

.sticky-bottom-cta-btn--line {
  background: #06c755;
}

.sticky-bottom-cta-icon {
  font-size: 20px;
  line-height: 1;
}

.sticky-bottom-cta-label {
  font-size: 10px;
  letter-spacing: 0.05em;
}

.sticky-bottom-cta-btn--main {
  flex-grow: 1;
  height: 56px;
  background: #1e6ba8;
  color: #fff !important;
  font-size: 15px;
  display: flex;
  flex-direction: row;
  gap: 6px;
}

.sticky-bottom-cta-btn--main:hover {
  background: #155a91;
}

.sticky-bottom-cta-main-text {
  font-weight: 700;
}

.sticky-bottom-cta-main-arrow {
  font-weight: 400;
  transition: transform 0.15s ease;
}

.sticky-bottom-cta-btn--main:hover .sticky-bottom-cta-main-arrow {
  transform: translateX(2px);
}

@media (max-width: 768px) {
  body.has-sticky-cta {
    padding-bottom: 80px !important;
  }
}
