/* Fison Logo Loader for Website Forms */
.fison-loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  animation: fadeIn 0.3s ease-in;
}

.fison-loader-content {
  text-align: center;
  animation: slideDown 0.5s ease-out;
}

.fison-logo-container {
  position: relative;
  margin-bottom: 30px;
}

.fison-logo {
  width: 150px;
  height: auto;
  animation: logoFloat 2s ease-in-out infinite, logoPulse 1.5s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(39, 137, 199, 0.6));
}

.fison-loader-spinner {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border: 4px solid rgba(39, 137, 199, 0.2);
  border-top: 4px solid #2789c7;
  border-radius: 50%;
  animation: spinLoader 1s linear infinite;
}

.fison-loader-text {
  color: #09589f;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  animation: textPulse 1.5s ease-in-out infinite;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes logoPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes spinLoader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes textPulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}
