/* ============================================================
HILLTOP PROPERTIES ZAMBIA - PUBLIC WEBSITE
Plain CSS for website.html.
============================================================ */
:root {
  --navy: #0d1b2a;
  --navy-soft: #17314b;
  --army: #4a5e3a;
  --army-light: #6b8c52;
  --gold: #c9a227;
  --white: #ffffff;
  --surface: #f6f7f4;
  --surface-alt: #edf0e8;
  --border: #d9dece;
  --text: #1f2933;
  --muted: #667085;
  --danger: #9f2f24;
  --shadow: 0 20px 50px rgba(13, 27, 42, 0.12);
  --header-height: 96px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--surface);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 20px clamp(18px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
  transition: all 0.3s ease;
  will-change: transform;
}

.site-header.is-hidden {
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(13, 27, 42, 0.08);
}

.public-home .site-header {
  position: fixed;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(13, 27, 42, 0.4) 0%, transparent 100%);
  border-bottom: none;
  box-shadow: none;
  backdrop-filter: none;
}

.public-home .site-header.scrolled {
  background: rgba(13, 27, 42, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(12px);
}

.brand {
  grid-column: 2;
  font-family: "Inter", sans-serif;
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.public-home .brand {
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.brand:hover {
  opacity: 0.8;
}

.site-nav {
  grid-column: 1;
  display: flex;
  gap: 20px;
  align-items: center;
}

.site-nav a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  padding: 8px 0;
  transition: color 0.2s ease;
}

.public-home .site-nav a {
  color: rgba(255, 255, 255, 0.82);
}

.site-nav a:hover {
  color: var(--army);
}

.public-home .site-nav a:hover {
  color: var(--white);
}

.header-actions {
  grid-column: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.header-enquiry-btn {
  background: transparent;
  border: 1px solid rgba(13, 27, 42, 0.3);
  color: var(--navy);
  padding: 8px 18px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.header-enquiry-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.public-home .header-enquiry-btn {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.public-home .header-enquiry-btn:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 85;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--navy);
  transition: all 0.3s ease;
}

.public-home .hamburger-line {
  background-color: var(--white);
}

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  display: none;
}

.hero {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  background: var(--navy);
  padding: 0;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transition: opacity 240ms ease;
  filter: brightness(1.15) contrast(1.05);
}

.hero-video.is-visible {
  opacity: 1;
}

/* UPDATED: Made overlay almost fully transparent for clear video */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 38%, rgba(107, 140, 82, 0.05), transparent 38%),
    linear-gradient(
      180deg,
      rgba(13, 27, 42, 0.15) 0%,
      rgba(13, 27, 42, 0.05) 42%,
      rgba(13, 27, 42, 0.2) 100%
    );
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 180px;
  background: linear-gradient(180deg, rgba(246, 247, 244, 0), var(--surface));
  pointer-events: none;
  display: none;
}

.hero-overlay.has-image {
  background-size: cover;
  background-position: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
  margin: 0 auto;
  color: var(--white);
  text-align: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--army-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--navy);
  line-height: 1.05;
}

h1 {
  color: var(--white);
  font-size: clamp(46px, 8vw, 88px);
  max-width: 860px;
  margin-inline: auto;
  text-shadow: 0 14px 44px rgba(0, 0, 0, 0.28);
}

h2 {
  font-size: clamp(30px, 5vw, 48px);
}

.hero-content p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(17px, 2.2vw, 22px);
  line-height: 1.6;
}

.hero-actions {
  justify-content: center;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  width: min(820px, 100%);
  margin: 28px auto 0;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 60px rgba(8, 17, 27, 0.26);
  backdrop-filter: blur(18px);
}

.hero-search input {
  min-width: 0;
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  background: transparent;
  color: var(--navy);
  font:
    700 15px "Inter",
    sans-serif;
  outline: none;
}

.hero-search input::placeholder {
  color: rgba(31, 41, 51, 0.58);
}

.hero-search .btn {
  border-radius: 999px;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 800;
  border: 1px solid transparent;
}

.btn.primary {
  background: var(--army-light);
  color: var(--white);
}

.btn.secondary {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.site-status {
  position: relative;
  z-index: 4;
  margin: 24px clamp(18px, 5vw, 64px) 0;
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(74, 94, 58, 0.08);
  color: var(--army);
  font-size: 13px;
  font-weight: 800;
}

.site-status.error {
  background: rgba(159, 47, 36, 0.08);
  color: var(--danger);
}

.site-status.hidden {
  display: none;
}

.page-hero {
  min-height: 430px;
  display: grid;
  align-items: end;
  padding: 120px clamp(18px, 5vw, 64px) 72px;
  background:
    linear-gradient(90deg, rgba(13, 27, 42, 0.94), rgba(13, 27, 42, 0.62)),
    linear-gradient(135deg, var(--navy), var(--army));
  color: var(--white);
}

.listings-page-hero {
  min-height: 450px;
  padding-top: clamp(150px, 15vw, 176px);
}

.page-hero-content {
  width: min(820px, 100%);
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(42px, 7vw, 72px);
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.7;
}

.section {
  padding: 76px clamp(18px, 5vw, 64px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.property-section-heading,
.listings-heading {
  align-items: flex-start;
  margin-bottom: 34px;
}

.property-section-heading > div,
.listings-heading > div {
  max-width: 760px;
  min-width: 0;
}

.property-section-heading h2,
.listings-heading h2 {
  margin-bottom: 10px;
}

.property-section-heading p:not(.eyebrow),
.listings-heading p:not(.eyebrow):not(.listing-count) {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.team-grid,
.testimonial-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
}

.team-card,
.testimonial-card,
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(13, 27, 42, 0.08);
}

.team-card h3,
.testimonial-card h3,
.contact-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 18px;
}

.contact-card p,
.team-card p,
.testimonial-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

#testimonials.testimonial-stage {
  position: relative;
  display: block;
  width: 100%;
  height: clamp(680px, 88vh, 960px);
  min-height: 680px;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  background: #071827;
  color: var(--white);
}

#testimonials .testimonial-carousel,
#testimonials .testimonial-slide {
  position: absolute;
  inset: 0;
}

#testimonials .testimonial-carousel {
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

#testimonials .testimonial-slide {
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(72px, 8vw, 130px) clamp(64px, 12vw, 190px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.018);
  transition:
    opacity 620ms ease,
    transform 1100ms ease,
    visibility 0s linear 620ms;
}

#testimonials .testimonial-slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition-delay: 0s;
}

#testimonials .testimonial-slide--image {
  background-image:
    radial-gradient(circle at center, rgba(7, 24, 39, 0.08), rgba(7, 24, 39, 0.7)),
    linear-gradient(180deg, rgba(7, 24, 39, 0.24), rgba(7, 24, 39, 0.68)),
    var(--testimonial-bg-image, url("assets/images/hero-poster.png"));
  background-size: cover;
  background-repeat: no-repeat;
}

#testimonials .testimonial-slide--image.is-bg-broken {
  background-image:
    radial-gradient(circle at 18% 20%, rgba(107, 140, 82, 0.2), transparent 32%),
    radial-gradient(circle at 82% 72%, rgba(201, 162, 39, 0.12), transparent 28%),
    linear-gradient(135deg, #071827 0%, #0b1f2f 100%);
}

#testimonials .testimonial-slide--image-one {
  background-position: center 45%;
}

#testimonials .testimonial-slide--image-two {
  background-position: 60% 42%;
}

#testimonials .testimonial-slide--navy {
  background:
    radial-gradient(circle at 18% 20%, rgba(107, 140, 82, 0.2), transparent 32%),
    radial-gradient(circle at 82% 72%, rgba(201, 162, 39, 0.12), transparent 28%),
    linear-gradient(135deg, var(--testimonial-solid-color, #071827) 0%, #0b1f2f 100%);
}

#testimonials .testimonial-slide--blue {
  background:
    radial-gradient(circle at 72% 18%, rgba(107, 140, 82, 0.16), transparent 30%),
    linear-gradient(135deg, #0b1f2f 0%, var(--testimonial-solid-color, #132c46) 100%);
}

#testimonials .testimonial-slide-content {
  position: relative;
  z-index: 2;
  width: min(1040px, 100%);
  margin: 0 auto;
  text-align: center;
}

