@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap");

:root {
  --ink: #17202a;
  --muted: #667085;
  --line: #e7ebef;
  --paper: #ffffff;
  --soft: #f5f7f9;
  --brand: #17147c;
  --brand-dark: #0b0954;
  --brand-soft: #eef0ff;
  --accent: #e30613;
  --accent-dark: #b9040e;
  --whatsapp: #25d366;
  --shadow: 0 18px 55px rgba(23, 32, 42, 0.12);
  --radius: 8px;
  --header-height: 84px;
}

* { box-sizing: border-box; }

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding-top: var(--header-height);
  color: var(--ink);
  background: var(--paper);
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

body::selection {
  background: var(--accent);
  color: #fff;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slow-pan {
  from { transform: scale(1.08) translateX(-1.5%); }
  to { transform: scale(1.08) translateX(1.5%); }
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.42); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background:
    linear-gradient(90deg, rgba(23,20,124,0.06), rgba(227,6,19,0.04)),
    rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(23, 20, 124, 0.1);
  box-shadow: 0 12px 34px rgba(16, 24, 40, 0.08);
  backdrop-filter: blur(18px);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--accent), var(--brand));
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 8px 16px;
  border: 1px solid rgba(23, 20, 124, 0.08);
  border-radius: 16px;
  background: rgba(255,255,255,0.82);
  box-shadow: 0 14px 28px rgba(23, 20, 124, 0.08);
  font-weight: 800;
  letter-spacing: 0;
}

.brand img { width: 128px; height: auto; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px;
  border: 1px solid rgba(23, 20, 124, 0.1);
  border-radius: 18px;
  background: rgba(255,255,255,0.82);
  box-shadow: 0 14px 34px rgba(16, 24, 40, 0.08);
}

.site-nav a,
.nav-parent {
  padding: 10px 12px;
  border-radius: 12px;
  color: #344054;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
}

.nav-parent::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.nav-group:hover .nav-parent::after,
.nav-group:focus-within .nav-parent::after,
.nav-group.is-open .nav-parent::after {
  transform: translateY(2px) rotate(225deg);
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.nav-parent.is-current,
.nav-parent:hover {
  background: linear-gradient(135deg, var(--brand-soft), #fff);
  color: var(--brand);
}

.site-nav a[href="inspection/"] {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: 0 12px 26px rgba(23, 20, 124, 0.18);
}

.site-nav a[href="inspection/"]:hover,
.site-nav a[href="inspection/"][aria-current="page"] {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--brand));
}

.site-nav a:hover,
.nav-parent:hover { transform: translateY(-1px); }

.nav-group {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 178px;
  display: grid;
  gap: 4px;
  padding: 8px;
  border: 1px solid rgba(23, 20, 124, 0.1);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(23, 32, 42, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}

.nav-group:hover .dropdown-menu,
.nav-group:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-menu a {
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(23, 20, 124, 0.1);
  color: #fff;
  background: var(--brand);
  border-radius: 14px;
  padding: 0;
  font-weight: 800;
  align-items: center;
  justify-content: center;
  gap: 9px;
  box-shadow: 0 14px 28px rgba(23, 20, 124, 0.18);
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.nav-toggle::after {
  content: "";
  width: 20px;
  height: 14px;
  background:
    linear-gradient(currentColor, currentColor) 0 0 / 100% 2px no-repeat,
    linear-gradient(currentColor, currentColor) 0 6px / 100% 2px no-repeat,
    linear-gradient(currentColor, currentColor) 0 12px / 100% 2px no-repeat;
  transition: transform 180ms ease, width 180ms ease, height 180ms ease, background 180ms ease;
}

.nav-toggle.is-open {
  background: var(--accent);
  box-shadow: 0 16px 32px rgba(227, 6, 19, 0.22);
}

.nav-toggle.is-open::after {
  width: 18px;
  height: 18px;
  background:
    linear-gradient(45deg, transparent 45%, currentColor 46%, currentColor 54%, transparent 55%),
    linear-gradient(-45deg, transparent 45%, currentColor 46%, currentColor 54%, transparent 55%);
}

.hero {
  min-height: 680px;
  display: grid;
  align-items: end;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 44, 26, 0.86), rgba(5, 44, 26, 0.44)),
    url("../images/29.jpg") center/cover;
}

