.contact-form-container .flex.items-center {
  align-items: center;
  gap: 1rem;
}

.contact-form-container input[type="tel"] {
  flex: 1;
  min-width: 0;
}

.iti {
  width: 100%;
  display: flex;
  align-items: center;
}

.iti__selected-flag {
  padding: 0.5rem 1rem;
  border-right: 1px solid #e5e7eb;
}

.iti__input {
  border: none;
  padding: 0.5rem;
  flex: 1;
  background: transparent;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.6;
  }
}

.animate-blink {
  animation: blink 1.5s infinite ease-in-out;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

.scrollbar-hide {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

/* Enquiry Button */
.enquiry-btn {
  position: fixed;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  background: linear-gradient(to right, #3b82f6, #8b5cf6);
  color: white;
  font-weight: bold;
  padding: 12px 0px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  rotate: 90deg;
}

.enquiry-btn:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Floating Icons Container */
.floating-icons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
}

.floating-icons.show {
  opacity: 1;
  visibility: visible;
}

/* Icon Styling */
.floating-icon {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.floating-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* WhatsApp Icon Specific Styling */
/* WhatsApp Floating Icon Enhanced Design */
.floating-icon.whatsapp {
  border: 2px solid #25d366;           /* WhatsApp green border */
  background: linear-gradient(135deg, #eafff3 0%, #d4ffe7 100%);
  background-clip: padding-box;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.18), 0 2px 8px rgba(0,0,0,0.08);
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}

.floating-icon.whatsapp:hover {
  border-color: #128c7e;               /* Darker WhatsApp green on hover */
  background: linear-gradient(135deg, #d4ffe7 0%, #b2ffd6 100%);
  box-shadow: 0 8px 32px rgba(18, 140, 126, 0.22), 0 4px 16px rgba(0,0,0,0.12);
}

.floating-icon.whatsapp svg {
  fill: #25d366;
  width: 32px;
  height: 32px;
  transition: fill 0.3s;
}

.floating-icon.whatsapp:hover svg {
  fill: #128c7e;
}

/* Optional: Add a subtle pulse animation to draw attention */
@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0.08); }
}

.floating-icon.whatsapp {
  animation: whatsapp-pulse 2s infinite;
}
@media (max-width: 1020px) {
  .mobile-contact {
    display: none;
  }
}