#testimonials .testimonial-kicker {
  margin: 0 0 22px;
  color: rgba(232, 201, 110, 0.82);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

#testimonials .testimonial-slide h2 {
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(54px, 6.6vw, 112px);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 0.96;
  text-wrap: balance;
}

#testimonials .testimonial-slide h2::after {
  content: "";
  display: block;
  width: min(100%, 960px);
  height: 1px;
  margin: clamp(30px, 3.6vw, 52px) auto 0;
  background: rgba(255, 255, 255, 0.62);
}

#testimonials .testimonial-slide blockquote {
  max-width: 840px;
  margin: clamp(28px, 3.4vw, 46px) auto 0;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 600;
  line-height: 1.35;
  text-wrap: balance;
}

#testimonials .testimonial-name {
  margin: clamp(30px, 3vw, 44px) 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

#testimonials .testimonial-role {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 600;
}

#testimonials .testimonial-nav {
  position: absolute;
  top: 50%;
  z-index: 8;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.86);
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
  backdrop-filter: blur(12px);
  transform: translateY(-50%);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
  pointer-events: auto;
  cursor: pointer;
}

#testimonials .testimonial-nav:hover,
#testimonials .testimonial-nav:focus-visible {
  border-color: rgba(232, 201, 110, 0.7);
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-50%) scale(1.04);
}

#testimonials .testimonial-nav--prev {
  left: clamp(18px, 4vw, 72px);
}

#testimonials .testimonial-nav--next {
  right: clamp(18px, 4vw, 72px);
}

@media (max-width: 900px) {
  #testimonials.testimonial-stage {
    height: 78vh;
    min-height: 600px;
  }
  #testimonials .testimonial-slide {
    padding: 76px 76px;
  }
  #testimonials .testimonial-slide h2 {
    font-size: clamp(42px, 9vw, 72px);
  }
  #testimonials .testimonial-slide blockquote {
    font-size: clamp(20px, 4vw, 30px);
  }
}

@media (max-width: 600px) {
  #testimonials.testimonial-stage {
    height: 72vh;
    min-height: 540px;
  }
  #testimonials .testimonial-slide {
    padding: 60px 48px;
  }
  #testimonials .testimonial-kicker {
    margin-bottom: 16px;
    font-size: 10px;
  }
  #testimonials .testimonial-slide h2 {
    font-size: clamp(36px, 11vw, 50px);
  }
  #testimonials .testimonial-slide blockquote {
    margin-top: 28px;
    font-size: clamp(18px, 5.4vw, 24px);
  }
  #testimonials .testimonial-name {
    margin-top: 32px;
    font-size: 10px;
  }
  #testimonials .testimonial-nav {
    width: 44px;
    height: 44px;
    font-size: 24px;
  }
  #testimonials .testimonial-nav--prev {
    left: 14px;
  }
  #testimonials .testimonial-nav--next {
    right: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #testimonials .testimonial-slide,
  #testimonials .testimonial-nav {
    transition: none !important;
  }
}

/* ── PROPERTY CARD REDESIGN ── */
.property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(34px, 4vw, 56px);
  justify-content: center;
  max-width: 1680px;
  margin-inline: auto;
}

.property-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  border-radius: 2px;
  overflow: hidden;
  color: inherit;
  cursor: pointer;
  font-family: "Inter", "Manrope", "Helvetica Neue", Arial, sans-serif;
  text-decoration: none;
  transition:
    transform 0.28s ease,
    opacity 0.28s ease;
  height: 100%;
  width: 100%;
}

.property-card:hover,
.property-card:focus-visible {
  transform: translateY(-4px);
}

.property-card:focus-visible {
  outline: 3px solid rgba(195, 157, 49, 0.42);
  outline-offset: 6px;
}

.property-card-image-wrapper {
  position: relative;
  aspect-ratio: 1.55 / 1;
  height: auto;
  border-radius: 2px;
  overflow: hidden;
  background: var(--navy-soft);
  z-index: 1;
}

.property-card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
  position: relative;
  z-index: 2;
  display: block;
}

.property-card-img.is-broken {
  display: none !important;
}

.property-card:hover .property-card-image-wrapper img {
  transform: scale(1.035);
}

.property-card-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: rgba(255, 255, 255, 0.4);
  gap: 12px;
  z-index: 1;
}

.property-card-placeholder .placeholder-icon {
  width: 48px;
  height: 48px;
  stroke-width: 1.5;
  stroke: currentColor;
}

.property-card-placeholder .placeholder-text {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.property-card-badges {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  z-index: 3;
}

/* Center the "Our Partners" heading and empty state text */
.partners-heading {
  justify-content: center;
  text-align: center;
}

.partners-empty-text {
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── PARTNERS GRID ── */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

.partner-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 280px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(13, 27, 42, 0.06);
  transition: all 0.3s ease;
}

.partner-logo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(13, 27, 42, 0.12);
  border-color: var(--army-light);
}

.partner-logo-card img {
  width: 100%;
  height: auto;
  max-height: 120px;
  object-fit: contain;
  display: block;
}

@media (max-width: 900px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .partner-logo-card {
    max-width: 240px;
    padding: 20px;
  }
  .partner-logo-card img {
    max-height: 100px;
  }
}

@media (max-width: 600px) {
  .partners-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .partner-logo-card {
    max-width: 280px;
    padding: 24px;
  }
  .partner-logo-card img {
    max-height: 110px;
  }
}

.property-card-badges .badge {
  padding: 5px 10px;
  border-radius: 2px;
  font-family: "Inter", "Manrope", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid transparent;
}

.property-card-badges .purpose-badge {
  background: rgba(255, 255, 255, 0.82);
  color: var(--navy);
  border-color: rgba(255, 255, 255, 0.45);
}

.property-card-badges .status-badge {
  background: rgba(107, 140, 82, 0.78);
  color: var(--white);
  border-color: rgba(107, 140, 82, 0.4);
}

.property-card-badges .status-badge.status-offer {
  background: rgba(201, 162, 39, 0.78);
  color: var(--navy);
  border-color: rgba(201, 162, 39, 0.4);
}

.property-card-badges .status-badge.status-closed {
  background: rgba(102, 112, 133, 0.78);
  color: var(--white);
  border-color: rgba(102, 112, 133, 0.4);
}

.property-card-overlay-label {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--navy);
  padding: 11px 18px 11px 16px;
  border-radius: 0 2px 0 0;
  color: var(--white);
  z-index: 3;
  max-width: 85%;
  box-shadow: 4px -4px 16px rgba(0, 0, 0, 0.18);
  pointer-events: none;
}

.property-card-ref {
  display: block;
  font-family: "Inter", "Manrope", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 2px;
  opacity: 0.95;
}

.property-card-overlay-title {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: "Inter", "Manrope", "Helvetica Neue", Arial, sans-serif;
}

.property-card-body {
  padding: 18px 6px 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.property-card-price {
  font-family: "Inter", "Manrope", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.25rem, 1.6vw, 1.65rem);
  font-weight: 850;
  color: var(--navy);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.property-card-location {
  margin: 0;
  font-family: "Inter", "Manrope", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.94rem;
  line-height: 1.35;
  color: #64748b;
  font-weight: 500;
}

.property-card-specs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 3px;
  padding-top: 12px;
  border-top: 1px solid rgba(76, 96, 59, 0.18);
  color: #0f1b2a;
  font-family: "Inter", "Manrope", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.property-spec-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.property-spec-icon {
  width: 17px;
  height: 17px;
  stroke: var(--army);
  stroke-width: 2;
}

.spec-dot {
  color: var(--border);
  font-size: 12px;
}

.filters {
  display: grid;
  grid-template-columns: 2fr repeat(3, minmax(150px, 1fr));
  gap: 12px;
  margin-bottom: 30px;
}

.filters input,
.filters select {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--text);
  font:
    600 14px "Inter",
    sans-serif;
}

