/* ===================================
   Aina Saga — Membership Section (Updated)
   =================================== */

.aina-membership-section {
  padding: 80px 0;
  display: flex;
  justify-content: center;
  background: transparent;
}

.aina-membership-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

/* === Card Style === */
.aina-card {
  background: #0b0b0b;
  color: #fff;
  border: 2px solid #ff00cc;
  border-radius: 25px;
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.4);
  width: 280px;
  min-height: 420px;
  padding: 40px 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.aina-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 40px rgba(255, 0, 255, 0.6);
}

/* === Title === */
.aina-card h2 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: #b366ff; /* 💜 Purple Title */
}

/* === Price === */
.aina-card .price {
  font-size: 18px;
  color: #ff55dd;
  margin-bottom: 25px;
  font-weight: 600;
}

/* === Description === */
.aina-card .desc {
  text-align: left;
  font-size: 15px;
  color: #ddd;
  line-height: 1.6;
  margin-bottom: 30px;
  min-height: 100px;
}

/* === Button === */
.aina-card .get-started-btn {
  display: inline-block;
  background: linear-gradient(90deg, #ff00cc, #ff66cc);
  color: #fff;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 0 15px rgba(255, 0, 255, 0.4);
}

.aina-card .get-started-btn:hover {
  background: linear-gradient(90deg, #ff66cc, #ff00cc);
  box-shadow: 0 0 25px rgba(255, 0, 255, 0.6);
}

/* === Responsive Fixes === */
@media (min-width: 1200px) {
  .aina-card {
    flex: 1 1 calc(25% - 30px); /* 4 per row */
    max-width: calc(25% - 30px);
  }
}

@media (max-width: 1199px) and (min-width: 768px) {
  .aina-card {
    flex: 1 1 calc(33.333% - 30px); /* 3 per row */
    max-width: calc(33.333% - 30px);
  }
}

@media (max-width: 767px) {
  .aina-membership-grid {
    flex-direction: column;
    align-items: center;
  }

  .aina-card {
    width: 90%;
  }
}
