/**
 * We Prop SA — Stylesheet
 * ─────────────────────────────────────────────────────────────
 * Palette   : --navy #0f1e38 | --navy-mid #1a2f52 | --navy-deep #1e3a6e
 *             --steel #1e3a6e | --steel-mid #2a4a7f | --silver #7a90aa
 *             --light-grey #e8ecf2 | --off-white #f4f6fa
 *
 * Sections  : Reset · Variables · Base · Image Holders
 *             Nav · Hero · Overview · Services · Why · Values
 *             Listings · About · Contact · Portal · Dashboard
 *             Modal · Tutorial · Toast · Responsive
 * ─────────────────────────────────────────────────────────────
 *
 * HOW TO REPLACE IMAGE HOLDERS:
 * Every .img-holder div has a comment above it in index.html.
 * Replace the div with an <img> tag using the matching CSS class.
 * Logo classes   : .nav-logo-img  .hero-logo-img  .footer-logo-img  .login-logo-img
 * Service class  : .service-card-img
 * About class    : .about-img
 */

/* ─────────────────────────────────────────────────
   VARIABLES
───────────────────────────────────────────────── */
:root {
  --navy:        #0f1e38;
  --navy-mid:    #1a2f52;
  --navy-deep:   #1e3a6e;
  --steel:       #1e3a6e;
  --steel-mid:   #2a4a7f;
  --silver:      #7a90aa;
  --light-grey:  #e8ecf2;
  --off-white:   #f4f6fa;
  --white:       #ffffff;
  --shadow:      0 8px 32px rgba(15,30,56,0.14);
  --shadow-lg:   0 20px 60px rgba(15,30,56,0.22);
  --radius:      10px;
  --radius-lg:   16px;
}

/* ─────────────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font-family: 'Barlow', sans-serif;
}

a { text-decoration: none; }

/* ─────────────────────────────────────────────────
   PAGE TRANSITIONS
───────────────────────────────────────────────── */
.page {
  display: none;
  min-height: 100vh;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.4s cubic-bezier(.4,0,.2,1), transform 0.4s cubic-bezier(.4,0,.2,1);
}
.page.active       { display: block; }
.page.page-visible { opacity: 1; transform: translateY(0); }

/* ─────────────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s cubic-bezier(.4,0,.2,1), transform 0.55s cubic-bezier(.4,0,.2,1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ─────────────────────────────────────────────────
   IMAGE HOLDERS
   These are temporary placeholders.
   Replace each one with a real <img> tag — see
   the comments in index.html for exact instructions.
───────────────────────────────────────────────── */

/* Shared base */
.img-holder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px dashed rgba(255,255,255,0.3);
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.5);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: default;
  transition: border-color 0.2s, background 0.2s;
  flex-shrink: 0;
}

/* Nav logo — small square in navbar */
.img-holder--logo-nav {
  width: 44px;
  height: 44px;
  font-size: 9px;
  border-radius: 6px;
}

/* Hero logo — large centred above tagline */
.img-holder--logo-hero {
  width: 130px;
  height: 130px;
  font-size: 11px;
  margin-bottom: 24px;
  border-radius: 12px;
}

/* Footer logo */
.img-holder--logo-footer {
  width: 56px;
  height: 56px;
  font-size: 9px;
  border-radius: 8px;
  margin-bottom: 12px;
}

/* Login card logo */
.img-holder--logo-login {
  width: 80px;
  height: 80px;
  font-size: 10px;
  margin: 0 auto 16px;
  border-color: rgba(15,30,56,0.2);
  background: rgba(15,30,56,0.05);
  color: rgba(15,30,56,0.4);
  border-radius: 10px;
}

/* Service card image — full width at top of card */
.img-holder--service {
  width: 100%;
  height: 180px;
  border-radius: 8px;
  margin-bottom: 20px;
  border-color: rgba(255,255,255,0.12);
  background: linear-gradient(135deg, var(--navy-mid), var(--steel-mid));
  gap: 10px;
}
.img-holder--service svg {
  width: 36px;
  height: 36px;
  opacity: 0.4;
}
.img-holder--service span {
  font-size: 10px;
  opacity: 0.6;
}

/* About page full-height image */
.img-holder--about {
  width: 100%;
  height: 420px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy-mid), var(--steel-mid));
  border-color: rgba(255,255,255,0.1);
  gap: 14px;
}
.img-holder--about svg {
  width: 56px;
  height: 56px;
  opacity: 0.35;
}
.img-holder--about span {
  font-size: 11px;
  opacity: 0.5;
}

/* Real image styles (used once holders are replaced) */
.nav-logo-img    { width: 44px; height: 44px; object-fit: contain; }
.hero-logo-img   { width: 130px; height: 130px; object-fit: contain; margin-bottom: 24px; filter: drop-shadow(0 6px 20px rgba(0,0,0,0.35)); }
.footer-logo-img { width: 56px; height: 56px; object-fit: contain; margin-bottom: 12px; }
.login-logo-img  { width: 80px; height: 80px; object-fit: contain; margin: 0 auto 16px; display: block; }
.service-card-img{ width: 100%; height: 180px; object-fit: cover; border-radius: 8px; margin-bottom: 20px; display: block; }
.about-img       { width: 100%; height: 420px; object-fit: cover; border-radius: var(--radius-lg); display: block; }

/* ─────────────────────────────────────────────────
   LAYOUT HELPERS
───────────────────────────────────────────────── */
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 32px;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--steel-mid);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  color: var(--navy);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 16px;
  font-weight: 300;
  color: #5a6a80;
  line-height: 1.75;
  max-width: 560px;
}

.section-header { margin-bottom: 52px; }
.section-cta    { text-align: center; margin-top: 48px; }

.section-white    { background: var(--white); }
.section-offwhite { background: var(--off-white); }