.hero-slider {
  min-height: 720px;
  position: relative;
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
  background: var(--brand-dark);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
  transition: opacity 900ms ease, transform 5600ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slider::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 34%;
  background: linear-gradient(0deg, rgba(11, 9, 84, 0.62), transparent);
  pointer-events: none;
}

.hero-content {
  padding: 112px 0 76px;
  max-width: 760px;
  position: relative;
  z-index: 1;
  animation: fade-up 760ms ease both;
}

.hero-content h1 {
  text-shadow: 0 12px 40px rgba(0,0,0,0.22);
}

.eyebrow {
  display: inline-flex;
  color: var(--brand);
  background: var(--brand-soft);
  border: 1px solid #d9dcff;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: #fff;
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.26);
}

.hero-slider .eyebrow {
  color: #fff;
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.26);
}

h1, h2, h3 {
  line-height: 1.12;
  margin: 0 0 14px;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}
h1 { font-size: clamp(42px, 7vw, 78px); max-width: 760px; }
h2 { font-size: clamp(28px, 4vw, 44px); }
h3 { font-size: 22px; }
p { margin: 0 0 18px; color: var(--muted); }
p { overflow-wrap: anywhere; }
.hero p { color: rgba(255,255,255,0.88); font-size: 20px; max-width: 650px; }
.hero-slider p { color: rgba(255,255,255,0.88); font-size: 20px; max-width: 650px; }

.slider-dots {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}

.slider-dots button {
  width: 34px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.42);
  cursor: pointer;
}

.slider-dots button.is-active { background: #fff; }

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--brand);
  border-radius: var(--radius);
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.btn:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(11, 9, 84, 0.22);
}
.btn-ghost { background: transparent; color: var(--brand); }
.hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.72); }
.hero-slider .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.72); }
.btn-accent {
  background: var(--accent);
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}
.btn-whatsapp {
  background: var(--whatsapp);
  border-color: var(--whatsapp);
  color: #073b1a;
}
.btn-whatsapp:hover {
  background: #1fb958;
  border-color: #1fb958;
  color: #052b13;
}
.btn-small { min-height: 38px; padding: 8px 12px; font-size: 14px; }

.section { padding: 84px 0; }
.section-soft { background: var(--soft); }
.section-head { max-width: 760px; margin-bottom: 36px; }
.section-head.center { text-align: center; margin-inline: auto; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: center;
}

.intro-panel img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.promise-section {
  background:
    linear-gradient(180deg, #fff, #f7f8ff);
}

.promise-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 34px;
  align-items: center;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.promise-grid article {
  min-height: 148px;
  padding: 24px;
  border: 1px solid #e1e4ff;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 28px rgba(23, 32, 42, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.promise-grid article:hover {
  transform: translateY(-5px);
  border-color: #cfd4ff;
  box-shadow: var(--shadow);
}

.promise-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brand);
  font-size: 20px;
}

.promise-grid span {
  color: var(--muted);
  font-weight: 650;
}

.location-ribbon {
  background:
    linear-gradient(135deg, rgba(23,20,124,0.96), rgba(227,6,19,0.88)),
    url("../images/30.jpg") center/cover;
  color: #fff;
}

.location-ribbon p,
.location-ribbon h2 { color: #fff; }

.location-grid {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 10px;
}

.location-grid a {
  display: grid;
  place-items: center;
  min-height: 74px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.11);
  color: #fff;
  font-weight: 900;
  transition: transform 220ms ease, background 220ms ease;
}

.location-grid a:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.2);
}

