/* ==================================================
   WCG Franchise Application Pages
   File: css/franchise-apply.css
   Palette: #000 bg, #fff text, #c9a84c gold accent
   Font: BeVietnamPro (loaded via main.css)
   ================================================== */

/* ---- CSS Variables ---- */
:root {
  --fch-gold: #c9a84c;
  --fch-gold-dark: #a8892a;
  --fch-gold-light: #e8c86a;
  --fch-dark: #111111;
  --fch-card: #1a1a1a;
  --fch-border: rgba(255, 255, 255, 0.15);
  --fch-border-gold: rgba(201, 168, 76, 0.45);
}

/* ================================================
   HERO SECTION
   ================================================ */
.fch-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #000;
}

.fch-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0.32;
  z-index: 0;
}

.fch-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 10rem 1.5rem 5rem;
  max-width: 920px;
  margin: 0 auto;
  width: 100%;
}

.fch-hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--fch-gold);
  margin-bottom: 1.25rem;
}

.fch-hero h1 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.25rem;
}

.fch-hero-subtitle {
  font-size: clamp(0.95rem, 2.2vw, 1.3rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.75rem;
  line-height: 1.65;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.fch-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.fch-hero-note {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.65;
}

.fch-hero-note strong {
  color: var(--fch-gold);
  font-weight: 700;
}

/* Scroll chevron */
.fch-hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: fch-bounce 2s infinite;
  color: rgba(255, 255, 255, 0.35);
  font-size: 1.5rem;
}

@keyframes fch-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ================================================
   BUTTONS
   ================================================ */
.fch-btn-primary {
  display: inline-block;
  background-color: var(--fch-gold);
  color: #fff !important;
  font-family: 'BeVietnamPro', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  padding: 0.9rem 2.25rem;
  border: 2px solid var(--fch-gold);
  text-decoration: none !important;
  transition: background-color 0.22s, border-color 0.22s, color 0.22s;
  cursor: pointer;
  line-height: 1;
}

.fch-btn-primary:hover {
  background-color: var(--fch-gold-dark);
  border-color: var(--fch-gold-dark);
  color: #000 !important;
}

.fch-btn-primary:disabled,
.fch-btn-primary[disabled] {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.fch-btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: #fff !important;
  font-family: 'BeVietnamPro', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  padding: 0.9rem 2.25rem;
  border: 2px solid rgba(255, 255, 255, 0.65);
  text-decoration: none !important;
  transition: background-color 0.22s, border-color 0.22s;
  cursor: pointer;
  line-height: 1;
}

.fch-btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: #fff;
  color: #fff !important;
}

.fch-btn-outline-gold {
  display: inline-block;
  background-color: transparent;
  color: var(--fch-gold) !important;
  font-family: 'BeVietnamPro', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  padding: 0.9rem 2.25rem;
  border: 2px solid var(--fch-gold);
  text-decoration: none !important;
  transition: background-color 0.22s;
  cursor: pointer;
  line-height: 1;
}

.fch-btn-outline-gold:hover {
  background-color: rgba(201, 168, 76, 0.1);
  color: var(--fch-gold) !important;
}

/* ================================================
   SECTIONS
   ================================================ */
.fch-section {
  padding: 5rem 0;
  background-color: #000;
}

.fch-section-dark {
  padding: 5rem 0;
  background-color: var(--fch-dark);
}

.fch-section-heading {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
  text-align: center;
}

.fch-section-intro {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  max-width: 720px;
  margin: 0 auto 3rem;
  line-height: 1.75;
  text-align: center;
}

.fch-section-divider {
  width: 60px;
  height: 3px;
  background-color: var(--fch-gold);
  margin: 1rem auto 2rem;
}

/* ================================================
   BRAND CARDS
   ================================================ */
.fch-brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

@media (max-width: 991px) {
  .fch-brand-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
  .fch-brand-grid { grid-template-columns: 1fr; }
}

.fch-brand-card {
  background-color: var(--fch-card);
  border: 1px solid var(--fch-border);
  padding: 2rem 1.5rem 1.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.25s, transform 0.22s;
}

.fch-brand-card:hover {
  border-color: var(--fch-gold);
  transform: translateY(-3px);
}

.fch-brand-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--fch-gold);
  border: 1px solid var(--fch-border-gold);
  padding: 0.3rem 0.85rem;
  margin-bottom: 1.25rem;
}