.listing-count {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 800;
  white-space: nowrap;
}

.listings-controls {
  display: grid;
  grid-template-columns: minmax(220px, 1.7fr) repeat(4, minmax(140px, 1fr));
  gap: 12px;
  margin-bottom: 30px;
}

.listings-controls input,
.listings-controls select {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--text);
  font:
    600 14px "Inter",
    sans-serif;
}

.featured-badge {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 10px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(201, 162, 39, 0.16);
  color: #8a6b10;
  font-size: 11px;
  font-weight: 900;
}

.discovery-bridge {
  position: relative;
  z-index: 3;
  overflow: hidden;
  margin-top: 0;
  min-height: clamp(540px, 66vh, 640px);
  display: grid;
  align-items: center;
  padding: 96px clamp(18px, 5vw, 64px) 110px;
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(244, 246, 249, 0.98)), #f4f6f9;
  box-shadow: 0 -16px 32px rgba(13, 27, 42, 0.03);
}

.discovery-bridge::before {
  content: "";
  position: absolute;
  top: 0;
  right: -12%;
  width: 42%;
  height: 100%;
  background: radial-gradient(circle at 50% 20%, rgba(201, 168, 76, 0.16), transparent 62%);
  pointer-events: none;
}

.discovery-bridge-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  width: min(1240px, 100%);
  margin: 0 auto;
}

.discovery-copy {
  max-width: 430px;
}

.discovery-copy .eyebrow {
  color: var(--army);
}

.discovery-copy h2 {
  position: relative;
  margin-bottom: 28px;
  color: var(--navy);
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.02;
}

.discovery-copy h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 78px;
  height: 2px;
  border-radius: 999px;
  background: var(--army);
}

.discovery-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.discovery-panel {
  min-width: 0;
}

.construction-promo-section {
  position: relative;
  z-index: 3;
  padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 64px);
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  text-align: center;
}

.construction-promo-inner {
  max-width: 760px;
  margin: 0 auto;
}

.construction-promo-section .eyebrow {
  color: var(--gold);
}

.construction-promo-section h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 4vw, 44px);
  color: var(--white);
  margin: 0 0 18px;
  font-weight: 700;
}

.construction-promo-section p:not(.eyebrow) {
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.75;
}

.construction-promo-cta {
  display: inline-flex;
}

@media (max-width: 600px) {
  .construction-promo-section {
    padding: 48px 20px;
  }
  .construction-promo-section p:not(.eyebrow) {
    font-size: 15px;
  }
}

.discovery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 16px;
}

.discovery-card {
  position: relative;
  display: flex;
  min-height: 132px;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(74, 94, 58, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--navy);
  box-shadow: 0 14px 28px rgba(13, 27, 42, 0.06);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.discovery-card--location {
  grid-column: span 2;
  min-height: 158px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(244, 246, 249, 0.82)),
    rgba(255, 255, 255, 0.9);
  border-color: rgba(74, 94, 58, 0.22);
}

.discovery-card--location svg {
  width: 34px;
  height: 34px;
  color: var(--army-light);
}

.discovery-card--location span {
  font-size: 17px;
}

.discovery-card--category {
  min-height: 118px;
}

.discovery-card--purpose {
  grid-column: span 2;
  min-height: 124px;
  border-color: rgba(201, 168, 76, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(201, 168, 76, 0.08)),
    rgba(255, 255, 255, 0.88);
}

.discovery-card--purpose svg {
  color: #9f7b1d;
}

.discovery-card::before {
  content: "";
  position: absolute;
  inset: 14px auto 14px 0;
  width: 3px;
  border-radius: 999px;
  background: transparent;
  transition: background 180ms ease;
}

.discovery-card::after {
  content: "→";
  position: absolute;
  right: 18px;
  bottom: 16px;
  color: rgba(74, 94, 58, 0.56);
  font-weight: 800;
  transform: translateX(-4px);
  opacity: 0;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.discovery-card svg {
  width: 28px;
  height: 28px;
  color: var(--army);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.discovery-card span {
  max-width: calc(100% - 24px);
  font-family: "Inter", Arial, sans-serif;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.discovery-card:hover {
  border-color: rgba(74, 94, 58, 0.34);
  box-shadow: 0 18px 34px rgba(13, 27, 42, 0.1);
  transform: translateY(-2px);
}

.discovery-card:hover::before {
  background: var(--army);
}

.discovery-card:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.discovery-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  padding-left: 2px;
  color: var(--army);
  font-weight: 900;
}

.discovery-link:hover {
  color: var(--navy);
}

.discovery-bridge + .featured-services-scroll-stage {
  margin-top: 0;
}

.featured-services-scroll-stage {
  position: relative;
  background: #f4f6f9;
}

.featured-pin-layer {
  position: relative;
  z-index: 1;
  margin-top: 0;
  border-radius: 0;
  box-shadow: none;
  padding-top: 96px;
  padding-bottom: 80px;
}

.featured-properties-section {
  position: relative;
  z-index: 2;
  border-radius: 48px 48px 0 0;
  margin-top: -48px;
  background: #f4f6f9;
  box-shadow: 0 -16px 32px rgba(13, 27, 42, 0.03);
  padding: 80px clamp(18px, 5vw, 64px) 168px;
}

.featured-pinned-layer {
  position: relative;
  top: auto;
  z-index: 2;
  min-height: auto;
}

.featured-properties-container {
  width: min(1680px, 100%);
  margin: 0 auto;
}

.featured-properties-header {
  max-width: 720px;
  margin-bottom: 28px;
  text-align: left;
}

.featured-properties-header .eyebrow {
  color: var(--army);
}

.featured-properties-header h2 {
  margin-bottom: 10px;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.12;
}

.featured-properties-header p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.featured-properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(34px, 4vw, 56px);
  max-width: 1680px;
  margin-inline: auto;
}

.featured-properties-action {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

@media (max-width: 1200px) {
  .featured-properties-grid,
  .property-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .featured-properties-grid,
  .property-grid {
    grid-template-columns: 1fr;
  }
}

.view-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 230px;
  min-height: 52px;
  border-radius: 999px;
  background: var(--navy);
  box-shadow: 0 18px 34px rgba(13, 27, 42, 0.18);
}

.view-more-btn:hover {
  background: var(--army);
  transform: translateY(-1px);
}

.view-more-btn .arrow-icon {
  width: 18px;
  height: 18px;
}

@media (max-width: 900px) {
  .discovery-bridge {
    border-radius: 0;
    margin-top: 0;
    min-height: 560px;
    padding-block: 88px 90px;
  }
  .discovery-bridge-inner {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 32px;
  }
  .discovery-copy {
    max-width: 680px;
  }
  .discovery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .discovery-card--location,
  .discovery-card--purpose {
    grid-column: span 1;
  }
  .featured-properties-grid,
  .property-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(28px, 4vw, 42px);
  }
  .featured-properties-section {
    border-radius: 38px 38px 0 0;
    margin-top: -38px;
    padding-bottom: 132px;
  }
  .featured-pin-layer {
    border-radius: 0;
    margin-top: 0;
    padding-top: 84px;
  }
  .services-section {
    margin-top: 0;
    padding-top: 84px;
    padding-bottom: 82px;
    border-radius: 0;
  }
}

@media (max-width: 600px) {
  .featured-properties-grid,
  .property-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.split-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) 1.3fr;
  gap: 36px;
  align-items: start;
  background: var(--white);
}

.split-section p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.about-network-section {
  position: relative;
  overflow: hidden;
  padding: clamp(88px, 10vw, 148px) clamp(20px, 5vw, 76px);
  background: linear-gradient(
    90deg,
    rgba(244, 246, 249, 0.96) 0%,
    rgba(255, 255, 255, 0.96) 54%,
    rgba(244, 246, 249, 0.78) 100%
  );
  color: var(--navy);
}

