/* Your existing CSS here — unchanged */
  .chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  .chat-button {
    background: linear-gradient(135deg, #e5b5a1, #f2ccb7);
    color: #c7326b;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow:
      0 0 10px #963b56,
      0 0 20px #963b56,
      0 0 30px #963b56;
    border: none;
    outline: none;
    position: relative;
    transition: all 0.3s ease;
    animation: containerBounce 4s cubic-bezier(0.28, 0.84, 0.42, 0.98) infinite;
    transform-origin: center bottom;
  }

  @keyframes containerBounce {
    0%, 20%, 50%, 100% { transform: translateY(0); }
    10% { transform: translateY(-15px); }
    30% { transform: translateY(-8px); }
  }

  .text-cloud {
    position: absolute;
    right: 0;
    bottom: 80px;
    background: #9f00ff;
    color: white;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 14px;
    font-weight: 600;
    box-shadow:
      0 0 10px rgba(159, 0, 255, 0.7),
      0 0 20px rgba(159, 0, 255, 0.5);
    width: 220px;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
    animation: containerBounce 4s cubic-bezier(0.28, 0.84, 0.42, 0.98) infinite;
    z-index: 2;
  }

  .text-cloud:after {
    content: '';
    position: absolute;
    right: 15px;
    bottom: -10px;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-top-color: #9f00ff;
    border-bottom: 0;
    filter: drop-shadow(0 3px 5px rgba(159, 0, 255, 0.5));
  }

  .text-cloud.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
  }

  .cloud-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 190px;
  }

  .cloud-menu li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
  }

  .cloud-menu li:last-child {
    border-bottom: none;
  }

  .cloud-menu li:hover {
    color: #f2ccb7;
    transform: translateX(3px);
    text-shadow: 0 0 5px white;
  }

  .cloud-menu li i {
    margin-right: 10px;
    width: 18px;
    text-align: center;
    font-size: 16px;
  }

  .chat-options {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: #1a001f;
    border-radius: 12px;
    padding: 15px;
    box-shadow:
      0 0 12px rgba(159, 0, 255, 0.5),
      0 0 24px rgba(159, 0, 255, 0.3);
    width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(159, 0, 255, 0.4);
    z-index: 1;
  }

  .chat-widget.active .chat-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .chat-option {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 8px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: white;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
  }

  .chat-option:hover {
    background: rgba(159, 0, 255, 0.2);
    transform: translateX(2px);
  }

  .chat-option i {
    font-size: 18px;
    margin-right: 12px;
    width: 20px;
    text-align: center;
  }

  .chat-option.whatsapp i {
    color: #25D366;
  }

  .chat-option.telegram i {
    color: #0088cc;
  }

  .chat-option-text {
    font-size: 14px;
    font-weight: 500;
  }

  .booking-option {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 8px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: white;
    background: rgba(255, 193, 7, 0.1);
  }

  .booking-option:hover {
    background: rgba(255, 193, 7, 0.2);
    transform: translateX(2px);
  }

  .booking-option i {
    color: #FFC107;
  }
  .text-cloud.hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}
.online-indicator {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 12px;
  height: 12px;
  background-color: #28a745;
  border: 2px solid white;
  border-radius: 50%;
  box-shadow: 0 0 5px #28a745;
  z-index: 2;
  animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}