/* ═══════════════════════════════════════════════════════════
   PRICING.CSS — Styles for the pricing page only
   ═══════════════════════════════════════════════════════════ */

/* ── PAGE HERO ─────────────────────────────────────────── */
#pricing-hero {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 140px 60px 40px;
}

.pricing-hero-heading {
  font-size: clamp(52px, 8vw, 100px);
}

.underline-bar {
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #9333ea, #ec4899);
  margin: 16px auto 0;
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.underline-bar.active {
  width: 80px;
}

.pricing-hero-sub {
  color: var(--grey);
  font-size: 13px;
  margin-top: 16px;
  font-family: 'Space Mono', monospace;
  line-height: 1.8;
}

/* ── PRICING CARDS GRID ────────────────────────────────── */
#pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 80px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: #0d0d0d;
  border: 1px solid #222;
  border-radius: 20px;
  padding: 40px;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.3s ease, 
              border-color 0.3s ease, 
              opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(147, 51, 234, 0.25);
  border-color: rgba(147, 51, 234, 0.4);
}

/* Popular badge */
.popular-badge {
  position: absolute;
  top: -14px;
  right: 24px;
  background: linear-gradient(135deg, #9333ea, #ec4899);
  border-radius: 999px;
  padding: 6px 18px;
  font-size: 11px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  color: white;
}

.card-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 2px;
  color: white;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.card-price {
  font-size: 52px;
  font-weight: 800;
  font-family: 'Barlow Condensed', sans-serif;
  line-height: 1.1;
}

.card-price-sub {
  color: var(--grey);
  font-size: 12px;
  font-family: 'Space Mono', monospace;
  margin-top: 4px;
}

.card-divider {
  border: none;
  border-top: 1px solid #1e1e1e;
  margin: 20px 0;
}

/* Price breakdown (e-commerce card) */
.price-breakdown {
  margin: 16px 0;
}

.price-line {
  display: flex;
  justify-content: space-between;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: var(--grey);
  margin-bottom: 6px;
}

.price-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.price-total-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--grey);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Checklist */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.checklist li {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  font-family: 'Space Mono', monospace;
  line-height: 1.6;
}

.check {
  color: #9333ea;
  font-weight: 700;
  flex-shrink: 0;
}

.addon {
  color: var(--grey);
  font-style: italic;
  font-size: 12px;
  font-family: 'Space Mono', monospace;
  border-top: 1px solid #1e1e1e;
  padding-top: 14px;
  margin-top: 14px;
}

.card-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-family: 'Space Mono', monospace;
  line-height: 1.9;
  margin: 20px 0;
}

.disclaimer {
  color: var(--grey);
  font-size: 12px;
  font-style: italic;
  font-family: 'Space Mono', monospace;
  margin-top: 16px;
}

.card-btn {
  width: 100%;
  margin-top: 28px;
  text-align: center;
}

/* ── BOOKING FORM SECTION ──────────────────────────────── */
#booking {
  padding: 80px 60px;
  max-width: 760px;
  margin: 0 auto;
}

.booking-heading {
  font-size: clamp(44px, 6vw, 80px);
}

.booking-sub {
  color: var(--grey);
  margin: 20px 0 48px;
  font-size: 13px;
  font-family: 'Space Mono', monospace;
  line-height: 1.8;
}

.booking-card {
  background: #0d0d0d;
  border: 1px solid #222;
  border-radius: 20px;
  padding: 56px;
}

.booking-card input,
.booking-card textarea,
.booking-card select {
  width: 100%;
  background: #0a0a0a;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  padding: 16px 20px;
  color: white;
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  margin-bottom: 16px;
  transition: border-color 0.3s, box-shadow 0.3s;
  cursor: none;
  -webkit-appearance: none;
  appearance: none;
}

.booking-card select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%23888'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.booking-card input:focus,
.booking-card textarea:focus,
.booking-card select:focus {
  border-color: #9333ea;
  box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.15);
  outline: none;
}

.booking-card input::placeholder,
.booking-card textarea::placeholder {
  color: #444;
  font-style: italic;
}

.booking-card textarea {
  resize: vertical;
}

/* Invalid field shake */
.booking-card input.invalid,
.booking-card textarea.invalid,
.booking-card select.invalid {
  border-color: #ef4444;
  animation: shake 0.4s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%      { transform: translateX(-8px); }
  40%      { transform: translateX(8px); }
  60%      { transform: translateX(-6px); }
  80%      { transform: translateX(6px); }
}

/* ── FAQ SECTION ───────────────────────────────────────── */
#faq {
  padding: 60px 60px;
  max-width: 760px;
  margin: 0 auto;
}

.faq-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  color: white;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 40px;
}

.faq-item {
  border-bottom: 1px solid #1e1e1e;
  padding: 20px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  color: white;
  padding: 4px 0;
  text-transform: uppercase;
  font-weight: 600;
}

.faq-icon {
  font-size: 24px;
  color: #9333ea;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  line-height: 1;
}

.faq-icon.open {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0;
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.9;
}

.faq-answer.open {
  max-height: 200px;
  padding-top: 14px;
}

/* ═══════════════════════════════════════════════════════════
   MOBILE RESPONSIVE — pricing page
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  #pricing-hero {
    padding: 120px 24px 40px;
  }

  #pricing-cards {
    grid-template-columns: 1fr;
    padding: 40px 24px;
  }

  #booking {
    padding: 60px 24px;
  }

  .booking-card {
    padding: 32px 20px;
  }

  #faq {
    padding: 40px 24px;
  }
}