.featured-flow {
  background:
    linear-gradient(180deg, #f6f7ff, #fff);
}

.journey-section {
  background: #fff;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  counter-reset: steps;
}

.journey-grid article {
  position: relative;
  padding: 28px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #f8f9ff);
  border: 1px solid #e4e7ff;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.journey-grid article:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.journey-grid article::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--brand));
}

.journey-grid span {
  display: inline-flex;
  color: var(--accent);
  font-weight: 900;
  margin-bottom: 18px;
}

.what-we-do-section {
  background:
    linear-gradient(180deg, #fff 0%, #f7f8ff 100%);
  position: relative;
  overflow: hidden;
}

.what-we-do-section::before {
  content: "PWANPRO";
  position: absolute;
  right: -18px;
  top: 14px;
  color: rgba(23,20,124,0.035);
  font-size: clamp(72px, 12vw, 190px);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.what-we-do-head {
  position: relative;
  z-index: 1;
}

.what-we-do-head p {
  max-width: 720px;
  margin-inline: auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  position: relative;
  z-index: 1;
}

.service-card {
  position: relative;
  overflow: hidden;
}

.what-we-do-section .service-card {
  min-height: 250px;
  padding: 30px;
  background: #fff;
  border: 1px solid #e3e7f5;
  box-shadow: 0 16px 42px rgba(23, 32, 42, 0.07);
}

.service-card span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  font-weight: 900;
}

.service-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), var(--brand));
  transition: transform 240ms ease;
}

.service-card:hover::after {
  transform: scaleX(0.82);
  transform-origin: left;
}

.what-we-do-section .service-card h3 {
  color: var(--ink);
}

.what-we-do-section .service-card p {
  margin-bottom: 0;
}

.proof-section {
  background: #111338;
  color: #fff;
}

.proof-section p,
.proof-section h2 { color: #fff; }

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.proof-stack {
  position: relative;
  min-height: 430px;
}

.proof-stack img {
  position: absolute;
  width: 58%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0,0,0,0.28);
}

.proof-stack img:first-child {
  left: 0;
  top: 20px;
  transform: rotate(-4deg);
}

.proof-stack img:last-child {
  right: 0;
  bottom: 8px;
  transform: rotate(5deg);
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: -46px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow);
}

.stat { background: #fff; padding: 26px; }
.stat strong { display: block; font-size: 32px; color: var(--brand); }
.stat span { color: var(--muted); font-weight: 700; }

.service-card,
.profile-card,
.info-card,
.estate-card,
.download-row {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(23, 32, 42, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover,
.profile-card:hover,
.info-card:hover,
.estate-card:hover,
.download-row:hover {
  transform: translateY(-4px);
  border-color: #d8dcff;
  box-shadow: 0 18px 42px rgba(23, 32, 42, 0.12);
}

.service-card,
.profile-card,
.info-card { padding: 26px; }

.profile-card {
  overflow: hidden;
  padding: 0;
}

.profile-card img {
  width: 100%;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
  background: var(--soft);
}

.profile-card div { padding: 22px; }

.estate-card { overflow: hidden; animation: fade-up 520ms ease both; }
.estate-card img {
  width: 100%;
  aspect-ratio: 4 / 4.4;
  object-fit: contain;
  background: linear-gradient(135deg, #f5f7ff, #ffffff);
  padding: 8px;
}
.estate-card-body { padding: 20px; }
.estate-card dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 18px 0 0;
}
.estate-card dt { color: var(--muted); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.estate-card dd { margin: 0; font-weight: 800; }

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.chip {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  color: #344054;
  font-weight: 800;
  cursor: pointer;
}
.chip { transition: transform 180ms ease, background 180ms ease, color 180ms ease; }
.chip:hover { transform: translateY(-1px); }
.chip.is-active { background: var(--brand); color: #fff; border-color: var(--brand); }

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: 42px;
  align-items: center;
  padding: 58px 0;
}
.detail-hero img {
  width: 100%;
  aspect-ratio: 4 / 4.8;
  object-fit: contain;
  background: linear-gradient(135deg, #f5f7ff, #ffffff);
  padding: 10px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 54px;
}
.fact-grid div { background: #fff; padding: 22px; }
.fact-grid span { display: block; color: var(--muted); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.fact-grid strong { display: block; margin-top: 6px; }

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  padding-bottom: 80px;
}
.split > div { border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }

.property-hero {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  display: grid;
  align-items: end;
  padding: 96px 0 84px;
  color: #fff;
  background-color: #17147c;
  background-image: linear-gradient(110deg, #080734 0%, #17147c 48%, #e30613 100%);
}

.property-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--property-image) right center / min(42vw, 520px) auto no-repeat;
  opacity: 0.34;
  pointer-events: none;
}

.property-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0));
  pointer-events: none;
}

.property-title-only {
  position: relative;
  z-index: 1;
}

.property-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  font-weight: 700;
}

.property-breadcrumb strong {
  color: #fff;
}

.property-title-only h1 {
  max-width: 820px;
  font-size: clamp(46px, 6vw, 86px);
  margin-bottom: 0;
  text-shadow: 0 18px 44px rgba(0,0,0,0.34);
}

.property-hero .btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.62);
}