.fch-brand-logo {
  width: 140px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 1.25rem;
  filter: brightness(1.1);
}

.fch-brand-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.fch-brand-card .fch-brand-tagline {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--fch-gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.75rem;
}

.fch-brand-card p {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  flex-grow: 1;
  margin-bottom: 1.75rem;
}

/* ================================================
   GOLD ACCORDION (Application Process sections)
   ================================================ */
.fch-accordion {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
}

.fch-accordion-item {
  margin-bottom: 0;
}

.fch-accordion-item + .fch-accordion-item {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.fch-accordion-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background-color: var(--fch-gold);
  color: #000;
  font-family: 'BeVietnamPro', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 1.1rem 1.75rem;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.22s;
  margin-bottom: 0;
}

.fch-accordion-btn:hover,
.fch-accordion-btn.open {
  background-color: var(--fch-gold-dark);
}

.fch-accordion-icon {
  font-size: 1.4rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-left: 1.25rem;
  transition: transform 0.3s ease;
  line-height: 1;
}

.fch-accordion-btn.open .fch-accordion-icon {
  transform: rotate(45deg);
}

.fch-accordion-body {
  display: none;
  background-color: #0d0d0d;
  padding: 2rem 1.75rem 2.25rem;
  border: 1px solid var(--fch-border-gold);
  border-top: none;
}

.fch-accordion-body.open {
  display: block;
  animation: fch-fadeIn 0.22s ease;
}

.fch-accordion-body p {
  font-size: 0.9rem;
  line-height: 1.8;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1rem;
  text-align: left;
}

.fch-accordion-body ul {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
  text-align: left;
}

.fch-accordion-body ul li {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.85;
}

.fch-accordion-note {
  background-color: rgba(201, 168, 76, 0.08);
  border-left: 3px solid var(--fch-gold);
  padding: 0.85rem 1.25rem;
  margin-top: 1.25rem;
}

.fch-accordion-note p {
  color: var(--fch-gold) !important;
  font-weight: 600 !important;
  font-size: 0.84rem !important;
  margin: 0 !important;
}

/* ================================================
   FINANCIAL / FEE SECTION
   ================================================ */
.fch-fee-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

@media (max-width: 991px) {
  .fch-fee-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
  .fch-fee-grid { grid-template-columns: 1fr; }
}

.fch-fee-card {
  background-color: #000;
  border: 1px solid var(--fch-border-gold);
  padding: 2rem 1.5rem;
  text-align: center;
}

.fch-fee-card-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.75rem;
}

