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

/* ========== Overview ========== */
.svc-overview {
  padding: 120px 0;
}

.svc-overview__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.svc-overview__text {
  font-size: 15px;
  font-weight: 300;
  color: #4a4a4a;
  line-height: 1.7;
  margin-bottom: 24px;
  letter-spacing: 0.2px;
}

.svc-overview__text:last-child {
  margin-bottom: 0;
}

.svc-overview__stages {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.svc-overview__stage {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  border-left: 2px solid #e0e0e0;
  transition: border-color 0.3s;
}

.svc-overview__stage:hover {
  border-left-color: #c8a45a;
}

.svc-overview__stage-num {
  font-family: 'Roboto', 'Helvetica Neue', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #c8a45a;
  min-width: 32px;
}

.svc-overview__stage-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #1a1a1a;
  letter-spacing: 0.5px;
}

/* ========== Service Sections ========== */
.svc-section {
  padding: 120px 0;
}

.svc-section--alt {
  background: #fff;
  border-top: 1px solid #eee;
}

.svc-section--dark {
  background: #1e2837;
}

.svc-section__header {
  max-width: 640px;
  margin-bottom: 56px;
}

.svc-section__header--center {
  text-align: left;
  margin-left: 0;
}

.svc-section__intro {
  font-size: 15px;
  font-weight: 300;
  color: #666;
  line-height: 1.7;
  letter-spacing: 0.2px;
}

.svc-section__intro--light {
  color: rgba(255, 255, 255, 0.55);
}

/* ========== Acquisition ========== */
.svc-acq__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 72px;
}

.svc-acq__text {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 24px;
  letter-spacing: 0.2px;
}

.svc-acq__right {
  display: flex;
  flex-direction: column;
}

.svc-acq__item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.svc-acq__item:first-child {
  padding-top: 0;
}

.svc-acq__item:last-child {
  border-bottom: none;
}

.svc-acq__item-num {
  font-family: 'Roboto', 'Helvetica Neue', sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: #c8a45a;
  line-height: 1;
  min-width: 40px;
  padding-top: 2px;
}

.svc-acq__item-title {
  font-family: 'Roboto', 'Helvetica Neue', sans-serif;
  font-size: 24px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 8px;
}

.svc-acq__item-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
}

.svc-acq__cta {
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}

.svc-acq__cta-text {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ========== Development Timeline ========== */
.svc-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
}

.svc-timeline__line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #ddd;
  transform: translateX(-50%);
}

.svc-timeline__item {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  gap: 0;
  align-items: center;
  margin-bottom: 0;
}

.svc-timeline__node {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid #ddd;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  transition: border-color 0.3s, background 0.3s;
}

.svc-timeline__item:hover .svc-timeline__node {
  border-color: #c8a45a;
  background: #1e2837;
}

.svc-timeline__item:hover .svc-timeline__node span {
  color: #c8a45a;
}

.svc-timeline__node span {
  font-family: 'Roboto', 'Helvetica Neue', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #c8a45a;
  transition: color 0.3s;
}

.svc-timeline__content {
  position: relative;
  padding: 16px 28px;
}

.svc-timeline__bg-icon {
  position: absolute;
  width: 100px;
  height: 100px;
  color: rgba(200, 164, 90, 0.15);
  z-index: 0;
  pointer-events: none;
  transition: color 0.5s ease;
}

.svc-timeline__item:hover .svc-timeline__bg-icon {
  color: rgba(200, 164, 90, 0.25);
}