.property-enquiry-card {
  padding: 30px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.96);
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(0,0,0,0.24);
}

.property-enquiry-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.property-enquiry-card p {
  margin-bottom: 22px;
}

.property-enquiry-card .btn {
  width: 100%;
}

.estate-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.property-detail-section {
  padding: 76px 0 96px;
  background:
    linear-gradient(180deg, #f7f8ff, #fff);
}

.property-main-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
  align-items: center;
  margin-bottom: 34px;
  padding: 34px;
  border: 1px solid #dfe4f5;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.property-main-intro h2 {
  font-size: clamp(30px, 4vw, 54px);
}

.property-main-intro p {
  max-width: 760px;
  font-size: 17px;
}

.property-main-intro .btn-ghost {
  background: #fff;
}

.property-detail-layout {
  display: block;
}

.estate-flyer-panel {
  border: 1px solid #dfe4f5;
  border-radius: var(--radius);
  background: #fff;
  padding: 24px;
  box-shadow: var(--shadow);
  margin-bottom: 34px;
}

.panel-label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.panel-label::after {
  content: "";
  color: var(--accent);
}

.estate-flyer-panel img {
  width: 100%;
  max-height: none;
  object-fit: contain;
  border-radius: var(--radius);
  background: #f8f9ff;
}

.source-content {
  border: 1px solid #dfe4f5;
  border-radius: var(--radius);
  padding: 38px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(23, 32, 42, 0.08);
}

.source-content h2 {
  font-size: clamp(30px, 4vw, 52px);
}

.source-content p {
  color: #344054;
  margin-bottom: 18px;
  font-size: 16px;
}

.source-content .detail-intro {
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.source-content .source-label {
  color: #c92323;
  font-weight: 900;
}

.structured-detail {
  overflow: hidden;
}

.property-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 32px;
}

.property-facts article {
  padding: 18px;
  border: 1px solid #e1e5f4;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fbfcff, #fff);
}

.property-facts span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.property-facts strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
}

.flyer-section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.flyer-info-card {
  position: relative;
  padding: 24px;
  border: 1px solid #e1e5f4;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(23, 32, 42, 0.05);
}

.flyer-info-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--brand));
  border-radius: var(--radius) var(--radius) 0 0;
}

.flyer-info-head {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.detail-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
}

.flyer-info-card h3 {
  margin: 0;
  font-size: 20px;
}

.flyer-info-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.flyer-info-card li {
  position: relative;
  padding-left: 18px;
  color: #475467;
  font-size: 15px;
  line-height: 1.55;
}

.flyer-info-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.flyer-info-overview,
.flyer-info-features {
  grid-column: span 2;
}

.check-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.check-list li {
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
}