/* ─────────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--steel-mid);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 4px;
  transition: background 0.22s, transform 0.22s, box-shadow 0.22s;
  box-shadow: 0 4px 18px rgba(30,58,110,0.3);
}
.btn-primary:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30,58,110,0.4);
}
.btn-primary.btn-dark {
  background: var(--navy);
}
.btn-primary.btn-dark:hover {
  background: var(--navy-mid);
}
.btn-primary.btn-full { width: 100%; justify-content: center; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.35);
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 4px;
  transition: all 0.22s;
}
.btn-outline:hover {
  border-color: white;
  background: rgba(255,255,255,0.08);
}

.btn-cancel {
  background: var(--off-white);
  color: var(--navy);
  border: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 4px;
  transition: background 0.2s;
}
.btn-cancel:hover { background: var(--light-grey); }

/* ─────────────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(15,30,56,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(42,74,127,0.3);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.nav-brand-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.nav-brand-name strong {
  color: white;
  font-weight: 800;
}

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}

.nav-link {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  color: var(--silver);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 4px;
  transition: all 0.2s;
}
.nav-link:hover,
.nav-link.active {
  color: white;
  background: rgba(42,74,127,0.25);
}

.nav-cta {
  background: var(--steel-mid);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 4px;
  margin-left: 8px;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--navy-deep); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  z-index: 999;
  background: var(--navy);
  border-top: 1px solid rgba(42,74,127,0.3);
  padding: 12px 16px;
  flex-direction: column;
  gap: 2px;
}
.mobile-menu.open { display: flex; }

.mobile-nav-link {
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 13px;
  font-weight: 500;
  color: var(--silver);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 16px;
  border-radius: 4px;
  transition: all 0.2s;
}
.mobile-nav-link:hover {
  color: white;
  background: rgba(42,74,127,0.2);
}

/* ─────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 55%, #1e3a6e 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 70px;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(42,74,127,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42,74,127,1) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-shapes { position: absolute; inset: 0; pointer-events: none; }
.hero-shape {
  position: absolute;
  border: 1px solid rgba(42,74,127,0.2);
  border-radius: 2px;
}
.hero-shape-1 {
  width: 300px; height: 300px; right: 10%; top: 15%;
  transform: rotate(15deg);
  background: linear-gradient(135deg, rgba(42,74,127,0.08), transparent);
  animation: float 8s ease-in-out infinite;
}
.hero-shape-2 {
  width: 200px; height: 200px; right: 22%; top: 32%;
  transform: rotate(-10deg);
  background: rgba(30,58,110,0.06);
  animation: float 11s ease-in-out infinite reverse;
}
.hero-shape-3 {
  width: 100px; height: 100px; right: 9%; bottom: 22%;
  transform: rotate(25deg);
  background: rgba(42,74,127,0.05);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(15deg); }
  50%       { transform: translateY(-18px) rotate(15deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 32px;
  max-width: 680px;
  margin-left: max(32px, calc(50% - 600px));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(42,74,127,0.2);
  border: 1px solid rgba(42,74,127,0.4);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 24px;
}
.hero-badge span {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.hero-dot {
  width: 6px; height: 6px;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(40px, 6.5vw, 80px);
  font-weight: 800;
  line-height: 0.95;
  color: white;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  color: rgba(255,255,255,0.65);
  display: block;
}

.hero-tagline {
  font-size: clamp(14px, 1.8vw, 17px);
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.hero-stats {
  display: flex;
  gap: 44px;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.hero-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: white;
  line-height: 1;
}
.hero-stat-label {
  font-size: 11px;
  color: var(--silver);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ─────────────────────────────────────────────────
   OVERVIEW STRIP
───────────────────────────────────────────────── */
.overview-strip { background: var(--navy); }

.overview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.overview-text .section-label { color: rgba(255,255,255,0.5); }
.overview-text .section-title { color: white; }
.overview-text p {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  line-height: 1.8;
  margin-top: 14px;
}

.overview-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.overview-feature {
  background: rgba(42,74,127,0.12);
  border: 1px solid rgba(42,74,127,0.22);
  border-radius: 10px;
  padding: 22px;
}
.overview-feature-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--navy-deep), var(--steel-mid));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.overview-feature-icon svg { width: 18px; height: 18px; }
.overview-feature h4 {
  font-size: 13px;
  font-weight: 600;
  color: white;
  letter-spacing: 0.3px;
  margin-bottom: 5px;
}
.overview-feature p { font-size: 12px; color: var(--silver); line-height: 1.5; }

/* ─────────────────────────────────────────────────
   SERVICE CARDS
───────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--off-white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy-deep), var(--steel-mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(42,74,127,0.2);
}
.service-card:hover::before { transform: scaleX(1); }

.service-number {
  position: absolute;
  top: 16px; right: 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 60px;
  font-weight: 800;
  color: rgba(42,74,127,0.07);
  line-height: 1;
  pointer-events: none;
}

.service-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 14px rgba(15,30,56,0.2);
}
.service-icon svg { width: 20px; height: 20px; }

.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p { font-size: 14px; color: #5a6a80; line-height: 1.7; }

/* ─────────────────────────────────────────────────
   WHY SECTION
───────────────────────────────────────────────── */
.why-section { background: var(--off-white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 22px;
}

.why-card {
  background: white;
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 2px 14px rgba(15,30,56,0.05);
  transition: box-shadow 0.3s, border-color 0.3s;
}
.why-card:hover {
  box-shadow: var(--shadow);
  border-color: rgba(42,74,127,0.2);
}
.why-card-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: var(--light-grey);
  line-height: 1;
  margin-bottom: 14px;
}
.why-card h3 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.why-card p  { font-size: 14px; color: #5a6a80; line-height: 1.7; }

/* ─────────────────────────────────────────────────
   VALUES
───────────────────────────────────────────────── */
.values-section {
  background: var(--off-white);
  padding-top: 80px;
}
.values-section .section-inner { padding-bottom: 0; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 40px;
}

.value-block {
  background: var(--navy);
  padding: 48px 30px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}
.value-block:hover { background: var(--navy-mid); }
.value-block::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy-deep), var(--steel-mid));
}
.value-letter {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 80px;
  font-weight: 800;
  color: rgba(255,255,255,0.05);
  position: absolute;
  top: 0; right: 12px;
  line-height: 1;
  pointer-events: none;
}
.value-block h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 10px;
}
.value-block p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* ─────────────────────────────────────────────────
   CTA STRIP
───────────────────────────────────────────────── */
.cta-strip {
  background: var(--navy-deep);
  padding: 72px 32px;
  text-align: center;
}
.cta-strip h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  text-transform: uppercase;
  color: white;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.cta-strip p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────── */
footer { background: var(--navy); padding: 64px 32px 28px; }
.footer-inner { max-width: 1280px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  margin-top: 8px;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
  padding: 0;
}
.footer-col ul li button:hover { color: white; }
.footer-col ul li span { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.8; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }

/* ─────────────────────────────────────────────────
   PAGE HERO (inner pages)
───────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(155deg, var(--navy), var(--navy-mid));
  padding: 140px 32px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(42,74,127,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42,74,127,0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.page-hero-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
  display: block;
  position: relative;
  z-index: 1;
}
.page-hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(38px, 6vw, 70px);
  font-weight: 800;
  text-transform: uppercase;
  color: white;
  letter-spacing: -1px;
  position: relative;
  z-index: 1;
}
.page-hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  margin: 14px auto 0;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ─────────────────────────────────────────────────
   ABOUT PAGE
───────────────────────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}

.about-text p {
  font-size: 15px;
  line-height: 1.9;
  color: #4a5a6a;
  margin-bottom: 16px;
}
.about-text p:last-child { margin-bottom: 0; }

.about-contact-block {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--light-grey);
}
.about-contact-block p {
  font-size: 14px;
  color: #5a6a80;
  margin-bottom: 10px;
}
.about-contact-block strong { color: var(--navy); }

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 56px;
}
.mv-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.mv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy-deep), var(--steel-mid));
}
.mv-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 14px;
  display: block;
}
.mv-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  color: white;
  margin-bottom: 14px;
}
.mv-card p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.8; }

/* ─────────────────────────────────────────────────
   LISTINGS
───────────────────────────────────────────────── */
.listings-section { background: var(--off-white); }
.listings-section .section-inner { padding-top: 72px; padding-bottom: 72px; }

.listings-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 36px;
}
.filter-btn {
  background: white;
  border: 1px solid var(--light-grey);
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #5a6a80;
  padding: 10px 20px;
  border-radius: 100px;
  transition: all 0.2s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.filter-select {
  background: white;
  border: 1px solid var(--light-grey);
  cursor: pointer;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #5a6a80;
  padding: 10px 16px;
  border-radius: 100px;
  outline: none;
  transition: border-color 0.2s;
}
.filter-select:focus { border-color: var(--steel-mid); }

.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 26px;
}

.listing-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--light-grey);
  box-shadow: 0 2px 14px rgba(15,30,56,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.listing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.listing-img {
  width: 100%; height: 210px;
  background: linear-gradient(135deg, var(--navy-mid), var(--steel-mid));
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.listing-img-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.listing-img-placeholder svg { width: 36px; height: 36px; stroke: rgba(255,255,255,0.35); fill: none; }
.listing-img-placeholder span { font-size: 11px; color: rgba(255,255,255,0.35); letter-spacing: 1px; text-transform: uppercase; }
.listing-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--steel-mid); color: white;
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px;
}
.listing-badge.rent { background: #2e7d32; }
.listing-body { padding: 22px; }
.listing-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 25px; font-weight: 800; color: var(--navy); margin-bottom: 5px;
}
.listing-title  { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.listing-location { font-size: 12px; color: var(--steel-mid); margin-bottom: 10px; display: flex; align-items: center; gap: 5px; }
.listing-desc   { font-size: 13px; color: #6a7a8a; line-height: 1.6; }
.listing-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 22px; border-top: 1px solid var(--light-grey);
}
.listing-type   { font-size: 11px; color: var(--silver); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.listing-enquire {
  background: none; border: 1px solid var(--steel-mid); cursor: pointer;
  font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--steel-mid); padding: 7px 14px; border-radius: 4px; transition: all 0.2s;
}
.listing-enquire:hover { background: var(--steel-mid); color: white; }
.no-listings {
  grid-column: 1/-1; text-align: center; padding: 60px 20px;
  color: #8a9ab0; font-size: 14px;
}

/* ─────────────────────────────────────────────────
   CONTACT
───────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px; font-weight: 800; text-transform: uppercase;
  color: var(--navy); margin-bottom: 28px;
}
.contact-detail {
  display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px;
}
.contact-detail-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: var(--navy); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.contact-detail-icon svg { width: 17px; height: 17px; stroke: rgba(255,255,255,0.65); }
.contact-detail-text { font-size: 14px; color: #5a6a80; line-height: 1.7; }
.contact-detail-text strong {
  display: block; font-size: 10px; font-weight: 700;
  color: var(--navy); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 4px;
}

#contactMap {
  height: 260px; border-radius: 10px; overflow: hidden;
  margin-top: 24px; border: 1px solid var(--light-grey);
}

.contact-form-wrap { background: var(--off-white); border-radius: var(--radius-lg); padding: 44px; }

/* ─────────────────────────────────────────────────
   FORMS
───────────────────────────────────────────────── */
.form-group  { margin-bottom: 22px; }
.form-row    { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-label  {
  display: block; font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--navy); margin-bottom: 8px;
}
.form-input,
.form-textarea {
  width: 100%; background: white;
  border: 1px solid var(--light-grey); border-radius: 6px;
  padding: 13px 16px; font-family: 'Barlow', sans-serif;
  font-size: 14px; color: var(--navy); outline: none;
  transition: border-color 0.2s;
}
.form-input:focus,
.form-textarea:focus { border-color: var(--steel-mid); }
.form-textarea { min-height: 130px; resize: vertical; }
.form-error   { font-size: 12px; color: #c0392b; margin-top: 5px; display: none; }
.form-success {
  background: #e8f5e9; border: 1px solid #a5d6a7;
  border-radius: 8px; padding: 14px 18px;
  font-size: 14px; color: #2e7d32; display: none; margin-bottom: 20px;
}

.emailjs-note {
  background: rgba(30,58,110,0.06);
  border: 1px solid rgba(30,58,110,0.15);
  border-radius: 6px; padding: 12px 16px;
  font-size: 12px; color: #5a6a80; line-height: 1.6; margin-bottom: 20px;
}
.emailjs-note a    { color: var(--steel-mid); font-weight: 600; }
.emailjs-note code { background: var(--navy); color: rgba(255,255,255,0.7); padding: 1px 5px; border-radius: 3px; font-size: 11px; }

/* ─────────────────────────────────────────────────
   PORTAL — LOGIN
───────────────────────────────────────────────── */
.portal-wrap {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: var(--off-white); padding: 100px 32px 60px;
}
.login-card {
  background: white; border-radius: var(--radius-lg);
  padding: 52px; width: 100%; max-width: 420px;
  box-shadow: var(--shadow-lg);
}
.login-header { text-align: center; margin-bottom: 36px; }
.login-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px; font-weight: 800; text-transform: uppercase; color: var(--navy);
}
.login-error {
  background: #ffeaea; border: 1px solid #ffcdd2; border-radius: 6px;
  padding: 12px 16px; font-size: 13px; color: #c0392b;
  display: none; margin-bottom: 20px;
}
.login-hint { font-size: 11px; color: var(--silver); text-align: center; margin-top: 16px; }

/* ─────────────────────────────────────────────────
   DASHBOARD
───────────────────────────────────────────────── */
.dashboard { padding-top: 70px; min-height: 100vh; background: var(--off-white); }

.dashboard-header {
  background: var(--navy); padding: 28px 32px;
  display: flex; justify-content: space-between; align-items: center;
}
.dashboard-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px; font-weight: 700; color: white;
  text-transform: uppercase; letter-spacing: 1px;
}
.dashboard-header p { font-size: 13px; color: var(--silver); margin-top: 3px; }
.dashboard-actions { display: flex; gap: 10px; }

