/* =============================================================
   Real Betis Camp — Registration Form
   CSS variables on :root to avoid inheritance issues.
   All selectors scoped to #bc-reg to avoid theme conflicts.
   ============================================================= */

:root {
  --bcg:       #00923f;
  --bcg-dk:    #006d2e;
  --bcg-lt:    #e8f7ef;
  --bcg-xl:    #f4fdf7;
  --bc-gold:   #f5a623;
  --bc-border: #e2e8f0;
  --bc-border2:#cbd5e1;
  --bc-bg:     #f8fafc;
  --bc-white:  #ffffff;
  --bc-text:   #1e293b;
  --bc-text2:  #475569;
  --bc-text3:  #94a3b8;
  --bc-red:    #ef4444;
  --bc-red-lt: #fef2f2;
  --bc-blue-lt:#eff6ff;
  --bc-r:      8px;
  --bc-r-lg:   12px;
}

/* ── Scope + reset ── */
#bc-reg {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--bc-text);
  max-width: 780px;
  margin: 0 auto;
  padding-bottom: 48px;
  box-sizing: border-box;
}
#bc-reg *, #bc-reg *::before, #bc-reg *::after {
  box-sizing: border-box;
}
#bc-reg h3 {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 700;
  color: var(--bc-text);
  line-height: 1.3;
}
#bc-reg p {
  margin: 0;
  color: var(--bc-text2);
  font-size: 13px;
}
#bc-reg a {
  color: var(--bcg);
}

/* ── HEADER ── */
.bc-header {
  background: linear-gradient(155deg, #00a846 0%, #005c27 100%);
  border-radius: var(--bc-r-lg) var(--bc-r-lg) 0 0;
  padding: 40px 36px 32px;
  position: relative;
  overflow: hidden;
}
.bc-header::after {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 240px; height: 240px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
  pointer-events: none;
}
.bc-eyebrow {
  display: inline-block;
  background: var(--bc-gold);
  color: #7c4700;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 3px 11px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.bc-title {
  color: #fff !important;
  font-size: 26px !important;
  font-weight: 700 !important;
  margin: 0 0 6px !important;
  line-height: 1.2 !important;
}
.bc-subtitle {
  color: rgba(255,255,255,.72);
  font-size: 14px;
  margin: 0 0 24px;
}
.bc-prices {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.bc-price-box {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 20px;
  border-radius: var(--bc-r);
  min-width: 160px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
}
.bc-price-early {
  background: rgba(245,166,35,.15);
  border-color: rgba(245,166,35,.4);
}
.bc-plabel {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
}
.bc-price-early .bc-plabel { color: var(--bc-gold); }
.bc-pamount { font-size: 22px; font-weight: 700; color: #fff; letter-spacing: -.5px; }
.bc-pnote   { font-size: 11px; color: rgba(255,255,255,.55); }

/* ── MESSAGES ── */
.bc-msg {
  padding: 16px 20px;
  border-radius: var(--bc-r);
  margin: 12px 0;
  font-size: 14px;
}
.bc-msg-ok  { background: var(--bcg-lt); border: 1px solid #a7f3d0; color: var(--bcg-dk); }
.bc-msg-err { background: var(--bc-red-lt); border: 1px solid #fecaca; color: #991b1b; }
.bc-msg strong { display: block; font-size: 16px; margin-bottom: 6px; }

/* ── STEPPER ── */
.bc-stepper {
  display: flex;
  align-items: center;
  padding: 18px 24px;
  background: var(--bc-white);
  border: 1px solid var(--bc-border);
  border-top: none;
  overflow-x: auto;
  scrollbar-width: none;
  gap: 0;
}
.bc-stepper::-webkit-scrollbar { display: none; }
.bc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  padding: 0 6px;
  cursor: default;
}
.bc-snum {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bc-border2);
  background: var(--bc-white);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  color: var(--bc-text3);
  transition: background .2s, border-color .2s, color .2s;
}
.bc-slabel {
  font-size: 10px;
  font-weight: 500;
  color: var(--bc-text3);
  white-space: nowrap;
  transition: color .2s;
}
.bc-step-on .bc-snum {
  background: var(--bcg);
  border-color: var(--bcg);
  color: #fff;
}
.bc-step-on .bc-slabel { color: var(--bcg); font-weight: 600; }
.bc-step-done .bc-snum {
  background: var(--bcg-lt);
  border-color: var(--bcg);
  color: var(--bcg);
}
.bc-step-done .bc-slabel { color: var(--bcg); }
.bc-sline {
  flex: 1;
  height: 1px;
  background: var(--bc-border);
  min-width: 10px; max-width: 40px;
  margin-bottom: 18px;
}

/* ── PROGRESS ── */
.bc-prog-track {
  height: 3px;
  background: var(--bc-border);
  border: 1px solid var(--bc-border);
  border-top: none;
}
.bc-prog-fill {
  height: 100%;
  background: var(--bcg);
  transition: width .3s ease;
  width: 0%;
}

/* ── TABS ── */
.bc-tab {
  display: none;
  padding: 32px 36px;
  background: var(--bc-white);
  border: 1px solid var(--bc-border);
  border-top: none;
  border-radius: 0 0 var(--bc-r-lg) var(--bc-r-lg);
}
.bc-tab-show { display: block; }

.bc-tab-head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 24px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--bc-border);
}
.bc-tab-icon {
  width: 44px; height: 44px;
  background: var(--bcg-lt);
  border-radius: var(--bc-r);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800;
  color: var(--bcg);
  flex-shrink: 0;
  letter-spacing: -1px;
}

/* ── FIELDS ── */
.bc-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.bc-field:last-child { margin-bottom: 0; }

#bc-reg label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--bc-text2);
  margin-bottom: 0;
  cursor: default;
}
.bc-req     { color: var(--bc-red); }
.bc-optional{ font-size: 12px; color: var(--bc-text3); font-weight: 400; }
.bc-hint    { font-size: 12px; color: var(--bc-text3); margin: 0; }

