/* === Χρήσιμα Τηλέφωνα — Wave Glow Style (ALL LANGUAGES) === */
.block-block-content8fc4e737-a7c2-4848-ace7-9827329db250
.field--name-body p a {
  display: block !important;
  width: 100% !important;
  padding: 14px 18px !important;
  background: rgba(0, 136, 204, 0.14) !important;
  border-radius: 8px !important;
  color: #005f8f !important;
  font-weight: 700 !important;
  font-size: 1.05rem !important;
  text-decoration: none !important;
  border: none !important;
  outline: none !important;
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease !important;
}

/* Hover — χρώμα & κίνηση */
.block-block-content8fc4e737-a7c2-4848-ace7-9827329db250
.field--name-body p a:hover {
  color: #003e5e !important;
  text-decoration: none !important;
  border: none !important;
}

/* Wave glow effect */
.block-block-content8fc4e737-a7c2-4848-ace7-9827329db250
.field--name-body p a::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.45),
    transparent
  );
  transition: 0.45s ease;
  pointer-events: none;
}

/* Glow animation on hover */
.block-block-content8fc4e737-a7c2-4848-ace7-9827329db250
.field--name-body p a:hover::after {
  left: 0;
}

/*ανασήκωση του button */
.block-block-content8fc4e737-a7c2-4848-ace7-9827329db250
.field--name-body p a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* Μια λεπτή μπλε γραμμή που φωτίζει στο hover*/
.block-block-content8fc4e737-a7c2-4848-ace7-9827329db250
.field--name-body p a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #0088cc;
  opacity: 0.4;
  transition: 0.25s ease;
}

.block-block-content8fc4e737-a7c2-4848-ace7-9827329db250
.field--name-body p a:hover::before {
  opacity: 1;
}

/* Touch-friendly mode (για κινητά δάχτυλα λουκάνικα)*/
@media (max-width: 768px) {
  .block-block-content8fc4e737-a7c2-4848-ace7-9827329db250
  .field--name-body p a {
    padding: 18px 18px !important;
    font-size: 1.1rem !important;
  }
}

/* να τραβάει μάτι διακριτικά */
@keyframes softPulse {
  0%   { box-shadow: 0 0 0 rgba(0,136,204,0); }
  50%  { box-shadow: 0 0 14px rgba(0,136,204,0.25); }
  100% { box-shadow: 0 0 0 rgba(0,136,204,0); }
}

.block-block-content8fc4e737-a7c2-4848-ace7-9827329db250
.field--name-body p a {
  animation: softPulse 2.5s ease-in-out 1;
}
