/**
 * FB Travel Call Us 24/7 Support Elementor Widget Styles
 */

/* Main Widget Container */
.fb-travel-support-widget {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f8f8;
  border-radius: 50px;
  padding: 15px 25px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.fb-travel-support-widget:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.fb-travel-support-link {
  text-decoration: none;
  display: block;
  width: 100%;
}

.fb-travel-support-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Avatar Styles */
.fb-travel-support-avatar-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fb-travel-support-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.fb-travel-support-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text Styles */
.fb-travel-support-info {
  display: flex;
  flex-direction: column;
}

.fb-travel-support-text {
  font-size: 14px;
  color: #666666;
  margin-bottom: 2px;
  font-weight: 500;
}

.fb-travel-support-phone {
  font-size: 20px;
  font-weight: 700;
  color: #0047AB;
  line-height: 1.2;
}

/* Animation Styles */

/* Pulse Animation */
.fb-travel-support-animation-pulse {
  position: relative;
}

.fb-travel-support-animation-pulse::before {
  content: '';
  position: absolute;
  border: 3px solid #0047AB;
  border-radius: 50%;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  70% {
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* Bounce Animation */
.fb-travel-support-animation-bounce {
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Wave Animation */
.fb-travel-support-animation-wave {
  position: relative;
  overflow: visible;
}

.fb-travel-support-animation-wave::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background-color: rgba(0, 71, 171, 0.3);
  border-radius: 50%;
  z-index: 1;
  animation: wave 1.5s infinite linear;
}

@keyframes wave {
  0% {
    transform: scale(0.7);
    opacity: 0.8;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* Glow Animation */
.fb-travel-support-animation-glow {
  animation: glow 1.5s infinite alternate;
}

@keyframes glow {
  0% {
    box-shadow: 0 0 5px rgba(0, 71, 171, 0.5);
  }
  100% {
    box-shadow: 0 0 20px rgba(0, 71, 171, 0.8), 0 0 30px rgba(0, 71, 171, 0.6);
  }
}

/* Responsive Styles */
@media (max-width: 767px) {
  .fb-travel-support-widget {
    padding: 10px 15px;
  }
  
  .fb-travel-support-avatar {
    width: 45px;
    height: 45px;
  }
  
  .fb-travel-support-text {
    font-size: 12px;
  }
  
  .fb-travel-support-phone {
    font-size: 16px;
  }
}