/* ============================================================
   OUR AGENTS — CHUNK 4 CSS v1.1
   Services, area guides, selling/buying hubs
   Mobile-first responsive overhaul
   ============================================================ */

/* ── SELLING STATS STRIP ─────────────────────────────────── */
.oa-selling-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: clamp(36px, 5vw, 56px);
  padding: clamp(20px, 4vw, 32px);
  background: var(--oa-green);
  border-radius: var(--oa-radius-lg);
}
.oa-selling-stat { text-align: center; }
.oa-selling-stat__num { display: block; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; color: var(--oa-white); line-height: 1; margin-bottom: 6px; }
.oa-selling-stat__label { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.85); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; line-height: 1.4; }
.oa-selling-stat__source { display: block; font-size: 0.68rem; color: rgba(255,255,255,0.55); margin-top: 4px; }

@media (max-width: 768px) { .oa-selling-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; } .oa-selling-stats .oa-selling-stat:nth-child(even) { } }
@media (max-width: 400px) { .oa-selling-stats { grid-template-columns: repeat(2, 1fr); padding: 16px; } }

/* ── PROCESS STEPS ───────────────────────────────────────── */
.oa-process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: clamp(36px, 5vw, 56px);
  border: 1px solid var(--oa-border);
  border-radius: var(--oa-radius-lg);
  overflow: hidden;
}
.oa-process-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: clamp(18px, 3vw, 24px) clamp(16px, 3vw, 28px);
  border-bottom: 1px solid var(--oa-border);
  transition: background 0.2s;
}
.oa-process-step:last-child { border-bottom: none; }
.oa-process-step:hover { background: var(--oa-off-white); }
.oa-process-step__num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--oa-green);
  color: white;
  font-size: 0.88rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.oa-process-step__content h3 { font-size: 0.97rem; margin-bottom: 4px; color: var(--oa-black); }
.oa-process-step__content p { font-size: 0.86rem; color: var(--oa-mid-grey); margin: 0; line-height: 1.6; }

@media (max-width: 480px) {
  .oa-process-step { gap: 14px; padding: 16px; }
  .oa-process-step__num { width: 34px; height: 34px; font-size: 0.8rem; }
}

/* ── VALUATION OPTIONS (services pages) ──────────────────── */
.oa-val-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.oa-val-option {
  background: var(--oa-white);
  border-radius: var(--oa-radius-md);
  padding: clamp(20px, 4vw, 28px) clamp(18px, 3vw, 24px);
  border: 1px solid var(--oa-border);
  text-align: center;
  position: relative;
}
.oa-val-option--featured { border-color: var(--oa-green); box-shadow: var(--oa-shadow-md); }
.oa-val-option__badge { display: inline-block; padding: 4px 12px; background: var(--oa-green); color: white; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; border-radius: 50px; margin-bottom: 14px; }
.oa-val-option h3 { font-size: 1.02rem; margin-bottom: 10px; }
.oa-val-option p { font-size: 0.86rem; color: var(--oa-mid-grey); margin-bottom: 18px; line-height: 1.65; }

@media (min-width: 560px) and (max-width: 860px) { .oa-val-options { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 559px) { .oa-val-options { grid-template-columns: 1fr; } }

/* ── AREA CHIPS ──────────────────────────────────────────── */
.oa-area-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.oa-area-chip-link {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.84rem; font-weight: 500;
  background: var(--oa-light-grey);
  color: var(--oa-dark-grey);
  border: 1.5px solid transparent;
  transition: all 0.18s;
  text-decoration: none;
  min-height: 40px;
  display: flex; align-items: center;
}
.oa-area-chip-link:hover { background: var(--oa-green-light); color: var(--oa-green); border-color: var(--oa-green); }

/* ── AREA SINGLE PAGE LAYOUT ─────────────────────────────── */
@media (max-width: 860px) { .oa-area-layout { grid-template-columns: 1fr !important; } }

/* ── SERVICE INTRO BLOCKS ────────────────────────────────── */
.oa-service-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.oa-service-intro--reverse .oa-service-intro__image { order: -1; }
.oa-service-intro__image { border-radius: var(--oa-radius-lg); overflow: hidden; }
.oa-service-intro__image img { width: 100%; display: block; }

@media (max-width: 860px) {
  .oa-service-intro { grid-template-columns: 1fr; gap: 28px; }
  .oa-service-intro--reverse .oa-service-intro__image { order: 0; }
}

/* ── CTA BAND (used on service pages) ────────────────────── */
.oa-service-cta-band {
  background: var(--oa-green-light);
  border-radius: var(--oa-radius-lg);
  padding: clamp(28px, 5vw, 48px) clamp(20px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin: clamp(36px, 5vw, 56px) 0;
  border: 1px solid rgba(17,118,112,0.15);
}
.oa-service-cta-band h3 { margin-bottom: 6px; font-size: clamp(1.1rem, 2vw, 1.4rem); }
.oa-service-cta-band p { color: var(--oa-mid-grey); margin: 0; font-size: 0.92rem; }
@media (max-width: 600px) {
  .oa-service-cta-band { flex-direction: column; align-items: flex-start; }
  .oa-service-cta-band .oa-btn { width: 100%; justify-content: center; }
}

/* ── EXTRA SERVICES GRID ─────────────────────────────────── */
.oa-extras-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.oa-extra-card {
  background: var(--oa-white);
  border-radius: var(--oa-radius-md);
  border: 1px solid var(--oa-border);
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: var(--oa-transition);
}
.oa-extra-card:hover { border-color: var(--oa-green); box-shadow: var(--oa-shadow-md); transform: translateY(-3px); }
.oa-extra-card__img { aspect-ratio: 3/2; overflow: hidden; }
.oa-extra-card__img img { width: 100%; height: 100%; object-fit: cover; }
.oa-extra-card__body { padding: 14px 16px 18px; }
.oa-extra-card__title { font-size: 0.92rem; font-weight: 700; color: var(--oa-black); margin-bottom: 4px; }
.oa-extra-card__text { font-size: 0.8rem; color: var(--oa-mid-grey); margin: 0; line-height: 1.5; }

@media (max-width: 1024px) { .oa-extras-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .oa-extras-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px) { .oa-extras-grid { grid-template-columns: 1fr; } }

/* ── MOBILE SPACING GLOBALS ──────────────────────────────── */
@media (max-width: 767px) {
  .oa-selling-stats { margin-bottom: 32px; }
  .oa-process-steps { margin-bottom: 32px; }
}