.download-row {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  margin-bottom: 12px;
}
.download-row span { color: var(--brand); font-weight: 800; }

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: #101828;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(23, 32, 42, 0.08);
}

.gallery img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 260ms ease, opacity 260ms ease;
}

.gallery-item span {
  position: absolute;
  inset: auto 12px 12px;
  z-index: 1;
  padding: 9px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(23,20,124,0.86);
  font-size: 12px;
  font-weight: 900;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  opacity: 0.84;
}

.gallery-item:hover span {
  opacity: 1;
  transform: translateY(0);
}

.lightbox-open {
  overflow: hidden;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 34px 86px;
  background: rgba(5, 7, 26, 0.9);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.gallery-lightbox figure {
  margin: 0;
  max-width: min(980px, 100%);
  max-height: calc(100vh - 80px);
  display: grid;
  gap: 12px;
}

.gallery-lightbox img {
  max-width: 100%;
  max-height: calc(100vh - 132px);
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: 0 28px 80px rgba(0,0,0,0.36);
}

.gallery-lightbox figcaption {
  color: rgba(255,255,255,0.78);
  text-align: center;
  font-weight: 800;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,0.12);
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background 180ms ease, transform 180ms ease;
}

.lightbox-close {
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  font-size: 34px;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  width: 58px;
  height: 58px;
  font-size: 46px;
  line-height: 1;
  transform: translateY(-50%);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-close:hover,
.lightbox-nav:hover {
  background: var(--accent);
  transform: scale(1.06);
}

.lightbox-nav:hover {
  transform: translateY(-50%) scale(1.06);
}

.cta-band {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  padding: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-band p { color: rgba(255,255,255,0.82); }
.cta-band .btn { background: #fff; color: var(--brand); border-color: #fff; }

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #073b1a;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.32);
  animation: pulse-ring 2.6s infinite;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
}

.site-footer {
  background:
    radial-gradient(circle at 12% 0%, rgba(227,6,19,0.22), transparent 28%),
    linear-gradient(135deg, #09082f, #14116d 58%, #080726);
  color: #fff;
  padding: 0 0 28px;
  overflow: hidden;
}
.footer-cta {
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-cta-inner {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
  padding: 54px 0;
}

.footer-cta h2 {
  color: #fff;
  margin-bottom: 8px;
}

.footer-cta p { color: rgba(255,255,255,0.74); }

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.1fr;
  gap: 32px;
  padding: 48px 0 28px;
}

.footer-brand img { width: 128px; margin-bottom: 16px; filter: drop-shadow(0 10px 26px rgba(0,0,0,0.24)); }
.site-footer p,
.site-footer li { color: rgba(255,255,255,0.72); }
.site-footer ul { padding: 0; margin: 0; list-style: none; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { transition: color 180ms ease; }
.site-footer a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.58);
}
.copyright { margin-top: 36px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.58); }

.breadcrumb-hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(11,9,84,0.92), rgba(23,20,124,0.72), rgba(227,6,19,0.52)),
    url("../images/banner-01.jpg") center/cover;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.breadcrumb-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  animation: slow-pan 12s ease-in-out infinite alternate;
}

.breadcrumb-hero .container {
  position: relative;
  z-index: 1;
}

.breadcrumb-hero h1,
.breadcrumb-hero p {
  color: #fff;
}

.breadcrumb-hero p {
  max-width: 700px;
}

.breadcrumb-hero .eyebrow {
  color: #fff;
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.28);
}

.estates-breadcrumb {
  background:
    linear-gradient(90deg, rgba(11,9,84,0.92), rgba(23,20,124,0.74), rgba(227,6,19,0.42)),
    url("../images/30.jpg") center/cover;
}

.about-breadcrumb,
.team-breadcrumb {
  background:
    linear-gradient(90deg, rgba(11,9,84,0.92), rgba(23,20,124,0.68), rgba(227,6,19,0.38)),
    url("../images/banner-01.jpg") center/cover;
}

