/* === ÜLDINE === */
* {
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #f0f4f8, #e2f0ea);
  min-height: 100vh;
}

/* === HEADER / NAVIGATION === */
.site-header {
  background: #ffffffcc;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 16px 24px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
}

/* SVG IKOON */
.svg-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 10px;
}

.ikoon {
  width: 40px;
  height: 40px;
}

.ikoon:hover circle {
  fill: red;
  transition: 0.3s;
  cursor: pointer;
}

.caption {
  font-size: 10px;
  color: #666;
  margin-top: 4px;
}

/* Logo */
.logo {
  font-size: 22px;
  font-weight: 700;
  color: #007aff;
  margin-right: auto;
}

/* Nav Menu */
.nav-menu a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #007aff;
}

.nav-menu .cta {
  background: #007aff;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s;
}

.nav-menu .cta:hover {
  background: #005fcc;
}

/* === PAGE WRAPPER === */
.page-wrapper {
  max-width: 1200px;
  width: 100%;
  margin: 60px auto;
  padding: 0 20px;
}

/* === PAKETID === */
.packages {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: #fff;
  border: 2px solid #d0e6d6;
  border-radius: 16px;
  padding: 32px;
  width: 320px;
  position: relative;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #d9d6f3;
  color: #4b3f99;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 16px;
  font-weight: 600;
}

.popular {
  background: #e6f9e6;
  color: #007a33;
}

.card h3 {
  margin-top: 32px;
  margin-bottom: 8px;
  font-size: 24px;
}

.price {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 4px;
}

.price small {
  font-weight: normal;
  font-size: 14px;
  color: #666;
  text-decoration: line-through;
}

.features {
  margin: 24px 0;
  list-style: none;
  padding: 0;
}

.features li {
  display: flex;
  align-items: center;
  font-size: 16px;
  margin-bottom: 12px;
}

.features li::before {
  content: '✔';
  font-size: 18px;
  font-weight: bold;
  margin-right: 10px;
  line-height: 1;
}

.features li.available::before {
  color: #2e7d32;
}

.features li.unavailable {
  color: #999;
}

.features li.unavailable::before {
  color: #ccc;
}

.note {
  font-size: 14px;
  color: #555;
  margin-bottom: 24px;
  min-height: 60px;
}

.button {
  background: #007aff;
  color: white;
  text-align: center;
  padding: 14px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s ease;
}

.button:hover {
  background: #005fcc;
}

.guarantee {
  font-size: 12px;
  color: #888;
  margin-top: 18px;
  text-align: center;
}

.guarantee strong {
  font-weight: 600;
  color: #444;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .card {
    width: 100%;
    max-width: 400px;
  }

  .nav-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-menu {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .logo {
    margin-bottom: 10px;
  }

  .svg-wrapper {
    margin-bottom: 10px;
  }
}