.fch-fee-card-number {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 900;
  color: var(--fch-gold);
  line-height: 1.15;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.fch-fee-card p {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.65;
  margin: 0;
  text-align: center;
}

.fch-fee-disclaimer {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  padding-top: 2rem;
  text-align: center;
}

.fch-fee-disclaimer p {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ================================================
   TERMS & CONDITIONS PAGE
   ================================================ */
.fch-terms-page {
  padding-top: 142px;
}

.fch-terms-header {
  background-color: var(--fch-dark);
  padding: 4rem 0 3rem;
  text-align: center;
  border-bottom: 1px solid var(--fch-border-gold);
}

.fch-terms-header h1 {
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.fch-terms-header p {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

.fch-terms-body {
  padding: 3.5rem 0 5rem;
  background-color: #000;
}

.fch-terms-block {
  background-color: var(--fch-dark);
  border: 1px solid var(--fch-border-gold);
  padding: 2.5rem;
  max-width: 820px;
  margin: 0 auto 2rem;
}

.fch-terms-block ol {
  padding-left: 1.75rem;
  margin: 0;
}

.fch-terms-block ol li {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.85;
  margin-bottom: 0.65rem;
}

.fch-terms-checkbox-wrap {
  max-width: 820px;
  margin: 0 auto 2.5rem;
  background-color: rgba(201, 168, 76, 0.07);
  border: 1px solid var(--fch-border-gold);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.fch-terms-checkbox-wrap input[type="checkbox"] {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--fch-gold);
  cursor: pointer;
}

.fch-terms-checkbox-wrap label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  line-height: 1.55;
}

.fch-terms-cta {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

/* ================================================
   BREADCRUMB / STEP INDICATOR
   ================================================ */
.fch-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.fch-breadcrumb .sep {
  color: rgba(255, 255, 255, 0.15);
}

.fch-breadcrumb .current {
  color: var(--fch-gold);
}

/* ================================================
   PRE-QUALIFICATION WIZARD
   ================================================ */
.fch-preq-page {
  padding-top: 142px;
  min-height: 100vh;
  background-color: #000;
}

.fch-preq-header {
  padding: 3.5rem 0 2rem;
  text-align: center;
  background-color: var(--fch-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.fch-preq-header h1 {
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.fch-preq-header p {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

.fch-preq-progress-bar-wrap {
  max-width: 820px;
  margin: 2rem auto 0;
  padding: 0 1.5rem;
}

.fch-preq-progress-track {
  height: 3px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.fch-preq-progress-fill {
  height: 100%;
  background-color: var(--fch-gold);
  border-radius: 2px;
  transition: width 0.4s ease;
  width: 0%;
}

.fch-preq-progress-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  margin-top: 0.5rem;
  text-align: right;
}

.fch-preq-wizard {
  padding: 4rem 0 6rem;
}

.fch-preq-step {
  display: none;
}

.fch-preq-step.active {
  display: block;
  animation: fch-fadeIn 0.28s ease;
}

@keyframes fch-fadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fch-preq-q-number {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--fch-gold);
  margin-bottom: 0.6rem;
  text-align: center;
}

.fch-preq-q-text {
  font-size: clamp(1.1rem, 2.8vw, 1.55rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.6rem;
  line-height: 1.3;
  text-align: center;
}

.fch-preq-q-helper {
  font-size: 0.83rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.48);
  margin-bottom: 2.25rem;
  line-height: 1.65;
  text-align: center;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.fch-preq-options {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  max-width: 580px;
  margin: 0 auto;
}

.fch-preq-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background-color: var(--fch-card);
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s;
  text-align: left;
  width: 100%;
  color: rgba(255, 255, 255, 0.85);
  font-family: 'BeVietnamPro', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  line-height: 1.4;
}

.fch-preq-option:hover {
  border-color: rgba(201, 168, 76, 0.6);
  background-color: rgba(201, 168, 76, 0.06);
}

.fch-preq-option.selected {
  border-color: var(--fch-gold);
  background-color: rgba(201, 168, 76, 0.12);
  color: var(--fch-gold);
}

.fch-preq-opt-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
  border-radius: 50%;
  transition: border-color 0.2s, color 0.2s;
}

.fch-preq-option.selected .fch-preq-opt-letter {
  border-color: var(--fch-gold);
  color: var(--fch-gold);
}

.fch-preq-select-wrap {
  max-width: 580px;
  margin: 0 auto;
}

.fch-preq-sel {
  width: 100%;
  padding: 0.95rem 3rem 0.95rem 1.25rem;
  background-color: var(--fch-card);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.85);
  font-family: 'BeVietnamPro', sans-serif;
  font-size: 0.92rem;
  font-weight: 400;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23c9a84c' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
}

.fch-preq-sel:focus {
  border-color: var(--fch-gold);
}

.fch-preq-sel option {
  background-color: #1a1a1a;
  color: #fff;
}

.fch-preq-textarea {
  width: 100%;
  padding: 0.95rem 1.25rem;
  background-color: var(--fch-card);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.85);
  font-family: 'BeVietnamPro', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  resize: vertical;
  min-height: 100px;
  margin-top: 0.75rem;
  outline: none;
  transition: border-color 0.2s;
}

.fch-preq-textarea:focus {
  border-color: var(--fch-gold);
}

.fch-preq-textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.fch-preq-conditional-field {
  display: none;
  margin-top: 1rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.fch-preq-conditional-field.show {
  display: block;
}

.fch-preq-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.fch-preq-message-box {
  max-width: 580px;
  margin: 0 auto 2rem;
  padding: 1.5rem 2rem;
  border-left: 3px solid var(--fch-gold);
  background-color: rgba(201, 168, 76, 0.07);
  text-align: left;
}

.fch-preq-message-box p {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  margin: 0;
}

/* ================================================
   RESULT SCREENS
   ================================================ */
.fch-result-screen {
  display: none;
  padding: 5rem 0;
}

.fch-result-screen.active {
  display: block;
  animation: fch-fadeIn 0.3s ease;
}

.fch-result-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 3.5rem 2.5rem;
  border: 1px solid var(--fch-border-gold);
  background-color: var(--fch-card);
  text-align: center;
}

.fch-result-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--fch-gold);
}

.fch-result-card h2 {
  font-size: clamp(1.25rem, 3vw, 1.9rem);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.25rem;
}

.fch-result-card p {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  text-align: center;
}

.fch-result-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

/* Employment redirect */
.fch-employment-msg {
  max-width: 620px;
  margin: 2rem auto;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background-color: #111;
  text-align: center;
}

.fch-employment-msg p {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

/* ================================================
   APPLICATION FORMS (Full / Working Partner / Enquiry)
   ================================================ */
.fch-form-page {
  padding-top: 142px;
  background-color: #000;
  min-height: 100vh;
}

.fch-form-header {
  background-color: var(--fch-dark);
  padding: 4rem 0 3rem;
  text-align: center;
  border-bottom: 1px solid var(--fch-border-gold);
}

.fch-form-header h1 {
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.fch-form-header p {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.62);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

.fch-form-body {
  padding: 4rem 0 6rem;
}

.fch-form-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1rem;
}

.fch-form-section {
  margin-bottom: 3rem;
}

.fch-form-section-title {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--fch-gold);
  border-bottom: 1px solid var(--fch-border-gold);
  padding-bottom: 0.85rem;
  margin-bottom: 2rem;
}

.fch-field {
  margin-bottom: 1.5rem;
}

.fch-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 0.5rem;
}

.fch-label .req {
  color: var(--fch-gold);
  margin-left: 3px;
}

.fch-input,
.fch-select,
.fch-textarea {
  width: 100%;
  padding: 0.85rem 1.2rem;
  background-color: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-family: 'BeVietnamPro', sans-serif;
  font-size: 0.92rem;
  font-weight: 400;
  outline: none;
  transition: border-color 0.2s;
  display: block;
}

.fch-input:focus,
.fch-select:focus,
.fch-textarea:focus {
  border-color: var(--fch-gold);
}

.fch-input::placeholder,
.fch-textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
  font-weight: 300;
}

