/* Green Valley Landscaping - restrained sticky contact controls */
.gv-sticky-contact {
  position: fixed;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.gv-sticky-contact.gv-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.gv-sticky-contact a {
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
}

.gv-sticky-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: block;
}

/* Desktop/tablet: one compact WhatsApp action in the lower-right corner. */
.gv-sticky-contact--desktop {
  right: 22px;
  bottom: 22px;
}

.gv-sticky-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  background: #146b36;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 10px 30px rgba(15, 23, 42, .18);
  font: 700 14px/1.1 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  white-space: nowrap;
}

.gv-sticky-whatsapp:hover {
  background: #124f2b;
  transform: translateY(-1px);
}

.gv-sticky-whatsapp:focus-visible,
.gv-mobile-action:focus-visible {
  outline: 3px solid rgba(55,156,64,.28);
  outline-offset: 3px;
}

/* Mobile: slim two-action bar that sits above the browser safe area. */
.gv-sticky-contact--mobile {
  display: none;
  left: 10px;
  right: 10px;
  bottom: max(10px, env(safe-area-inset-bottom));
  padding: 6px;
  gap: 6px;
  border-radius: 16px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(20,107,54,.14);
  box-shadow: 0 10px 32px rgba(15,23,42,.18);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.gv-mobile-action {
  min-width: 0;
  min-height: 46px;
  display: flex;
  flex: 1 1 0;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 10px;
  border-radius: 11px;
  font: 800 13px/1 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  white-space: nowrap;
}

.gv-mobile-action--call {
  color: #124f2b !important;
  background: #eef8f0;
  border: 1px solid #bddfb2;
}

.gv-mobile-action--whatsapp {
  color: #fff !important;
  background: #146b36;
  border: 1px solid #146b36;
}

@media (max-width: 767px) {
  .gv-sticky-contact--desktop { display: none !important; }
  .gv-sticky-contact--mobile { display: flex; }
  body.gv-sticky-contact-active { padding-bottom: 74px; }
}

@media (min-width: 768px) {
  .gv-sticky-contact--mobile { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  .gv-sticky-contact { transition: none; }
  .gv-sticky-whatsapp:hover { transform: none; }
}
