@keyframes float {
  0% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(-10px) translateX(5px);
  }

  100% {
    transform: translateY(0) translateX(0);
  }
}

@keyframes float-delay {
  0% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(10px) translateX(-5px);
  }

  100% {
    transform: translateY(0) translateX(0);
  }
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(79, 70, 229, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(79, 70, 229, 0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-float-delay {
  animation: float-delay 7s ease-in-out infinite;
}

.wordpress-hero {
  position: relative;
  background-color: #111827;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5);
  overflow-x: hidden;
  min-height: 600px !important;
  display: flex;
  align-items: center;
  padding-top: 240px !important;
  margin-top: -200px !important;
}

/* 
 * ============================================
 * DARK HEADER STİLLERİ ARTIK dark-hero.css'DE
 * ============================================
 */



.wordpress-hero .container {
  position: relative;
  z-index: 10;
}

.wp-logo-pulse {
  position: relative;
}

.wp-logo-pulse::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  animation: pulse-glow 2s infinite;
  z-index: -1;
}

.feature-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.feature-card .feature-icon {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: rgba(255, 255, 255, 0.2);
}

.plan-card {
  transition: all 0.3s ease;
  transform: translateY(0);
}

.plan-card:hover {
  transform: translateY(-10px);
}

.plan-card .popular-badge {
  position: absolute;
  top: 0;
  right: 2rem;
  background: linear-gradient(90deg, #7c3aed, #4f46e5);
  color: white;
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  border-radius: 0 0 0.5rem 0.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.star {
  position: absolute;
  width: 3px;
  height: 3px;
  background-color: white;
  border-radius: 50%;
  opacity: 0.3;
  animation: twinkle 4s infinite;
}

@keyframes twinkle {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 0.8;
  }
}

.wp-block {
  position: absolute;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  animation: float 8s ease-in-out infinite;
}

.wp-block.block-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 5%;
  animation-delay: 0s;
}

.wp-block.block-2 {
  width: 60px;
  height: 60px;
  top: 60%;
  left: 10%;
  animation-delay: 1s;
}

.wp-block.block-3 {
  width: 70px;
  height: 70px;
  top: 30%;
  right: 8%;
  animation-delay: 2s;
}

.wp-block.block-4 {
  width: 50px;
  height: 50px;
  top: 70%;
  right: 12%;
  animation-delay: 3s;
}

@media (max-width: 768px) {
  .wordpress-hero {
    min-height: auto;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .wp-block {
    display: none;
  }
}

.fade-in {
  animation: fadeIn 0.8s ease-out forwards;
  opacity: 0;
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.fade-in-right {
  animation: fadeInRight 0.8s ease-out forwards;
  opacity: 0;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

.delay-5 {
  animation-delay: 0.5s;
}

.pricing-toggle {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 9999px;
  padding: 0.25rem;
  display: inline-flex;
  position: relative;
}

.pricing-toggle button {
  position: relative;
  z-index: 1;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.pricing-toggle .toggle-bg {
  position: absolute;
  height: 85%;
  top: 8%;
  left: 0.25rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
  background: white;
}

.pricing-toggle[data-active="yearly"] .toggle-bg {
  transform: translateX(100%);
}

/* Not: .wp-plans-menu ve .plan-nav-* bileşeni site geneli kullanım için style.css'e taşındı */

/* WordPress Planları Liste Bölümü */
.wordpress-plans {
  position: relative;
  z-index: 10;
  background-color: #fcfcfd;
}

/* Animasyon */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeInUp 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000) forwards;
  opacity: 0;
}

/* Fiyat kartları için yeni düzenlemeler */
.pricing-card {
  min-height: 580px;
  /* Daha kısa kartlar */
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 5px 20px -10px rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.08);
}

.pricing-card .grow {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Fiyat kartlarının iç bölümlerini ortalama */
.pricing-card .p-8 {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* DomainPress kartı için özel stil */
.pricing-card.scale-\[1\.02\] {
  background-image: linear-gradient(to bottom right, rgba(124, 58, 237, 0.01) 0%, rgba(255, 255, 255, 0) 70%);
  transition: all 0.4s ease;
}

.pricing-card.scale-\[1\.02\]:hover {
  background-image: linear-gradient(to bottom right, rgba(124, 58, 237, 0.02) 0%, rgba(255, 255, 255, 0) 80%);
}

/* Fiyat kartları için yeni gölge efektleri */
.pricing-card.hover\:shadow-xl:hover {
  box-shadow: 0 12px 20px -5px rgba(0, 0, 0, 0.08);
}

.pricing-card.hover\:shadow-2xl:hover {
  box-shadow: 0 15px 30px -8px rgba(79, 70, 229, 0.1);
}

/* Fiyat gösterim kartı için yeni stiller */
.pricing-card .bg-gradient-to-br {
  transform: translateY(0);
  transition: all 0.3s ease;
}

.pricing-card:hover .bg-gradient-to-br {
  transform: translateY(-2px);
}

/* Button efekt hover ışık efekti - daha zarif versiyonu */
.pricing-card button {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.pricing-card button::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: all 0.5s ease;
  opacity: 0;
}

.pricing-card:hover button::after {
  left: 100%;
  opacity: 1;
}

/* İkon hareketini düzenle */
.pricing-card .w-14.h-14 {
  transition: all 0.3s ease;
}

.pricing-card:hover .w-14.h-14 {
  transform: scale(1.05);
}

/* Responsive ayarlar */
@media (max-width: 768px) {
  .pricing-card {
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card.scale-\[1\.02\] {
    transform: scale(1);
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}

/* Karşılaştırma Tablosu Stilleri */
#comparison-table {
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: top center;
}

#comparison-table.max-h-0 {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
}

#comparison-table.max-h-\[2000px\] {
  max-height: 2000px;
  opacity: 1;
  pointer-events: auto;
}

#comparison-toggle {
  transition: all 0.3s ease;
}

#comparison-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
}

#comparison-toggle svg {
  transition: all 0.3s ease;
}