.fch-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23c9a84c' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
  padding-right: 3rem;
}

.fch-select option {
  background-color: #111;
  color: #fff;
}

.fch-textarea {
  resize: vertical;
  min-height: 110px;
}

.fch-input.error,
.fch-select.error,
.fch-textarea.error {
  border-color: #e74c3c;
}

.fch-field-hint {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 0.4rem;
  line-height: 1.5;
}

.fch-conditional {
  display: none;
  margin-top: 1rem;
}

.fch-conditional.show {
  display: block;
}

.fch-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .fch-row-2 { grid-template-columns: 1fr; }
}

/* File upload */
.fch-file-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  padding: 2rem 1rem;
  text-align: center;
  cursor: pointer;
  background-color: #0a0a0a;
  transition: border-color 0.2s;
  min-height: 110px;
}

.fch-file-label:hover {
  border-color: var(--fch-gold);
}

.fch-file-label i {
  font-size: 1.75rem;
  color: rgba(255, 255, 255, 0.22);
  margin-bottom: 0.5rem;
}

.fch-file-label span {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.5;
}

.fch-file-label span strong {
  color: var(--fch-gold);
}

.fch-file-name {
  font-size: 0.78rem;
  color: var(--fch-gold);
  margin-top: 0.5rem;
  font-weight: 500;
}

/* Consent */
.fch-consent-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 2.5rem;
}

.fch-consent-row {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.fch-consent-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: var(--fch-gold);
  cursor: pointer;
}

.fch-consent-row label {
  font-size: 0.84rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  line-height: 1.55;
}

.fch-consent-row label a {
  color: var(--fch-gold);
  text-decoration: underline;
}

.fch-consent-row input[type="checkbox"].error {
  outline: 2px solid #e74c3c;
}

/* Submit area */
.fch-submit-area {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--fch-border);
}

#fch-loader {
  display: none;
  margin: 1rem 0;
}

#fch-result {
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
}

#fch-result.success {
  color: #4caf50;
}

#fch-result.error {
  color: #e74c3c;
}

/* ================================================
   THANK YOU PAGE
   ================================================ */
.fch-thankyou-page {
  padding-top: 142px;
  min-height: 100vh;
  background-color: #000;
}

.fch-thankyou-hero {
  background-color: var(--fch-dark);
  padding: 5rem 0 4rem;
  text-align: center;
  border-bottom: 1px solid var(--fch-border-gold);
}

.fch-thankyou-hero .fch-hero-eyebrow {
  margin-bottom: 1rem;
}

.fch-thankyou-hero h1 {
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1.25rem;
}

.fch-thankyou-hero p {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.68);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.75;
}