.buildings-breadcrumb {
  background:
    linear-gradient(90deg, rgba(11,9,84,0.92), rgba(23,20,124,0.72), rgba(227,6,19,0.42)),
    url("../images/18-1.png") center/cover;
}

.downloads-breadcrumb {
  background:
    linear-gradient(90deg, rgba(11,9,84,0.92), rgba(23,20,124,0.7), rgba(227,6,19,0.4)),
    url("../images/29.jpg") center/cover;
}

.allocations-breadcrumb {
  background:
    linear-gradient(90deg, rgba(11,9,84,0.92), rgba(23,20,124,0.72), rgba(227,6,19,0.38)),
    url("../images/b9fa7730-f32e-46e3-9465-5d9d83f17a81.jpg") center/cover;
}

.videos-breadcrumb {
  background:
    linear-gradient(90deg, rgba(11,9,84,0.92), rgba(23,20,124,0.72), rgba(227,6,19,0.38)),
    url("../images/30.jpg") center/cover;
}

.inspection-breadcrumb {
  background:
    linear-gradient(90deg, rgba(11,9,84,0.92), rgba(23,20,124,0.68), rgba(227,6,19,0.4)),
    url("../images/29.jpg") center/cover;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 42px;
  align-items: center;
}

.about-image-frame {
  position: relative;
  padding: 14px;
  border: 1px solid #e1e5f4;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}

.about-image-frame::before {
  content: "";
  position: absolute;
  inset: 24px -18px -18px 24px;
  z-index: -1;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--brand), var(--accent));
}

.about-image-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.about-stat-grid article {
  padding: 28px;
  border: 1px solid #e1e5f4;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(23, 32, 42, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.about-stat-grid article:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.about-stat-grid strong {
  display: block;
  color: var(--brand);
  font-size: 36px;
  line-height: 1;
  margin-bottom: 10px;
}

.about-stat-grid span {
  color: var(--muted);
  font-weight: 700;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.about-values .section-head {
  grid-column: 1 / -1;
}

.about-values article {
  position: relative;
  min-height: 240px;
  padding: 30px;
  border: 1px solid #e1e5f4;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #fbfcff);
  box-shadow: 0 14px 34px rgba(23, 32, 42, 0.06);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.about-values article:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.about-values article::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), var(--brand));
}

.about-values article span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  font-weight: 900;
}

.about-process {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(11,9,84,0.96), rgba(23,20,124,0.9), rgba(227,6,19,0.72)),
    url("../images/30.jpg") center/cover;
}

.about-process h2,
.about-process p {
  color: #fff;
}

.about-process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 38px;
  align-items: center;
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-list article {
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  transition: transform 220ms ease, background 220ms ease;
}

.process-list article:hover {
  transform: translateX(8px);
  background: rgba(255,255,255,0.18);
}

.process-list span {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-weight: 900;
}

.process-list p {
  margin-bottom: 0;
  color: rgba(255,255,255,0.78);
}

.estate-detail-breadcrumb {
  padding: 28px 0;
  background:
    linear-gradient(90deg, rgba(11,9,84,0.92), rgba(23,20,124,0.74), rgba(227,6,19,0.42)),
    var(--breadcrumb-image) center/cover;
}

.estate-detail-breadcrumb .container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-weight: 900;
}

.estate-detail-breadcrumb a {
  color: rgba(255,255,255,0.78);
}

.estate-catalog-section {
  background: linear-gradient(180deg, #fff, #f7f8ff);
}

.catalog-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 30px;
}

.catalog-intro p {
  margin-bottom: 0;
  font-weight: 650;
}

.page-hero {
  background: var(--soft);
  padding: 68px 0;
  border-bottom: 1px solid var(--line);
}
.page-hero p { max-width: 720px; }

.reveal,
.reveal-on-scroll {
  opacity: 1;
  transform: translateY(18px);
  transition: transform 680ms ease, opacity 680ms ease;
}