/* Left-side items: icon near the node edge */
.svc-timeline__item:not(.svc-timeline__item--right) .svc-timeline__bg-icon {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

/* Right-side items: icon near the node edge */
.svc-timeline__item--right .svc-timeline__bg-icon {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.svc-timeline__title,
.svc-timeline__text {
  position: relative;
  z-index: 1;
}

.svc-timeline__item:not(.svc-timeline__item--right) .svc-timeline__content {
  text-align: right;
}

.svc-timeline__spacer {
  /* empty space on opposite side */
}

.svc-timeline__title {
  font-family: 'Roboto', 'Helvetica Neue', sans-serif;
  font-size: 24px;
  font-weight: 300;
  color: #1a1a1a;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

.svc-timeline__text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #666;
  line-height: 1.7;
}

/* ========== Investment Sales Grid ========== */
.svc-inv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.svc-inv-card {
  background: transparent;
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  padding: 0 32px;
  transition: none;
}

.svc-inv-card:last-child {
  border-right: none;
}

.svc-inv-card:first-child {
  padding-left: 0;
}

.svc-inv-card:last-child {
  padding-right: 0;
}

.svc-inv-card:hover {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.08);
  transform: none;
  box-shadow: none;
}

.svc-inv-card__icon {
  margin-bottom: 24px;
}

.svc-inv-card__title {
  font-family: 'Roboto', 'Helvetica Neue', sans-serif;
  font-size: 24px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

.svc-inv-card__text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

/* ========== Construction ========== */
.svc-construction__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: start;
}

.svc-construction__text {
  font-size: 15px;
  font-weight: 300;
  color: #4a4a4a;
  line-height: 1.7;
  margin-bottom: 24px;
  letter-spacing: 0.2px;
}

.svc-construction__list-title {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 20px;
  margin-top: 16px;
  letter-spacing: 0.3px;
}

.svc-construction__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.svc-construction__feature {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid #eee;
}

.svc-construction__feature:nth-child(odd) {
  padding-right: 32px;
  border-right: 1px solid #eee;
}

.svc-construction__feature:nth-child(even) {
  padding-left: 32px;
}

.svc-construction__feature-num {
  font-family: 'Roboto', 'Helvetica Neue', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #c8a45a;
  flex-shrink: 0;
  min-width: 28px;
}

.svc-construction__feature-text {
  font-size: 14px;
  font-weight: 300;
  color: #666;
  line-height: 1.6;
}

.svc-construction__stats {
  display: flex;
  gap: 0;
  padding-top: 12px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.svc-construction__stat {
  background: transparent;
  padding: 32px 28px 32px 0;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
  border-right: 1px solid #eee;
}

.svc-construction__stat:last-child {
  border-right: none;
  padding-right: 0;
}

.svc-construction__stat:not(:first-child) {
  padding-left: 28px;
}

.svc-construction__stat-number {
  font-family: 'Roboto', 'Helvetica Neue', sans-serif;
  font-size: 42px;
  font-weight: 300;
  color: #1a1a1a;
  letter-spacing: 0.5px;
  line-height: 1;
}

.svc-construction__stat-unit {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #c8a45a;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
  min-height: 20px;
}

.svc-construction__stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #888;
  letter-spacing: 0.5px;
  line-height: 1.5;
}

/* ========== Asset Management ========== */
.svc-am__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.svc-am__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #666;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

.svc-am__text {
  font-size: 15px;
  font-weight: 300;
  color: #4a4a4a;
  line-height: 1.7;
  margin-bottom: 24px;
  letter-spacing: 0.2px;
}

.svc-am__text:last-child {
  margin-bottom: 0;
}

.svc-am__cards {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 4px;
}

.svc-am-card {
  padding: 28px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid #eee;
  border-radius: 0;
  transition: none;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.svc-am-card:first-child {
  border-top: 1px solid #eee;
}

.svc-am-card:hover {
  border-color: #eee;
  transform: none;
  box-shadow: none;
}

.svc-am-card__num {
  font-family: 'Roboto', 'Helvetica Neue', sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: #c8a45a;
  display: block;
  margin-bottom: 0;
  line-height: 1;
  flex-shrink: 0;
  min-width: 40px;
}

.svc-am-card__title {
  font-family: 'Roboto', 'Helvetica Neue', sans-serif;
  font-size: 22px;
  font-weight: 300;
  color: #1a1a1a;
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.svc-am-card__text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #666;
  line-height: 1.7;
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .svc-overview__inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .svc-overview__stages {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
  }

  .svc-overview__stage {
    flex: 1 1 calc(33.333% - 0px);
    border-left: none;
    border-bottom: 2px solid #e0e0e0;
    padding: 16px 20px;
  }

  .svc-overview__stage:hover {
    border-bottom-color: #c8a45a;
    border-left-color: transparent;
  }

  .svc-acq__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .svc-inv-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-construction__inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .svc-construction__features {
    grid-template-columns: 1fr;
  }

  .svc-construction__feature:nth-child(odd) {
    padding-right: 0;
    border-right: none;
  }

  .svc-construction__feature:nth-child(even) {
    padding-left: 0;
  }

  .svc-am__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .svc-overview,
  .svc-section {
    padding: 120px 0;
  }

  .svc-timeline {
    max-width: 100%;
  }

  .svc-timeline__line {
    left: 24px;
  }

  .svc-timeline__item,
  .svc-timeline__item.svc-timeline__item--right {
    grid-template-columns: 48px 1fr;
    gap: 0;
  }

  .svc-timeline__node {
    width: 40px;
    height: 40px;
    margin: 0;
  }

  .svc-timeline__spacer {
    display: none;
  }

  .svc-timeline__item:not(.svc-timeline__item--right) .svc-timeline__content {
    text-align: left;
  }

  .svc-timeline__content {
    padding: 20px 0 20px 20px;
  }

  .svc-inv-grid {
    grid-template-columns: 1fr;
  }

  .svc-overview__stages {
    flex-direction: column;
  }

  .svc-overview__stage {
    border-bottom: none;
    border-left: 2px solid #e0e0e0;
    flex: auto;
  }

  .svc-overview__stage:hover {
    border-left-color: #c8a45a;
    border-bottom-color: transparent;
  }

  .svc-construction__stats {
    flex-wrap: wrap;
  }

  .svc-construction__stat {
    flex: 1 1 40%;
  }

  .svc-acq__highlights {
    gap: 16px;
  }
}
