/* Airplane Go to Top Button */
.airplane-go-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 70px;
  height: 70px;
  background: #4285F4;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
  z-index: 999;
  transform: translateY(20px) rotate(0deg);
}

.airplane-go-top:hover {
  background: #2CC8B5;
  box-shadow: 0 6px 30px rgba(59, 130, 246, 0.4);
  transform: translateY(-3px) rotate(0deg);
}

.airplane-go-top.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) rotate(0deg);
}

.airplane-go-top svg {
  width: 24px;
  height: 24px;
  color: white;
  transform: none;
  transition: transform 0.3s ease;
}

.go-top-text {
  font-size: 11px;
  font-weight: 600;
  color: white;
  letter-spacing: 0.5px;
  margin-top: -2px;
}

.airplane-go-top:hover svg {
  transform: translateY(-3px);
}

/* Animation */
@keyframes fly-up {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.airplane-go-top:active svg {
  animation: fly-up 0.6s ease;
}

@media (max-width: 768px) {
  .airplane-go-top {
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
  }
  
  .airplane-go-top svg {
    width: 20px;
    height: 20px;
  }
  
  .go-top-text {
    font-size: 10px;
  }
}