.zodiac-luxury {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.zodiac-luxury-header {
  text-align: center;
  max-width: 1100;
  margin: auto auto 30px;
}

.zodiac-luxury-header h2 {
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 12px;
}

.zodiac-luxury-header p {
  font-size: 19px;
  line-height: 1.6;
  color: #475569;
}

/* GRID */
.zodiac-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

/* CARD */
.zodiac-card-lux {
  background: white;
  border-radius: 26px;
  padding: 34px 28px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
  transition: 0.35s ease;
  text-align: center;
}

.zodiac-card-lux:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.12);
}

/* GLYPH */
.zodiac-card-lux .glyph {
  font-size: 56px;
  margin-bottom: 12px;
}

/* TITLE */
.zodiac-card-lux h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 6px;
}

/* ELEMENT BADGE */
.element {
  display: inline-block;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  font-weight: 600;
}

.fire {
  background: #fee2e2;
  color: #991b1b;
}

.earth {
  background: #dcfce7;
  color: #14532d;
}

.air {
  background: #dbeafe;
  color: #1e3a8a;
}

.water {
  background: #e0e7ff;
  color: #312e81;
}

/* TEXT */
.zodiac-card-lux p {
  font-size: 17px;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 16px;
}

/* CTA */
.zodiac-card-lux a {
  font-weight: 700;
  color: #f59e0b;
  text-decoration: none;
}

/* ===== PREMIUM FAQ FIX ===== */

.faq-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;

  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-bottom: 0;
  /* ✅ remove bottom space */

  transition:
    max-height 0.35s ease,
    opacity 0.25s ease,
    padding 0.25s ease;
}

/* OPEN STATE */
.faq-item.active .faq-content {
  max-height: 300px;
  opacity: 1;
  padding-bottom: 1.5rem;
  /* ✅ add padding only when open */
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item {
  transition: all 0.25s ease;
}

.faq-item:hover {
  border-color: #f59e0b55;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
