/* ============================================================
   THE BUSINESS GUY — Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --navy: #0d1f3c;
  --navy-light: #162d52;
  --gold: #c9993a;
  --gold-light: #e8b84b;
  --cream: #f9f6f0;
  --white: #ffffff;
  --text: #2c3e50;
  --text-muted: #6b7c93;
  --border: #e4ddd0;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(13,31,60,0.10);
  --shadow-lg: 0 12px 48px rgba(13,31,60,0.16);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── BUTTONS ────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all .22s ease;
  text-align: center;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,153,58,0.35); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--navy); transform: translateY(-2px); }

.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover { background: var(--navy-light); transform: translateY(-2px); }

/* ── NAV ────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13,31,60,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201,153,58,0.2);
}

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

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

.logo-mark {
  width: 42px; height: 42px;
  background: var(--gold);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--navy);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
  letter-spacing: 0.3px;
}

.logo-sub {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
  letter-spacing: 0.3px;
}

.nav-links a:hover { color: var(--gold); }

.nav-cta { margin-left: 12px; padding: 10px 22px; font-size: 14px; }

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

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

.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,153,58,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,153,58,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 24px;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,153,58,0.15);
  border: 1px solid rgba(201,153,58,0.3);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero h1 span { color: var(--gold); }

.hero p {
  color: rgba(255,255,255,0.72);
  font-size: 17px;
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-item .stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}
.stat-item .stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-card-stack {
  position: relative;
  width: 380px;
  height: 340px;
}

.hero-card {
  position: absolute;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 28px;
  width: 300px;
}

.hero-card:nth-child(1) { top: 0; right: 0; }
.hero-card:nth-child(2) { top: 80px; right: 60px; background: rgba(201,153,58,0.1); border-color: rgba(201,153,58,0.2); }
.hero-card:nth-child(3) { top: 160px; right: 120px; }

.hero-card .card-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 8px;
}
.hero-card .card-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 10px;
}
.hero-card .card-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--gold-light);
}
.hero-card .card-detail {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* ── SECTION TITLES ──────────────────────────── */
.section-title {
  text-align: center;
  margin-bottom: 56px;
}

.section-title .eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.section-title h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--navy);
}

.section-title p {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 560px;
  margin: 14px auto 0;
  line-height: 1.7;
}

/* ── WHY US ──────────────────────────────────── */
.why-us {
  padding: 96px 0;
  background: var(--cream);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.trust-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all .25s ease;
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.trust-icon {
  width: 56px; height: 56px;
  background: rgba(201,153,58,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 24px;
}

.trust-card h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.trust-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── FEATURED LISTINGS ───────────────────────── */
.featured {
  padding: 96px 0;
}

.listings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.listing-card {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all .25s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.listing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.listing-img {
  height: 180px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.listing-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.listing-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255,255,255,0.3);
  gap: 8px;
  font-size: 13px;
}

.listing-img-placeholder .icon { font-size: 36px; }

.listing-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.listing-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.listing-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.listing-category {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  background: rgba(201,153,58,0.1);
  padding: 3px 10px;
  border-radius: 100px;
}

.listing-location {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 3px;
}

.listing-card h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.listing-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.listing-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.listing-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
}

.listing-price-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.view-btn {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap .2s;
}

.listing-card:hover .view-btn { gap: 8px; }

/* ── HOW IT WORKS ────────────────────────────── */
.how-it-works {
  padding: 96px 0;
  background: var(--cream);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px; left: calc(16.66% + 28px); right: calc(16.66% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  opacity: 0.3;
  pointer-events: none;
}

.step-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.step-num {
  width: 64px; height: 64px;
  background: var(--navy);
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 3px solid var(--gold);
}

.step-card h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── SELL CTA BAND ───────────────────────────── */
.sell-band {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6b 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sell-band::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,153,58,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.sell-band h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 16px;
}
.sell-band h2 span { color: var(--gold); }

.sell-band p {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ── TESTIMONIALS ────────────────────────────── */
.testimonials {
  padding: 96px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--cream);
  border-radius: 12px;
  padding: 32px;
  border: 1px solid var(--border);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: 12px; left: 24px;
  line-height: 1;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.author-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
}
.author-role {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.stars {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 12px;
}

/* ── FOOTER ──────────────────────────────────── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 15px;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color .2s;
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}

.footer-contact-item .contact-icon { color: var(--gold); font-size: 16px; margin-top: 1px; flex-shrink: 0; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 12px;
}

/* ── WHATSAPP FLOAT ──────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: white;
  padding: 14px 20px;
  border-radius: 100px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  font-weight: 600;
  font-size: 14px;
  transition: all .25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(37,211,102,0.5);
}

.whatsapp-float svg { width: 22px; height: 22px; fill: white; }

/* ── LISTINGS PAGE ───────────────────────────── */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 140px 0 72px;
  text-align: center;
}

.page-header h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 14px; }
.page-header p { color: rgba(255,255,255,0.65); font-size: 16px; max-width: 520px; margin: 0 auto; }

.filters-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  position: sticky;
  top: 70px;
  z-index: 50;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.filters-inner {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.filter-select {
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  cursor: pointer;
  min-width: 160px;
  transition: border-color .2s;
}

.filter-select:focus {
  outline: none;
  border-color: var(--gold);
}

.filter-reset {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 13px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  text-decoration: underline;
  margin-left: auto;
}

.listings-count {
  font-size: 14px;
  color: var(--text-muted);
  margin-left: auto;
}

.listings-section {
  padding: 56px 0 96px;
}

.listings-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.no-results {
  text-align: center;
  padding: 80px 24px;
  color: var(--text-muted);
  grid-column: 1 / -1;
}

/* ── SINGLE LISTING ──────────────────────────── */
.listing-detail {
  padding: 56px 0 96px;
}

.listing-detail-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.listing-detail-img {
  width: 100%;
  height: 360px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.25);
  font-size: 14px;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  overflow: hidden;
}

.listing-detail-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.listing-detail-img .img-icon { font-size: 48px; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 24px;
  transition: color .2s;
}
.back-link:hover { color: var(--gold); }

.detail-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.detail-main h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 8px;
}

