/**
 * Contact Page Styles (08-contact.html Prototype Sync)
 * Sales Fundas Theme
 */

/* HERO */
.page-hero {
  background: var(--navy);
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gold);
}
.hero-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}
.hero-kicker::before,
.hero-kicker::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--gold);
}
.hero-h1 {
  font-family: var(--fd);
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 28px;
}
.hero-h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto 40px;
}

/* MAIN LAYOUT */
.main-section {
  background: var(--white);
  padding: 100px 0;
}
.main-grid {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 80px;
  align-items: start;
}

/* FORM CARD */
.form-card {
  background: var(--off);
  border-radius: 24px;
  padding: 48px 44px;
  border: 1px solid var(--border);
}
.form-card h2 {
  font-family: var(--fd);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-card p {
  font-size: 15px;
  color: var(--g2);
  margin-bottom: 32px;
  line-height: 1.65;
}

/* CF7 Integration Styles */
.contact-form-wrapper .wpcf7-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.contact-form-wrapper .wpcf7-form input[type="text"],
.contact-form-wrapper .wpcf7-form input[type="email"],
.contact-form-wrapper .wpcf7-form input[type="tel"],
.contact-form-wrapper .wpcf7-form select,
.contact-form-wrapper .wpcf7-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--fb);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  margin-bottom: 20px;
  display: block;
}

.contact-form-wrapper .wpcf7-form input:focus,
.contact-form-wrapper .wpcf7-form select:focus,
.contact-form-wrapper .wpcf7-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 146, 42, 0.12);
}

.contact-form-wrapper .wpcf7-form textarea {
  min-height: 100px;
  resize: vertical;
}

.contact-form-wrapper .submit-btn {
  width: 100%;
  padding: 18px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--fb);
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: 8px;
}
.contact-form-wrapper .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200, 146, 42, 0.4);
}

.form-note {
  font-size: 13px;
  color: var(--g2);
  text-align: center;
  margin-top: 12px;
}

.form-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* SIDEBAR */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.sidebar-card {
  background: var(--navy);
  border-radius: 16px;
  padding: 32px 28px;
}
.sidebar-card h3 {
  font-family: var(--fd);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.contact-item:last-child {
  margin-bottom: 0;
}
.ci-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.ci-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 2px;
}
.ci-value {
  font-size: 14px;
  color: var(--white);
  font-weight: 500;
}
.ci-value a {
  color: var(--gold);
}
.expect-card {
  background: var(--teal-lt);
  border-radius: 16px;
  padding: 32px 28px;
}
.expect-card h3 {
  font-family: var(--fd);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}
.expect-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--teal);
}
.expect-item::before {
  content: '✓';
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* HEALTH CHECK */
.quiz-section {
  background: var(--off);
  padding: 100px 0;
}
.quiz-inner {
  max-width: 760px;
  margin: 0 auto;
}
.quiz-card {
  background: var(--white);
  border-radius: 24px;
  padding: 56px 52px;
  border: 1px solid var(--border);
}
.q-header {
  text-align: center;
  margin-bottom: 48px;
}
.q-header h2 {
  font-family: var(--fd);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.q-header p {
  font-size: 16px;
  color: var(--g2);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* QUIZ FLOW */
#quiz-container {
  display: block;
}
.q-step {
  display: none;
}
.q-step.active {
  display: block;
}
.q-progress {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  justify-content: center;
}
.q-dot {
  width: 32px;
  height: 4px;
  border-radius: 2px;
  background: var(--border);
  transition: background 0.3s;
}
.q-dot.done {
  background: var(--teal);
}
.q-dot.active {
  background: var(--gold);
}
.q-number {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  text-align: center;
}
.q-text {
  font-family: var(--fd);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.4;
}
.q-options {
  display: grid;
  gap: 12px;
}
.q-opt {
  width: 100%;
  padding: 16px 20px;
  background: var(--off);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-family: var(--fb);
  font-size: 15px;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  border: 1.5px solid var(--border);
}
.q-opt:hover {
  border-color: var(--gold);
  background: var(--gold-lt);
}
.q-opt.selected {
  border-color: var(--teal);
  background: var(--teal-lt);
  color: var(--teal);
  font-weight: 600;
}

/* RESULT */
.q-result {
  display: none;
  text-align: center;
}
.result-icon {
  font-size: 56px;
  margin-bottom: 20px;
}
.result-title {
  font-family: var(--fd);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.result-body {
  font-size: 16px;
  color: var(--g2);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 32px;
}
.result-score {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-family: var(--fd);
  font-size: 48px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 16px;
  margin-bottom: 20px;
}
.result-score span {
  color: var(--gold);
  font-size: 18px;
}
.result-next {
  font-size: 14px;
  color: var(--g2);
  margin-top: 16px;
}

@media (max-width: 900px) {
  .main-grid {
    grid-template-columns: 1fr;
  }
  .quiz-card {
    padding: 36px 28px;
  }
  .form-two-col {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 20px;
  }
}
