/* ================================================================
   ADAMS Career Guidance — Forest Green Design
   ================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,700&family=Inter:wght@300;400;500;600;700&display=swap');

.adams-guidance-container {
  max-width: 640px; margin: 0 auto; padding: 0 20px;
  font-family: 'Inter', -apple-system, sans-serif;
}
.adams-guidance-container *, .adams-guidance-container *::before, .adams-guidance-container *::after {
  box-sizing: border-box;
}

/* Header */
.guidance-header { text-align: center; margin-bottom: 40px; }
.guidance-icon { font-size: 52px; display: block; margin-bottom: 14px; }
.guidance-header h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem; font-weight: 700; color: #1A2E2A;
  margin: 0 0 10px; line-height: 1.2;
}
.guidance-header p { color: #6B8F89; font-size: 15px; margin-bottom: 14px; line-height: 1.6; }
.adams-ai-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: #E8F5F2; color: #1B5E52;
  padding: 6px 16px; border-radius: 50px;
  font-size: 13px; font-weight: 600; border: 1px solid #4DB8A0;
}

/* Progress dots */
.quiz-progress-wrap { margin-bottom: 36px; }
.quiz-progress-steps {
  display: flex; justify-content: center; gap: 10px; margin-bottom: 12px;
}
.progress-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #DDE8E5; transition: all .3s;
}
.progress-dot.active { background: #1B5E52; transform: scale(1.5); box-shadow: 0 0 0 3px rgba(27,94,82,.15); }
.progress-dot.done   { background: #4DB8A0; }
.progress-bar { height: 4px; background: #E8F5F2; border-radius: 2px; overflow: hidden; }
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #1B5E52, #4DB8A0);
  border-radius: 2px; transition: width .4s ease;
}

/* Question slides */
.question-slide { display: none; }
.question-slide.active { display: block; }
.question-slide.entering { animation: guideIn .3s ease; }
@keyframes guideIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: none; }
}
.question-step-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; color: #6B8F89;
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px;
}
.q-icon { font-size: 18px; }
.question-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.7rem; font-weight: 700; color: #1A2E2A;
  margin: 0 0 8px; line-height: 1.25;
}
.question-hint { color: #6B8F89; font-size: 13px; margin: 0 0 24px; font-style: italic; }

/* Options */
.options-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 28px; }
.options-grid-lg { grid-template-columns: 1fr; }
.option-card { display: block; cursor: pointer; }
.option-card input[type="radio"] { display: none; }
.option-content {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px; border-radius: 14px;
  border: 2px solid #DDE8E5; background: #fff;
  transition: all .2s; position: relative;
}
.option-card:hover .option-content {
  border-color: #4DB8A0; background: #F2FAF8;
}
.option-card.selected .option-content {
  border-color: #1B5E52; background: #E8F5F2;
  box-shadow: 0 4px 16px rgba(27,94,82,.12);
}
.option-icon-emoji { font-size: 24px; flex-shrink: 0; width: 36px; text-align: center; }
.option-label { flex: 1; font-size: 14px; font-weight: 500; color: #1A2E2A; line-height: 1.4; }
.option-check {
  width: 24px; height: 24px; border-radius: 50%;
  border: 2px solid #DDE8E5; background: transparent;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: transparent;
  flex-shrink: 0; transition: all .2s;
}
.option-card.selected .option-check {
  background: #1B5E52; border-color: #1B5E52; color: #fff;
}

/* Nav */
.question-nav {
  display: flex; justify-content: space-between;
  align-items: center; gap: 12px;
}

/* Lead form */
.lead-form-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-bottom: 24px;
}
.lead-field-full { grid-column: 1 / -1; }
.lead-field { display: flex; flex-direction: column; gap: 7px; }
.lead-field label {
  font-size: 12px; font-weight: 700; color: #3D5C55;
  text-transform: uppercase; letter-spacing: .5px;
}
.lead-field input {
  padding: 13px 16px; border: 2px solid #DDE8E5; border-radius: 12px;
  font-size: 15px; width: 100%; transition: border-color .2s;
  font-family: inherit; background: #fff; color: #1A2E2A;
}
.lead-field input:focus { outline: none; border-color: #1B5E52; }

/* Buttons */
.adams-guidance-container .btn,
.adams-guidance-container button.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px; border-radius: 50px;
  font-size: 15px; font-weight: 700; cursor: pointer;
  transition: all .2s; text-decoration: none !important;
  border: none; font-family: inherit; white-space: nowrap; line-height: 1;
}
.adams-guidance-container .btn:disabled { opacity: .5; cursor: not-allowed; transform: none !important; }
.adams-guidance-container .btn-primary {
  background: #1B5E52 !important; color: #fff !important;
  box-shadow: 0 4px 16px rgba(27,94,82,.25);
}
.adams-guidance-container .btn-primary:hover:not(:disabled) {
  background: #236B5E !important; transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27,94,82,.3);
}
.adams-guidance-container .btn-ghost {
  background: transparent; color: #3D5C55;
  border: 2px solid #DDE8E5;
}
.adams-guidance-container .btn-ghost:hover { background: #F2FAF8; border-color: #4DB8A0; }
.adams-guidance-container .btn-lg { padding: 16px 36px; font-size: 16px; }

/* Spinner */
.spinner-dot {
  display: inline-block; width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: #fff; border-radius: 50%;
  animation: spin .6s linear infinite; margin-right: 8px; vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Result card */
.rec-card {
  background: #fff; border-radius: 24px;
  padding: 36px 28px; text-align: center;
  box-shadow: 0 12px 40px rgba(27,94,82,.12);
  border: 1px solid #EEF4F2;
  animation: recFadeUp .4s ease;
}
@keyframes recFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
.rec-match-badge {
  display: inline-block;
  background: #E8F5F2; color: #1B5E52;
  padding: 8px 20px; border-radius: 50px;
  font-size: 13px; font-weight: 700;
  margin-bottom: 20px; border: 1px solid #4DB8A0;
}
.rec-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem; font-weight: 700; color: #1A2E2A;
  margin: 0 0 16px;
}
.rec-message {
  font-size: 15px; color: #3D5C55; line-height: 1.7;
  margin: 0 auto 12px; max-width: 480px;
}
.rec-reason { font-size: 13px; color: #6B8F89; font-style: italic; margin: 0 0 24px; }
.rec-paths { margin-bottom: 28px; }
.rec-paths h4 {
  font-size: 11px; font-weight: 700; color: #6B8F89;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px;
}
.rec-paths-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.rec-path-tag {
  background: #E8F5F2; border: 1px solid #4DB8A0;
  color: #1B5E52; padding: 7px 16px;
  border-radius: 50px; font-size: 13px; font-weight: 600;
}
.rec-actions {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 18px;
}
.rec-footer { font-size: 12px; color: #A8C5BF; margin: 0; }

/* Mobile */
@media (max-width: 520px) {
  .options-grid { grid-template-columns: 1fr; }
  .guidance-header h1 { font-size: 1.6rem; }
  .question-text { font-size: 1.4rem; }
  .lead-form-grid { grid-template-columns: 1fr; }
  .rec-actions { flex-direction: column; }
  .rec-actions .btn { width: 100%; }
  .rec-title { font-size: 1.6rem; }
}