.detail-location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 28px;
}

.financials-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.financial-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
}

.financial-card .label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.financial-card .value {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}

.detail-description {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 32px;
}

.highlights-section h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.highlights-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.highlights-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}

.highlights-list li::before {
  content: '✓';
  width: 22px; height: 22px;
  background: rgba(201,153,58,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}

.confidential-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(13,31,60,0.04);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 16px;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 32px;
  line-height: 1.6;
}

/* ── ENQUIRY FORM (sidebar) ──────────────────── */
.enquiry-sidebar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 90px;
}

.enquiry-sidebar h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.enquiry-sidebar .sidebar-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-submit {
  width: 100%;
  margin-top: 4px;
}

/* ── ABOUT PAGE ──────────────────────────────── */
.about-section { padding: 96px 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-img-placeholder {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 16px;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 14px;
  flex-direction: column;
  gap: 12px;
}

.about-img-placeholder .big-icon { font-size: 64px; }

.about-content .eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold);
  font-weight: 600;
  display: block;
  margin-bottom: 14px;
}

.about-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 20px;
}

.about-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.value-icon {
  width: 40px; height: 40px;
  background: rgba(201,153,58,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.value-item h4 {
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 4px;
}
.value-item p {
  font-size: 13px;
  margin-bottom: 0;
}

/* ── SELL PAGE ───────────────────────────────── */
.sell-steps { padding: 96px 0; background: var(--cream); }

.sell-steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 56px;
}

.sell-step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.sell-step-num {
  width: 48px; height: 48px;
  background: var(--navy);
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sell-step-card h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 8px; }
.sell-step-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ── CONTACT PAGE ────────────────────────────── */
.contact-section { padding: 96px 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.contact-info h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--navy); margin-bottom: 16px; }
.contact-info p { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 32px; }

.contact-details { display: flex; flex-direction: column; gap: 20px; }

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail-icon {
  width: 48px; height: 48px;
  background: rgba(201,153,58,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-detail-item h4 { font-size: 14px; color: var(--navy); margin-bottom: 4px; }
.contact-detail-item p, .contact-detail-item a { font-size: 15px; color: var(--text-muted); }
.contact-detail-item a:hover { color: var(--gold); }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.contact-form-card h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 24px; }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .listings-grid, .listings-full-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-visual { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .trust-grid, .listings-grid, .listings-full-grid, .testimonials-grid,
  .steps-grid, .about-grid, .contact-grid, .sell-steps-grid { grid-template-columns: 1fr; }
  .listing-detail-inner { grid-template-columns: 1fr; }
  .financials-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 14px; }
  .about-values { grid-template-columns: 1fr; }
  .filters-inner { gap: 10px; }
  .filter-select { min-width: 130px; font-size: 13px; }
}

/* ── MOBILE NAV ──────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: var(--navy);
  padding: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 99;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ── SUCCESS MESSAGE ─────────────────────────── */
.success-msg {
  display: none;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  color: #2e7d32;
  font-size: 14px;
  margin-top: 12px;
}

.success-msg.show { display: block; }