.comparison-icon-down,
.comparison-icon-up {
  transition: all 0.3s ease;
}

/* Karşılaştırma tablosu içindeki butonlar */
#comparison-table button {
  transition: all 0.3s ease;
}

#comparison-table button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Karşılaştırma tablosu satır hover efekti */
#comparison-table tbody tr {
  transition: all 0.2s ease;
}

#comparison-table tbody tr:hover {
  background-color: rgba(249, 250, 251, 0.5);
}

/* Karşılaştırma tablosu onay işaretleri */
#comparison-table .fas.fa-check {
  transition: all 0.2s ease;
}

#comparison-table tr:hover .fas.fa-check {
  transform: scale(1.2);
}

/* Önerilen sütun için özel efekt */
#comparison-table th.bg-gradient-to-b,
#comparison-table td.bg-gradient-to-b {
  position: relative;
  z-index: 1;
}

#comparison-table th.bg-gradient-to-b::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(79, 70, 229, 0.03), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  pointer-events: none;
}

#comparison-table th.bg-gradient-to-b:hover::before {
  opacity: 1;
}

/* Responsive ayarları */
@media (max-width: 768px) {
  #comparison-table {
    overflow-x: auto;
  }

  #comparison-table table {
    min-width: 650px;
  }

  #comparison-table th,
  #comparison-table td {
    padding: 0.75rem;
  }

  #comparison-table th .w-12.h-12 {
    width: 2.5rem;
    height: 2.5rem;
  }

  #comparison-table th .w-8.h-8 {
    width: 1.5rem;
    height: 1.5rem;
  }

  #comparison-table th span.text-lg {
    font-size: 0.875rem;
  }

  #comparison-table button {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
}

/* WordPress Migrasyon Section Stilleri */
.migration-section {
  position: relative;
  overflow: hidden;
  color: #fff;
}