.about-network-inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(440px, 1fr);
  align-items: center;
  gap: clamp(72px, 8.5vw, 150px);
  width: min(100%, 1480px);
  margin: 0 auto;
}

.about-network-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.about-network-eyebrow {
  margin: 0 0 22px;
  color: var(--army);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-network-title {
  margin: 0;
  color: #071a2f;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: 0;
}

.about-network-title span {
  display: block;
}

.about-network-description {
  max-width: 560px;
  margin: clamp(34px, 4vw, 52px) 0 0;
  color: #44515f;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.9;
}

.about-network-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: clamp(34px, 4vw, 50px) 0 0;
  color: var(--army);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-network-brand::before {
  content: "";
  width: 44px;
  height: 2px;
  background: var(--gold);
}

.about-network-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(38px, 4.8vw, 58px) clamp(60px, 7vw, 96px);
  margin-top: clamp(50px, 6vw, 78px);
  max-width: 560px;
}

.about-network-stat {
  min-width: 0;
}

.about-network-stat strong {
  display: block;
  color: #071a2f;
  font-size: clamp(25px, 2.4vw, 36px);
  line-height: 1.05;
  font-weight: 900;
}

.about-network-stat span {
  display: block;
  margin-top: 12px;
  color: var(--army);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-network-cta {
  margin-top: clamp(40px, 5vw, 64px);
}

.about-network-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  min-width: 0;
  transform: translateX(clamp(18px, 2vw, 34px));
}

.about-network-map-frame {
  position: relative;
  overflow: visible;
  width: 100%;
  min-height: clamp(600px, 50vw, 680px);
  margin-right: 0;
  filter: drop-shadow(0 28px 48px rgba(13, 27, 42, 0.1));
}

.about-network-map {
  display: block;
  position: absolute;
  right: -8%;
  top: 50%;
  width: 110%;
  height: auto;
  max-width: none;
  transform: translateY(-50%);
}

.zambia-map-interactive {
  touch-action: manipulation;
}

.zambia-map-interactive svg.about-network-map {
  overflow: visible;
}

.zambia-map-interactive svg circle,
.zambia-map-interactive .map-dot {
  transform-box: fill-box;
  transform-origin: center;
  will-change: transform;
}

.about-network-map-label {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid rgba(74, 94, 58, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 28px rgba(13, 27, 42, 0.12);
  color: var(--army);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.about-network-map-label::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(201, 168, 76, 0.16);
}

.about-network-map-label--lusaka {
  left: 70%;
  top: 65%;
  transform: translate(-50%, -50%);
}

.about-network-map-label--livingstone {
  left: 35%;
  top: 83%;
  transform: translate(-50%, -50%);
}

@media (max-width: 900px) {
  .about-network-section {
    padding: clamp(72px, 12vw, 104px) clamp(18px, 6vw, 42px);
  }
  .about-network-inner {
    grid-template-columns: 1fr;
    gap: clamp(38px, 8vw, 64px);
  }
  .about-network-copy {
    max-width: 720px;
  }
  .about-network-title {
    font-size: clamp(32px, 7.5vw, 48px);
  }
  .about-network-visual {
    justify-content: center;
    transform: none;
  }
  .about-network-map-frame {
    width: 100%;
    min-height: 460px;
    margin-right: 0;
  }
  .about-network-map {
    right: -5%;
    width: 110%;
  }
  .about-network-map-label--lusaka {
    left: 67%;
    top: 66%;
  }
  .about-network-map-label--livingstone {
    left: 32%;
    top: 84%;
  }
}

@media (max-width: 600px) {
  .about-network-section {
    padding: 64px 18px 72px;
  }
  .about-network-stats {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .about-network-stat strong {
    font-size: 30px;
  }
  .about-network-map-frame {
    min-height: 360px;
  }
  .about-network-map {
    right: -3%;
    width: 108%;
  }
  .about-network-map-label {
    padding: 6px 8px;
    font-size: 10px;
  }
  .about-network-map-label--lusaka {
    left: 66%;
    top: 65%;
  }
  .about-network-map-label--livingstone {
    left: 32%;
    top: 82%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-network-map-frame,
  .about-network-map-frame *,
  .about-network-map,
  .about-network-map * {
    animation: none !important;
  }
}

.about-overview-section,
.branch-presence-section {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(260px, 0.8fr);
  gap: 34px;
  align-items: start;
}

.about-overview-copy p:not(.eyebrow),
.branch-presence-section p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.about-highlight-card,
.mission-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(13, 27, 42, 0.08);
}

.about-highlight-card {
  border-left: 5px solid var(--army-light);
}

.about-highlight-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 20px;
  font-weight: 900;
}

.about-highlight-card p,
.mission-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.mission-section,
.difference-section {
  background: var(--surface-alt);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.mission-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 22px;
}

.about-trust-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.services-detail-section {
  background: var(--surface);
}

.service-detail-grid,
.process-grid {
  display: grid;
  gap: 20px;
}

.service-detail-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-detail-card,
.process-card {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(13, 27, 42, 0.08);
}

.service-detail-card h3,
.process-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 21px;
}

.service-detail-card p,
.process-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.service-detail-card strong {
  color: var(--army);
  font-size: 14px;
  line-height: 1.6;
}

.service-detail-card .btn {
  width: fit-content;
  margin-top: 4px;
}

.process-section {
  background: var(--surface-alt);
}

.process-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.process-card span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(107, 140, 82, 0.14);
  color: var(--army);
  font-weight: 900;
}

.services-trust-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) 1.3fr;
  gap: 36px;
  align-items: start;
}

.services-section {
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin-top: 0;
  padding-top: 72px;
  padding-bottom: 96px;
  border-radius: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(107, 140, 82, 0.16), transparent 34%),
    radial-gradient(circle at 82% 22%, rgba(201, 168, 76, 0.1), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(13, 27, 42, 0.68), transparent 42%),
    linear-gradient(180deg, #07101a 0%, #05080d 42%, #0d1b2a 100%);
  background-color: #05080d;
  box-shadow: 0 -10px 34px rgba(5, 8, 13, 0.24);
  color: var(--white);
}

.services-section.has-marketing-video-scrub {
  overflow: visible;
}

.services-cover-layer {
  z-index: 6;
}

.services-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 320px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.055) 0%,
      rgba(13, 27, 42, 0.1) 34%,
      rgba(5, 8, 13, 0) 100%
    ),
    radial-gradient(ellipse at 18% 0%, rgba(107, 140, 82, 0.12), transparent 46%),
    radial-gradient(ellipse at 76% 8%, rgba(201, 168, 76, 0.07), transparent 42%);
  pointer-events: none;
}

.services-section > * {
  position: relative;
  z-index: 1;
}

.services-section .section-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto 24px;
}

.services-section .section-heading .eyebrow {
  color: var(--gold);
  margin-bottom: 14px;
}

.services-section .section-heading h2 {
  color: var(--white);
  max-width: 560px;
  margin-bottom: 0;
}

.services-section .section-subheading {
  color: rgba(255, 255, 255, 0.72);
  max-width: 520px;
  margin: 0;
}

.services-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.service-card,
.trust-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(13, 27, 42, 0.08);
}

.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 12px;
  background: rgba(107, 140, 82, 0.14);
  color: var(--army);
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3,
.trust-card span {
  display: block;
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

.service-card p,
.trust-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

/* ============================================================
WHY HILLTOP - SECONDARY VIDEO HERO SECTION
============================================================ */
.why-video-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px clamp(24px, 6vw, 80px);
  background: var(--navy);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  color: var(--white);
}

.why-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transition: opacity 1s ease;
  filter: brightness(1.15) contrast(1.05);
}

/* UPDATED: Set opacity to 1 for fully clear video */
.why-hero-video.is-visible {
  opacity: 1;
}

/* UPDATED: Made overlay almost fully transparent for clear video */
.why-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(
      180deg,
      rgba(13, 27, 42, 0.15) 0%,
      rgba(13, 27, 42, 0.05) 50%,
      rgba(13, 27, 42, 0.2) 100%
    ),
    radial-gradient(circle at 50% 20%, rgba(201, 168, 76, 0.02), transparent 45%);
  z-index: 1;
  pointer-events: none;
}

