/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;800&display=swap');

/* Genel Ayarlar */
body.body-bg {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  color: #fff;
  scroll-behavior: smooth;
  background: linear-gradient(to bottom, #000000 0%, #1a1a1a 33%, #2e2e2e 66%, #3f3f3f 100%);
  background-repeat: no-repeat;
  min-height: 100vh;
}

/* Header */
header {
  background-color: rgba(20, 20, 20, 0.85);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  backdrop-filter: blur(6px);
  padding: 24px 0;
  height: 50px;
  max-height: 50px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-title {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
}

nav a.nav-link {
  margin-left: 1rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s;
}

nav a.nav-link:hover {
  color: #60a5fa;
}

/* Main */
main {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 0;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 3rem;
  text-align: center;
}

/* Paketler Grid */
.packages-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}

.package {
  background-color: rgba(33, 33, 33, 0.85);
  border-radius: 1rem;
  padding: 2rem;
  width: 300px;
  text-align: center;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.package:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(96, 165, 250, 0.3);
}

.package-gray {
  background-color: rgba(44, 44, 44, 0.85);
}

.package-blue {
  background-color: rgba(30, 58, 138, 0.85);
}

.preferred {
  border: 2px solid #60a5fa;
}

.badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #60a5fa;
  color: white;
  padding: 0.2rem 0.5rem;
  font-size: 0.75rem;
  border-radius: 0.25rem;
}

.package-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.old-price {
  text-decoration: line-through;
  color: #ccc;
  font-size: 0.875rem;
}

.price {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.period {
  font-size: 0.875rem;
  color: #ccc;
  margin-bottom: 1rem;
}

.features {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}

.features li {
  margin: 0.5rem 0;
}

.payment {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.payment img {
  height: 40px;
  weight: 20px;
  opacity: 0.9;
}

.btn {
  display: block;
  background-color: #2563eb;
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  margin: 0.5rem 0;
  font-weight: 700;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #1d4ed8;
}

/* Özel Paket */
.special-package {
  margin-top: 6rem;
  background-color: rgba(44, 44, 44, 0.85);
  border-radius: 1rem;
  padding: 2rem;
  width: 400px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
}

/* Footer */
footer {
  text-align: center;
  font-size: 0.875rem;
  color: #6b7280;
  padding: 24px 0;
  background: transparent;
}