.reveal-on-scroll.is-visible,
.reveal {
  opacity: 1;
  transform: translateY(0);
}

.contact-hero {
  padding: 88px 0;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(23,20,124,0.94), rgba(227,6,19,0.74)),
    url("../images/29.jpg") center/cover;
}

.contact-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 42px;
  align-items: center;
}

.contact-hero h1,
.contact-hero p { color: #fff; }

.contact-ticket {
  padding: 30px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.26);
  backdrop-filter: blur(12px);
}

.contact-ticket span { display: block; font-weight: 800; color: rgba(255,255,255,0.72); }
.contact-ticket strong { display: block; font-size: 30px; margin: 8px 0; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.contact-grid article {
  padding: 30px;
  border: 1px solid #e2e5ff;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 28px rgba(23, 32, 42, 0.06);
}

.contact-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  font-weight: 900;
  margin-bottom: 18px;
}

.enquiry-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 36px;
  align-items: center;
  padding: 38px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.enquiry-list {
  display: grid;
  gap: 12px;
}

.enquiry-list a {
  padding: 16px 18px;
  border-radius: var(--radius);
  border: 1px solid #e2e5ff;
  font-weight: 900;
  color: var(--brand);
  transition: transform 180ms ease, background 180ms ease;
}

.enquiry-list a:hover {
  transform: translateX(6px);
  background: var(--brand-soft);
}

.inspection-layout,
.video-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: start;
}

.inspection-form,
.video-panel,
.inspection-side {
  border: 1px solid #e2e5ff;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 42px rgba(23, 32, 42, 0.08);
}

.inspection-form {
  padding: 34px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field label {
  color: #101828;
  font-weight: 800;
  font-size: 13px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #d7ddf1;
  border-radius: var(--radius);
  color: var(--ink);
  background: #fbfcff;
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.form-field textarea {
  min-height: 132px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 0;
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(23, 20, 124, 0.1);
}

.form-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.inspection-side {
  padding: 30px;
  position: sticky;
  top: 104px;
}

.inspection-side h3 {
  color: var(--brand);
}

.inspection-checklist {
  display: grid;
  gap: 14px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.inspection-checklist li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--muted);
  font-weight: 650;
}

.inspection-checklist span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--brand);
  background: var(--brand-soft);
  font-weight: 900;
}

.video-panel {
  padding: 34px;
}

.video-page-head {
  margin-bottom: 30px;
}

.video-page-head p {
  max-width: 720px;
}

.youtube-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.youtube-card {
  overflow: hidden;
  border: 1px solid #dbe1f4;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 42px rgba(23, 32, 42, 0.1);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.youtube-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(23, 32, 42, 0.14);
}

.youtube-preview {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #050505;
}

.youtube-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 260ms ease, filter 260ms ease;
}

.youtube-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,5,5,0.05), rgba(5,5,5,0.46));
}

.youtube-card:hover .youtube-preview img {
  transform: scale(1.07);
  filter: saturate(1.08);
}

.youtube-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 74px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: transparent;
  font-size: 0;
  background: var(--accent);
  box-shadow: 0 18px 42px rgba(0,0,0,0.24);
  transform: translate(-50%, -50%);
  transition: background 180ms ease, transform 180ms ease;
}

.youtube-play::before {
  content: "";
  display: block;
  width: 27px;
  height: 31px;
  margin-left: 5px;
  background: #fff;
  clip-path: polygon(18% 8%, 18% 92%, 90% 50%);
}

.youtube-card:hover .youtube-play {
  background: var(--brand);
  transform: translate(-50%, -50%) scale(1.06);
}

.video-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.video-list article {
  padding: 18px;
  border: 1px solid #e2e5ff;
  border-radius: var(--radius);
  background: #fbfcff;
}

