/* ================================
   MEMBERSHIP & PRICING SECTION
================================ */

.membership.section {
  background: linear-gradient(180deg, rgba(14, 16, 19, 0.98) 0%, rgba(22, 26, 32, 1) 100%);
  padding: clamp(60px, 8vw, 100px) clamp(16px, 4vw, 32px);
  position: relative;
  overflow: hidden;
}

.membership-copy {
  max-width: 800px;
  margin: 0 auto 40px auto;
  text-align: left;
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* PRICING GRID */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

/* PRICING CARD */
.pricing-card {
  background: rgba(26, 30, 36, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(245, 201, 138, 0.25);
  border-radius: 20px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 201, 138, 0.7);
  box-shadow: 0 22px 50px rgba(245, 201, 138, 0.18);
}

.pricing-card.featured {
  border: 2px solid var(--gold-bright, #f5c98a);
  background: linear-gradient(145deg, rgba(32, 38, 46, 0.95), rgba(20, 24, 29, 0.98));
  box-shadow: 0 16px 50px rgba(245, 201, 138, 0.2);
}

/* CARD BADGE */
.card-badge {
  position: absolute;
  top: -14px;
  right: 24px;
  background: var(--gold-bright, #f5c98a);
  color: #0e1013;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

/* CARD TITLES */
.pricing-card h3 {
  color: var(--gold-bright, #f5c98a);
  font-family: "Cinzel", serif !important;
  font-size: 1.4rem;
  margin-bottom: 8px;
  font-weight: 700;
  line-height: 1.25;
}

.card-sub {
  color: #9ca3af;
  font-size: 0.88rem;
  margin-bottom: 24px;
  line-height: 1.45;
}

/* PRICING LIST */
.pricing-rates {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
}

.pricing-rates li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  gap: 12px;
}

.pricing-rates li:last-child {
  border-bottom: none;
}

.pricing-rates .duration {
  font-weight: 500;
  font-size: 0.94rem;
  color: #e5e7eb;
}

.pricing-rates .price-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  color: #fff;
  white-space: nowrap;
}

.pricing-rates .price-tag del {
  color: #9ca3af;
  font-size: 0.92rem;
  margin-right: 8px;
  text-decoration: line-through;
  text-decoration-color: #ef4444;
  text-decoration-thickness: 2px;
}

.pricing-rates .price-tag strong {
  color: var(--gold-bright, #f5c98a);
  font-size: 1.25rem;
  font-weight: 700;
}

/* JOIN / BOOK BUTTON */
.join-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 20px;
  border-radius: 999px;
  background: transparent;
  border: 1.5px solid var(--gold-bright, #f5c98a);
  color: var(--gold-bright, #f5c98a);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: auto;
  box-sizing: border-box;
}

.pricing-card.featured .join-btn {
  background: var(--gold-bright, #f5c98a);
  color: #0e1013;
}

.join-btn:hover {
  background: var(--gold-bright, #f5c98a);
  color: #0e1013;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 201, 138, 0.3);
}

/* FOOTER NOTICE */
.pricing-footer-notice {
  text-align: center;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(245, 201, 138, 0.15);
}

.non-refundable-note {
  color: var(--gold-bright, #f5c98a);
  font-size: 1rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.02em;
}

/* RESPONSIVE LAYOUT FOR PRICING */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 680px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .pricing-card {
    padding: 28px 20px;
  }
  .pricing-rates .duration {
    font-size: 0.88rem;
  }
  .pricing-rates .price-tag strong {
    font-size: 1.15rem;
  }
}