.why-hero-content {
  position: relative;
  z-index: 2;
  width: min(92vw, 1460px);
  margin: 0 auto;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-top: clamp(80px, 10vh, 120px);
  padding-bottom: 0;
}

.why-hero-header {
  text-align: center;
  max-width: 700px;
}

.why-eyebrow {
  color: #c9a84c;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 12px;
}

.why-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 46px);
  color: var(--white);
  margin: 0;
  font-weight: 700;
}

.why-subtitle {
  margin: 14px 0 0;
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.why-cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: clamp(22px, 2.5vw, 36px);
  width: 100%;
  margin-top: auto;
  margin-bottom: clamp(29px, calc(6vh - 5px), 65px);
}

.why-card {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 12px;
  padding: clamp(20px, 1.8vw, 28px);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
  outline: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 0;
  height: auto;
  overflow: hidden;
  position: relative;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  align-self: end;
  transform-origin: center bottom;
}

.why-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.why-card-title {
  font-size: clamp(20px, 2vw, 22px);
  color: var(--white);
  font-weight: 700;
  margin: 0 0 12px 0;
  display: block;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.why-card-desc-default {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.why-card-expanded {
  margin-top: 16px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform: translateY(14px);
}

.why-card-desc-expanded {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.why-card--trusted-agents .why-card-desc-expanded {
  margin-bottom: 0;
}

@media (min-width: 901px) {
  .why-cards-container {
    position: relative;
    top: 80px;
  }
  .why-card:hover,
  .why-card:focus-visible {
    transform: translateY(-12px);
    background: rgba(13, 27, 42, 0.45);
    border-color: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  }
  .why-card:hover .why-card-expanded,
  .why-card:focus-visible .why-card-expanded {
    opacity: 1;
    max-height: 180px;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .why-video-hero {
    min-height: auto;
    padding: 60px 20px;
  }
  .why-cards-container {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
    margin-bottom: 0;
  }
  .why-card {
    height: auto;
    min-height: auto;
    padding: 28px 24px;
    background: rgba(13, 27, 42, 0.85);
    border-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  .why-card-expanded {
    opacity: 1;
    max-height: none;
    transform: none;
    margin-top: 16px;
  }
  .why-card-desc-default {
    margin-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .why-hero-video {
    display: none;
  }
  .why-card,
  .why-card-expanded,
  .why-card-desc-default {
    transition: none !important;
  }
  .why-card:hover,
  .why-card:focus-visible {
    transform: none !important;
  }
}

.cta-section {
  --cta-side-space: 35vw;
  --cta-block-space: 12.5vh;
  --cta-final-side-space: 3vw;
  --cta-final-block-space: 5.5vh;
  --cta-image-blur: 10px;
  --cta-image-opacity: 0.82;
  --cta-image-saturation: 0.88;
  --cta-image-contrast: 0.94;
  --cta-label-scale: 0.92;
  --cta-radius: 10px;
  position: relative;
  min-height: 205vh;
  margin-top: clamp(-180px, -9vw, -112px);
  padding: 0;
  overflow: clip;
  isolation: isolate;
  background:
    radial-gradient(circle at 16% 16%, rgba(107, 140, 82, 0.12), transparent 34%),
    linear-gradient(180deg, #f7f7ef 0%, #eef2e7 100%);
  color: var(--white);
  text-align: center;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 0;
  height: clamp(150px, 22vh, 260px);
  background: linear-gradient(
    180deg,
    rgba(244, 246, 249, 0.98) 0%,
    rgba(247, 247, 239, 0.86) 36%,
    rgba(238, 242, 231, 0.34) 72%,
    rgba(238, 242, 231, 0) 100%
  );
  pointer-events: none;
}

.cta-sticky {
  position: sticky;
  top: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  height: 100vh;
  padding: 0;
}

.cta-image-frame {
  position: relative;
  display: grid;
  place-items: center;
  width: min(calc(100vw - (var(--cta-side-space) * 2)), 1840px);
  height: calc(100vh - (var(--cta-block-space) * 2));
  max-width: 1840px;
  overflow: hidden;
  border-radius: var(--cta-radius);
  background: var(--navy);
  box-shadow: 0 38px 100px rgba(13, 27, 42, 0.26);
  transform: translateZ(0);
  will-change: width, height, border-radius;
}

.cta-image-frame img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(calc(100vw - (var(--cta-final-side-space) * 2)), 1840px);
  height: calc(100vh - (var(--cta-final-block-space) * 2));
  object-fit: cover;
  transform: translate(-50%, -50%);
  transform-origin: center;
  filter: blur(var(--cta-image-blur)) saturate(var(--cta-image-saturation))
    contrast(var(--cta-image-contrast));
  opacity: var(--cta-image-opacity);
  will-change: filter, opacity;
}

.cta-image-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at center, rgba(13, 27, 42, 0.12), rgba(13, 27, 42, 0.66)),
    linear-gradient(180deg, rgba(13, 27, 42, 0.16), rgba(13, 27, 42, 0.48));
}

.cta-inner {
  position: absolute;
  left: clamp(28px, 4vw, 88px);
  top: 58%;
  z-index: 2;
  width: auto;
  margin: 0;
  padding: 0;
  transform: translateY(-50%) scale(var(--cta-label-scale));
  transform-origin: left center;
  pointer-events: none;
  will-change: transform;
}

.cta-section .eyebrow {
  margin: 0;
  color: rgba(248, 246, 238, 0.76);
  font-size: clamp(11px, 0.85vw, 14px);
  font-weight: 900;
  letter-spacing: 0.26em;
  line-height: 1;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.46);
}

#team {
  position: relative;
  z-index: 2;
  background: var(--surface);
}

@media (prefers-reduced-motion: reduce) {
  .cta-section {
    --cta-side-space: 3vw;
    --cta-block-space: 5.5vh;
    --cta-image-blur: 0px;
    --cta-image-opacity: 1;
    --cta-image-saturation: 1;
    --cta-image-contrast: 1;
    --cta-label-scale: 1.14;
    min-height: 100vh;
  }
}

@media (max-width: 900px) {
  .cta-section {
    --cta-side-space: 4vw;
    --cta-block-space: 9vh;
    --cta-image-blur: 0px;
    --cta-image-opacity: 1;
    --cta-image-saturation: 1;
    --cta-image-contrast: 1;
    --cta-label-scale: 1.06;
    min-height: 120vh;
  }
  .cta-sticky {
    min-height: 620px;
    padding-inline: 18px;
  }
}

@media (max-width: 600px) {
  .cta-section {
    --cta-side-space: 0px;
    --cta-block-space: 0px;
    --cta-final-side-space: 0px;
    --cta-final-block-space: 0px;
    --cta-image-blur: 0px;
    --cta-image-opacity: 1;
    --cta-image-saturation: 1;
    --cta-image-contrast: 1;
    --cta-label-scale: 1;
    min-height: auto;
    margin-top: -48px;
    padding: 56px 18px;
  }
  .cta-sticky {
    position: relative;
    min-height: 0;
    height: auto;
    padding: 0;
  }
  .cta-image-frame {
    width: 100%;
    height: min(680px, 78vh);
    min-height: 560px;
    border-radius: 8px;
  }
  .cta-inner {
    left: 28px;
    top: 58%;
  }
}

.team-card,
.testimonial-card,
.contact-card {
  padding: 22px;
}

.team-photo {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  overflow: hidden;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  background: var(--army-light);
  color: var(--white);
  font:
    800 24px "Playfair Display",
    serif;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-photo--logo {
  width: 96px;
  height: 96px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 10px;
}

.team-photo--logo img {
  object-fit: contain;
}

.stars {
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.contact-section {
  background: var(--navy);
  color: var(--white);
  --contact-accent: #d4af37;
}

.contact-section h2 {
  color: var(--white);
}

.contact-section p {
  color: rgba(255, 255, 255, 0.75);
}

.contact-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.contact-card h3 {
  color: var(--white);
}

.contact-card p {
  margin: 6px 0 0;
}

.contact-section-intro {
  max-width: 760px;
}

.contact-grid-heading {
  margin: 12px 0 24px;
  color: var(--white);
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 700;
}

.contact-cta-under-details {
  display: flex;
  justify-content: flex-start;
  margin-top: 20px;
}

.contact-enquiry-btn {
  background: var(--contact-accent);
  color: var(--navy);
  border-color: transparent;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.contact-enquiry-btn:hover,
.contact-enquiry-btn:focus-visible {
  background: #c19a2b;
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(212, 175, 55, 0.35);
}

.contact-enquiry-btn:focus-visible {
  outline: 2px solid var(--contact-accent);
  outline-offset: 3px;
}

/* ============================================================
MODERN CONTACT SECTION
Two-column grid: contact details + branch locations.
============================================================ */
.contact-grid-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
  align-items: start;
}

.contact-col {
  min-width: 0;
}

.contact-locations-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

.contact-locations-heading {
  margin: 0 0 4px;
  color: var(--contact-accent);
  font-size: 21px;
  font-weight: 700;
}

.contact-info-card,
.branch-card {
  position: relative;
  background: var(--navy-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.contact-info-card:hover,
.branch-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.4);
  background: #1c3a58;
}

.contact-info-card h3,
.branch-card h4 {
  margin: 0 0 20px;
  color: var(--contact-accent);
  font-size: 21px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-group + .contact-info-group {
  margin-top: 20px;
}

.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.16);
  color: var(--contact-accent);
}

.contact-icon svg {
  width: 18px;
  height: 18px;
}

.contact-icon--pin {
  width: 30px;
  height: 30px;
}

.contact-icon--pin svg {
  width: 20px;
  height: 20px;
}

.contact-info-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.contact-info-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.contact-info-value-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.contact-info-value {
  font-size: 15px;
  line-height: 1.6;
  color: var(--white);
  word-break: break-word;
  transition: color 0.2s ease;
}

.contact-info-value:hover,
.contact-info-value:focus-visible {
  color: var(--contact-accent);
}

.contact-copy-btn {
  flex: none;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.contact-copy-btn svg {
  width: 14px;
  height: 14px;
}

.contact-copy-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.contact-copy-btn.is-copied {
  color: var(--contact-accent);
  border-color: var(--contact-accent);
}

.contact-copy-btn:focus-visible,
.branch-directions-btn:focus-visible,
.branch-phone:focus-visible {
  outline: 2px solid var(--contact-accent);
  outline-offset: 2px;
}

.branch-card address {
  margin: 0 0 16px;
  font-style: normal;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

.branch-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--white);
  transition: color 0.2s ease;
}

.branch-phone svg {
  width: 15px;
  height: 15px;
  color: var(--contact-accent);
}

.branch-phone:hover {
  color: var(--contact-accent);
}

.branch-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.branch-directions-btn svg {
  width: 14px;
  height: 14px;
}

.branch-directions-btn:hover {
  background: var(--contact-accent);
  border-color: var(--contact-accent);
  color: var(--navy);
  transform: translateY(-2px);
}

@media (max-width: 1024px) and (min-width: 769px) {
  .contact-grid-modern {
    gap: 24px 28px;
  }
  .contact-info-card,
  .branch-card {
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .contact-grid-modern {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contact-info-card,
  .branch-card {
    padding: 20px;
  }
  .contact-info-card h3,
  .branch-card h4,
  .contact-locations-heading,
  .contact-grid-heading {
    font-size: 18px;
  }
  .contact-info-value,
  .branch-card address,
  .branch-phone {
    font-size: 14px;
  }
  .branch-directions-btn {
    width: 100%;
  }
  .contact-cta-under-details {
    width: 100%;
  }
  .contact-enquiry-btn {
    width: 100%;
  }
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(8, 17, 27, 0.72);
}

.modal-overlay.open {
  display: flex;
}

.modal-card {
  position: relative;
  width: min(680px, 100%);
  max-height: calc(100vh - 44px);
  overflow: auto;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.enquiry-modal-card {
  padding: 28px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.modal-heading {
  padding-right: 42px;
  margin-bottom: 22px;
}

.modal-heading h2 {
  font-size: clamp(28px, 4vw, 38px);
}

.modal-heading p:not(.eyebrow) {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.enquiry-form {
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.enquiry-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 800;
  font-size: 13px;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--text);
  font:
    600 14px "Inter",
    sans-serif;
}

.enquiry-form textarea {
  resize: vertical;
  line-height: 1.5;
}

.enquiry-form select:disabled {
  color: var(--muted);
  background: var(--surface-alt);
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.enquiry-message {
  display: none;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(13, 27, 42, 0.07);
  color: var(--navy);
  font-weight: 800;
  font-size: 13px;
  line-height: 1.5;
}

.enquiry-message.error,
.enquiry-message.success,
.enquiry-message:not(:empty) {
  display: block;
}

.enquiry-message.error {
  background: rgba(159, 47, 36, 0.08);
  color: var(--danger);
}

.enquiry-message.success {
  background: rgba(74, 94, 58, 0.1);
  color: var(--army);
}

.whatsapp-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(74, 94, 58, 0.12);
  color: var(--army);
  font-weight: 900;
}

.whatsapp-fallback.hidden {
  display: none;
}

.enquiry-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.enquiry-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.empty-state {
  display: none;
  padding: 24px;
  border: 1px dashed var(--border);
  border-radius: 12px;
  background: var(--white);
  color: var(--muted);
  text-align: center;
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 22px clamp(18px, 5vw, 64px);
  background: #08111b;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.site-footer strong {
  display: block;
  color: var(--white);
  font-size: 15px;
  margin-bottom: 4px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }
  .header-enquiry-btn {
    display: none;
  }
  .site-nav {
    position: fixed;
    top: var(--site-header-height, 73px);
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 31;
  }
  .public-home .site-nav {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(13, 27, 42, 0.96);
    color: var(--white);
  }
  .site-nav.open {
    display: flex;
  }
  .nav-overlay.open {
    position: fixed;
    top: var(--site-header-height, 73px);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    display: block;
    background: rgba(8, 17, 27, 0.28);
  }
  .public-home .nav-overlay.open {
    background: rgba(8, 17, 27, 0.46);
  }
  .filters {
    grid-template-columns: 1fr;
  }
  .property-section-heading,
  .listings-heading {
    flex-direction: column;
    gap: 12px;
  }
  .listing-count {
    white-space: normal;
  }
  .listings-controls {
    grid-template-columns: 1fr;
  }
  .split-section {
    grid-template-columns: 1fr;
  }
  .about-overview-section,
  .branch-presence-section,
  .mission-grid {
    grid-template-columns: 1fr;
  }
  .services-grid,
  .trust-grid,
  .why-section,
  .service-detail-grid,
  .process-grid,
  .services-trust-section {
    grid-template-columns: 1fr;
  }
  .featured-properties-grid,
  .property-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 600px) {
  .brand small {
    display: none;
  }
  .hero {
    min-height: 100svh;
    padding: 0;
    align-items: center;
  }
  .hero-content {
    width: 100%;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-search {
    grid-template-columns: 1fr;
    border-radius: 22px;
    padding: 10px;
  }
  .hero-search input {
    min-height: 48px;
    text-align: center;
  }
  .hero-search .btn {
    width: 100%;
  }
  .public-home .site-header {
    gap: 12px;
  }
  .section {
    padding-block: 56px;
  }
  .discovery-bridge {
    margin-top: 0;
    min-height: 0;
    display: block;
    padding: 68px 18px 66px;
    border-radius: 0;
  }
  .discovery-copy h2 {
    margin-bottom: 26px;
  }
  .discovery-copy p:not(.eyebrow) {
    font-size: 15px;
  }
  .discovery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .discovery-card--location,
  .discovery-card--purpose {
    grid-column: auto;
  }
  .discovery-card {
    min-height: 118px;
    padding: 16px;
    border-radius: 18px;
  }
  .discovery-card span {
    font-size: 14px;
  }
  .discovery-card--location span {
    font-size: 15px;
  }
  .listings-page-hero {
    min-height: 390px;
    padding-top: 128px;
    padding-bottom: 56px;
  }
  .featured-properties-section {
    padding: 64px 18px 104px;
    border-radius: 28px 28px 0 0;
    margin-top: -28px;
  }
  .discovery-bridge + .featured-properties-section {
    margin-top: 0;
    border-radius: 0;
    padding-top: 72px;
  }
  .featured-pin-layer {
    position: relative;
    top: auto;
    min-height: auto;
    border-radius: 0;
    margin-top: 0;
    padding-top: 64px;
  }
  .services-section {
    margin-top: 0;
    padding-top: 72px;
    padding-bottom: 64px;
    border-radius: 0;
  }
  .featured-properties-action {
    margin-top: 32px;
  }
  .view-more-btn {
    width: 100%;
    max-width: 360px;
  }
  .featured-properties-grid,
  .property-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .property-card-image-wrapper {
    aspect-ratio: 1.55 / 1;
    height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .featured-properties-section {
    padding-bottom: 80px;
  }
  .featured-pinned-layer {
    position: relative;
    top: auto;
    min-height: auto;
  }
  .services-section {
    margin-top: 0;
    padding-top: 80px;
    border-radius: 0;
    box-shadow: none;
  }
}

.featured-pin-layer {
  position: relative;
  z-index: 1;
  background: #f4f6f9;
}

.services-cover-layer {
  position: relative;
  z-index: 5;
  background:
    radial-gradient(circle at 18% 12%, rgba(107, 140, 82, 0.16), transparent 34%),
    radial-gradient(circle at 82% 22%, rgba(201, 168, 76, 0.1), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(13, 27, 42, 0.68), transparent 42%),
    linear-gradient(180deg, #07101a 0%, #05080d 42%, #0d1b2a 100%);
  background-color: #05080d;
  border-radius: 0;
  box-shadow: 0 -12px 42px rgba(5, 8, 13, 0.3);
}

@media (max-width: 900px) {
  .services-section {
    padding-top: 60px;
  }
  .services-cover-layer {
    border-radius: 0;
    box-shadow: 0 -10px 30px rgba(5, 8, 13, 0.22);
  }
  .services-section .section-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 18px;
    width: min(100% - 36px, 760px);
  }
}

@media (max-width: 600px) {
  .services-section {
    padding-top: 48px;
  }
  .services-cover-layer {
    border-radius: 0;
    box-shadow: 0 -12px 24px rgba(13, 27, 42, 0.08);
  }
  .services-section .section-heading {
    width: min(100% - 32px, 560px);
    margin-bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-cover-layer {
    border-radius: 0 !important;
    box-shadow: none !important;
  }
}

.services-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(38px, 5vw, 72px);
  align-items: start;
  max-width: 1360px;
  margin: 64px auto 0;
  padding: 0 24px;
}

.marketing-scroll-stage {
  grid-column: 1 / -1;
  position: relative;
  justify-self: center;
  width: min(94vw, 1680px);
  min-height: var(--marketing-scrub-stage-height, 220vh);
}

.marketing-scroll-stage > .service-showcase-card {
  width: 100%;
  min-height: clamp(700px, 92vh, 980px);
}

.service-showcase-card {
  position: relative;
  display: block;
  min-height: 580px;
  background: var(--navy);
  border-radius: 2px;
  padding: 0;
  box-shadow:
    0 35px 90px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 48px rgba(201, 168, 76, 0.06);
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;
  isolation: isolate;
}

.service-showcase-card:nth-child(1) {
  grid-column: 1;
  min-height: 580px;
}

.service-showcase-card:nth-child(2) {
  grid-column: 2;
  min-height: 660px;
  margin-top: 36px;
}

.service-showcase-card:nth-child(3) {
  grid-column: 1 / -1;
  min-height: 720px;
  margin-top: 0;
}

.service-showcase-card:nth-child(4) {
  grid-column: 1;
  min-height: 580px;
  margin-top: 0;
}

.service-showcase-card:nth-child(5) {
  grid-column: 2;
  min-height: 620px;
  margin-top: 52px;
}

.service-showcase-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 42px 104px rgba(0, 0, 0, 0.52),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 62px rgba(201, 168, 76, 0.1);
}

.service-showcase-card--featured {
  grid-column: 1 / -1;
  min-height: 720px;
  margin-top: 0;
}

.service-showcase-card[data-service*="marketing"],
.service-showcase-card.service-showcase-card--marketing,
.service-showcase-card.service-showcase-card--case-study {
  grid-column: 1 / -1;
  min-height: clamp(700px, 92vh, 980px);
  margin-top: 0;
}

.marketing-scroll-stage.has-video-scrub > .service-showcase-card--marketing.has-scroll-scrub-video {
  border-color: rgba(255, 255, 255, 0.18);
  border-radius: 2px;
  background: #02050a;
  box-shadow:
    0 56px 150px rgba(0, 0, 0, 0.76),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 0 96px rgba(0, 0, 0, 0.64),
    0 0 72px rgba(201, 168, 76, 0.08);
}

.marketing-scroll-stage.has-video-scrub
  .service-showcase-card--marketing.has-scroll-scrub-video::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 255, 255, 0.04), transparent 32%),
    radial-gradient(circle at 50% 52%, transparent 38%, rgba(0, 0, 0, 0.52) 100%),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.18) 0%,
      rgba(0, 0, 0, 0.42) 55%,
      rgba(0, 0, 0, 0.78) 100%
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.32) 38%,
      transparent 72%,
      rgba(0, 0, 0, 0.28) 100%
    );
}

@media (min-width: 901px) {
  .marketing-scroll-stage.has-video-scrub {
    height: var(--marketing-scrub-stage-height, 220vh);
    min-height: 1900px;
  }
  .marketing-scroll-stage.has-video-scrub > .service-showcase-card {
    position: sticky;
    top: max(32px, calc((100vh - clamp(700px, 92vh, 980px)) / 2));
    height: clamp(700px, 92vh, 980px);
    min-height: 700px;
    margin-top: 0;
  }
  .marketing-scroll-stage.has-video-scrub > .service-showcase-card:hover {
    transform: none;
  }
  .marketing-scroll-stage.has-video-scrub .service-media-image {
    opacity: 0;
    transform: none;
  }
  .marketing-scroll-stage.has-video-scrub .marketing-scrub-video {
    opacity: 1;
    filter: contrast(1.08) saturate(0.95) brightness(0.9);
    transform: scale(1.01);
  }
  .marketing-scroll-stage.has-video-scrub .case-study-overlay-pill {
    background: rgba(3, 8, 14, 0.9);
    border-color: rgba(201, 168, 76, 0.42);
    box-shadow:
      0 14px 38px rgba(0, 0, 0, 0.46),
      0 0 0 1px rgba(255, 255, 255, 0.08);
  }
}

.service-showcase-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
  background: var(--navy);
  display: block;
}

