body {
  margin: 0;
  padding-top: 75px; /* Fixed header için */
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #0c1426, #1e293b);
  color: #e2e8f0;
  line-height: 1.6;
}

.main-header {
  background: rgba(15, 23, 42, 0.97);
  backdrop-filter: blur(15px);
  padding: 18px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(212, 175, 55, 0.15);
  transition: all 0.3s ease;
  border-bottom: 3px solid #d4af37;
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: auto;
}

.main-header a {
  text-decoration: none;
  color: #d4af37;
  font-weight: 600;
  transition: color 0.3s ease;
}

.main-header a:hover {
  color: #ffd700;
}

.main-header ul {
  display: flex;
  list-style: none;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.hero {
  position: relative;
  height: 90vh;
  background: linear-gradient(135deg, #1e3a8a, #312e81, #1e40af);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="scales" width="30" height="30" patternUnits="userSpaceOnUse"><g transform="translate(15,15)"><circle cx="0" cy="0" r="8" fill="none" stroke="rgba(212,175,55,0.1)" stroke-width="1"/><circle cx="0" cy="-6" r="2" fill="rgba(212,175,55,0.1)"/></g></pattern></defs><rect width="100" height="100" fill="url(%23scales)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 100;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 25px;
  font-weight: 700;
  color: #FFFFFF;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
  letter-spacing: -1px;
}

.hero-content p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 35px;
  line-height: 1.7;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 700px;
}

.hero .btn {
  background: linear-gradient(135deg, #d4af37, #ffd700);
  color: #1e3a8a;
  padding: 18px 40px;
  border-radius: 35px;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.hero .btn:hover {
  background: linear-gradient(135deg, #ffd700, #ffed4a);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

.features, .pricing, .features-special, .trust, .showcase {
  padding: 90px 0;
}

.features {
  background: linear-gradient(135deg, #0f172a, #1e293b);
}

.features-special {
  background: linear-gradient(135deg, #1e293b, #334155);
}

.trust {
  background: linear-gradient(135deg, #0c1426, #1e3a8a15);
}

.showcase {
  background: linear-gradient(135deg, #312e81, #1e40af);
}

.features h2, .pricing h2, .features-special h2, .trust h2, .showcase h2 {
  text-align: center;
  color: #d4af37;
  margin-bottom: 60px;
  font-weight: 700;
  font-size: 2.8rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
  width: 90%;
  margin: auto;
  max-width: 1300px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  width: 90%;
  margin: auto;
  max-width: 1100px;
}

.trust-grid, .showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  width: 90%;
  margin: auto;
  max-width: 1000px;
}

.card, .paket {
  background: linear-gradient(145deg, #1e293b, #334155);
  padding: 40px 30px;
  border-radius: 20px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  border: 2px solid transparent;
  position: relative;
}

.card {
  text-align: center;
}

.card-icon {
  font-size: 3.5rem;
  margin-bottom: 25px;
  display: block;
  animation: legal-pulse 3s ease-in-out infinite;
}

@keyframes legal-pulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.08) rotate(2deg); }
}

.card h3 {
  color: #d4af37;
  margin-bottom: 18px;
  font-size: 1.4rem;
  font-weight: 600;
}

.card:hover, .paket:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
  border-color: #d4af37;
}

.feature-item, .trust-item, .showcase-item {
  background: linear-gradient(145deg, #1e293b, #475569);
  padding: 30px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  transition: all 0.4s ease;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.feature-item:hover, .trust-item:hover, .showcase-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.4);
}

.feature-item h3, .trust-item h3, .showcase-item h3 {
  color: #d4af37;
  margin-bottom: 12px;
  font-size: 1.2rem;
  font-weight: 600;
}

.trust-icon, .showcase-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
  color: #ffd700;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.paket-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.paket h3 {
  color: #d4af37;
  margin-bottom: 12px;
  font-size: 1.6rem;
  font-weight: 700;
}

.price {
  font-size: 2.5rem;
  color: #ffd700;
  font-weight: 700;
  margin: 15px 0;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.paket ul {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.paket li {
  padding: 10px 0;
  position: relative;
  padding-left: 30px;
  color: #cbd5e1;
}

.paket li::before {
  content: "⚖️";
  position: absolute;
  left: 0;
  color: #d4af37;
  font-weight: bold;
  font-size: 1.1rem;
}

.paket .btn {
  background: linear-gradient(135deg, #1e3a8a, #1e40af);
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  font-weight: 600;
  border: 2px solid transparent;
}

.paket .btn:hover {
  background: linear-gradient(135deg, #1e40af, #2563eb);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
  border-color: #d4af37;
}

.paket.premium {
  border: 3px solid #d4af37;
  background: linear-gradient(145deg, #1e293b, #d4af3710);
  position: relative;
}

.paket.premium::before {
  content: '👑 PRESTİJ PAKETİ';
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #d4af37, #ffd700);
  color: #1e3a8a;
  padding: 10px 25px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Partikül canvas pozisyonlama */
.particle-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Fade-in animasyonu */
section {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease-out;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Container sınıfı */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Avukatlık sektörüne özel animasyonlar */
.justice-scale {
  animation: balance 4s ease-in-out infinite;
}

@keyframes balance {
  0%, 100% { transform: rotate(-2deg); }
  50% { transform: rotate(2deg); }
}

/* Prestij efektleri */
.gold-glow {
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.prestige-border {
  border: 2px solid;
  border-image: linear-gradient(45deg, #d4af37, #ffd700, #d4af37) 1;
}

/* Profesyonel typography */
.legal-text {
  font-family: 'Georgia', serif;
  font-style: italic;
  color: #cbd5e1;
}

/* Responsive düzeltmeler */
@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }
  
  .hero {
    height: 80vh;
    padding: 0 15px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .main-header .container {
    width: 95%;
  }
  
  .grid, .features-grid, .trust-grid, .showcase-grid {
    grid-template-columns: 1fr;
    width: 95%;
  }
  
  .features, .pricing, .features-special, .trust, .showcase {
    padding: 70px 0;
  }
  
  .features h2, .pricing h2, .features-special h2, .trust h2, .showcase h2 {
    font-size: 2.2rem;
  }
  
  .card, .paket {
    padding: 30px 25px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .main-header ul {
    gap: 15px;
  }
  
  .paket.premium::before {
    font-size: 0.8rem;
    padding: 8px 20px;
  }
  
  .card-icon {
    font-size: 3rem;
  }
  
  .trust-icon, .showcase-icon {
    font-size: 2.5rem;
  }
}

footer {
  background: linear-gradient(135deg, #0c1426, #1e3a8a);
  border-top: 3px solid #d4af37;
  text-align: center;
  padding: 30px 0;
  color: #cbd5e1;
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
}