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

:root {
  --navy: #0a1628;
  --navy-mid: #112240;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --cream: #f8f5ef;
  --white: #ffffff;
  --gray: #6b7280;
  --gray-light: #f3f4f6;
  --text: #1a202c;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(10,22,40,0.12);
  --shadow-lg: 0 16px 48px rgba(10,22,40,0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  transition: background 0.3s, box-shadow 0.3s;
}

nav.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

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

.nav-logo .logo-icon {
  width: 38px; height: 38px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.nav-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}

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

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

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

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

.nav-lang select {
  background: transparent;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 6px;
  color: var(--white);
  padding: 5px 8px;
  font-size: 13px;
  cursor: pointer;
  outline: none;
}
nav.scrolled .nav-lang select { border-color: rgba(255,255,255,.4); }
.nav-lang select option { background: var(--navy); color: #fff; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 5% 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.72);
}

.hero > *:not(.hero-bg) {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  color: var(--white);
  line-height: 1.1;
  max-width: 800px;
  margin-bottom: 22px;
}

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

.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 50px;
}

/* ─── SEARCH BOX ─── */
.search-box {
  background: var(--white);
  border-radius: 16px;
  padding: 8px;
  display: flex;
  gap: 6px;
  width: 100%;
  max-width: 740px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.search-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 10px 16px;
  min-width: 0;
}

.search-field label {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}

.search-field input, .search-field select {
  border: none;
  outline: none;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  background: transparent;
  width: 100%;
}

.search-divider {
  width: 1px;
  background: #e5e7eb;
  margin: 10px 0;
}

.search-btn {
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 10px;
  padding: 0 28px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}

.search-btn:hover { background: var(--gold-light); transform: scale(1.02); }

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 56px;
  position: relative;
  z-index: 1;
}

.hero-stats .stat {
  text-align: center;
}

.hero-stats .stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
}

.hero-stats .stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}

/* ─── SECTION COMMONS ─── */
section { padding: 100px 5%; }

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: var(--gray);
  max-width: 520px;
  line-height: 1.7;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
  gap: 24px;
}

.view-all {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: gap 0.2s;
}

.view-all:hover { gap: 10px; }

/* ─── DESTINATIONS ─── */
.destinations { background: var(--cream); }

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.dest-card {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 3/4;
  background: var(--navy-mid);
}

.dest-card:first-child {
  grid-row: span 1;
  aspect-ratio: 3/4;
}

.dest-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  display: block;
}

.dest-card:hover img { transform: scale(1.06); }

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.85) 0%, transparent 50%);
}

.dest-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
}

.dest-info h3 {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 4px;
}

.dest-info span {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

.dest-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 50px;
}

/* ─── PROPERTIES ─── */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.prop-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.prop-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.prop-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--navy-mid);
}

.prop-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.prop-card:hover .prop-img img { transform: scale(1.04); }

.prop-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--navy);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
}

.prop-badge.sale { background: var(--gold); color: var(--navy); }

.prop-fav {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.2s;
}

.prop-fav:hover { transform: scale(1.15); }

.prop-body { padding: 22px; }

.prop-location {
  font-size: 12px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}

.prop-body h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.prop-price {
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  margin-bottom: 16px;
}

.prop-price span {
  font-size: 14px;
  color: var(--gray);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.prop-meta {
  display: flex;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}

.prop-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--gray);
}

.prop-meta-item .icon { font-size: 15px; }

/* ─── MOVING ASSISTANT ─── */
.moving {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.moving::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

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

.moving .section-title { color: var(--white); }
.moving .section-sub { color: rgba(255,255,255,0.55); }

.moving-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-num {
  width: 44px; height: 44px;
  min-width: 44px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--gold);
}

.step-content h4 {
  font-size: 16px;
  color: var(--white);
  margin-bottom: 5px;
}