.service-showcase-card--featured .service-showcase-media {
  height: 100%;
}

.service-showcase-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  background:
    linear-gradient(
      180deg,
      rgba(13, 27, 42, 0) 0%,
      rgba(13, 27, 42, 0.06) 46%,
      rgba(13, 27, 42, 0.54) 100%
    ),
    linear-gradient(
      90deg,
      rgba(13, 27, 42, 0.18) 0%,
      rgba(13, 27, 42, 0.08) 46%,
      rgba(13, 27, 42, 0) 100%
    );
  pointer-events: none;
}

.service-showcase-media .visual-card-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.38;
}

.service-showcase-media img.service-media-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 2;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-showcase-card:hover .service-media-image {
  transform: scale(1.03);
}

.service-media-fallback {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.84);
  font-size: 54px;
  background:
    radial-gradient(circle at 28% 16%, rgba(201, 168, 76, 0.28), transparent 36%),
    linear-gradient(135deg, rgba(74, 94, 58, 0.86), rgba(13, 27, 42, 0.95));
}

.case-study-hover-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.case-study-hover-video.is-playing {
  opacity: 1;
}

.case-study-hover-video.has-error {
  display: none !important;
}

.service-showcase-media--case-study::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: inherit;
  pointer-events: none;
}

.case-study-overlay-pill {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.98);
  opacity: 1;
  z-index: 8;
  background: var(--navy);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(8, 17, 27, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  white-space: nowrap;
}

