/* Floating Video Call + WhatsApp — icon circles, expand label on hover (RS Luxury style) */

.rs-float-cta {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 10050;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  pointer-events: none;
}

.rs-float-cta a,
.rs-float-cta button {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  font-family: Lato, system-ui, sans-serif;
  box-sizing: border-box;
  transition: width 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.rs-float-cta__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.rs-float-cta__icon svg {
  display: block;
}

.rs-float-cta__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
  padding-right: 20px;
  margin-left: -2px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* Gold VIDEO CALL — circle → pill on hover */
.rs-float-cta__video {
  background: linear-gradient(135deg, #d4b872 0%, #c9a961 45%, #b8943f 100%);
  box-shadow: 0 4px 20px rgba(201, 169, 97, 0.4);
}

.rs-float-cta__video:hover,
.rs-float-cta__video:focus-visible {
  width: 168px;
  box-shadow: 0 8px 28px rgba(201, 169, 97, 0.55);
  transform: translateY(-1px);
}

.rs-float-cta__video:hover .rs-float-cta__label,
.rs-float-cta__video:focus-visible .rs-float-cta__label {
  opacity: 1;
}

/* Green WhatsApp — circle → pill on hover */
.rs-float-cta__wa {
  background: linear-gradient(135deg, #25d366 0%, #1ebe57 50%, #128c7e 100%);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.rs-float-cta__wa:hover,
.rs-float-cta__wa:focus-visible {
  width: 158px;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
  transform: translateY(-1px);
}

.rs-float-cta__wa:hover .rs-float-cta__label,
.rs-float-cta__wa:focus-visible .rs-float-cta__label {
  opacity: 1;
}

/* Touch: keep expanded so labels are usable without hover */
@media (hover: none) {
  .rs-float-cta__video {
    width: 168px;
  }

  .rs-float-cta__wa {
    width: 158px;
  }

  .rs-float-cta__label {
    opacity: 1;
  }
}

@media screen and (max-width: 1024px) {
  .rs-float-cta {
    right: 16px;
    bottom: 108px;
  }
}

@media screen and (min-width: 1025px) {
  .rs-float-cta {
    bottom: 28px;
    right: 28px;
  }
}
