/* ═══════════════════════════════════════════════════════════ */
/* CONSULTATION PAGE STYLES                                    */
/* ═══════════════════════════════════════════════════════════ */

/* ─── Consultation Hero ─────────────────────────────────── */
.consult-hero {
  background: var(--dark-bg);
  padding: calc(var(--nav-offset) + var(--section-y-sm)) 0 100px;
  position: relative;
  overflow: hidden;
}
.consult-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.consult-hero-headline {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--text-strong);
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.35s forwards;
}
.consult-hero-sub {
  font-size: 1rem;
  color: var(--text-strong);
  line-height: 1.65;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.5s forwards;
}
.consult-hero-ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.65s forwards;
}
.consult-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.consult-hero-price {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Hero right column — photo + stats */
.consult-hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.7s forwards;
}
.hero-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--card-border);
  border: 1px solid var(--card-border);
  aspect-ratio: 16 / 9;
  flex-shrink: 0;
}
.hero-photo img,
.hero-photo iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 0;
}
.consult-hero-stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.consult-hero-socials {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.consult-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--mid-bg);
  border: 1px solid var(--card-border);
  color: var(--text-strong);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.consult-social:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--dark-bg);
  transform: translateY(-2px);
}
.consult-stat-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--mid-bg);
  border: 1px solid var(--card-border);
  border-radius: 100px;
  padding: 8px 16px;
}
.consult-stat-number {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
}
.consult-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.3;
}
.consult-hero-stats--about {
  justify-content: flex-start;
  flex-wrap: nowrap;
  margin: 14px 0 18px;
}
.consult-hero-stats--about .consult-stat-pill {
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  flex-wrap: nowrap;
  white-space: nowrap;
}
.consult-hero-stats--about .consult-stat-label {
  color: var(--gray-600);
  white-space: nowrap;
}

/* ─── About Section ─────────────────────────────────────── */
.about-section {
  background: var(--card-bg);
  padding: var(--section-y) 0;
}
.about-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-text);
  margin-bottom: 12px;
}
.about-lead {
  font-size: 1rem;
  color: var(--text-strong);
  line-height: 1.7;
  margin-bottom: 20px;
}
.about-body {
  font-size: 1rem;
  color: var(--text-strong);
  line-height: 1.7;
  margin-bottom: 16px;
}
.about-qualifications {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}
.about-qual {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--mid-bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--card-border);
}
.about-qual-abbr {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  min-width: 64px;
}
.about-qual-full {
  font-size: 0.8rem;
  color: var(--text-strong);
  line-height: 1.35;
}

/* About right column */
.about-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.timeline-track {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.timeline-track::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 12.5%;
  bottom: 12.5%;
  width: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.timeline-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 20px 20px 48px;
  position: relative;
  border-radius: var(--radius-sm);
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 3px solid var(--accent);
  z-index: 1;
}
.timeline-item:first-child::before {
  background: var(--accent);
  border-color: var(--accent);
}
.timeline-period {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 4px;
}
.timeline-role {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-strong);
  display: block;
  margin-bottom: 4px;
}
.timeline-desc {
  font-size: 1rem;
  color: var(--text-strong);
  line-height: 1.5;
}

/* ─── What You Get ──────────────────────────────────────── */
.get-section {
  background: var(--dark-bg);
}
.get-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.get-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid var(--card-border);
  box-shadow: none;
  position: relative;
  overflow: hidden;
}
.get-card-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent-border);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}
.get-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-strong);
  margin-bottom: 10px;
  line-height: 1.3;
}
.get-card-desc {
  font-size: 1rem;
  color: var(--text-strong);
  line-height: 1.6;
}

/* ─── Who This Is For ───────────────────────────────────── */
.for-section {
  background: var(--card-bg);
  position: relative;
  overflow: hidden;
}
.for-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: stretch;
}
.for-sub {
  font-size: 1rem;
  color: var(--text-strong);
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 36px;
}
.for-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.for-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1rem;
  color: var(--text-strong);
  line-height: 1.55;
}
.for-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--on-accent);
  margin-top: 1px;
}
.for-profile {
  border-top: 1px solid var(--card-border);
  padding-top: 24px;
}
.for-profile-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  display: block;
  margin-bottom: 10px;
}
.for-profile-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.for-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--card-border);
  border: 1px solid var(--card-border);
  height: 100%;
}
.for-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ─── Process / How It Works ────────────────────────────── */
.process-section {
  background: var(--dark-bg);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.process-step {
  padding: 0 28px;
  position: relative;
  text-align: center;
}
.process-step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--on-accent);
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.process-step-line {
  position: absolute;
  top: 26px;
  left: calc(50% + 26px);
  right: calc(-50% + 26px);
  height: 2px;
  background: var(--accent);
  z-index: 0;
}
.process-step:last-child .process-step-line { display: none; }
.process-step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-strong);
  margin-bottom: 10px;
  line-height: 1.3;
}
.process-step-desc {
  font-size: 1rem;
  color: var(--text-strong);
  line-height: 1.6;
}

/* ─── FAQ ───────────────────────────────────────────────── */
.faq-section {
  background: var(--card-bg);
  border-top: 1px solid var(--card-border);
}
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.faq-header .section-headline {
  margin-bottom: 16px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--card-border);
}
.faq-item:first-child {
  border-top: 1px solid var(--card-border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-strong);
  text-align: left;
  line-height: 1.4;
  transition: color 0.2s;
}
.faq-question:hover {
  color: var(--accent);
}
.faq-question:active {
  opacity: 0.75;
}
.faq-chevron {
  flex-shrink: 0;
  color: var(--gray-600);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), color 0.2s;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.16,1,0.3,1);
  overflow: hidden;
}
.faq-answer > * {
  overflow: hidden;
  padding-bottom: 0;
  transition: padding-bottom 0.4s cubic-bezier(0.16,1,0.3,1);
}
.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}
.faq-item.open .faq-answer > * {
  padding-bottom: 22px;
}
.faq-answer p {
  font-size: 1rem;
  color: var(--text-strong);
  line-height: 1.65;
}

/* ─── Booking CTA Section ───────────────────────────────── */
.booking-section {
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}
.booking-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.booking-sub {
  font-size: 1rem;
  color: var(--text-strong);
  line-height: 1.65;
  max-width: 440px;
  margin-bottom: 36px;
}
.booking-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.booking-steps li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  color: var(--text-strong);
  line-height: 1.5;
}
.booking-step-num {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.booking-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 400px;
}
.booking-form-wrap {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
  border: 1px solid var(--card-border);
}
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.booking-form-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-strong);
  margin-bottom: 4px;
}

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .consult-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .consult-hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .consult-hero-ctas {
    justify-content: center;
  }
  .consult-hero-right {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
  .hero-photo {
    height: 340px;
  }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .consult-hero-stats--about {
    justify-content: center;
    flex-wrap: wrap;
  }
  .get-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .for-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .for-image {
    height: auto;
    aspect-ratio: 16 / 9;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 0;
  }
  .process-step-line { display: none; }
  .faq-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .booking-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .booking-sub,
  .booking-note {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .consult-hero {
    padding: calc(48px + 70px) 0 80px;
  }
  .about-section {
    padding: 80px 0;
  }
  .consult-hero-content,
  .consult-hero-right {
    min-width: 0;
  }
  .hero-photo {
    height: auto;
    width: 100%;
  }
  .about-qualifications {
    grid-template-columns: 1fr;
  }
  .get-grid {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media (max-width: 600px) {
  .booking-form-wrap {
    padding: 28px 20px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .form-footer-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .form-privacy { max-width: 100%; }
}
