.contact-tooltip-container {
  bottom: 90px;
  right: 24px;
  position: fixed;
  z-index: 999;
  display: flex;
  flex-direction: column-reverse; /* Keep message button at bottom */
  align-items: center;
}

@media (max-width: 768px) {
  .contact-tooltip-container {
    bottom: 75px;
    right: 18px;
  }
}

@media (max-width: 448px) {
  .contact-tooltip-container {
    bottom: 60px;
    right: 14px;
  }
}
/* Main button */
.contact-btn {
  background: #ffd700;
  color: #111;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  width: 52px;
  height: 52px;
  font-size: 22px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  display: grid;
  place-items: center;
  margin-top: 12px; /* gap between expanded icons and main button */
}

.contact-btn:hover {
  background: #ffea06;
  transform: translateY(-6px) scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

.contact-btn.open {
  background: #ff4d4d;
  color: #fff;
}

.contact-icon i {
  width: 22px;
  height: 22px;
  display: block;
}

/* Expandable options */
.expand-options {
  display: flex;
  flex-direction: column; /* stack above */
  align-items: center;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}

.expand-options.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.expand-btn {
  background: #fff;
  color: #111;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  font-size: 22px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}

.expand-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.expand-btn i,
.expand-btn svg {
  width: 22px;
  height: 22px;
  display: block;
}

/* Branded hover colors */
.call-btn:hover {
  background: #34c759;
  color: #fff;
}
.whatsapp-btn:hover {
  background: #25d366;
  color: #fff;
}
.form-btn:hover {
  background: #007aff;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-btn,
  .expand-btn {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .contact-btn,
  .expand-btn {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
}

/* Wrapper to hold button + tooltip */
.expand-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Tooltip styling */
.tooltip {
  position: absolute;
  top: 50%;
  right: 65px; /* position tooltip to left of button */
  transform: translateY(-50%);
  background: rgba(50, 50, 50, 0.9);
  color: #fff;
  padding: 5px 8px;
  border-radius: 6px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, right 0.2s ease;
}

/* Show tooltip when hovering over wrapper */
.expand-wrapper:hover .tooltip {
  opacity: 1;
  right: 75px;
}

.call-btn {
  background: #00fffb;
  color: #fff;
}
.whatsapp-btn {
  background: hsl(113, 100%, 40%);
  color: #fff;
}
.form-btn {
  background: #ecd502;
  color: #ec1111;
}

/* Review button */
.review-btn {
  background: #ff0044; /* gold/yellow */
  color: #111;
}

.review-btn:hover {
  background: #ffae00; /* deeper gold on hover */
  color: #fff;
}