.step-content p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ─── CHAT WIDGET ─── */
.chat-widget {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.chat-header {
  background: var(--gold);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-avatar {
  width: 40px; height: 40px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}

.chat-header-info h4 {
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 2px;
}

.chat-header-info span {
  font-size: 12px;
  color: rgba(10,22,40,0.7);
}

.online-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  margin-left: auto;
}

.chat-messages {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 280px;
}

.msg {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
}

.msg.bot {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.msg.user {
  background: var(--gold);
  color: var(--navy);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  font-weight: 500;
}

.chat-input-row {
  display: flex;
  gap: 8px;
  padding: 14px 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.chat-input-row input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 10px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--white);
  outline: none;
}

.chat-input-row input::placeholder { color: rgba(255,255,255,0.3); }

.chat-send {
  width: 42px; height: 42px;
  background: var(--gold);
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 16px;
  color: var(--navy);
  transition: transform 0.2s;
}

.chat-send:hover { transform: scale(1.1); }

/* ─── TESTIMONIALS ─── */
.testimonials { background: var(--cream); }

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

.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

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

.testi-card p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

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

.testi-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--navy-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}

.testi-author h5 {
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 2px;
}

.testi-author span {
  font-size: 12px;
  color: var(--gray);
}

/* ─── CTA BANNER ─── */
.cta-banner {
  background: linear-gradient(135deg, var(--gold) 0%, #a8832a 100%);
  padding: 80px 5%;
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--navy);
  margin-bottom: 14px;
}

.cta-banner p {
  font-size: 17px;
  color: rgba(10,22,40,0.7);
  margin-bottom: 36px;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: transform 0.2s, opacity 0.2s;
}

.btn-primary:hover { transform: translateY(-2px); opacity: 0.9; }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}

.btn-outline:hover { background: var(--navy); color: var(--white); }

/* ─── FOOTER ─── */
footer {
  background: var(--navy);
  padding: 72px 5% 32px;
}

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

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer-col h5 {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.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.45);
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  transition: background 0.2s, color 0.2s;
}

.social-links a:hover { background: var(--gold); color: var(--navy); }

/* ─── SHIMMER ─── */
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.prop-img {
  min-height: 220px;
}

/* ─── PAGINATION ─── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.pg-btn {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.pg-btn:hover { background: var(--gold); color: var(--navy); transform: translateY(-1px); }

.pg-info {
  font-size: 14px;
  color: var(--gray);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .properties-grid { grid-template-columns: repeat(2, 1fr); }
  .moving-inner { grid-template-columns: 1fr; gap: 48px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .search-box { flex-direction: column; }
  .search-divider { width: 100%; height: 1px; margin: 0; }
  .hero-stats { gap: 28px; }
  .destinations-grid { grid-template-columns: 1fr; }
  .properties-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .cta-btns { flex-direction: column; align-items: center; }
}

/* ─── COOKIE BANNER ─── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9000;
  background: var(--navy);
  border-top: 2px solid var(--gold);
  padding: 20px 5%;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.16,1,.3,1);
  display: flex;
}
#cookie-banner.visible { transform: translateY(0); }

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 220px; }
.cookie-text strong { color: var(--white); font-size: 15px; display: block; margin-bottom: 4px; }
.cookie-text p { color: rgba(255,255,255,.65); font-size: 13px; line-height: 1.5; }

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cookie-link { color: var(--gold); font-size: 13px; text-decoration: underline; white-space: nowrap; }
.cookie-btn {
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
  transition: transform .15s, opacity .15s;
  white-space: nowrap;
}
.cookie-btn:hover { transform: translateY(-1px); opacity: .9; }
.cookie-btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.3); }
.cookie-btn-primary { background: var(--gold); color: var(--navy); }

@media (max-width: 600px) {
  .cookie-inner { gap: 16px; }
  .cookie-actions { width: 100%; justify-content: flex-end; }
}

/* ─── PROPERTY PAGE ─── */
.prop-page { max-width: 1000px; margin: 0 auto; padding: 100px 20px 60px; }
.back-btn { display: inline-flex; align-items: center; gap: 6px; color: var(--navy); font-weight: 600; text-decoration: none; margin-bottom: 28px; opacity: .8; }
.back-btn:hover { opacity: 1; }