.service-showcase-media--case-study:hover .case-study-overlay-pill {
  transform: translate(-50%, -50%) scale(1.05);
  border-color: var(--gold);
  color: var(--gold);
}

.service-showcase-copy {
  position: absolute;
  left: clamp(22px, 2.7vw, 34px);
  right: clamp(22px, 2.7vw, 34px);
  bottom: clamp(22px, 2.7vw, 34px);
  z-index: 7;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 520px;
  padding: 0;
  color: var(--white);
  pointer-events: none;
}

.service-showcase-card--marketing .service-showcase-copy {
  left: clamp(28px, 4vw, 64px);
  right: auto;
  bottom: clamp(28px, 4vw, 64px);
  max-width: min(660px, calc(100% - clamp(56px, 8vw, 128px)));
}

.service-showcase-card--marketing .service-showcase-copy p {
  max-width: 600px;
}

.service-showcase-copy .service-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  background: rgba(13, 27, 42, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.service-showcase-copy h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 3.6vw, 54px);
  line-height: 0.96;
  color: var(--white);
  margin: 0 0 10px;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.26);
}

.service-showcase-copy p {
  max-width: 430px;
  font-size: 14px;
  line-height: 1.48;
  color: rgba(255, 255, 255, 0.84);
  margin: 0 0 14px;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.26);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 0;
}