#bc-reg input[type="text"],
#bc-reg input[type="email"],
#bc-reg input[type="tel"],
#bc-reg input[type="number"],
#bc-reg input[type="date"],
#bc-reg input[type="url"],
#bc-reg input[type="password"],
#bc-reg select,
#bc-reg textarea {
  display: block;
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--bc-border2);
  border-radius: var(--bc-r);
  font-size: 14px;
  font-family: inherit;
  color: var(--bc-text);
  background: var(--bc-white);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}
#bc-reg select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 34px;
  cursor: pointer;
}
#bc-reg input:focus,
#bc-reg select:focus,
#bc-reg textarea:focus {
  border-color: var(--bcg);
  box-shadow: 0 0 0 3px rgba(0,146,63,.12);
}
#bc-reg input.bc-err,
#bc-reg select.bc-err,
#bc-reg textarea.bc-err {
  border-color: var(--bc-red);
  box-shadow: 0 0 0 3px rgba(239,68,68,.1);
}
#bc-reg textarea {
  resize: vertical;
  min-height: 76px;
}
.bc-err-msg {
  font-size: 12px;
  color: var(--bc-red);
  margin: 2px 0 0;
}

/* ── GRID ── */
.bc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* ── PILL RADIO BUTTONS ── */
.bc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.bc-pill {
  display: inline-flex;
  cursor: pointer;
}
.bc-pill input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
  pointer-events: none;
}
.bc-pill span {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border: 1.5px solid var(--bc-border2);
  border-radius: 40px;
  font-size: 13px;
  font-weight: 500;
  color: var(--bc-text2);
  background: var(--bc-white);
  transition: all .15s;
  white-space: nowrap;
  cursor: pointer;
}
.bc-pill:hover span {
  border-color: var(--bcg);
  color: var(--bcg);
}
.bc-pill input[type="radio"]:checked + span {
  border-color: var(--bcg);
  background: var(--bcg-lt);
  color: var(--bcg-dk);
  font-weight: 600;
  box-shadow: 0 0 0 1px var(--bcg);
}
.bc-pill-size span {
  min-width: 72px;
  justify-content: center;
  font-weight: 700;
}

/* ── CHECKBOX CHIPS ── */
.bc-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.bc-check-chip {
  display: inline-flex;
  cursor: pointer;
}
.bc-check-chip input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
  pointer-events: none;
}
.bc-check-chip span {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border: 1.5px solid var(--bc-border2);
  border-radius: var(--bc-r);
  font-size: 13px;
  font-weight: 500;
  color: var(--bc-text2);
  background: var(--bc-white);
  transition: all .15s;
  cursor: pointer;
}
.bc-check-chip:hover span { border-color: var(--bcg); }
.bc-check-chip input[type="checkbox"]:checked + span {
  border-color: var(--bcg);
  background: var(--bcg-lt);
  color: var(--bcg-dk);
  font-weight: 600;
}

