/* =====================
   RESET & GENEL
===================== */
* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  background: #f9fafb;
  color: #111;
  overflow-x: hidden;
}

/* =====================
   HERO
===================== */
.hero {
  min-height: 100vh;
  padding: 120px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: radial-gradient(circle at top, #ebc325, #af1e1e);
  background-size: 200% 200%;
  animation: heroFade 1.2s ease forwards, gradientMove 12s ease infinite;
  color: white;
}

@keyframes heroFade {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero h1 {
  font-size: 56px;
  max-width: 900px;
  line-height: 1.2;
}

.hero p {
  font-size: 20px;
  max-width: 600px;
  margin-top: 20px;
  opacity: 0.95;
}

/* =====================
   TRUST BADGES
===================== */
.trust-badges {
  margin-top: 18px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 14px;
}

.trust-badges span {
  background: rgba(255,255,255,0.15);
  padding: 6px 14px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

/* =====================
   BUTTON
===================== */
.btn {
  margin-top: 30px;
  padding: 14px 38px;
  font-size: 16px;
  font-weight: 600;
  background: linear-gradient(135deg, #f97316, #fb923c);
  color: white;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 15px 40px rgba(249,115,22,0.4);
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 25px 60px rgba(249,115,22,0.6);
}

/* =====================
   SECTIONS
===================== */
section {
  padding: 140px 20px;
  text-align: center;
}

/* =====================
   SERVICES
===================== */
.services {
  background: #020617;
  color: white;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 40px;
  border-radius: 24px;
  transition: all 0.4s ease;
}

.card:hover {
  transform: translateY(-12px) scale(1.02);
}

/* =====================
   PROCESS
===================== */
.process ol {
  max-width: 520px;
  margin: 40px auto 0;
  text-align: left;
}

/* =====================
   ABOUT
===================== */
.about-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
  text-align: left;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-box {
  background: #f9fafb;
  padding: 26px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-6px);
}

/* =====================
   CONTACT
===================== */
#contact {
  background: linear-gradient(135deg, #ebc325, #af1e1e);
  color: white;
}

/* =====================
   SCROLL REVEAL
===================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* =====================
   WHATSAPP FLOAT (GARANTİ)
===================== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  animation: whatsappPulse 2.5s infinite;
}

.whatsapp-float i {
  font-size: 28px;
  color: white;
}

@keyframes whatsappPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* =====================
   CUSTOM CURSOR (DÜZELTİLDİ)
===================== */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.6);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9998; /* WhatsApp’ın ALTINDA */
}

/* Mobilde cursor kapalı */
@media (max-width: 768px) {
  .custom-cursor {
    display: none;
  }
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .cards,
  .about-features {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 40px;
  }
}