.pp-gallery { position: relative; border-radius: 16px; overflow: hidden; background: #111; aspect-ratio: 16/9; }
.pp-gallery img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pp-nav-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,.45); color: #fff; border: none; width: 44px; height: 44px; border-radius: 50%; font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(4px); transition: background .2s; z-index: 2; }
.pp-nav-btn:hover { background: rgba(0,0,0,.7); }
.pp-prev { left: 14px; } .pp-next { right: 14px; }
.pp-dots { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 2; }
.pp-counter { position: absolute; top: 14px; right: 14px; background: rgba(0,0,0,.5); color: #fff; font-size: 12px; padding: 4px 10px; border-radius: 20px; backdrop-filter: blur(4px); }

.pp-header { background: #fff; border-radius: 16px; padding: 28px 32px 24px; margin-bottom: 20px; box-shadow: 0 2px 20px rgba(0,0,0,.06); }
.pp-body { background: #fff; border-radius: 16px; padding: 32px; margin-top: 20px; box-shadow: 0 2px 20px rgba(0,0,0,.06); }
.pp-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.pp-badge { padding: 5px 14px; border-radius: 20px; font-size: 11px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; }
.pp-location { color: var(--gold); font-weight: 600; font-size: 13px; margin-bottom: 8px; }
.pp-title { font-size: clamp(22px,4vw,32px); font-weight: 800; color: var(--navy); margin-bottom: 12px; line-height: 1.25; }
.pp-price { font-size: 28px; font-weight: 800; color: var(--navy); margin-bottom: 24px; }
.pp-stats { display: flex; gap: 24px; flex-wrap: wrap; padding: 20px 0; border-top: 1px solid #f0ece6; border-bottom: 1px solid #f0ece6; margin-bottom: 28px; }
.pp-stat { display: flex; align-items: center; gap: 8px; }
.pp-stat .icon { font-size: 22px; }
.pp-stat .val { font-size: 18px; font-weight: 700; color: var(--navy); line-height: 1.1; }
.pp-stat .lbl { font-size: 11px; color: #9ca3af; }
.pp-section-title { font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #9ca3af; margin: 28px 0 12px; }
.pp-desc { color: #374151; line-height: 1.75; font-size: 15px; }
.pp-details { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; margin-top: 12px; }
.pp-detail { background: #f8f5ef; border-radius: 10px; padding: 12px 14px; }
.pp-detail .dk { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #9ca3af; margin-bottom: 3px; }
.pp-detail .dv { font-size: 14px; font-weight: 700; color: var(--navy); }

.pp-cta { background: linear-gradient(135deg, var(--navy), #1e3a5f); border-radius: 16px; padding: 28px 32px; margin-top: 32px; display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.pp-cta-text { flex: 1; min-width: 200px; }
.pp-cta-text h3 { color: #fff; font-size: 20px; margin-bottom: 6px; }
.pp-cta-text p  { color: rgba(255,255,255,.7); font-size: 14px; }
.pp-cta-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.pp-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; border-radius: 50px; font-weight: 700; font-size: 14px; text-decoration: none; cursor: pointer; transition: transform .15s, opacity .15s; border: none; }
.pp-btn:hover { transform: translateY(-1px); opacity: .92; }
.pp-btn-wa  { background: #25d366; color: #fff; }
.pp-btn-em  { background: var(--gold); color: #fff; }
.pp-btn-src { background: rgba(255,255,255,.15); color: #fff; font-size: 13px; backdrop-filter: blur(4px); }

/* ─── RELATED PROPERTIES ─── */
.related-section {
  background: var(--cream);
  padding: 60px 5%;
}
.related-section .section-label { margin-bottom: 6px; }
.related-section .section-title { margin-bottom: 6px; }
.related-section .properties-grid { margin-top: 32px; }