/* ── CONDITIONAL FIELDS ── */
.bc-cond {
  display: none;
  margin-top: 10px;
  padding: 16px;
  background: var(--bc-bg);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-r);
}
.bc-cond label {
  font-size: 13px;
  font-weight: 500;
  color: var(--bc-text2);
  display: block;
  margin-bottom: 6px;
}

/* ── INFO / CALLOUT ── */
.bc-info-box {
  padding: 12px 16px;
  background: var(--bc-blue-lt);
  border: 1px solid #bfdbfe;
  border-radius: var(--bc-r);
  font-size: 13px;
  color: #1e40af;
  margin-bottom: 22px;
}
.bc-callout {
  margin-top: 24px;
  padding: 20px;
  background: #fff5f5;
  border: 1.5px solid #fca5a5;
  border-radius: var(--bc-r);
}
.bc-callout-title {
  font-size: 13px;
  font-weight: 700;
  color: #991b1b;
  margin-bottom: 14px;
}
.bc-hr {
  border: none;
  border-top: 1px solid var(--bc-border);
  margin: 24px 0;
}

/* ── DISCOUNT CARDS ── */
.bc-discount-cards {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.bc-dcard {
  flex: 1;
  min-width: 130px;
  cursor: pointer;
}
.bc-dcard input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
  pointer-events: none;
}
.bc-dcard-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 16px 12px;
  border: 1.5px solid var(--bc-border2);
  border-radius: var(--bc-r);
  background: var(--bc-white);
  text-align: center;
  min-height: 80px;
  transition: all .15s;
  cursor: pointer;
}
.bc-dcard:hover .bc-dcard-inner { border-color: var(--bcg); }
.bc-dcard input:checked + .bc-dcard-inner {
  border-color: var(--bcg);
  background: var(--bcg-lt);
  box-shadow: 0 0 0 1px var(--bcg);
}
.bc-dcard-badge {
  display: inline-block;
  background: var(--bcg);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 20px;
}
.bc-dcard-title { font-size: 13px; font-weight: 600; color: var(--bc-text); }
.bc-dcard-note  { font-size: 11px; color: var(--bc-text3); }

/* ── TOTAL BOX ── */
.bc-total-box {
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-r);
  overflow: hidden;
  margin: 20px 0;
}
.bc-total-row {
  display: flex;
  justify-content: space-between;
  padding: 11px 18px;
  font-size: 13px;
  color: var(--bc-text2);
  border-bottom: 1px solid var(--bc-border);
  background: var(--bc-bg);
}
.bc-total-final {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: var(--bcg-xl);
}
.bc-total-final span { font-size: 14px; font-weight: 600; color: var(--bcg-dk); }
.bc-total-final strong { font-size: 22px; font-weight: 800; color: var(--bcg); }

/* ── PAYMENT METHOD ── */
.bc-pay-methods {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.bc-pay-opt {
  flex: 1;
  min-width: 180px;
  cursor: pointer;
}
.bc-pay-opt input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
  pointer-events: none;
}
.bc-pay-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px;
  border: 1.5px solid var(--bc-border2);
  border-radius: var(--bc-r);
  background: var(--bc-white);
  transition: all .15s;
  cursor: pointer;
}
.bc-pay-opt:hover .bc-pay-inner { border-color: var(--bcg); }
.bc-pay-opt input:checked + .bc-pay-inner {
  border-color: var(--bcg);
  background: var(--bcg-lt);
  box-shadow: 0 0 0 1px var(--bcg);
}
.bc-pay-title { font-size: 14px; font-weight: 600; color: var(--bc-text); }
.bc-pay-desc  { font-size: 12px; color: var(--bc-text3); }

/* ── BANK BOX ── */
.bc-bank-box {
  margin-top: 16px;
  border: 1px solid #fde68a;
  border-radius: var(--bc-r);
  overflow: hidden;
  background: #fffbeb;
}
.bc-bank-title {
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #78350f;
  background: #fef3c7;
  border-bottom: 1px solid #fde68a;
}
.bc-bank-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.bc-bank-table td {
  padding: 9px 16px;
  border-bottom: 1px solid #fde68a;
  vertical-align: top;
}
.bc-bank-table tr:last-child td { border-bottom: none; }
.bc-bank-table td:first-child {
  color: #92400e;
  width: 100px;
  font-weight: 500;
  white-space: nowrap;
}