.migration-section h2 {
  background: linear-gradient(to right, #fff, #ccc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* Laptop çerçevesi stilleri */
.laptop-frame {
  position: relative;
  transform: perspective(1500px) rotateY(-5deg) rotateX(5deg) rotate(1deg);
  transition: all 0.5s ease-in-out;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

.laptop-frame:hover {
  transform: perspective(1500px) rotateY(0deg) rotateX(0deg) rotate(0deg);
}

.laptop-frame::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.3) 0%, rgba(92, 29, 212, 0.1) 50%, rgba(26, 18, 81, 0.2) 100%);
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.laptop-frame:hover::before {
  opacity: 1;
}

/* Video/iframe üzerindeki kontroller için stil */
.laptop-frame iframe {
  transition: all 0.3s ease;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

/* Migration kartları için stiller */

.migration-section .grid>div:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* İkonlar için animasyon */
.migration-section .fas {
  transition: all 0.3s ease;
}

.migration-section .grid>div:hover .fas {
  transform: scale(1.2);
}

/* Responsive düzenlemeler */
@media (max-width: 1024px) {
  .migration-section .flex-col.lg\:flex-row {
    gap: 3rem;
  }

  .laptop-frame {
    transform: perspective(1500px) rotateY(0deg) rotateX(0deg) rotate(0deg);
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .migration-section h2 {
    font-size: 2.5rem;
  }

  .migration-section .flex-wrap.gap-5 {
    justify-content: center;
  }

  .laptop-frame {
    max-width: 450px;
    margin-top: 2rem;
  }
}

/* Video play butonu animasyonu */
.play-overlay {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.laptop-frame:hover .play-overlay {
  transform: scale(1.1);
}

@keyframes pulse-play {
  0% {
    box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.7);
    transform: scale(1);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(79, 70, 229, 0);
    transform: scale(1.05);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(79, 70, 229, 0);
    transform: scale(1);
  }
}

.play-overlay .bg-indigo-600 {
  animation: pulse-play 2s infinite;
  box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.7);
}

/* Video iframe'i tıklandığında play butonunu gizleme - JS ile beraber çalışır */
.iframe-clicked .play-overlay {
  opacity: 0;
  pointer-events: none;
}

/* WordPress Özellikler Section Stilleri */
.features-section {
  background-color: #fff;
  position: relative;
  z-index: 5;
}

.features-section h2 {
  color: #333;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.features-section p {
  color: #666;
  line-height: 1.6;
}

/* Özellik Kartları */
.feature-box {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  will-change: transform, box-shadow, border-color;
  height: 100%;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
  border-color: rgba(79, 70, 229, 0.2) !important;
}

.feature-box::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 4px;
  bottom: 0;
  left: 0;
  background: linear-gradient(to right, #4F46E5, #7C3AED, #10B981);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-box:hover::after {
  opacity: 1;
}

/* Görsel Bölümü */
.feature-box .bg-indigo-50 {
  transition: all 0.4s ease;
  overflow: hidden;
}

.feature-box:hover .bg-indigo-50 {
  transform: scale(1.02);
}

.feature-box img {
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: scale(1);
}

.feature-box:hover img {
  transform: scale(1.05);
}

/* Learn More Link */
.feature-box a {
  position: relative;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.feature-box a svg {
  transition: transform 0.3s ease;
}

.feature-box a:hover svg {
  transform: translateX(4px);
}

.feature-box a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.feature-box a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Ana bölüm "See All Our Plans" linki */
.features-section .text-indigo-600 {
  position: relative;
  transition: all 0.3s ease;
}

.features-section .text-indigo-600:hover {
  letter-spacing: 0.01em;
}

.features-section .text-indigo-600 svg {
  transition: transform 0.3s ease;
}

.features-section .text-indigo-600:hover svg {
  transform: translateX(4px);
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
  .features-section .grid {
    gap: 2rem;
  }

  .feature-box {
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }

  .feature-box .bg-indigo-50 {
    height: 240px;
  }
}
/* ============================================
   Fiyat Kartı Tooltip Düzeltmeleri
   ============================================ */

/* Tasarruf etiketi tooltip'i (info ikonu hover'ında görünür) */
.tooltip-trigger:hover .tooltip-content {
  opacity: 1;
  visibility: visible;
}

/* Kart sarmalayıcıları (transform-gpu) kendi stacking context'ini
   oluşturduğundan tooltip komşu kartın arkasında kalıyordu;
   hover edilen kart öne alınır */
.transform-gpu:hover {
  z-index: 30;
}