.fch-steps-section {
  padding: 5rem 0;
  background-color: #000;
}

.fch-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

@media (max-width: 991px) {
  .fch-steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
  .fch-steps-grid { grid-template-columns: 1fr; }
}

.fch-step-card {
  background-color: var(--fch-card);
  border: 1px solid var(--fch-border);
  padding: 2rem 1.5rem;
  text-align: center;
}

.fch-step-num {
  font-size: 2.75rem;
  font-weight: 900;
  color: rgba(201, 168, 76, 0.18);
  line-height: 1;
  margin-bottom: 1rem;
}

.fch-step-card h4 {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  margin-bottom: 0.65rem;
}

.fch-step-card p {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  margin: 0;
}

.fch-thankyou-cta {
  text-align: center;
  padding: 0 0 5rem;
}

/* ================================================
   MOBILE RESPONSIVENESS
   ================================================ */
@media (max-width: 768px) {
  .fch-section,
  .fch-section-dark {
    padding: 3.5rem 0;
  }

  .fch-hero-content {
    padding: 8rem 1.25rem 4rem;
  }

  .fch-terms-block {
    padding: 1.75rem 1.25rem;
  }

  .fch-result-card {
    padding: 2.25rem 1.5rem;
  }

  .fch-form-header {
    padding: 3rem 1rem 2rem;
  }

  .fch-btn-primary,
  .fch-btn-secondary,
  .fch-btn-outline-gold {
    padding: 0.85rem 1.75rem;
    font-size: 0.8rem;
    letter-spacing: 2px;
  }

  .fch-preq-wizard {
    padding: 3rem 0 5rem;
  }

  .fch-preq-option {
    padding: 0.85rem 1.25rem;
    font-size: 0.88rem;
  }
}

/* ================================================
   QUESTION 1 — 3-COLUMN CARD LAYOUT
   ================================================ */
.fch-q1-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.fch-q1-card {
  background-color: var(--fch-card);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.75rem 1.5rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.2s, background-color 0.2s;
  user-select: none;
}

.fch-q1-card:hover {
  border-color: rgba(201, 168, 76, 0.5);
  background-color: rgba(201, 168, 76, 0.04);
}

.fch-q1-card.selected {
  border-color: var(--fch-gold);
  background-color: rgba(201, 168, 76, 0.08);
}

.fch-q1-card--dim {
  opacity: 0.72;
}

.fch-q1-card--dim:hover {
  opacity: 1;
}

.fch-q1-card-top {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.fch-q1-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background-color: var(--fch-gold);
  color: #000;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.fch-q1-badge--dim {
  background-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.7);
}

.fch-q1-card.selected .fch-q1-badge {
  background-color: var(--fch-gold);
  color: #000;
}

.fch-q1-card-title {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin: 0;
}

.fch-q1-card-desc {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  margin: 0;
}

.fch-q1-reqs {
}

.fch-q1-reqs-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fch-gold);
  margin-bottom: 0.6rem;
}

.fch-q1-reqs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.fch-q1-reqs-list li {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
  padding-left: 1.4rem;
  position: relative;
}

.fch-q1-reqs-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--fch-gold);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%23000' viewBox='0 0 16 16'%3E%3Cpath d='M10.97 4.97a.75.75 0 0 1 1.07 1.05l-3.99 4.99a.75.75 0 0 1-1.08.02L4.324 8.384a.75.75 0 1 1 1.06-1.06l2.094 2.093 3.473-4.425z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 10px;
}

.fch-q1-infobox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background-color: rgba(201, 168, 76, 0.07);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 0.9rem 1rem;
  margin-top: auto;
}

.fch-q1-infobox-icon {
  color: var(--fch-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.fch-q1-infobox-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.3rem;
}

.fch-q1-infobox-text {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin: 0;
}

.fch-q1-employment-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 0;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
}

.fch-q1-employment-center p {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  margin: 0;
}