/* ── UPLOAD ── */
.bc-upload {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.bc-upload-btn {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  background: var(--bc-bg);
  border: 1.5px solid var(--bc-border2);
  border-radius: var(--bc-r);
  font-size: 13px;
  font-weight: 600;
  color: var(--bc-text);
  cursor: pointer;
  transition: border-color .15s, background .15s;
  white-space: nowrap;
}
.bc-upload-btn:hover {
  border-color: var(--bcg);
  background: var(--bcg-lt);
  color: var(--bcg);
}
.bc-upload-name { font-size: 13px; color: var(--bc-text3); }

/* ── CARD BOX ── */
.bc-card-box {
  margin-top: 16px;
  padding: 20px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: var(--bc-r);
  font-size: 14px;
  color: var(--bc-text2);
}
.bc-card-logos {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 14px;
}
.bc-logo-halk {
  background: #003087;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .5px;
  padding: 4px 12px;
  border-radius: 4px;
}
.bc-logo-pos {
  background: var(--bcg);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
}
.bc-card-box p { margin-bottom: 12px; }
.bc-card-list {
  margin: 0 0 0 18px;
  padding: 0;
  font-size: 13px;
  color: var(--bc-text2);
  line-height: 1.8;
}

/* ── REVIEW ── */
.bc-review {
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-r);
  overflow: hidden;
  margin-bottom: 24px;
}
.bc-review-title {
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--bc-text);
  background: var(--bc-bg);
  border-bottom: 1px solid var(--bc-border);
  letter-spacing: .2px;
}
.bc-review-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 18px;
  font-size: 14px;
  border-bottom: 1px solid var(--bc-border);
}
.bc-review-row:last-child { border-bottom: none; }
.bc-review-row span { color: var(--bc-text3); font-size: 13px; }
.bc-review-row strong { color: var(--bc-text); font-weight: 500; }
.bc-review-total { background: var(--bcg-xl); }
.bc-review-total strong { color: var(--bcg); font-size: 18px; font-weight: 700; }

/* ── CONSENTS ── */
.bc-consents {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.bc-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 1.5px solid var(--bc-border);
  border-radius: var(--bc-r);
  cursor: pointer;
  transition: border-color .15s, background .15s;
  font-weight: 400 !important;
  font-size: 14px;
  color: var(--bc-text2);
  line-height: 1.5;
}
.bc-consent:hover { border-color: var(--bcg); }
.bc-consent.bc-checked {
  border-color: var(--bcg);
  background: var(--bcg-xl);
}
.bc-consent input[type="checkbox"] {
  display: none;
}
.bc-cbox {
  width: 20px; height: 20px;
  flex-shrink: 0;
  border: 2px solid var(--bc-border2);
  border-radius: 4px;
  background: var(--bc-white);
  margin-top: 1px;
  transition: all .15s;
  position: relative;
}
.bc-checked .bc-cbox {
  background: var(--bcg);
  border-color: var(--bcg);
}
.bc-checked .bc-cbox::after {
  content: '';
  position: absolute;
  left: 5px; top: 2px;
  width: 6px; height: 10px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(40deg);
}

/* ── NAV BUTTONS ── */
.bc-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--bc-border);
}

.bc-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--bc-r);
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  border: none;
  cursor: pointer;
  transition: all .15s;
  text-decoration: none;
  line-height: 1;
}
.bc-btn-next {
  background: var(--bcg);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,146,63,.25);
}
.bc-btn-next:hover { background: var(--bcg-dk); }
.bc-btn-back {
  background: var(--bc-white);
  color: var(--bc-text2);
  border: 1.5px solid var(--bc-border2);
}
.bc-btn-back:hover { background: var(--bc-bg); }

/* ── SUBMIT ── */
.bc-submit-wrap { text-align: center; }
.bc-btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 400px;
  padding: 14px 36px;
  background: var(--bcg);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  border: none;
  border-radius: var(--bc-r);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,146,63,.3);
  transition: all .15s;
}
.bc-btn-submit:hover { background: var(--bcg-dk); transform: translateY(-1px); }
.bc-btn-submit:disabled { opacity: .65; cursor: not-allowed; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .bc-header        { padding: 28px 20px 24px; }
  .bc-title         { font-size: 21px !important; }
  .bc-prices        { flex-direction: column; gap: 8px; }
  .bc-price-box     { min-width: unset; }
  .bc-stepper       { padding: 14px 12px; }
  .bc-slabel        { display: none; }
  .bc-sline         { min-width: 8px; }
  .bc-tab           { padding: 22px 18px; }
  .bc-row           { grid-template-columns: 1fr; gap: 0; }
  .bc-discount-cards{ flex-direction: column; }
  .bc-pay-methods   { flex-direction: column; }
  .bc-nav           { gap: 10px; }
  .bc-btn-submit    { max-width: unset; }
}
