@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800;900&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #042940;
  color: #ffffff;
  overflow-x: hidden;
}

/* ===== HERO SECTION ===== */
.consult-hero {
  position: relative;
  background-color: #042940;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 80px;
  overflow: hidden;
}

.consult-hero__pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.consult-hero__pattern-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
}

.consult-hero__content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}

.consult-hero__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #00C5C3;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

.consult-hero__breadcrumb a {
  color: #00C5C3;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.consult-hero__breadcrumb a:hover {
  opacity: 0.75;
}

.consult-hero__breadcrumb span {
  opacity: 0.6;
}

.consult-hero__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  color: #DBF227;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.consult-hero__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Decorative shapes */
.consult-hero__shape1 {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,197,195,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.consult-hero__shape2 {
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(219,242,39,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ===== WHY CONSULTATIONS ===== */
.consult-why {
  background-color: #D6D58E;
  padding: 96px 24px;
}

.consult-why__inner {
  max-width: 900px;
  margin: 0 auto;
}

.consult-why__heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #042940;
  margin-bottom: 32px;
  line-height: 1.2;
}

.consult-why__body {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  color: #042940;
  line-height: 1.8;
  margin-bottom: 20px;
}

.consult-why__quote {
  background-color: #042940;
  border: 2px solid #00C5C3;
  border-radius: 16px;
  padding: 32px 40px;
  margin-top: 48px;
  position: relative;
}

.consult-why__quote::before {
  content: '"';
  font-family: 'Poppins', sans-serif;
  font-size: 5rem;
  color: #00C5C3;
  position: absolute;
  top: -10px;
  left: 24px;
  line-height: 1;
  opacity: 0.4;
}

.consult-why__quote-text {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
  color: #DBF227;
  line-height: 1.7;
  font-style: italic;
  padding-left: 16px;
}

/* ===== WHAT HAPPENS ===== */
.consult-steps {
  background-color: #042940;
  padding: 96px 24px;
}

.consult-steps__inner {
  max-width: 900px;
  margin: 0 auto;
}

.consult-steps__heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #DBF227;
  margin-bottom: 56px;
  text-align: center;
  line-height: 1.2;
}

.consult-steps__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.consult-step-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,197,195,0.2);
  border-radius: 16px;
  padding: 32px 36px;
  display: flex;
  align-items: flex-start;
  gap: 28px;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.consult-step-card:hover {
  transform: translateX(8px);
  border-color: #00C5C3;
  background: rgba(0,197,195,0.06);
}

.consult-step-card__number {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00C5C3, #042940);
  border: 2px solid #00C5C3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #DBF227;
}

.consult-step-card__content {
  flex: 1;
}

.consult-step-card__title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #00C5C3;
  margin-bottom: 10px;
}

.consult-step-card__body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.7;
  opacity: 0.9;
}

/* ===== CONSULTATION DETAILS ===== */
.consult-details {
  background-color: #9FC131;
  padding: 96px 24px;
}

.consult-details__inner {
  max-width: 800px;
  margin: 0 auto;
}

.consult-details__heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #042940;
  margin-bottom: 48px;
  text-align: center;
}

.consult-details__card {
  background: #042940;
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 20px 60px rgba(4,41,64,0.25);
}

.consult-details__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.consult-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,197,195,0.15);
  transition: background 0.2s ease;
}

.consult-detail-item:last-child {
  border-bottom: none;
}

.consult-detail-item__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(219,242,39,0.1);
  border: 1px solid rgba(219,242,39,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.consult-detail-item__label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #DBF227;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.consult-detail-item__value {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.6;
}

/* ===== WHO NEEDS ===== */
.consult-who {
  background-color: #D6D58E;
  padding: 96px 24px;
}

.consult-who__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.consult-who__heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #042940;
  margin-bottom: 28px;
}

.consult-who__body {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  color: #042940;
  line-height: 1.8;
  max-width: 800px;
  margin-bottom: 56px;
}