.btn-sm {
  font-size: 11px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; padding: 9px 18px;
  border-radius: 4px; cursor: pointer; transition: all 0.2s;
}
.btn-primary-sm {
  background: var(--steel-mid); color: white; border: none;
}
.btn-primary-sm:hover { background: var(--navy-deep); }
.btn-outline-sm {
  background: transparent; color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-outline-sm:hover { color: white; border-color: white; }

.dashboard-body { max-width: 1280px; margin: 0 auto; padding: 44px 32px; }

.dashboard-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px; margin-bottom: 44px;
}
.dash-stat {
  background: white; border-radius: 10px; padding: 26px;
  box-shadow: 0 2px 10px rgba(15,30,56,0.05); border: 1px solid var(--light-grey);
}
.dash-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 42px; font-weight: 800; color: var(--navy); line-height: 1;
}
.dash-stat-label {
  font-size: 11px; color: var(--silver);
  letter-spacing: 1px; text-transform: uppercase; margin-top: 4px;
}

.dashboard-section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 700; text-transform: uppercase;
  color: var(--navy); letter-spacing: 1px; margin-bottom: 20px;
  display: flex; justify-content: space-between; align-items: center;
}

.properties-table {
  background: white; border-radius: 10px; overflow: hidden;
  box-shadow: 0 2px 10px rgba(15,30,56,0.05);
  border: 1px solid var(--light-grey); margin-bottom: 40px;
}
.prop-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr auto;
  gap: 16px; padding: 18px 22px;
  border-bottom: 1px solid var(--light-grey); align-items: center;
}
.prop-row.header { background: var(--navy); }
.prop-row.header span {
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--silver);
}
.prop-row:not(.header):hover { background: var(--off-white); }
.prop-title { font-size: 13px; font-weight: 600; color: var(--navy); }
.prop-meta  { font-size: 12px; color: #6a7a8a; margin-top: 2px; }
.prop-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px; font-weight: 700; color: var(--navy);
}
.prop-type-badge {
  display: inline-block; font-size: 10px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px;
}
.prop-type-badge.sale { background: rgba(30,58,110,0.1); color: var(--navy-deep); }
.prop-type-badge.rent { background: rgba(46,125,50,0.1); color: #2e7d32; }
.prop-actions { display: flex; gap: 7px; }
.btn-edit, .btn-delete {
  background: none; border: 1px solid; cursor: pointer;
  padding: 5px 12px; border-radius: 4px;
  font-family: 'Barlow', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 0.5px;
  text-transform: uppercase; transition: all 0.2s;
}
.btn-edit   { border-color: var(--steel-mid); color: var(--steel-mid); }
.btn-edit:hover   { background: var(--steel-mid); color: white; }
.btn-delete { border-color: #e74c3c; color: #e74c3c; }
.btn-delete:hover { background: #e74c3c; color: white; }
.empty-state { padding: 48px; text-align: center; color: #8a9ab0; font-size: 14px; }

/* ─────────────────────────────────────────────────
   EMAIL GUIDE (in dashboard)
───────────────────────────────────────────────── */
.email-guide {
  background: white; border: 1px solid var(--light-grey);
  border-radius: var(--radius-lg); padding: 32px; margin-top: 12px;
}
.email-guide h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 800; text-transform: uppercase;
  color: var(--navy); margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.email-guide h3 svg { stroke: var(--steel-mid); }

.guide-tab-nav {
  display: flex; gap: 0; margin-bottom: 24px;
  border-bottom: 2px solid var(--light-grey);
}
.guide-tab {
  background: none; border: none; cursor: pointer;
  font-family: 'Barlow', sans-serif; font-size: 12px; font-weight: 600;
  color: var(--silver); letter-spacing: 0.5px; padding: 10px 20px;
  border-bottom: 2px solid transparent; margin-bottom: -2px; transition: all 0.2s;
}
.guide-tab.active { color: var(--navy); border-bottom-color: var(--steel-mid); }
.guide-tab-content          { display: none; }
.guide-tab-content.active   { display: block; }

.guide-step {
  display: flex; gap: 14px; margin-bottom: 18px; align-items: flex-start;
}
.guide-step-num {
  width: 26px; height: 26px; min-width: 26px;
  background: var(--navy); color: white; border-radius: 50%;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.guide-step-text { font-size: 13px; color: #4a5a6a; line-height: 1.7; }
.guide-step-text strong { color: var(--navy); display: block; margin-bottom: 4px; }
.guide-step-text a { color: var(--steel-mid); font-weight: 600; }
.guide-step-text code {
  background: var(--navy); color: rgba(255,255,255,0.75);
  padding: 1px 6px; border-radius: 3px; font-size: 11px;
}

/* ─────────────────────────────────────────────────
   IMAGE UPLOAD ZONE (property modal)
───────────────────────────────────────────────── */
.img-upload-zone {
  border: 2px dashed var(--light-grey); border-radius: 8px;
  padding: 28px 20px; text-align: center; cursor: pointer;
  background: var(--off-white); position: relative;
  transition: border-color 0.2s, background 0.2s;
}
.img-upload-zone:hover,
.img-upload-zone.drag-over {
  border-color: var(--steel-mid);
  background: rgba(30,58,110,0.03);
}
.img-upload-zone input[type=file] {
  position: absolute; inset: 0; opacity: 0;
  cursor: pointer; width: 100%; height: 100%;
}
.img-upload-icon { width: 34px; height: 34px; margin: 0 auto 10px; stroke: var(--silver); }
.img-upload-label { font-size: 13px; color: var(--silver); }
.img-upload-label strong { color: var(--steel-mid); }
.img-upload-hint { font-size: 11px; color: #aab; margin-top: 4px; }

.img-preview-wrap {
  margin-top: 12px; display: none; position: relative;
  border-radius: 8px; overflow: hidden;
}
.img-preview-wrap.has-image { display: block; }
.img-preview {
  width: 100%; height: 150px; object-fit: cover; border-radius: 8px; display: block;
}
.img-preview-remove {
  position: absolute; top: 8px; right: 8px;
  background: rgba(15,30,56,0.75); color: white; border: none; cursor: pointer;
  width: 26px; height: 26px; border-radius: 50%;
  font-size: 14px; line-height: 26px; text-align: center; transition: background 0.2s;
}
.img-preview-remove:hover { background: #c0392b; }

/* ─────────────────────────────────────────────────
   MODAL
───────────────────────────────────────────────── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(10,18,36,0.75); backdrop-filter: blur(5px);
  align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: white; border-radius: var(--radius-lg); padding: 44px;
  width: 100%; max-width: 580px; max-height: 90vh; overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.modal-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px; font-weight: 800; text-transform: uppercase;
  color: var(--navy); margin-bottom: 28px;
}
.modal-actions {
  display: flex; gap: 10px; justify-content: flex-end; margin-top: 28px;
}

/* ─────────────────────────────────────────────────
   TUTORIAL OVERLAY
───────────────────────────────────────────────── */
.tutorial-overlay {
  position: fixed; inset: 0; z-index: 5000;
  background: rgba(10,18,36,0.85); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.tutorial-overlay.hidden { display: none; }

.tutorial-card {
  background: white; border-radius: 20px;
  width: 100%; max-width: 660px; max-height: 90vh;
  overflow: hidden; display: flex; flex-direction: column;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}
.tutorial-header {
  background: var(--navy); padding: 26px 32px 22px; position: relative;
}
.tutorial-step-indicator { display: flex; gap: 5px; margin-bottom: 14px; }
.tutorial-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.18); transition: all 0.3s;
}
.tutorial-dot.active {
  background: rgba(255,255,255,0.75); width: 22px; border-radius: 4px;
}
.tutorial-step-label {
  font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 6px; display: block;
}
.tutorial-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px; font-weight: 800; text-transform: uppercase; color: white; margin: 0;
}
.tutorial-close {
  position: absolute; top: 18px; right: 18px;
  background: rgba(255,255,255,0.1); border: none; color: white;
  width: 30px; height: 30px; border-radius: 50%; cursor: pointer;
  font-size: 16px; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.tutorial-close:hover { background: rgba(255,255,255,0.2); }

.tutorial-body { padding: 28px 32px; overflow-y: auto; flex: 1; }
.tutorial-body p { font-size: 14px; color: #4a5a6a; line-height: 1.8; margin-bottom: 14px; }
.tutorial-body p:last-child { margin-bottom: 0; }

.tutorial-step-visual {
  background: var(--off-white); border: 1px solid var(--light-grey);
  border-radius: 10px; padding: 18px 22px; margin: 16px 0;
}
.tutorial-step-visual h4 {
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--steel-mid); margin-bottom: 12px;
}
.tutorial-checklist { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.tutorial-checklist li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: #4a5a6a; line-height: 1.5;
}
.tutorial-checklist li::before {
  content: '';
  width: 17px; height: 17px; min-width: 17px;
  border-radius: 50%; background: var(--steel-mid);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20,6 9,17 4,12'/%3E%3C/svg%3E");
  background-size: 11px; background-repeat: no-repeat; background-position: center;
  margin-top: 1px;
}

.tutorial-footer {
  padding: 18px 32px 24px; border-top: 1px solid var(--light-grey);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.tutorial-progress { font-size: 11px; color: var(--silver); font-weight: 600; }
.tutorial-nav { display: flex; gap: 8px; }
.btn-tut-prev {
  background: var(--off-white); border: none; color: var(--navy); cursor: pointer;
  font-family: 'Barlow', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; padding: 9px 18px; border-radius: 4px; transition: all 0.2s;
}
.btn-tut-prev:hover { background: var(--light-grey); }
.btn-tut-next {
  background: var(--steel-mid); border: none; color: white; cursor: pointer;
  font-family: 'Barlow', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; padding: 9px 22px; border-radius: 4px; transition: all 0.2s;
}
.btn-tut-next:hover { background: var(--navy-deep); }

/* ─────────────────────────────────────────────────
   TOAST
───────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 28px; right: 28px; z-index: 3000;
  background: var(--navy); color: white; border-radius: 8px;
  padding: 14px 22px; font-size: 13px; display: none;
  border-left: 4px solid var(--steel-mid);
  animation: toastIn 0.3s ease;
  box-shadow: var(--shadow);
}
.toast.show { display: block; }
@keyframes toastIn {
  from { transform: translateY(16px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* ─────────────────────────────────────────────────
   SEND BUTTON STATE
───────────────────────────────────────────────── */
.btn-sending { opacity: 0.65; pointer-events: none; }

/* ─────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .overview-inner      { grid-template-columns: 1fr; gap: 48px; }
  .values-grid         { grid-template-columns: 1fr 1fr; }
  .footer-top          { grid-template-columns: 1fr 1fr; }
  .mission-vision      { grid-template-columns: 1fr; }
  .contact-layout      { grid-template-columns: 1fr; }
  .dashboard-stats     { grid-template-columns: 1fr 1fr; }
  .prop-row            { grid-template-columns: 2fr 1fr auto; }
  .prop-row .prop-type-badge-wrap,
  .prop-row .prop-location { display: none; }
  .about-split         { grid-template-columns: 1fr; }
  .img-holder--about   { height: 280px; }
  .about-img           { height: 280px; }
}

@media (max-width: 768px) {
  .nav-links     { display: none; }
  .hamburger     { display: flex; }

  .section-inner { padding: 64px 20px; }

  .hero-stats    { gap: 24px; }
  .hero-content  { margin-left: 0; }

  .values-grid   { grid-template-columns: 1fr; gap: 2px; }
  .footer-top    { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }

  .dashboard-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .dashboard-stats  { grid-template-columns: 1fr; }
  .prop-row         { grid-template-columns: 1fr auto; }
  .prop-row.header  { display: none; }

  .login-card         { padding: 32px 20px; }
  .modal              { padding: 28px 20px; }
  .contact-form-wrap  { padding: 28px 20px; }
  .tutorial-body      { padding: 22px 20px; }
  .tutorial-header    { padding: 22px 20px 18px; }
  .tutorial-footer    { padding: 16px 20px 20px; flex-wrap: wrap; }

  .cta-strip { padding: 56px 20px; }
  .page-hero { padding: 120px 20px 56px; }
}

/* ═══════════════════════════════════════════════════════
   COLOUR OVERHAUL — 2026 Grey / Navy / White
   All blues replaced with charcoal, slate, and clean white
   ═══════════════════════════════════════════════════════ */
:root {
  /* Neutrals */
  --grey-50:   #fafafa;
  --grey-100:  #f5f5f5;
  --grey-200:  #eeeeee;
  --grey-300:  #e0e0e0;
  --grey-400:  #bdbdbd;
  --grey-500:  #9e9e9e;
  --grey-600:  #757575;
  --grey-700:  #616161;
  --grey-800:  #424242;
  --grey-900:  #212121;
  /* Brand darks */
  --navy:      #1a1a2e;
  --navy-mid:  #16213e;
  --navy-deep: #0f3460;
  /* Charcoal replaces all "steel" blues */
  --steel:       #37474f;
  --steel-mid:   #455a64;
  --steel-light: #b0bec5;
  /* Accent — used sparingly */
  --accent:    #e74c3c;
  /* Redefine layout vars */
  --silver:      #90a4ae;
  --light-grey:  #eceff1;
  --off-white:   #f5f6fa;
  --shadow:      0 2px 16px rgba(0,0,0,0.07);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.13);
  --radius:      8px;
  --radius-lg:   12px;
}

/* ── NAV ── */
nav { background: rgba(26,26,46,0.98); border-bottom: 1px solid rgba(176,190,197,0.15); }
.nav-link:hover,.nav-link.active { background: rgba(69,90,100,0.3); color: white; }
.nav-cta { background: var(--steel-mid); }
.nav-cta:hover { background: var(--steel); }

/* ── HERO ── */
.hero { background: linear-gradient(155deg,#1a1a2e 0%,#16213e 55%,#0f3460 100%); }
.hero-grid {
  background-image: linear-gradient(rgba(176,190,197,.06) 1px,transparent 1px),
                    linear-gradient(90deg,rgba(176,190,197,.06) 1px,transparent 1px);
}

/* ── HERO LOGO PLACEHOLDER (beside h1) ── */
.hero-h1-row {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 24px;
}
.hero-h1-row h1 { margin-bottom: 0; flex: 1; }
.hero-logo-placeholder {
  width: 120px;
  min-width: 120px;
  height: 120px;
  border: 2px dashed rgba(176,190,197,0.35);
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero-logo-placeholder svg { width: 32px; height: 32px; }
/* When replaced with real img: */
.hero-logo-img {
  width: 120px; height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.4));
}
@media (max-width: 600px) {
  .hero-h1-row { flex-direction: column-reverse; align-items: flex-start; gap: 16px; }
  .hero-logo-placeholder, .hero-logo-img { width: 80px; height: 80px; min-width: 80px; }
}

/* ── OVERVIEW ── */
.overview-strip { background: #16213e; }
.overview-feature { background: rgba(55,71,79,.2); border-color: rgba(55,71,79,.3); }
.overview-feature-icon { background: linear-gradient(135deg,#0f3460,var(--steel-mid)); }

/* ── BUTTONS ── */
.btn-primary { background: var(--steel-mid); box-shadow: 0 4px 14px rgba(55,71,79,.3); }
.btn-primary:hover { background: var(--steel); }
.btn-primary.btn-dark { background: #1a1a2e; }
.btn-primary.btn-dark:hover { background: #16213e; }

/* ── SERVICE CARDS ── */
.service-card::before { background: linear-gradient(90deg,var(--steel),var(--steel-mid)); }
.service-icon { background: linear-gradient(135deg,#1a1a2e,#16213e); }
/* Light-grey cards with good contrast */
.service-card { background: var(--grey-50); border-color: var(--grey-200); }
.service-card:hover { background: white; border-color: var(--grey-300); }

/* ── WHY CARDS ── */
.why-section { background: var(--grey-100); }
.why-card { background: white; border-color: var(--grey-200); }
.why-card:hover { border-color: var(--grey-400); box-shadow: 0 4px 20px rgba(0,0,0,.08); }
.why-card-num { color: var(--grey-200); }

/* ── VALUES ── */
.value-block { background: #16213e; }
.value-block:hover { background: #1a1a2e; }
.value-block::after { background: linear-gradient(90deg,var(--steel),var(--steel-mid)); }

/* ── CTA / FOOTER ── */
.cta-strip { background: #16213e; }
footer { background: #1a1a2e; }

/* ── PAGE HEROES ── */
.page-hero { background: linear-gradient(155deg,#1a1a2e,#16213e); }
.page-hero::after {
  background-image: linear-gradient(rgba(176,190,197,.06) 1px,transparent 1px),
                    linear-gradient(90deg,rgba(176,190,197,.06) 1px,transparent 1px);
}

/* ── MISSION/VISION ── */
.mv-card { background: #16213e; }
.mv-card::before { background: linear-gradient(90deg,var(--steel),var(--steel-mid)); }

/* ── LISTINGS ── */
.listings-section { background: var(--grey-100); }
.filter-btn:hover,.filter-btn.active { background: var(--steel-mid); border-color: var(--steel-mid); }
.listing-badge { background: var(--steel-mid); }
.listing-card { background: white; border-color: var(--grey-200); }

/* ── CONTACT ── */
.contact-detail-icon { background: var(--navy-mid); }
.emailjs-note { background: var(--grey-100); border-color: var(--grey-300); }
.emailjs-note a { color: var(--steel-mid); }
.contact-form-wrap { background: var(--grey-100); }

/* ── FORMS ── */
.form-input:focus,.form-textarea:focus { border-color: var(--steel-mid); box-shadow: 0 0 0 3px rgba(69,90,100,.1); }
.form-input, .form-textarea { background: white; border-color: var(--grey-300); }

/* ── PORTAL / DASHBOARD ── */
.dashboard-header { background: #1a1a2e; }
.prop-row.header  { background: #1a1a2e; }
.tutorial-header  { background: #1a1a2e; }
.guide-step-num   { background: var(--steel-mid); }
.btn-tut-next     { background: var(--steel-mid); }
.btn-tut-next:hover { background: var(--steel); }
.guide-tab.active { color: var(--steel-mid); border-bottom-color: var(--steel-mid); }
.email-guide      { background: white; border-color: var(--grey-200); }
.dash-stat        { background: white; border-color: var(--grey-200); }
.properties-table { background: white; border-color: var(--grey-200); }
.prop-row:not(.header):hover { background: var(--grey-50); }

/* ── SECTION LABELS ── */
.section-label { color: var(--steel-mid); }
.overview-text .section-label { color: rgba(255,255,255,.5); }

/* Light-grey background contrast boost for sections */
.section-white    { background: white; }
.section-offwhite { background: var(--grey-100); }

/* ─── DIAMOND SUITES LISTING CARD ─── */
.ds-card {
  background: white;
  border: 2px solid #c0392b;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(192,57,43,.15);
  position: relative;
}
.ds-coming-soon {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  background: #c0392b; color: white;
  font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
  animation: pulseBadge 2s ease-in-out infinite;
}
@keyframes pulseBadge {
  0%,100% { box-shadow: 0 0 0 0 rgba(192,57,43,.5); }
  50%      { box-shadow: 0 0 0 8px rgba(192,57,43,0); }
}
.ds-img-wrap {
  height: 220px;
  background: linear-gradient(135deg,#1a1a2e,#0f3460);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.ds-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.ds-img-placeholder {
  text-align: center; color: rgba(255,255,255,.3);
}
.ds-img-placeholder svg { width: 48px; height: 48px; margin: 0 auto 10px; }
.ds-img-placeholder p { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; }
.ds-body { padding: 24px; }
.ds-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #c0392b; margin-bottom: 8px; }
.ds-title { font-family: 'Barlow Condensed',sans-serif; font-size: 24px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.ds-subtitle { font-size: 13px; color: var(--grey-600); margin-bottom: 16px; }
.ds-features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.ds-feature-tag {
  background: var(--grey-100); border: 1px solid var(--grey-300);
  border-radius: 100px; padding: 4px 12px;
  font-size: 12px; font-weight: 600; color: var(--grey-700);
}
.ds-desc { font-size: 14px; color: var(--grey-600); line-height: 1.7; margin-bottom: 16px; }
.ds-footer {
  display: flex; gap: 10px; flex-wrap: wrap; padding: 16px 24px;
  border-top: 1px solid var(--grey-200); background: var(--grey-50);
  align-items: center; justify-content: space-between;
}
.ds-website {
  font-size: 13px; font-weight: 600; color: var(--steel-mid); text-decoration: none;
  display: flex; align-items: center; gap: 6px;
}
.ds-website:hover { color: var(--steel); text-decoration: underline; }
.ds-enquire-btn {
  background: #c0392b; color: white; border: none; cursor: pointer;
  font-family: 'Barlow',sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 9px 20px; border-radius: 6px; transition: background .2s;
}
.ds-enquire-btn:hover { background: #a93226; }

/* ═══════════════════════════════════════════════════
   PROPERTY SEARCH — Listings page
   ═══════════════════════════════════════════════════ */
.search-hero {
  background: linear-gradient(155deg,#1a1a2e 0%,#16213e 55%,#0f3460 100%);
  padding: 100px 32px 0; position: relative; overflow: hidden;
}
.search-hero::before {
  content:''; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(176,190,197,.06) 1px,transparent 1px),
                    linear-gradient(90deg,rgba(176,190,197,.06) 1px,transparent 1px);
  background-size: 48px 48px;
}
.search-hero-text { text-align: center; position: relative; z-index: 1; padding-bottom: 28px; }
.search-hero-text h1 {
  font-family: 'Barlow Condensed',sans-serif;
  font-size: clamp(36px,5vw,64px); font-weight: 800; text-transform: uppercase;
  color: white; letter-spacing: -1px; margin-bottom: 8px;
}
.search-hero-text p { font-size: 16px; color: rgba(255,255,255,.5); }
.search-tabs { display: flex; justify-content: center; position: relative; z-index: 1; }
.search-tab {
  background: rgba(255,255,255,.1); border: none; cursor: pointer;
  font-family: 'Barlow',sans-serif; font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,.65); padding: 12px 36px;
  border-radius: 8px 8px 0 0; margin-right: 4px; transition: all .2s;
}
.search-tab.active { background: white; color: #1a1a2e; }
.search-tab:hover:not(.active) { background: rgba(255,255,255,.18); color: white; }
.search-panel {
  background: white; border-radius: 0 12px 12px 12px;
  padding: 26px 26px 22px; position: relative; z-index: 1;
  box-shadow: 0 8px 40px rgba(0,0,0,.2);
}
.search-location-row { display: flex; gap: 12px; margin-bottom: 14px; }
.search-location-input-wrap { flex: 1; position: relative; }
.search-location-input-wrap svg {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; pointer-events: none; stroke: var(--grey-500); fill: none;
}
.search-location-input {
  width: 100%; border: 1.5px solid var(--grey-300); border-radius: 8px;
  padding: 13px 14px 13px 44px; font-family: 'Barlow',sans-serif;
  font-size: 14px; color: #1a1a2e; outline: none; transition: border-color .2s;
}
.search-location-input:focus { border-color: var(--steel-mid); }
.search-filters {
  display: grid; grid-template-columns: repeat(5,1fr); gap: 10px; margin-bottom: 14px;
}
.search-select {
  width: 100%; background: white; border: 1.5px solid var(--grey-300); border-radius: 8px;
  padding: 12px 32px 12px 14px; font-family: 'Barlow',sans-serif; font-size: 13px;
  color: #1a1a2e; outline: none; cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236c757d' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; transition: border-color .2s;
}
.search-select:focus { border-color: var(--steel-mid); }
.search-bottom-row {
  display: flex; gap: 12px; align-items: center;
  justify-content: space-between; flex-wrap: wrap;
}
.search-more-filters {
  background: none; border: 1.5px solid var(--grey-300); border-radius: 8px;
  padding: 11px 20px; font-family: 'Barlow',sans-serif; font-size: 13px; font-weight: 600;
  color: var(--grey-700); cursor: pointer; display: flex; align-items: center; gap: 8px; transition: all .2s;
}
.search-more-filters:hover { border-color: var(--steel-mid); color: var(--steel-mid); }
.search-btn {
  background: var(--accent); color: white; border: none; cursor: pointer;
  font-family: 'Barlow',sans-serif; font-size: 14px; font-weight: 700;
  padding: 13px 32px; border-radius: 8px;
  display: flex; align-items: center; gap: 8px; transition: background .2s,transform .15s; white-space: nowrap;
}
.search-btn:hover { background: #c0392b; transform: translateY(-1px); }
.search-extra-filters {
  display: none; grid-template-columns: repeat(3,1fr); gap: 10px;
  margin-top: 10px; padding-top: 14px; border-top: 1px solid var(--grey-200);
}
.search-extra-filters.open { display: grid; }
.search-result-count {
  font-size: 13px; color: var(--grey-600);
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--grey-200);
}
.search-result-count strong { color: #1a1a2e; }
.search-near-me {
  width: 100%; background: none; border: 1.5px solid var(--grey-300); border-radius: 8px;
  padding: 12px 20px; font-family: 'Barlow',sans-serif; font-size: 13px; font-weight: 600;
  color: var(--steel-mid); cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 10px; transition: all .2s;
}
.search-near-me:hover { border-color: var(--steel-mid); background: rgba(69,90,100,.04); }
.listings-section .section-inner { padding-top: 56px; }

/* ═══════════════════════════════════════════════════
   CALCULATORS
   ═══════════════════════════════════════════════════ */
.calc-nav {
  display: flex; flex-wrap: wrap; gap: 0;
  border-bottom: 2px solid var(--grey-200); margin-bottom: 36px;
}
.calc-tab {
  background: none; border: none; cursor: pointer;
  font-family: 'Barlow',sans-serif; font-size: 13px; font-weight: 600;
  color: var(--grey-600); padding: 14px 22px;
  border-bottom: 2px solid transparent; margin-bottom: -2px;
  display: flex; align-items: center; gap: 8px; transition: all .2s;
}
.calc-tab svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }
.calc-tab.active { color: var(--steel-mid); border-bottom-color: var(--steel-mid); }
.calc-tab:hover:not(.active) { color: #1a1a2e; }
.calc-panel { display: none; }
.calc-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.calc-form-section h3 {
  font-family: 'Barlow Condensed',sans-serif;
  font-size: 22px; font-weight: 800; text-transform: uppercase; color: #1a1a2e; margin-bottom: 6px;
}
.calc-form-section > p { font-size: 13px; color: var(--grey-600); margin-bottom: 24px; line-height: 1.65; }
.calc-field { margin-bottom: 22px; }
.calc-label {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: #1a1a2e; margin-bottom: 8px;
}
.calc-label span { font-weight: 500; color: var(--grey-600); text-transform: none; letter-spacing: 0; font-size: 13px; }
.calc-input-wrap { position: relative; }
.calc-prefix,.calc-suffix {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 14px; font-weight: 600; color: var(--grey-500); pointer-events: none;
}
.calc-prefix { left: 14px; }
.calc-suffix { right: 14px; }
.calc-input {
  width: 100%; background: white; border: 1.5px solid var(--grey-300); border-radius: 8px;
  padding: 13px 16px; font-family: 'Barlow',sans-serif; font-size: 15px;
  color: #1a1a2e; outline: none; transition: border-color .2s;
}
.calc-input.has-prefix { padding-left: 34px; }
.calc-input.has-suffix { padding-right: 36px; }
.calc-input:focus { border-color: var(--steel-mid); box-shadow: 0 0 0 3px rgba(69,90,100,.1); }
.calc-slider-wrap { padding: 6px 0 4px; }
.calc-slider {
  width: 100%; -webkit-appearance: none; appearance: none;
  height: 4px; border-radius: 2px; outline: none; cursor: pointer;
  background: linear-gradient(to right,var(--steel-mid) 0%,var(--steel-mid) 50%,var(--grey-300) 50%,var(--grey-300) 100%);
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%;
  background: var(--steel-mid); cursor: pointer; box-shadow: 0 2px 8px rgba(55,71,79,.3); border: 2px solid white;
}
.calc-slider::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--steel-mid); cursor: pointer; box-shadow: 0 2px 8px rgba(55,71,79,.3); border: 2px solid white;
}
.calc-slider-labels { display: flex; justify-content: space-between; font-size: 11px; color: var(--grey-500); margin-top: 4px; }
.calc-radio-row { display: flex; flex-direction: column; gap: 10px; margin-top: 6px; }
.calc-radio { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: #1a1a2e; cursor: pointer; line-height: 1.5; }
.calc-radio input { margin-top: 2px; accent-color: var(--steel-mid); }
.calc-btn {
  width: 100%; background: var(--steel-mid); color: white; border: none; cursor: pointer;
  border-radius: 8px; font-family: 'Barlow',sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; padding: 15px 24px; margin-top: 8px; transition: background .2s, transform .15s;
}
.calc-btn:hover { background: var(--steel); transform: translateY(-1px); }
.calc-results { background: #16213e; border-radius: 12px; padding: 32px; position: sticky; top: 90px; }
.calc-results-title { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 22px; }
.calc-result-main { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,.1); }
.calc-result-main-label { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 8px; }
.calc-result-main-value { font-family: 'Barlow Condensed',sans-serif; font-size: 46px; font-weight: 800; color: white; line-height: 1; }
.calc-result-main-sub { font-size: 12px; color: rgba(255,255,255,.35); margin-top: 6px; }
.calc-result-rows { display: flex; flex-direction: column; gap: 13px; }
.calc-result-row { display: flex; justify-content: space-between; align-items: center; }
.calc-result-row-label { font-size: 13px; color: rgba(255,255,255,.5); }
.calc-result-row-value { font-size: 14px; font-weight: 700; color: white; }
.calc-result-row-value.highlight { color: #e74c3c; }
.calc-disclaimer { font-size: 11px; color: rgba(255,255,255,.28); margin-top: 20px; line-height: 1.65; }
.afford-bands { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.afford-band { display: flex; align-items: center; gap: 10px; }
.afford-band-label-left { font-size: 11px; color: rgba(255,255,255,.4); min-width: 36px; }
.afford-band-bar-wrap { flex: 1; height: 6px; background: rgba(255,255,255,.1); border-radius: 3px; overflow: hidden; }
.afford-band-bar { height: 100%; border-radius: 3px; transition: width .6s ease; }
.afford-band-pct { font-size: 11px; color: rgba(255,255,255,.4); min-width: 32px; text-align: right; }

/* ── RESPONSIVE ADDITIONS ── */
@media (max-width: 900px) {
  .calc-panel.active { grid-template-columns: 1fr; }
  .calc-results { position: static; }
  .search-filters { grid-template-columns: repeat(2,1fr); }
  .search-extra-filters { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
  .search-hero { padding: 90px 16px 0; }
  .search-panel { padding: 18px 16px 16px; }
  .search-filters { grid-template-columns: 1fr 1fr; }
  .search-tab { padding: 10px 24px; font-size: 13px; }
  .calc-tab { font-size: 12px; padding: 11px 14px; }
  .calc-result-main-value { font-size: 36px; }
  .ds-footer { flex-direction: column; align-items: flex-start; }
}