/* Responsive: stack cards on smaller screens */
@media (max-width: 900px) {
  .fch-q1-cards {
    grid-template-columns: 1fr;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ================================================
   QUESTION 2 — BRAND IMAGE CARDS
   ================================================ */
.fch-q2-cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

.fch-q2-card {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background-color: var(--fch-card);
  cursor: pointer;
  min-height: 140px;
  overflow: hidden;
  transition: border-color 0.2s, background-color 0.2s;
  user-select: none;
}

.fch-q2-card:hover {
  border-color: rgba(201, 168, 76, 0.5);
  background-color: rgba(201, 168, 76, 0.04);
}

.fch-q2-card.selected {
  border-color: var(--fch-gold);
  background-color: rgba(201, 168, 76, 0.07);
}

.fch-q2-img {
  width: 260px;
  min-width: 200px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.fch-q2-body {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
}

.fch-q2-radio {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  margin-top: 3px;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.2s;
}

.fch-q2-radio::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background-color: var(--fch-gold);
  opacity: 0;
  transition: opacity 0.2s;
}

.fch-q2-card.selected .fch-q2-radio {
  border-color: var(--fch-gold);
}

.fch-q2-card.selected .fch-q2-radio::after {
  opacity: 1;
}

.fch-q2-content {
  flex: 1;
  text-align: left;
}

.fch-q2-name {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.45rem;
  line-height: 1.3;
}

.fch-q2-desc {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.6;
  margin: 0 0 0.6rem;
}

.fch-q2-best {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.79rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.5;
  margin: 0;
}

.fch-q2-best svg {
  color: var(--fch-gold);
  flex-shrink: 0;
  margin-top: 1px;
}

@media (max-width: 580px) {
  .fch-q2-img {
    width: 110px;
    min-width: 110px;
  }
}

@media (max-width: 420px) {
  .fch-q2-img {
    display: none;
  }
}

/* ================================================
   QUESTION 3 — INVESTMENT SUMMARY
   ================================================ */
.fch-gold-text {
  color: var(--fch-gold);
}

.fch-step3-summary {
  background-color: var(--fch-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 1.25rem 0;
  margin: 1.5rem 0;
}

.fch-step3-summary-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fch-gold);
  text-align: center;
  margin-bottom: 0.5rem;
}

.fch-step3-summary-sub {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.52);
  text-align: center;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.fch-step3-summary-sub strong {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

.fch-step3-cost-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.fch-step3-cost-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.5rem 0.2rem;
}

.fch-step3-cost-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--fch-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fch-gold);
  margin-bottom: 0.55rem;
  flex-shrink: 0;
}

.fch-step3-cost-name {
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 0.25rem;
}

.fch-step3-cost-detail {
  font-size: 0.62rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.4;
  margin-bottom: 0.5rem;
  flex: 1;
}

.fch-step3-cost-amount {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--fch-gold);
  margin-bottom: 0.1rem;
}

.fch-step3-cost-vat {
  font-size: 0.58rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.32);
  margin: 0;
}

.fch-step3-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background-color: rgba(201, 168, 76, 0.09);
  margin: 0 -1.25rem;
  padding: 0.9rem 1.25rem;
}

.fch-step3-total-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.fch-step3-total-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--fch-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fch-gold);
  flex-shrink: 0;
}

.fch-step3-total-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.fch-step3-total-sub {
  font-size: 0.68rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.42);
  margin: 0.1rem 0 0;
}

.fch-step3-total-right {
  text-align: right;
  flex-shrink: 0;
}

.fch-step3-total-amount {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--fch-gold);
  margin: 0;
  white-space: nowrap;
}

.fch-step3-total-note {
  font-size: 0.65rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.38);
  margin: 0.15rem 0 0;
}

/* Question confirmation box */
.fch-step3-qbox {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
}

.fch-step3-qmark {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--fch-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--fch-gold);
  margin-top: 1px;
  flex-shrink: 0;
}

.fch-step3-qbox p {
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
  margin: 0;
  text-align: left;
}

/* Step 3 option button overrides */
.fch-step3-opts {
  max-width: 100%;
}

.fch-step3-opt {
  align-items: center;
  text-align: left;
}

.fch-step3-opt-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.15rem;
  text-align: left;
}

.fch-step3-opt-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  display: block;
}

.fch-step3-opt-sub {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  display: block;
}

.fch-step3-chevron {
  color: rgba(255, 255, 255, 0.28);
  flex-shrink: 0;
  transition: color 0.2s;
}

.fch-preq-option.fch-step3-opt.selected .fch-step3-opt-title {
  color: var(--fch-gold);
}

.fch-preq-option.fch-step3-opt.selected .fch-step3-opt-sub {
  color: rgba(201, 168, 76, 0.65);
}

.fch-preq-option.fch-step3-opt.selected .fch-step3-chevron {
  color: var(--fch-gold);
}

@media (max-width: 520px) {
  .fch-step3-cost-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }
}