.service-tag {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  padding: 5px 10px;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.service-showcase-card:hover .service-tag {
  background: rgba(201, 168, 76, 0.18);
  border-color: rgba(201, 168, 76, 0.4);
  color: var(--white);
}

.service-tag:nth-child(n + 3) {
  display: none;
}

@media (max-width: 900px) {
  .services-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px;
    margin-top: 38px;
  }
  .service-showcase-card,
  .service-showcase-card--featured {
    grid-column: span 2;
    min-height: 540px;
    margin-top: 0;
  }
  .service-showcase-card:nth-child(1),
  .service-showcase-card:nth-child(2),
  .service-showcase-card:nth-child(3),
  .service-showcase-card:nth-child(4),
  .service-showcase-card:nth-child(5) {
    grid-column: span 1;
    min-height: 500px;
    margin-top: 0;
  }
  .service-showcase-card--featured,
  .service-showcase-card[data-service*="marketing"],
  .service-showcase-card.service-showcase-card--marketing,
  .service-showcase-card.service-showcase-card--case-study {
    grid-column: 1 / -1;
    min-height: 600px;
  }
  .marketing-scroll-stage,
  .marketing-scroll-stage.has-video-scrub {
    grid-column: 1 / -1;
    justify-self: stretch;
    width: 100%;
    height: auto;
    min-height: 0;
  }
  .marketing-scroll-stage > .service-showcase-card,
  .marketing-scroll-stage.has-video-scrub > .service-showcase-card {
    position: relative;
    top: auto;
    height: auto;
    min-height: 600px;
  }
  .service-showcase-copy {
    left: 24px;
    right: 24px;
    bottom: 24px;
  }
  .service-showcase-copy h3 {
    font-size: 34px;
  }
  .service-showcase-copy p {
    font-size: 14px;
  }
  .case-study-overlay-pill {
    top: auto;
    left: 22px;
    bottom: 22px;
    transform: none;
    display: inline-flex;
    box-shadow: 0 6px 16px rgba(8, 17, 27, 0.2);
  }
  .service-showcase-media--case-study:hover .case-study-overlay-pill {
    transform: none;
  }
  .service-showcase-media--case-study {
    display: block;
  }
}

@media (max-width: 600px) {
  .services-showcase-grid {
    grid-template-columns: 1fr;
    padding: 0 16px;
    gap: 24px;
    margin-top: 28px;
  }
  .service-showcase-card,
  .service-showcase-card:nth-child(1),
  .service-showcase-card:nth-child(2),
  .service-showcase-card:nth-child(3),
  .service-showcase-card:nth-child(4),
  .service-showcase-card:nth-child(5),
  .service-showcase-card--featured {
    grid-column: 1;
    min-height: 450px;
    margin-top: 0;
  }
  .service-showcase-card[data-service*="marketing"],
  .service-showcase-card.service-showcase-card--marketing,
  .service-showcase-card.service-showcase-card--case-study {
    grid-column: 1;
    min-height: 540px;
  }
  .marketing-scroll-stage,
  .marketing-scroll-stage.has-video-scrub {
    grid-column: 1;
  }
  .marketing-scroll-stage > .service-showcase-card,
  .marketing-scroll-stage.has-video-scrub > .service-showcase-card {
    min-height: 540px;
  }
  .service-showcase-card {
    border-radius: 2px;
  }
  .service-showcase-media::before {
    background: linear-gradient(
      180deg,
      rgba(13, 27, 42, 0.02) 0%,
      rgba(13, 27, 42, 0.12) 34%,
      rgba(13, 27, 42, 0.72) 100%
    );
  }
  .service-showcase-copy {
    left: 20px;
    right: 20px;
    bottom: 22px;
  }
  .service-showcase-copy h3 {
    font-size: 32px;
    margin-bottom: 8px;
  }
  .service-showcase-copy p {
    font-size: 14px;
    margin-bottom: 12px;
  }
  .service-tags {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marketing-scroll-stage,
  .marketing-scroll-stage.has-video-scrub {
    height: auto !important;
    min-height: 0 !important;
  }
  .marketing-scroll-stage > .service-showcase-card,
  .marketing-scroll-stage.has-video-scrub > .service-showcase-card {
    position: relative !important;
    top: auto !important;
    height: auto !important;
  }
  .service-showcase-card {
    transition: none !important;
    transform: none !important;
  }
  .service-media-image {
    transition: none !important;
    transform: none !important;
  }
  .case-study-hover-video {
    display: none !important;
  }
}

/* ============================================================
RESPONSIVE ENHANCEMENTS
Additive rules that ensure full mobile, tablet, laptop, and
desktop responsiveness without changing the existing design.
============================================================ */
html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

img,
video,
svg {
  max-width: 100%;
}

/* Tablet range (901px - 1024px): keep multi-column grids from
feeling cramped before the existing 900px breakpoint takes over */
@media (max-width: 1024px) and (min-width: 901px) {
  .discovery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .why-cards-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .about-network-inner {
    gap: 32px;
  }
}

/* Small phones */
@media (max-width: 420px) {
  .why-title,
  .discovery-copy h2 {
    font-size: clamp(26px, 7vw, 34px);
  }
  .construction-promo-section h2 {
    font-size: clamp(24px, 7vw, 30px);
  }
  .discovery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Extra-small phones (320px-414px): tighten spacing, stop overflow,
keep cards/buttons aligned and legible without changing the design */
@media (max-width: 480px) {
  .section {
    padding: 56px 18px;
  }
  .section-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .btn {
    padding: 12px 16px;
    white-space: normal;
    text-align: center;
  }
  .header-actions {
    gap: 8px;
  }
  .header-enquiry-btn {
    padding: 10px 14px;
    font-size: 12px;
  }
  .discovery-bridge-inner {
    padding: 0 18px;
  }
  .featured-properties-container,
  .services-section {
    padding-left: 18px;
    padding-right: 18px;
  }
  .team-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .about-network-stats {
    gap: 16px;
  }
  .cta-inner {
    left: 20px;
    right: 20px;
  }
  .enquiry-modal-card {
    padding: 20px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .contact-info-row {
    flex-wrap: wrap;
  }
}