/**
 * Anasayfaya Dönüş CTA Butonu (Home Return CTA)
 */

:root {
  /* --- Renk ve Gradyan Ayarları --- */
  --cta-bg-gradient: linear-gradient(90deg, #00ffff 0%, #007bff 100%); /* Turkuazdan Maviye Canlı Gradyan */
  --cta-text-color: #ffffff;         /* Metin ve ikon rengi */
  --cta-hover-bg: linear-gradient(90deg, #00e5e5 0%, #0056b3 100%);  /* Hover durumu gradyanı */

  /* --- Boyut ve Font Ayarları --- */
  --cta-height: 54px;                /* Buton yüksekliği */
  --cta-font-size: 16px;             /* Yazı boyutu */
  --cta-border-radius: 4px;          /* Köşe yuvarlatması */

  /* --- Animasyon Ayarları --- */
  --cta-pulse-speed: 1.8s;           /* Yanıp sönme hızı */
  --cta-glow-color: rgba(0, 255, 255, 0.6); /* Yanan-sönen parlama gölgesi */
}

/* Ana CTA Buton Kapsayıcı Linki */
.jet-home-return-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: var(--cta-height, 54px);
  background: var(--cta-bg-gradient);
  color: var(--cta-text-color, #ffffff) !important;
  font-size: var(--cta-font-size, 16px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-align: center;
  text-decoration: none !important;
  border-radius: var(--cta-border-radius, 4px);
  padding: 12px 24px;
  margin: 28px 0 20px 0;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.25);
  animation: jetCtaPulse var(--cta-pulse-speed, 1.8s) infinite ease-in-out;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.3s ease;
}

/* Sağdaki Üçgen Ok İkonu */
.jet-home-return-cta .cta-arrow {
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  transform: translateX(0);
  transition: transform 0.25s ease;
}

/* Mouse ile Üzerine Gelindiğinde (:hover) */
.jet-home-return-cta:hover {
  animation-play-state: paused;
  background: var(--cta-hover-bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--cta-glow-color);
  color: #ffffff !important;
  text-decoration: none !important;
}

.jet-home-return-cta:hover .cta-arrow {
  transform: translateX(4px);
}

/* Yanan-Sönen (Pulse / Glow) Animasyonu */
@keyframes jetCtaPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 var(--cta-glow-color);
  }
  50% {
    transform: scale(1.015);
    box-shadow: 0 0 22px 4px var(--cta-glow-color);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 var(--cta-glow-color);
  }
}

/* Mobil Uyumluluk */
@media screen and (max-width: 640px) {
  .jet-home-return-cta {
    font-size: 14px;
    padding: 12px 16px;
    min-height: 48px;
    margin: 22px 0 16px 0;
  }
  .jet-home-return-cta .cta-arrow {
    font-size: 12px;
  }
}