.consult-who__boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.consult-who-box {
  background-color: #042940;
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid rgba(0,197,195,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.consult-who-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(4,41,64,0.35);
  border-color: #00C5C3;
}

.consult-who-box__icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
}

.consult-who-box__title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #DBF227;
  margin-bottom: 12px;
  line-height: 1.3;
}

.consult-who-box__body {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #ffffff;
  line-height: 1.65;
  opacity: 0.85;
}

/* ===== BOOK CTA ===== */
.consult-cta {
  background-color: #042940;
  padding: 96px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.consult-cta__bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(219,242,39,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.consult-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.consult-cta__heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #DBF227;
  margin-bottom: 24px;
  line-height: 1.2;
}

.consult-cta__body {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: #ffffff;
  line-height: 1.75;
  margin-bottom: 44px;
  opacity: 0.9;
}

.consult-cta__buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.consult-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  letter-spacing: 0.02em;
}

.consult-cta__btn--email {
  background-color: #DBF227;
  color: #042940;
}

.consult-cta__btn--email:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(219,242,39,0.35);
  filter: brightness(1.05);
}

.consult-cta__btn--call {
  background-color: #00C5C3;
  color: #042940;
}

.consult-cta__btn--call:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,197,195,0.35);
  filter: brightness(1.05);
}

.consult-cta__contact-info {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.consult-cta__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

.consult-cta__contact-item--email {
  color: #00C5C3;
}

.consult-cta__contact-item--phone {
  color: #DBF227;
}

.consult-cta__contact-item span:first-child {
  font-size: 1.2rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .consult-who__boxes {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .consult-hero {
    padding: 80px 20px 60px;
    min-height: 380px;
  }

  .consult-why,
  .consult-steps,
  .consult-details,
  .consult-who,
  .consult-cta {
    padding: 64px 20px;
  }

  .consult-why__quote {
    padding: 24px 24px 24px 28px;
  }

  .consult-step-card {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
  }

  .consult-step-card:hover {
    transform: translateY(-4px) translateX(0);
  }

  .consult-details__card {
    padding: 32px 24px;
  }

  .consult-cta__buttons {
    flex-direction: column;
    align-items: center;
  }

  .consult-cta__btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .consult-cta__contact-info {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .consult-who__boxes {
    grid-template-columns: 1fr;
  }

  .consult-step-card__number {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.consult-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.consult-animate.consult-visible {
  opacity: 1;
  transform: translateY(0);
}

.consult-animate-delay-1 { transition-delay: 0.1s; }
.consult-animate-delay-2 { transition-delay: 0.2s; }
.consult-animate-delay-3 { transition-delay: 0.3s; }
.consult-animate-delay-4 { transition-delay: 0.4s; }
.consult-animate-delay-5 { transition-delay: 0.5s; }
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Poppins:wght@600;700&display=swap');

[data-section-id="consult-fee-001"] {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 100%);
  border-left: 4px solid #4a6cf7;
  border-radius: 10px;
  padding: 16px 20px;
  margin: 12px 0;
  box-shadow: 0 2px 12px rgba(74, 108, 247, 0.12);
  transition: box-shadow 0.3s ease, transform 0.2s ease;
  font-family: 'Inter', sans-serif;
}

[data-section-id="consult-fee-001"]:hover {
  box-shadow: 0 6px 20px rgba(74, 108, 247, 0.22);
  transform: translateY(-2px);
}

[data-section-id="consult-fee-001"] .consult-detail-item__icon {
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

[data-section-id="consult-fee-001"] .consult-detail-item__label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #3a56d4;
  margin: 0 0 4px 0;
  display: block;
}

[data-section-id="consult-fee-001"] .consult-detail-item__value {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #1a1a2e;
  margin: 0;
  display: block;
  line-height: 1.5;
}

@media (max-width: 480px) {
  [data-section-id="consult-fee-001"] {
    padding: 14px 16px;
  }

  [data-section-id="consult-fee-001"] .consult-detail-item__value {
    font-size: 0.93rem;
  }
}