@media (max-width: 860px) {
  :root { --header-height: 76px; }
  .site-header .container {
    width: calc(100vw - 24px);
  }
  .header-inner {
    gap: 10px;
    justify-content: flex-start;
  }
  .brand {
    flex: 0 1 auto;
    min-height: 56px;
    padding: 7px 12px;
    border-radius: 14px;
  }
  .brand img { width: clamp(94px, 30vw, 118px); }
  .nav-toggle {
    position: fixed;
    top: calc(var(--header-height) / 2);
    right: 16px;
    z-index: 45;
    display: inline-flex;
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    font-size: 0;
    margin-left: auto;
    transform: translateY(-50%);
  }
  .site-nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(var(--header-height) + 12px);
    background: #fff;
    border: 1px solid rgba(23, 20, 124, 0.1);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
  }
  .site-nav.is-open { display: flex; }
  .nav-group {
    display: grid;
  }
  .nav-parent {
    width: 100%;
    justify-content: space-between;
    text-align: left;
  }
  .dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    margin: 2px 0 8px;
    padding: 4px 0 4px 12px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  .nav-group.is-open .dropdown-menu {
    display: grid;
  }
  .nav-group:hover .dropdown-menu,
  .nav-group:focus-within .dropdown-menu {
    transform: none;
  }
  .dropdown-menu a {
    padding: 10px 12px;
    border-left: 2px solid #dfe3ff;
    border-radius: 0 12px 12px 0;
  }
  .hero { min-height: 600px; }
  .grid-3,
  .grid-2,
  .location-grid,
  .promise-layout,
  .promise-grid,
  .journey-grid,
  .service-grid,
  .catalog-intro,
  .proof-layout,
  .about-intro-grid,
  .about-stat-grid,
  .about-values,
  .about-process-grid,
  .property-main-intro,
  .property-detail-layout,
  .property-facts,
  .flyer-section-grid,
  .contact-hero-inner,
  .contact-grid,
  .enquiry-panel,
  .inspection-layout,
  .video-content-grid,
  .youtube-grid,
  .form-grid,
  .stat-band,
  .detail-hero,
  .fact-grid,
  .split,
  .footer-main { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .download-row { grid-template-columns: 1fr; }
  .cta-band { display: block; padding: 30px; }
  .floating-whatsapp { right: 14px; bottom: 14px; }
  .location-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .proof-stack { min-height: 560px; }
  .proof-stack img { width: 72%; }
  .estate-flyer-panel,
  .estate-side-card { position: static; }
  .about-values .section-head { grid-column: auto; }
  .about-image-frame { transform: none; }
  .property-hero { min-height: 340px; padding: 56px 0 64px; }
  .property-enquiry-card { max-width: 420px; }
  .property-main-intro { padding: 24px; }
  .source-content { padding: 28px; }
  .flyer-info-overview,
  .flyer-info-features { grid-column: auto; }
  .footer-cta-inner,
  .footer-bottom { display: block; }
  .gallery-lightbox {
    padding: 76px 18px 34px;
  }
  .lightbox-close {
    top: 16px;
    right: 16px;
  }
  .lightbox-nav {
    width: 46px;
    height: 46px;
    font-size: 36px;
  }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
}

@media (max-width: 520px) {
  .container {
    width: calc(100% - 24px);
    max-width: 1120px;
  }
  .section { padding: 58px 0; }
  .hero-slider { min-height: 620px; }
  .hero-content { padding: 74px 0 48px; }
  .hero-content,
  .hero-content h1,
  .hero-content p,
  .breadcrumb-hero h1,
  .breadcrumb-hero p,
  .section-head,
  .catalog-intro p {
    max-width: 100%;
  }
  .hero-content h1,
  h1 { font-size: 36px; }
  .hero-slider p,
  .hero p { font-size: 17px; }
  .brand img { width: 96px; }
  .brand { min-height: 54px; padding: 7px 10px; }
  .nav-toggle {
    left: calc(min(100vw, 390px) - 64px);
    right: auto;
    width: 46px;
    height: 46px;
  }
  .gallery { grid-template-columns: 1fr; }
}
