/* =========================
   Services Page
   ========================= */

.services-hero {
  position: relative;
  padding: 120px 0;
  text-align: center;
  background-image: url('/Assets/images/gold_forrest.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
}

.services-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 23, 15, 0.32),
    rgba(7, 23, 15, 0.74)
  );
}

.services-hero .container {
  position: relative;
  z-index: 1;
}

.services-hero h1 {
  color: #fff;
}

.services-section {
  text-align: center;
  padding: 90px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.service-card {
  padding: 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 24px rgba(214, 162, 67, 0.22);
  border-color: rgba(214, 162, 67, 0.45);
}

.service-card h3 {
  color: var(--gold);
  margin-bottom: 10px;
}

.service-card p {
  line-height: 1.75;
}

.fee-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.fee-card {
  padding: 40px;
  min-width: 260px;
  text-align: center;
}

.fee-card h3 {
  font-size: clamp(2.2rem, 5vw, 3rem);
  color: var(--gold);
  margin-bottom: 8px;
}

.results-section {
  text-align: center;
}

.fee-example-card {
  margin-top: 40px;
  padding: 32px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.fee-example-card h3 {
  margin-bottom: 12px;
  text-align: center;
}

.fee-example-card p {
  text-align: center;
  margin-bottom: 24px;
}

.fee-example-breakdown {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fee-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.fee-line.total {
  font-weight: 700;
  background: rgba(255, 255, 255, 0.05);
}

.fee-line.client-net {
  font-weight: 700;
  color: #9fe3b1;
  background: rgba(159, 227, 177, 0.08);
  border: 1px solid rgba(159, 227, 177, 0.25);
}

.fee-note {
  margin-top: 20px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.philosophy-section {
  padding: 100px 0;
}

.philosophy-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: center;
}

.philosophy-copy {
  max-width: 640px;
}

.philosophy-copy h2 {
  margin-bottom: 18px;
}

.philosophy-lead {
  font-size: 1.08rem;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 58ch;
}

.philosophy-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.philosophy-point {
  padding: 18px;
}

.philosophy-point h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.philosophy-point p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.philosophy-visual {
  display: flex;
  justify-content: center;
}

.philosophy-visual img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 20px;
  opacity: 0.92;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.eligibility-section {
  padding-top: 20px;
}

.eligibility-card {
  max-width: 850px;
  margin: 28px auto 0;
  padding: 32px;
}

.eligibility-card h3 {
  margin-bottom: 18px;
  text-align: center;
}

.eligibility-list {
  margin: 0 0 18px 0;
  padding-left: 20px;
  line-height: 1.8;
  text-align: left;
}

.eligibility-note {
  margin: 0;
  font-size: 0.95rem;
  text-align: center;
}

@media (max-width: 1000px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .philosophy-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .philosophy-points {
    grid-template-columns: 1fr;
  }

  .philosophy-copy {
    max-width: 100%;
  }

  .philosophy-visual img {
    max-width: 100%;
  }
}