/* =========================
   SELL PAGE SPECIFIC STYLES
   ========================= */

/* =========================
   SECTION 1: SELLER TIMELINE - DARK
   ========================= */
.sell-timeline-section {
  background: var(--bg-dark);
  padding: 5rem 0 6rem;
}

.sell-timeline {
  display: grid;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

/* Timeline connector line */
.sell-timeline::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(201, 169, 110, 0.2);
}

.timeline-step {
  display: flex;
  gap: 1.5rem;
  padding: 1.25rem 0;
  position: relative;
}

.timeline-step:first-child {
  padding-top: 0;
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.timeline-step-marker {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--bg-dark);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 50%;
  flex-shrink: 0;
}

.timeline-step-marker span {
  font-family: var(--font-serif);
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--primary);
}

.timeline-step-content {
  padding-top: 0.625rem;
}

.timeline-step-content h3 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--stone-100);
  margin-bottom: 0.375rem;
}

.timeline-step-content p {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--stone-400);
}

/* =========================
   SECTION 2: WHAT TO EXPECT
   ========================= */
.expect-grid {
  display: grid;
  gap: 1.5rem;
}

.expect-card {
  padding: 1.75rem;
  background: var(--text-white);
  border: 1px solid var(--border-light);
  transition: border-color 0.3s ease;
}

.expect-card:hover {
  border-color: rgba(201, 169, 110, 0.4);
}

.expect-phase {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.625rem;
}

.expect-card h3 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.expect-card p {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
}

/* =========================
   SECTION 3: PREPARING YOUR HOME - DARK
   ========================= */
.sell-prep-section {
  background: var(--bg-dark);
  padding: 5rem 0 6rem;
}

.prep-grid {
  display: grid;
  gap: 3rem;
}

.prep-category h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--stone-100);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.prep-items {
  display: grid;
  gap: 1.25rem;
}

.prep-item {
  padding-left: 1rem;
  border-left: 1px solid rgba(201, 169, 110, 0.25);
}

.prep-item h4 {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--stone-200);
  margin-bottom: 0.25rem;
}

.prep-item p {
  font-size: 0.8125rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--stone-500);
}

/* =========================
   SECTION 4: INSPECTIONS
   ========================= */
.inspect-grid {
  display: grid;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.inspect-card {
  padding: 2rem;
  background: var(--text-white);
  border: 1px solid var(--border-light);
}

.inspect-card h3 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-light);
}

.inspect-card p {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.inspect-card p:last-child {
  margin-bottom: 0;
}

.inspect-card strong {
  font-weight: 500;
  color: var(--text-medium);
}

.inspect-note {
  font-style: italic;
  color: var(--text-light);
}

.inspect-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.inspect-list span {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-medium);
  padding: 0.375rem 0.75rem;
  background: rgba(201, 169, 110, 0.06);
  border: 1px solid rgba(201, 169, 110, 0.12);
}

/* =========================
   SECTION 5: HOME APPRAISAL - DARK
   ========================= */
.sell-appraisal-section {
  background: var(--bg-dark);
  padding: 5rem 0;
}

.appraisal-content {
  text-align: center;
}

.appraisal-content > p {
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--stone-400);
  margin-bottom: 2.5rem;
}

.appraisal-callout {
  padding: 2rem 2.5rem;
  background: rgba(201, 169, 110, 0.06);
  border: 1px solid rgba(201, 169, 110, 0.15);
  text-align: left;
}

.appraisal-callout h4 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--stone-100);
  margin-bottom: 0.75rem;
}

.appraisal-callout p {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--stone-400);
}

/* =========================
   SECTION 6: WHAT IMPACTS VALUE
   ========================= */
.value-grid {
  display: grid;
  gap: 1.5rem;
}

.value-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--text-white);
  border: 1px solid var(--border-light);
  transition: border-color 0.3s ease;
}

.value-card:hover {
  border-color: rgba(201, 169, 110, 0.4);
}

.value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 50%;
}

.value-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.value-card h3 {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
}

/* =========================
   DESKTOP RESPONSIVE
   ========================= */
@media (min-width: 768px) {
  .sell-timeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 3rem;
  }
  
  .sell-timeline::before {
    display: none;
  }
  
  .timeline-step {
    padding: 1rem 0;
  }
  
  .timeline-step-marker {
    width: 44px;
    height: 44px;
  }
  
  .expect-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .prep-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
  
  .inspect-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .value-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .sell-timeline-section {
    padding: 6rem 0 7rem;
  }
  
  .sell-timeline {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
  }
  
  .timeline-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
  }
  
  .timeline-step-content {
    padding-top: 1rem;
  }
  
  .timeline-step-content h3 {
    font-size: 1rem;
  }
  
  .expect-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .sell-prep-section {
    padding: 6rem 0 7rem;
  }
  
  .prep-items {
    gap: 1.5rem;
  }
  
  .value-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
