/* ================= PROPERTY SALES PAGE ================= */

:root {
  --navy: #08163b;
  --navy-deep: #050f2d;
  --blue: #0647a8;
  --green: #18a96b;
  --green-dark: #0f8a55;
  --text: #111827;
  --muted: #667085;
  --border: rgba(8, 22, 59, 0.12);
  --shadow: 0 24px 70px rgba(8, 22, 59, 0.1);
}

.property-sales-page {
  background: #ffffff;
}

.sales-container {
  width: min(1180px, calc(100% - 72px));
  margin: 0 auto;
}

/* ================= HERO ================= */

.sales-hero {
  min-height: 330px;
  background:
    linear-gradient(
      90deg,
      rgba(8, 22, 59, 0.78),
      rgba(8, 22, 59, 0.42)
    ),
    url("../images/1260838018.jpeg") center/cover no-repeat;
}

.sales-hero-overlay {
  min-height: 330px;
  display: flex;
  align-items: center;
  padding: 76px 0;
}

.sales-hero-tag {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.sales-hero h1 {
  color: #ffffff;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.7px;
}

.sales-hero p {
  max-width: 620px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 500;
}

/* ================= INTRO ================= */

.sales-intro-section {
  padding: 84px 0;
  background:
    radial-gradient(circle at top left, rgba(24, 169, 107, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfc 100%);
}

.sales-intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 64px;
}

.sales-section-tag {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 15px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(24, 169, 107, 0.1);
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.sales-section-tag i {
  color: var(--green);
}

.sales-copy h2,
.sales-section-heading h2,
.sales-process-card h2 {
  color: var(--navy);
  font-size: clamp(26px, 2.4vw, 38px);
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: -0.6px;
}

.sales-copy p {
  margin-top: 18px;
  color: #344054;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 500;
}

.sales-points-box {
  margin-top: 26px;
  padding: 24px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(8, 22, 59, 0.08);
  box-shadow: 0 18px 45px rgba(8, 22, 59, 0.07);
}

.sales-points-box h3 {
  color: var(--navy);
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 16px;
}

.sales-points-box ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.sales-points-box li {
  display: flex;
  gap: 10px;
  color: #344054;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 600;
}

.sales-points-box i {
  margin-top: 3px;
  color: var(--green);
}

.sales-actions {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.sales-btn-primary,
.sales-btn-outline,
.sales-cta-btn {
  min-height: 46px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  transition: 0.25s ease;
}

.sales-btn-primary {
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(6, 71, 168, 0.22);
}

.sales-btn-primary:hover {
  background: var(--green);
  transform: translateY(-3px);
}

.sales-btn-outline {
  color: var(--navy);
  background: #ffffff;
  border: 1px solid rgba(8, 22, 59, 0.16);
}

.sales-btn-outline:hover {
  background: var(--navy);
  color: #ffffff;
  transform: translateY(-3px);
}

/* ================= IMAGE GRID ================= */

.sales-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 180px;
  gap: 16px;
}

.sales-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(8, 22, 59, 0.1);
}

.sales-image.tall {
  grid-row: span 2;
}

.sales-image.wide {
  grid-column: span 2;
}

.sales-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.45s ease;
}

.sales-image:hover img {
  transform: scale(1.06);
}

/* ================= HOW WE HELP ================= */

.sales-help-section {
  padding: 78px 0;
  background: #ffffff;
}

.sales-section-heading {
  max-width: 740px;
  margin-bottom: 36px;
}

.sales-section-heading p {
  max-width: 620px;
  margin-top: 14px;
  color: #475467;
  font-size: 15px;
  line-height: 1.7;
}

.sales-help-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.sales-help-card {
  padding: 30px 24px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(8, 22, 59, 0.08);
  box-shadow: 0 20px 55px rgba(8, 22, 59, 0.08);
  transition: 0.28s ease;
}

.sales-help-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 30px 75px rgba(8, 22, 59, 0.13);
}

.help-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: rgba(24, 169, 107, 0.1);
  color: var(--green);
  font-size: 22px;
}

.sales-help-card h3 {
  color: var(--navy);
  font-size: 17px;
  font-weight: 900;
  margin-bottom: 10px;
}

.sales-help-card p {
  color: #667085;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 500;
}

/* ================= PROCESS ================= */

.sales-process-section {
  padding: 80px 0;
  background: #f7fbfc;
}

.sales-process-card {
  padding: 44px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid rgba(8, 22, 59, 0.08);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
}

.sales-process-card p {
  margin-top: 14px;
  color: #475467;
  font-size: 15px;
  line-height: 1.75;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.process-step {
  padding: 22px;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid rgba(8, 22, 59, 0.08);
}

.process-step span {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.process-step h3 {
  margin-top: 8px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 900;
}

.process-step p {
  margin-top: 8px;
  color: #667085;
  font-size: 13px;
  line-height: 1.65;
}

/* ================= CTA ================= */

.sales-cta-section {
  padding: 0 0 90px;
  background: #f7fbfc;
}

.sales-cta {
  padding: 40px 44px;
  border-radius: 24px;
  background:
    radial-gradient(circle at right, rgba(24, 169, 107, 0.2), transparent 34%),
    linear-gradient(135deg, var(--navy-deep), var(--navy));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
  box-shadow: 0 26px 70px rgba(8, 22, 59, 0.18);
}

.sales-cta span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.sales-cta h2 {
  max-width: 620px;
  margin-top: 8px;
  color: #ffffff;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.2;
  font-weight: 900;
}

.sales-cta-btn {
  flex-shrink: 0;
  background: var(--blue);
  color: #ffffff;
}

.sales-cta-btn:hover {
  background: var(--green);
  transform: translateY(-3px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1050px) {
  .sales-intro-grid,
  .sales-process-card {
    grid-template-columns: 1fr;
  }

  .sales-help-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sales-image-grid {
    grid-auto-rows: 210px;
  }
}

@media (max-width: 700px) {
  .sales-container {
    width: min(100% - 32px, 520px);
  }

  .sales-hero,
  .sales-hero-overlay {
    min-height: 300px;
  }

  .sales-hero h1 {
    font-size: 34px;
  }

  .sales-intro-section,
  .sales-help-section,
  .sales-process-section {
    padding: 62px 0;
  }

  .sales-help-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .sales-image-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }

  .sales-image.tall,
  .sales-image.wide {
    grid-row: auto;
    grid-column: auto;
  }

  .sales-process-card {
    padding: 28px;
  }

  .sales-cta {
    padding: 32px 26px;
    flex-direction: column;
    align-items: flex-start;
  }

  .sales-btn-primary,
  .sales-btn-outline,
  .sales-cta-btn {
    width: 100%;
  }

  html {
  scroll-behavior: smooth;
}

#property-consultation {
  scroll-margin-top: 110px;
}
}