/* AVESH REALTY — FINAL CONSOLIDATED STYLESHEET */

/* ===== styles.css ===== */
/* ============================================
   AVESH REALTY — Premium Design System
   ============================================ */

/* ── CSS Custom Properties ── */
:root {
  /* Brand Colors */
  --brand-primary: #6B21A8;
  --brand-primary-dark: #4C1D95;
  --brand-primary-darker: #2E1065;
  --brand-primary-light: #8B5CF6;
  --brand-primary-lighter: #A78BFA;
  --brand-accent: #D946EF;
  --brand-primary-soft: rgba(107, 33, 168, 0.06);
  --brand-primary-medium: rgba(107, 33, 168, 0.12);

  /* Neutral Colors */
  --bg-primary: #FFFFFF;
  --bg-secondary: #F8F7FA;
  --bg-tertiary: #F0EFF4;
  --surface: #FFFFFF;
  --surface-elevated: #FFFFFF;
  --border: #E8E6ED;
  --border-light: #F0EFF4;
  --border-focus: #8B5CF6;

  /* Text Colors */
  --text-primary: #0F0D1A;
  --text-secondary: #3D3A4E;
  --text-tertiary: #6B6880;
  --text-muted: #9C99AD;
  --text-inverse: #FFFFFF;

  /* Status Colors */
  --success: #059669;
  --success-light: #D1FAE5;
  --success-bg: rgba(5, 150, 105, 0.08);
  --warning: #D97706;
  --warning-light: #FEF3C7;
  --error: #DC2626;
  --error-light: #FEE2E2;
  --info: #2563EB;
  --info-light: #DBEAFE;

  /* Status badges */
  --status-available: #059669;
  --status-sold: #DC2626;
  --status-rented: #4F46E5;
  --status-leased: #D97706;

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --font-size-6xl: 3.75rem;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --line-height-tight: 1.2;
  --line-height-snug: 1.35;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.65;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --max-width: 1280px;
  --header-height: 76px;
  --header-height-mobile: 68px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(15, 13, 26, 0.04);
  --shadow-sm: 0 1px 3px rgba(15, 13, 26, 0.06), 0 1px 2px rgba(15, 13, 26, 0.04);
  --shadow-md: 0 4px 12px rgba(15, 13, 26, 0.06), 0 2px 4px rgba(15, 13, 26, 0.04);
  --shadow-lg: 0 12px 32px rgba(15, 13, 26, 0.08), 0 4px 8px rgba(15, 13, 26, 0.04);
  --shadow-xl: 0 24px 56px rgba(15, 13, 26, 0.1), 0 8px 16px rgba(15, 13, 26, 0.04);
  --shadow-glow: 0 0 0 3px rgba(139, 92, 246, 0.18);
  --shadow-brand: 0 8px 24px rgba(107, 33, 168, 0.2);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 150ms var(--ease-out);
  --transition-normal: 250ms var(--ease-out);
  --transition-slow: 400ms var(--ease-out);
  --transition-spring: 500ms var(--ease-spring);

  /* Z-index */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-overlay: 250;
  --z-modal: 300;
  --z-toast: 400;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
  -webkit-tap-highlight-color: transparent;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

ul, ol { list-style: none; }

/* ── Container ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-4);
  }
}

/* ── Typography ── */
.heading-1 {
  font-size: var(--font-size-6xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  letter-spacing: -0.03em;
}

.heading-2 {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  letter-spacing: -0.025em;
}

.heading-3 {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-snug);
  letter-spacing: -0.02em;
}

.heading-4 {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-snug);
  letter-spacing: -0.015em;
}

.heading-5 {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-snug);
}

.text-body {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  color: var(--text-secondary);
}

.text-small {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-normal);
  color: var(--text-tertiary);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::after { opacity: 1; }

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
  color: var(--text-inverse);
  box-shadow: var(--shadow-brand);
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(107, 33, 168, 0.3);
}

.btn-secondary {
  background: var(--brand-primary-soft);
  color: var(--brand-primary);
}

.btn-secondary:hover:not(:disabled) {
  background: var(--brand-primary-medium);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border);
}

.btn-outline:hover:not(:disabled) {
  border-color: var(--text-muted);
  background: var(--bg-secondary);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-tertiary);
}

.btn-ghost:hover:not(:disabled) {
  background: var(--bg-tertiary);
  color: var(--text-primary);
}

.btn-large {
  padding: var(--space-4) var(--space-8);
  font-size: var(--font-size-base);
  border-radius: var(--radius-lg);
}

.btn-small {
  padding: var(--space-2) var(--space-4);
  font-size: var(--font-size-xs);
  border-radius: var(--radius-sm);
}

/* ── Cards ── */
.card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-slow);
}

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

/* ── Badges ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-1) var(--space-3);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-full);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.badge-primary {
  background: var(--brand-primary);
  color: #ffffff;
}

.badge-success {
  background: var(--success);
  color: #ffffff;
}

.badge-warning {
  background: var(--warning);
  color: #ffffff;
}

.badge-error {
  background: var(--error);
  color: #ffffff;
}

.badge-info {
  background: var(--info);
  color: #ffffff;
}

/* ── Form Elements ── */
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-size: var(--font-size-sm);
  color: var(--text-primary);
  background-color: var(--bg-primary);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--brand-primary-light);
  box-shadow: var(--shadow-glow);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-label {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.form-hint {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  margin-top: var(--space-1);
}

.form-group {
  margin-bottom: var(--space-5);
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  cursor: pointer;
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
}

.form-check input[type="checkbox"],
.form-check input[type="radio"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--brand-primary);
  flex-shrink: 0;
  cursor: pointer;
}

/* ── Grid ── */
.grid { display: grid; gap: var(--space-6); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .heading-1 { font-size: var(--font-size-4xl); }
  .heading-2 { font-size: var(--font-size-3xl); }
  .heading-3 { font-size: var(--font-size-2xl); }
  .heading-4 { font-size: var(--font-size-xl); }
}

/* ── Section ── */
.section {
  padding: var(--space-24) 0;
}

.section-alt {
  background-color: var(--bg-secondary);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-16);
}

.section-header h2 {
  margin-bottom: var(--space-4);
}

.section-header p {
  color: var(--text-tertiary);
  font-size: var(--font-size-lg);
}

@media (max-width: 768px) {
  .section {
    padding: var(--space-16) 0;
  }
  .section-header {
    margin-bottom: var(--space-10);
  }
}

/* ── Divider ── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: var(--space-6) 0;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--text-muted); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-tertiary); }

/* ── Animations ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ── Scroll Reveal System ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }

/* ── Skeleton Loading ── */
.skeleton {
  background: linear-gradient(90deg, var(--bg-tertiary) 25%, var(--bg-secondary) 50%, var(--bg-tertiary) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.8s infinite;
  border-radius: var(--radius-sm);
}

/* ── Price Display ── */
.price {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--brand-primary);
  letter-spacing: -0.02em;
}

.price-unit {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-normal);
  color: var(--text-muted);
}

/* ── Toast Notification ── */
.toast-container {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: var(--z-toast);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.toast {
  padding: var(--space-4) var(--space-6);
  background: var(--text-primary);
  color: var(--text-inverse);
  border-radius: var(--radius-lg);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  box-shadow: var(--shadow-xl);
  animation: slideInRight 0.4s var(--ease-out);
}

/* ── Modal ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 13, 26, 0.5);
  backdrop-filter: blur(8px);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--surface);
  border-radius: var(--radius-xl);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.92) translateY(20px);
  transition: transform var(--transition-spring);
  box-shadow: var(--shadow-xl);
}

.modal-overlay.active .modal-content {
  transform: scale(1) translateY(0);
}

/* ── Empty State ── */
.empty-state {
  text-align: center;
  padding: var(--space-20) var(--space-6);
}

.empty-state h3 {
  margin-bottom: var(--space-3);
  color: var(--text-primary);
}

.empty-state p {
  color: var(--text-tertiary);
  max-width: 400px;
  margin: 0 auto var(--space-6);
}

/* ── Share Menu ── */
.share-menu {
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: var(--space-2);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: var(--space-2);
  min-width: 180px;
  z-index: var(--z-dropdown);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px) scale(0.96);
  transition: all var(--transition-fast);
  transform-origin: top right;
}

.share-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* ── Text Utilities ── */
.text-center { text-align: center; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Selection ── */
::selection {
  background: var(--brand-primary-lighter);
  color: var(--text-primary);
}

/* =========================================================
   PHASE 1.3 — CLEAN INTERACTION SYSTEM
   ========================================================= */
.btn {
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: none;
  overflow: visible;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.btn::after { display: none; }
.btn:hover:not(:disabled) { transform: translateY(-1px); }
.btn-primary {
  background: var(--brand-primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(109, 40, 217, .18);
}
.btn-primary:hover:not(:disabled) {
  background: var(--brand-primary-dark);
  box-shadow: 0 10px 24px rgba(109, 40, 217, .24);
}
.btn-secondary {
  background: var(--brand-primary-soft);
  color: var(--brand-primary-dark);
  border-color: rgba(109, 40, 217, .1);
}
.btn-secondary:hover:not(:disabled) { background: #ede9fe; }
.btn-outline {
  background: #fff;
  color: var(--text-primary);
  border-color: #dcd8e5;
}
.btn-outline:hover:not(:disabled) {
  background: #faf9fc;
  border-color: #bcb5ca;
}
.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border-color: transparent;
}
.btn-ghost:hover:not(:disabled) { background: #f5f3f8; color: var(--text-primary); }
.btn-large { min-height: 50px; padding: 13px 22px; border-radius: 14px; font-size: 14px; }
.btn-small { min-height: 36px; padding: 8px 13px; border-radius: 10px; font-size: 12px; }
.btn-light { background:#fff; color:var(--brand-primary-dark); border-color:#fff; }
.btn-light:hover:not(:disabled) { background:#f6f2ff; box-shadow:0 10px 28px rgba(0,0,0,.12); }

button, a, input, select { -webkit-tap-highlight-color: transparent; }

@media (max-width: 480px) {
  .btn-large { min-height: 48px; padding: 12px 18px; }
}


/* ===== header.css ===== */
/* ============================================
   AVESH REALTY — Premium Header & Navigation
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: var(--z-sticky);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition-normal);
}

.header .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* ── Logo ── */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-lg);
  box-shadow: var(--shadow-brand);
  position: relative;
  overflow: hidden;
}

.logo-mark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, transparent 60%);
}

.logo-text {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1;
}

.logo-text span {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Desktop Navigation ── */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.nav-link {
  padding: var(--space-2) var(--space-3);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  white-space: nowrap;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
  border-radius: 1px;
  transition: left var(--transition-normal), right var(--transition-normal);
}

.nav-link:hover {
  color: var(--brand-primary);
}

.nav-link:hover::after {
  left: var(--space-3);
  right: var(--space-3);
}

.nav-link.active {
  color: var(--brand-primary);
  background: var(--brand-primary-soft);
}

.nav-link.active::after {
  left: var(--space-3);
  right: var(--space-3);
}

/* ── Dropdown ── */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-2) var(--space-3);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.dropdown-toggle:hover {
  color: var(--brand-primary);
  background: var(--brand-primary-soft);
}

.dropdown-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}

.dropdown.active .dropdown-toggle svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + var(--space-2));
  left: 50%;
  transform: translateX(-50%) translateY(-8px) scale(0.96);
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: var(--space-2);
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  z-index: var(--z-dropdown);
  transform-origin: top center;
}

.dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.dropdown-item:hover {
  background: var(--brand-primary-soft);
  color: var(--brand-primary);
}

.dropdown-item svg {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: color var(--transition-fast);
}

.dropdown-item:hover svg {
  color: var(--brand-primary);
}

/* ── Header Actions ── */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  position: relative;
  z-index: 2;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-5);
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp svg {
  width: 18px;
  height: 18px;
}

/* ── Mobile Toggle ── */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 5px;
  padding: var(--space-2);
  background: var(--bg-tertiary);
  border-radius: var(--radius-md);
  position: relative;
  z-index: 2;
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Mobile Navigation ── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(30px);
  z-index: calc(var(--z-sticky) - 1);
  overflow-y: auto;
  padding: calc(var(--header-height) + var(--space-6)) var(--space-6) var(--space-6);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.mobile-nav.active {
  display: block;
  opacity: 1;
  visibility: visible;
}

.mobile-nav-section {
  margin-bottom: var(--space-6);
  animation: fadeInUp 0.4s var(--ease-out) both;
}

.mobile-nav-section:nth-child(1) { animation-delay: 0.05s; }
.mobile-nav-section:nth-child(2) { animation-delay: 0.1s; }
.mobile-nav-section:nth-child(3) { animation-delay: 0.15s; }

.mobile-nav-title {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: var(--space-3);
}

.mobile-nav-link {
  display: block;
  padding: var(--space-3) 0;
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-light);
  transition: color var(--transition-fast);
}

.mobile-nav-link:hover {
  color: var(--brand-primary);
}

.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--border);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .nav-desktop,
  .header-actions .btn-whatsapp {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .header {
    height: var(--header-height-mobile);
  }

  .mobile-nav {
    padding-top: calc(var(--header-height-mobile) + var(--space-6));
  }
}

@media (min-width: 1025px) {
  .mobile-nav {
    display: none !important;
  }
}

/* Phase 1.4 compact navigation */
.dropdown-menu-wide { min-width: 230px; }
.dropdown-group-label { display: block; padding: 8px 12px 4px; color: var(--text-muted); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.mobile-nav-actions-compact { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.mobile-nav-actions-compact .btn, .mobile-nav-actions-compact .btn-whatsapp { min-height: 40px; justify-content: center; padding: 9px 12px; }
@media (max-width: 1180px) {
  .nav-desktop { gap: 0; }
  .nav-link, .dropdown-toggle { padding-left: 8px; padding-right: 8px; font-size: 12px; }
  .header-actions .btn-whatsapp { padding-left: 13px; padding-right: 13px; }
}


/* ===== footer.css ===== */
/* ============================================
   AVESH REALTY — Premium Footer
   ============================================ */

.footer {
  background: linear-gradient(180deg, #0F0D1A 0%, #1a1730 100%);
  color: rgba(255, 255, 255, 0.65);
  padding-top: var(--space-20);
  padding-bottom: var(--space-8);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
}

.footer a {
  color: rgba(255, 255, 255, 0.55);
  transition: all var(--transition-fast);
  display: block;
}

.footer a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr;
  gap: var(--space-12);
  margin-bottom: var(--space-16);
}

/* ── Footer Brand ── */
.footer-brand .logo-text {
  color: #ffffff;
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-5);
  display: inline-flex;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-6);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.footer-social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  color: rgba(255, 255, 255, 0.6);
}

.footer-social a:hover {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  color: white;
  transform: translateY(-3px);
}

/* ── Footer Links ── */
.footer-title {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  color: #ffffff;
  margin-bottom: var(--space-6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-links a {
  font-size: var(--font-size-sm);
  width: fit-content;
}

/* ── Footer Contact ── */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--brand-primary-lighter);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item div {
  font-size: var(--font-size-sm);
}

.footer-contact-item .label {
  color: rgba(255, 255, 255, 0.4);
  font-size: var(--font-size-xs);
  margin-bottom: var(--space-1);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-contact-item .value {
  color: rgba(255, 255, 255, 0.75);
  font-weight: var(--font-weight-medium);
}

/* ── Footer Bottom ── */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-bottom p {
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-6);
}

.footer-bottom-links a {
  font-size: var(--font-size-xs);
  width: fit-content;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-10);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer {
    padding-top: var(--space-16);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    gap: var(--space-4);
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Phase 1.4 compact footer */
.footer-grid-compact { grid-template-columns: 1.4fr repeat(3,1fr); gap: 42px; }
.footer-logo { margin-bottom: 16px; }
@media (max-width: 900px) { .footer-grid-compact { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 540px) { .footer-grid-compact { grid-template-columns: 1fr 1fr; gap: 22px 18px; } .footer-brand { grid-column: 1/-1; } .footer-title { margin-bottom: 10px; } .footer-links { gap: 8px; } }


/* ===== pages.css ===== */
/* ============================================
   AVESH REALTY — Premium Page Styles
   ============================================ */

/* ── HERO SECTION ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--space-16);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75);
  transform: scale(1.02);
  transition: transform 10s ease;
}

.hero:hover .hero-bg img {
  transform: scale(1.06);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 13, 26, 0.5) 0%,
    rgba(15, 13, 26, 0.2) 40%,
    rgba(15, 13, 26, 0.5) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: var(--header-height);
}

.hero-title {
  color: #ffffff;
  margin-bottom: var(--space-4);
  max-width: 700px;
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-10);
  max-width: 560px;
  line-height: var(--line-height-relaxed);
}

/* ── SEARCH BOX ── */
.search-box {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-2xl);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255,255,255,0.1) inset;
  padding: var(--space-2);
  max-width: 860px;
}

.search-form {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.search-field {
  flex: 1;
  padding: var(--space-4) var(--space-6);
  text-align: left;
  position: relative;
}

.search-field:first-child {
  flex: 1.4;
}

.search-label {
  display: block;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-1);
}

.search-input-wrapper {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.search-input-wrapper svg {
  color: var(--brand-primary);
  flex-shrink: 0;
  opacity: 0.7;
}

.search-input {
  width: 100%;
  border: none;
  background: transparent;
  font-size: var(--font-size-base);
  color: var(--text-primary);
  outline: none;
  padding: 0;
  font-weight: var(--font-weight-medium);
}

.search-input::placeholder {
  color: var(--text-muted);
  font-weight: var(--font-weight-normal);
}

.search-select {
  width: 100%;
  border: none;
  background: transparent;
  font-size: var(--font-size-base);
  color: var(--text-primary);
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  font-weight: var(--font-weight-medium);
  padding-right: var(--space-4);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B6880' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
}

.search-divider {
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--border), transparent);
  margin: var(--space-4) 0;
}

.search-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0 var(--space-8);
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
  color: white;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-xl);
  transition: all var(--transition-normal);
  white-space: nowrap;
  margin: var(--space-2);
  box-shadow: var(--shadow-brand);
  position: relative;
  overflow: hidden;
}

.search-button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, transparent 50%);
}

.search-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(107, 33, 168, 0.35);
}

.search-button:active {
  transform: translateY(0);
}

/* Search Results Dropdown */
.search-results {
  position: absolute;
  top: calc(100% + var(--space-2));
  left: var(--space-6);
  right: var(--space-6);
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  z-index: var(--z-dropdown);
  max-height: 400px;
  overflow-y: auto;
  display: none;
  text-align: left;
}

.search-section { padding: var(--space-3); }

.search-section-title {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: var(--space-2) var(--space-4);
}

.search-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  color: var(--text-primary);
}

.search-item:hover {
  background: var(--brand-primary-soft);
}

.search-item svg {
  color: var(--text-muted);
  flex-shrink: 0;
}

.search-item-title {
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-sm);
}

.search-item-subtitle {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
}

/* ── HERO STATS ── */
.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-10);
  margin-top: var(--space-10);
}

.hero-stat {
  text-align: left;
}

.hero-stat-number {
  display: block;
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-stat-label {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.65);
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
}

/* ── CATEGORY SHORTCUTS ── */
.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-5);
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-8) var(--space-4);
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

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

.category-card:hover::before {
  transform: scaleX(1);
}

.category-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  background: linear-gradient(135deg, var(--brand-primary-soft), var(--brand-primary-medium));
  color: var(--brand-primary);
  transition: all var(--transition-normal);
}

.category-card:hover .category-icon {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  color: white;
  box-shadow: var(--shadow-brand);
}

.category-card h4 {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-1);
  color: var(--text-primary);
}

.category-card p {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
}

/* ── PROPERTY CARDS ── */
.property-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-slow);
  position: relative;
}

.property-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  opacity: 0;
  transition: opacity var(--transition-slow);
  pointer-events: none;
}

.property-card:hover {
  transform: translateY(-8px);
  border-color: var(--border);
}

.property-card:hover::before {
  opacity: 1;
}

.property-card-dimmed {
  opacity: 0.65;
}

.property-card-dimmed:hover {
  opacity: 0.85;
}

.property-card-link {
  display: block;
}

.property-card-image-wrapper {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.property-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.property-card:hover .property-card-image {
  transform: scale(1.06);
}

.property-card-badges {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  z-index: 2;
}

.property-card-badges .badge {
  background: var(--brand-primary);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
  font-weight: var(--font-weight-semibold);
}

.property-card-badges .badge-success {
  background: var(--success);
  color: #ffffff;
}

.property-card-badges .badge-warning {
  background: var(--warning);
  color: #ffffff;
}

.property-card-badges .badge-error {
  background: var(--error);
  color: #ffffff;
}

.property-card-transaction {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  padding: var(--space-1) var(--space-3);
  background: #ffffff;
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.property-card-body {
  padding: var(--space-5);
  position: relative;
  z-index: 1;
}

.property-card-title {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-2);
  line-height: var(--line-height-snug);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--text-primary);
}

.property-card-location {
  font-size: var(--font-size-sm);
  color: var(--text-tertiary);
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.property-card-location svg {
  color: var(--brand-primary-light);
  flex-shrink: 0;
}

.property-card-specs {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
  flex-wrap: wrap;
}

.property-card-spec {
  font-size: var(--font-size-xs);
  color: var(--text-tertiary);
  padding: var(--space-1) var(--space-3);
  background: var(--bg-secondary);
  border-radius: var(--radius-full);
  font-weight: var(--font-weight-medium);
}

.property-card-price {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-bottom: var(--space-2);
}

.property-card-price .price {
  font-size: var(--font-size-lg);
}

.property-card-possession {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  font-weight: var(--font-weight-medium);
}

.property-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-3) var(--space-5);
  border-top: 1px solid var(--border-light);
  gap: var(--space-2);
  position: relative;
  z-index: 1;
}

/* ── Properties Grid ── */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.properties-grid-compact {
  grid-template-columns: repeat(3, 1fr);
}

/* ── PROPERTIES PAGE ── */
.properties-page {
  padding: var(--space-8) 0 var(--space-24);
}

.page-header {
  padding: calc(var(--header-height) + var(--space-12)) 0 var(--space-10);
  background: linear-gradient(135deg, var(--brand-primary-darker) 0%, var(--brand-primary-dark) 50%, var(--brand-primary) 100%);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header h1 {
  color: #ffffff;
  position: relative;
  margin-bottom: var(--space-2);
}

.page-header p {
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  font-size: var(--font-size-lg);
}

/* ── PROPERTIES LAYOUT ── */
.properties-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-8);
  margin-top: var(--space-8);
}

/* ── FILTERS SIDEBAR ── */
.filters-sidebar {
  position: sticky;
  top: calc(var(--header-height) + var(--space-6));
  height: fit-content;
  max-height: calc(100vh - var(--header-height) - var(--space-12));
  overflow-y: auto;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
}

.filters-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-6);
}

.filters-header h3 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
}

.filter-group {
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--border-light);
}

.filter-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.filter-title {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-3);
  color: var(--text-primary);
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.filter-options-inline {
  flex-direction: row;
  flex-wrap: wrap;
}

.filter-chip {
  display: inline-flex;
  cursor: pointer;
}

.filter-chip input {
  position: absolute;
  opacity: 0;
}

.filter-chip span {
  padding: var(--space-2) var(--space-4);
  background: var(--bg-secondary);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  transition: all var(--transition-fast);
  color: var(--text-secondary);
}

.filter-chip:hover span {
  border-color: var(--brand-primary-lighter);
}

.filter-chip input:checked + span {
  background: var(--brand-primary-soft);
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}

.filter-range {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.filter-range-sep {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  flex-shrink: 0;
}

/* ── TOOLBAR ── */
.properties-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  padding: var(--space-4) var(--space-6);
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
}

.toolbar-search {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex: 1;
  max-width: 400px;
  position: relative;
}

.toolbar-search svg {
  color: var(--text-muted);
}

.toolbar-search-input {
  width: 100%;
  border: none;
  background: transparent;
  font-size: var(--font-size-sm);
  outline: none;
  color: var(--text-primary);
  font-weight: var(--font-weight-medium);
}

.toolbar-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

/* ── ACTIVE FILTERS ── */
.active-filters {
  margin-bottom: var(--space-4);
}

.active-filters-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.active-filter-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-3);
  background: var(--brand-primary-soft);
  color: var(--brand-primary);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  transition: all var(--transition-fast);
}

.active-filter-tag:hover {
  background: var(--brand-primary-medium);
}

.active-filter-tag button {
  display: flex;
  color: inherit;
  opacity: 0.6;
  transition: opacity var(--transition-fast);
  padding: 1px;
}

.active-filter-tag button:hover {
  opacity: 1;
}

/* ── RESULTS COUNT ── */
.results-count {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
}

/* ── PAGINATION ── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-12);
}

.pagination-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 var(--space-3);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--text-secondary);
  background: var(--surface);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.pagination-btn:hover:not(:disabled):not(.active) {
  border-color: var(--brand-primary-lighter);
  color: var(--brand-primary);
  background: var(--brand-primary-soft);
}

.pagination-btn.active {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-dark));
  border-color: var(--brand-primary);
  color: white;
  box-shadow: var(--shadow-brand);
}

.pagination-btn:disabled,
.pagination-btn.disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.pagination-ellipsis {
  color: var(--text-muted);
  padding: 0 var(--space-2);
  font-weight: var(--font-weight-semibold);
}

/* ── LOCATION GRID ── */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

.location-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-slow);
  position: relative;
}

.location-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.location-card-image-wrapper {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.location-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.location-card:hover .location-card-image {
  transform: scale(1.08);
}

.location-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 13, 26, 0.85) 0%, rgba(15, 13, 26, 0.1) 60%);
  border-radius: var(--radius-xl);
}

.location-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-6);
  color: white;
}

.location-card-content h4 {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-1);
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.location-card-content p {
  font-size: var(--font-size-sm);
  opacity: 0.85;
}

/* ── TYPE GRID ── */
.type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.type-card {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--surface);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
  font-size: var(--font-size-sm);
}

.type-card:hover {
  border-color: var(--brand-primary);
  background: var(--brand-primary-soft);
  color: var(--brand-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.type-icon {
  width: 44px;
  height: 44px;
  background: var(--brand-primary-soft);
  color: var(--brand-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-normal);
}

.type-card:hover .type-icon {
  background: var(--brand-primary);
  color: white;
}

/* ── WHY CHOOSE / FEATURES ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.feature-card {
  padding: var(--space-8);
  text-align: center;
  background: var(--surface);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-xl);
  transition: all var(--transition-slow);
}

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

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-5);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-primary-soft), var(--brand-primary-medium));
  color: var(--brand-primary);
  border-radius: var(--radius-xl);
  transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  color: white;
  box-shadow: var(--shadow-brand);
}

.feature-card h4 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-2);
  color: var(--text-primary);
}

.feature-card p {
  font-size: var(--font-size-sm);
  color: var(--text-tertiary);
  line-height: var(--line-height-relaxed);
}

/* ── CTA CARD ── */
.cta-card {
  background: linear-gradient(135deg, var(--brand-primary-darker) 0%, var(--brand-primary) 50%, var(--brand-accent) 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  border-radius: var(--radius-2xl);
  padding: var(--space-16) var(--space-12);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  color: white;
  margin-bottom: var(--space-4);
  font-size: var(--font-size-4xl);
}

.cta-content p {
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto var(--space-10);
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.cta-actions .btn-primary {
  background: #ffffff;
  color: var(--brand-primary-dark);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.cta-actions .btn-primary:hover {
  background: var(--bg-secondary);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.cta-actions .btn-outline {
  border-color: rgba(255,255,255,0.4);
  color: white;
}

.cta-actions .btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
}

/* ── CONTACT CARDS ── */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-10) var(--space-5);
  background: var(--surface);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-xl);
  transition: all var(--transition-slow);
}

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

.contact-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  transition: all var(--transition-normal);
}

.contact-card-icon.whatsapp {
  background: linear-gradient(135deg, #DCF8C6, #b8f0a0);
  color: #25D366;
}

.contact-card-icon.phone {
  background: linear-gradient(135deg, var(--brand-primary-soft), var(--brand-primary-medium));
  color: var(--brand-primary);
}

.contact-card-icon.email {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  color: var(--info);
}

.contact-card-icon.instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #bc1888);
  color: white;
}

.contact-card:hover .contact-card-icon {
  transform: scale(1.1);
}

.contact-card h4 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-1);
}

.contact-card p {
  font-size: var(--font-size-sm);
  color: var(--text-tertiary);
}

/* ── PROPERTY DETAIL ── */
.property-detail {
  padding-bottom: var(--space-24);
}

.property-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-2);
  margin-bottom: var(--space-10);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.gallery-main {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-xl);
  cursor: zoom-in;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.gallery-main:hover img {
  transform: scale(1.03);
}

.gallery-count {
  position: absolute;
  bottom: var(--space-4);
  right: var(--space-4);
  padding: var(--space-2) var(--space-4);
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(8px);
  color: white;
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.gallery-count:hover {
  background: rgba(0,0,0,0.8);
}

.gallery-thumbnails {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: var(--space-2);
}

.gallery-thumb {
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-out);
}

.gallery-thumb:hover img {
  transform: scale(1.08);
}

.gallery-thumb-more {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.6);
  color: white;
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-lg);
  border-radius: var(--radius-lg);
}

/* Property Layout */
.property-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--space-10);
}

.property-header {
  margin-bottom: var(--space-8);
}

.property-badges {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
  flex-wrap: wrap;
}

.property-title {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-4);
  line-height: var(--line-height-tight);
  letter-spacing: -0.025em;
}

.property-location {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--text-tertiary);
  margin-bottom: var(--space-3);
  font-size: var(--font-size-base);
}

.property-meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--text-muted);
  font-size: var(--font-size-sm);
}

.property-price-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-8);
  background: linear-gradient(135deg, var(--brand-primary-muted, #faf5ff) 0%, #f5f0ff 100%);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-10);
  border: 1px solid rgba(139, 92, 246, 0.1);
}

.price-large {
  font-size: var(--font-size-5xl);
  letter-spacing: -0.03em;
}

.property-id {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  font-weight: var(--font-weight-medium);
  padding: var(--space-1) var(--space-3);
  background: rgba(139, 92, 246, 0.06);
  border-radius: var(--radius-full);
}

.property-section {
  margin-bottom: var(--space-10);
  padding-bottom: var(--space-10);
  border-bottom: 1px solid var(--border-light);
}

.property-section:last-child {
  border-bottom: none;
}

.property-section-title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.property-section-title::before {
  content: '';
  width: 4px;
  height: 24px;
  background: linear-gradient(180deg, var(--brand-primary), var(--brand-accent));
  border-radius: 2px;
}

.property-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}

.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-4) var(--space-5);
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: all var(--transition-fast);
}

.detail-item:hover {
  border-color: var(--border);
  background: var(--bg-tertiary);
}

.detail-label {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
}

.detail-value {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
}

.property-description {
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  color: var(--text-secondary);
  white-space: pre-line;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.amenity-item svg {
  color: var(--success);
  flex-shrink: 0;
}

.suitable-for-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.landmarks-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.landmark-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
}

.landmark-distance {
  margin-left: auto;
  color: var(--text-muted);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  padding: var(--space-1) var(--space-3);
  background: var(--bg-tertiary);
  border-radius: var(--radius-full);
}

.floor-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.floor-plan-card {
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.floor-plan-card:hover {
  border-color: var(--brand-primary-lighter);
  box-shadow: var(--shadow-md);
}

.floor-plan-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.floor-plan-card span {
  display: block;
  padding: var(--space-3);
  font-size: var(--font-size-sm);
  text-align: center;
  font-weight: var(--font-weight-medium);
  color: var(--text-secondary);
}

/* Property Sidebar */
.property-sidebar {
  position: sticky;
  top: calc(var(--header-height) + var(--space-6));
  height: fit-content;
}

.enquiry-card {
  padding: var(--space-8);
  background: var(--surface);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition-normal);
}

.enquiry-card:hover {
  box-shadow: var(--shadow-lg);
}

.enquiry-card h3 {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-3);
}

.enquiry-card > p {
  font-size: var(--font-size-sm);
  color: var(--text-tertiary);
  margin-bottom: var(--space-6);
  line-height: var(--line-height-relaxed);
}

.enquiry-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.enquiry-actions .btn {
  justify-content: center;
}

/* Config Cards */
.configurations-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.config-card {
  padding: var(--space-6);
  background: var(--bg-secondary);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-xl);
  transition: all var(--transition-normal);
}

.config-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.config-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-4);
}

.config-header h4 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
}

.config-details {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  font-size: var(--font-size-sm);
  color: var(--text-tertiary);
}

.config-details span {
  padding: var(--space-1) var(--space-3);
  background: var(--bg-tertiary);
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
}

.config-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.config-availability {
  font-size: var(--font-size-sm);
  color: var(--success);
  font-weight: var(--font-weight-semibold);
}

/* ── ABOUT PAGE ── */
.about-hero {
  padding: calc(var(--header-height) + var(--space-16)) 0 var(--space-16);
  background: linear-gradient(135deg, var(--brand-primary-darker) 0%, var(--brand-primary-dark) 50%, var(--brand-primary) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.about-hero h1 {
  color: white;
  margin-bottom: var(--space-4);
  position: relative;
}

.about-hero p {
  font-size: var(--font-size-xl);
  color: rgba(255,255,255,0.8);
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}

.about-content {
  padding: var(--space-24) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.about-text h2 {
  margin-bottom: var(--space-6);
  font-size: var(--font-size-3xl);
}

.about-text p {
  color: var(--text-tertiary);
  margin-bottom: var(--space-5);
  line-height: var(--line-height-relaxed);
  font-size: var(--font-size-base);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  margin-top: var(--space-10);
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.about-feature svg {
  color: var(--brand-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.about-feature h4 {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-1);
}

.about-feature p {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  margin: 0;
}

.about-image {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-image img {
  width: 100%;
  height: auto;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.service-card {
  padding: var(--space-10) var(--space-6);
  background: var(--surface);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-xl);
  text-align: center;
  transition: all var(--transition-slow);
}

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

.service-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-5);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-primary-soft), var(--brand-primary-medium));
  color: var(--brand-primary);
  border-radius: var(--radius-xl);
  transition: all var(--transition-normal);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  color: white;
  box-shadow: var(--shadow-brand);
}

.service-card h4 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-2);
}

.service-card p {
  font-size: var(--font-size-sm);
  color: var(--text-tertiary);
  line-height: var(--line-height-relaxed);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}

.area-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
  background: var(--surface);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-base);
  transition: all var(--transition-normal);
  color: var(--text-primary);
}

.area-card:hover {
  background: var(--brand-primary-soft);
  border-color: var(--brand-primary);
  color: var(--brand-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ── CONTACT PAGE ── */
.contact-page {
  padding: var(--space-24) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
}

.contact-info h2 {
  margin-bottom: var(--space-4);
  font-size: var(--font-size-3xl);
}

.contact-lead {
  color: var(--text-tertiary);
  margin-bottom: var(--space-10);
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
}

.contact-item:hover {
  background: var(--bg-secondary);
}

.contact-item-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-primary-soft), var(--brand-primary-medium));
  color: var(--brand-primary);
  border-radius: var(--radius-lg);
  flex-shrink: 0;
  font-size: var(--font-size-lg);
}

.contact-item h4 {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-1);
}

.contact-item p {
  font-size: var(--font-size-sm);
  color: var(--text-tertiary);
  margin: 0;
}

.contact-item a {
  color: var(--brand-primary);
  font-weight: var(--font-weight-medium);
}

.contact-form-wrapper {
  padding: var(--space-10);
  background: var(--surface);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-md);
}

.contact-form-wrapper h3 {
  margin-bottom: var(--space-8);
  font-size: var(--font-size-2xl);
}

/* ── LIST PROPERTY PAGE ── */
.list-property-page {
  padding: var(--space-8) 0 var(--space-24);
}

.list-property-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-12);
}

.list-property-header h1 {
  margin-bottom: var(--space-4);
}

.list-property-header p {
  color: var(--text-tertiary);
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
}

/* Form Progress */
.form-progress {
  margin-bottom: var(--space-12);
}

.form-progress-bar {
  height: 6px;
  background: var(--bg-tertiary);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: var(--space-6);
}

.form-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
  border-radius: 3px;
  transition: width var(--transition-slow);
}

.form-progress-steps {
  display: flex;
  justify-content: space-between;
}

.form-step {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.form-step-number {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-tertiary);
  border-radius: 50%;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  transition: all var(--transition-fast);
}

.form-step.active {
  color: var(--brand-primary);
}

.form-step.active .form-step-number {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  color: white;
  box-shadow: var(--shadow-brand);
}

.form-step.completed {
  color: var(--success);
}

.form-step.completed .form-step-number {
  background: var(--success);
  color: white;
}

/* Form Steps */
.form-step-content {
  display: none;
}

.form-step-content.active {
  display: block;
  animation: fadeInUp 0.4s var(--ease-out);
}

.form-step-header {
  margin-bottom: var(--space-10);
}

.form-step-header h3 {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-2);
}

.form-step-header p {
  color: var(--text-tertiary);
  font-size: var(--font-size-base);
}

/* Radio Group */
.radio-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-3);
}

.radio-card {
  display: block;
  cursor: pointer;
}

.radio-card input {
  position: absolute;
  opacity: 0;
}

.radio-card span {
  display: block;
  padding: var(--space-5);
  background: var(--bg-secondary);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-lg);
  text-align: center;
  font-weight: var(--font-weight-semibold);
  transition: all var(--transition-fast);
  color: var(--text-secondary);
}

.radio-card:hover span {
  border-color: var(--brand-primary-lighter);
}

.radio-card input:checked + span {
  border-color: var(--brand-primary);
  background: var(--brand-primary-soft);
  color: var(--brand-primary);
  box-shadow: var(--shadow-glow);
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2);
}

/* Form Navigation */
.form-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: var(--space-12);
  padding-top: var(--space-8);
  border-top: 1px solid var(--border-light);
}

/* Review Section */
.review-section {
  margin-bottom: var(--space-6);
  padding: var(--space-6);
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}

.review-section h4 {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-4);
  color: var(--brand-primary);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}

.review-grid div {
  font-size: var(--font-size-sm);
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--border-light);
}

.review-grid div span {
  color: var(--text-muted);
}

/* Form Success */
.form-success {
  text-align: center;
  padding: var(--space-20) var(--space-6);
}

.form-success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-6);
  background: linear-gradient(135deg, var(--success), #34d399);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.25);
}

.form-success h2 {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-4);
}

.form-success p {
  color: var(--text-tertiary);
  margin-bottom: var(--space-10);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  font-size: var(--font-size-lg);
}

.form-success-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* ── LEGAL PAGES ── */
.legal-page {
  padding: var(--space-8) 0 var(--space-24);
  max-width: 800px;
  margin: 0 auto;
}

.legal-page h1 {
  margin-bottom: var(--space-4);
}

.legal-page > p:first-of-type {
  color: var(--text-muted);
  margin-bottom: var(--space-6);
  font-size: var(--font-size-sm);
}

.legal-page h2 {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  margin: var(--space-10) 0 var(--space-4);
  color: var(--text-primary);
}

.legal-page p {
  color: var(--text-tertiary);
  margin-bottom: var(--space-4);
  line-height: var(--line-height-relaxed);
}

.legal-page ul {
  margin-left: var(--space-6);
  margin-bottom: var(--space-6);
}

.legal-page ul li {
  list-style: disc;
  color: var(--text-tertiary);
  margin-bottom: var(--space-2);
  line-height: var(--line-height-relaxed);
}

.legal-notice {
  padding: var(--space-6);
  background: linear-gradient(135deg, var(--warning-light), #fef9c3);
  border-left: 4px solid var(--warning);
  border-radius: var(--radius-lg);
  margin: var(--space-8) 0;
}

.legal-notice p {
  margin: 0;
  color: var(--text-primary);
  font-weight: var(--font-weight-medium);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .properties-layout {
    grid-template-columns: 1fr;
  }

  .filters-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: var(--z-modal);
    max-height: 100vh;
    border-radius: 0;
    transform: translateX(-100%);
    transition: transform var(--transition-normal);
    padding-top: calc(var(--header-height) + var(--space-6));
  }

  .filters-sidebar.mobile-active {
    transform: translateX(0);
  }

  .filters-close {
    position: absolute;
    top: calc(var(--header-height-mobile) + var(--space-2));
    right: var(--space-4);
    z-index: 10;
  }

  .property-layout {
    grid-template-columns: 1fr;
  }

  .property-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-thumbnails {
    display: none;
  }

  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .type-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: var(--space-10); }
  .contact-grid { grid-template-columns: 1fr; gap: var(--space-12); }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-bottom: var(--space-10);
    padding-top: var(--space-8);
  }

  .hero-bg img {
    filter: brightness(0.65);
  }

  .hero-title {
    font-size: var(--font-size-3xl);
    max-width: 100%;
  }

  .hero-subtitle {
    font-size: var(--font-size-base);
    max-width: 100%;
  }

  .search-box {
    border-radius: var(--radius-xl);
    padding: var(--space-3);
  }

  .search-form {
    flex-direction: column;
    gap: var(--space-1);
  }

  .search-field {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    border-bottom: 1px solid var(--border-light);
  }

  .search-field:last-of-type {
    border-bottom: none;
  }

  .search-divider {
    display: none;
  }

  .search-button {
    width: 100%;
    margin: var(--space-1) 0 0;
    padding: var(--space-4);
    border-radius: var(--radius-lg);
  }

  .hero-stats {
    gap: var(--space-6);
    margin-top: var(--space-8);
  }

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

  .hero-stat-divider {
    display: none;
  }

  .hero-stat-number {
    font-size: var(--font-size-xl);
  }

  .hero-stat-label {
    font-size: var(--font-size-xs);
  }

  .category-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
  .locations-grid { grid-template-columns: 1fr; }
  .type-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; gap: var(--space-4); }
  .properties-grid,
  .properties-grid-compact { grid-template-columns: 1fr; gap: var(--space-5); }
  .contact-cards { grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
  .services-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
  .about-features { grid-template-columns: 1fr; }

  .property-title { font-size: var(--font-size-2xl); }
  .price-large { font-size: var(--font-size-3xl); }
  .property-details-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr; }
  .floor-plans-grid { grid-template-columns: 1fr; }

  .properties-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-3);
    padding: var(--space-4);
  }

  .toolbar-search { max-width: none; }
  .toolbar-actions { justify-content: space-between; }

  .page-header {
    padding: calc(var(--header-height) + var(--space-8)) 0 var(--space-8);
  }

  .page-header h1 { font-size: var(--font-size-3xl); }
  .page-header p { font-size: var(--font-size-base); }

  .cta-card { padding: var(--space-10) var(--space-5); border-radius: var(--radius-xl); }
  .cta-content h2 { font-size: var(--font-size-2xl); }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; }

  .form-progress-steps .form-step span { display: none; }
  .form-step-number { width: 28px; height: 28px; font-size: var(--font-size-xs); }
  .radio-group { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: 1fr; }
  .form-success-actions { flex-direction: column; }
  .form-success h2 { font-size: var(--font-size-3xl); }

  .contact-form-wrapper { padding: var(--space-6); border-radius: var(--radius-xl); }
  .about-hero { padding: calc(var(--header-height) + var(--space-10)) 0 var(--space-10); }
  .section { padding: var(--space-12) 0; }
  .section-header { margin-bottom: var(--space-8); }

  .list-property-page { padding-top: var(--space-6); }
  .legal-page { padding-top: var(--space-6); padding-bottom: var(--space-16); }

  .contact-page { padding: var(--space-6) 0; }
  .contact-grid { gap: var(--space-8); }
  .about-content { padding: var(--space-12) 0; }
  .about-grid { gap: var(--space-8); }
}

@media (max-width: 480px) {
  .category-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
}

/* ── PHASE 1 FUNCTIONAL REPAIRS ── */
.mobile-filter-close,
.mobile-filter-footer,
.mobile-property-actions {
  display: none;
}

.gallery-main {
  border: 0;
  padding: 0;
  background: transparent;
  width: 100%;
  cursor: pointer;
  text-align: left;
}

.media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
  background: rgba(10, 8, 18, 0.92);
}

.media-lightbox img {
  max-width: min(1100px, 96vw);
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
}

.media-lightbox-close {
  position: fixed;
  top: var(--space-5);
  right: var(--space-5);
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  color: white;
  font-size: 30px;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .filters-sidebar.mobile-active {
    display: flex;
    flex-direction: column;
  }

  .filters-sidebar.mobile-active .filters-content {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 96px;
  }

  .mobile-filter-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 0;
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-radius: var(--radius-full);
    font-size: 26px;
    cursor: pointer;
  }

  .mobile-filter-footer {
    display: block;
    position: sticky;
    bottom: 0;
    padding: var(--space-4);
    background: var(--surface);
    border-top: 1px solid var(--border-light);
    z-index: 3;
  }
}

@media (max-width: 768px) {
  .property-price-section {
    align-items: flex-start;
    flex-direction: column;
    gap: var(--space-4);
    padding: var(--space-6);
  }

  .price-large {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
    line-height: 1.15;
  }

  .property-id {
    align-self: flex-start;
  }

  .property-detail {
    padding-bottom: 82px;
  }

  .mobile-property-actions {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 500;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: var(--space-3);
    padding: var(--space-3) max(var(--space-4), env(safe-area-inset-right)) calc(var(--space-3) + env(safe-area-inset-bottom)) max(var(--space-4), env(safe-area-inset-left));
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(14px);
    border-top: 1px solid var(--border-light);
    box-shadow: 0 -8px 24px rgba(24,16,48,0.08);
  }

  .mobile-property-actions .btn {
    justify-content: center;
  }

  .floor-plans-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


/* =========================================================
   PHASE 1.2 — PREMIUM MOTION, MEDIA-LED PROPERTY DETAIL,
   AND OWNER LISTING EXPLAINER PAGE
   ========================================================= */
.hero { isolation:isolate; }
.hero-bg img { animation: heroCinematic 18s ease-in-out infinite alternate; }
@keyframes heroCinematic { from { transform:scale(1.02) translate3d(0,0,0); } to { transform:scale(1.09) translate3d(-1.2%, -0.8%, 0); } }
.hero-orb { position:absolute; border-radius:999px; pointer-events:none; z-index:1; filter:blur(1px); opacity:.42; mix-blend-mode:screen; }
.hero-orb-one { width:260px; height:260px; right:7%; top:18%; background:radial-gradient(circle, rgba(196,181,253,.55), transparent 68%); animation:heroFloatOne 9s ease-in-out infinite; }
.hero-orb-two { width:180px; height:180px; left:6%; bottom:12%; background:radial-gradient(circle, rgba(255,255,255,.34), transparent 70%); animation:heroFloatTwo 11s ease-in-out infinite; }
.hero-orb-three { width:110px; height:110px; right:31%; bottom:18%; border:1px solid rgba(255,255,255,.28); background:rgba(255,255,255,.035); backdrop-filter:blur(3px); animation:heroFloatOne 13s ease-in-out infinite reverse; }
@keyframes heroFloatOne { 0%,100% { transform:translate3d(0,0,0) rotate(0); } 50% { transform:translate3d(18px,-22px,0) rotate(12deg); } }
@keyframes heroFloatTwo { 0%,100% { transform:translate3d(0,0,0); } 50% { transform:translate3d(-14px,20px,0); } }
.hero-kicker { width:max-content; max-width:100%; display:flex; align-items:center; gap:10px; color:rgba(255,255,255,.9); font-size:var(--font-size-sm); font-weight:700; letter-spacing:.02em; padding:8px 13px; border:1px solid rgba(255,255,255,.2); background:rgba(255,255,255,.08); backdrop-filter:blur(12px); border-radius:999px; margin-bottom:var(--space-5); }
.hero-kicker span { width:8px; height:8px; border-radius:50%; background:#c4b5fd; box-shadow:0 0 0 0 rgba(196,181,253,.7); animation:kickerPulse 2s infinite; }
@keyframes kickerPulse { 70% { box-shadow:0 0 0 8px rgba(196,181,253,0); } 100% { box-shadow:0 0 0 0 rgba(196,181,253,0); } }
.search-box { position:relative; isolation:isolate; }
.search-box::before { content:""; position:absolute; inset:-1px; z-index:-1; border-radius:inherit; background:linear-gradient(120deg, rgba(255,255,255,.32), rgba(167,139,250,.55), rgba(255,255,255,.12)); opacity:.5; background-size:220% 220%; animation:searchGlow 7s linear infinite; }
@keyframes searchGlow { 0% { background-position:0 50%; } 50% { background-position:100% 50%; } 100% { background-position:0 50%; } }
.hero-discovery-chips { display:flex; flex-wrap:wrap; justify-content:center; gap:10px; margin-top:var(--space-5); }
.hero-discovery-chips span { display:flex; align-items:center; gap:7px; color:rgba(255,255,255,.84); font-size:12px; font-weight:600; padding:8px 12px; border:1px solid rgba(255,255,255,.14); background:rgba(20,12,43,.22); backdrop-filter:blur(10px); border-radius:999px; animation:chipHover 5s ease-in-out infinite; }
.hero-discovery-chips span:nth-child(2) { animation-delay:-1.6s; }
.hero-discovery-chips span:nth-child(3) { animation-delay:-3.2s; }
@keyframes chipHover { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-4px); } }

.property-video-badge { position:absolute; left:var(--space-3); bottom:var(--space-3); z-index:2; display:flex; align-items:center; gap:6px; padding:6px 9px; border-radius:999px; color:white; background:rgba(13,10,24,.72); backdrop-filter:blur(10px); font-size:11px; font-weight:700; }

.property-detail-v2 { background:linear-gradient(180deg,#fbfaff 0,#fff 360px); }
.property-breadcrumbs { padding-top:calc(var(--header-height) + var(--space-6)); padding-bottom:var(--space-5); }
.property-detail-container { max-width:1240px; }
.property-media-shell { display:grid; grid-template-columns:minmax(0,1fr) 270px; gap:12px; padding:12px; border:1px solid var(--border-light); border-radius:24px; background:rgba(255,255,255,.9); box-shadow:0 20px 60px rgba(56,30,100,.09); margin-bottom:var(--space-6); }
.property-media-stage { min-width:0; aspect-ratio:16/9; max-height:560px; border-radius:17px; overflow:hidden; background:#15101f; }
.property-media-stage > button, .property-media-stage img, .property-video-frame, .property-video-frame iframe { width:100%; height:100%; }
.property-photo-main, .property-video-poster { position:relative; display:block; border:0; padding:0; cursor:pointer; background:#15101f; }
.property-photo-main img, .property-video-poster img { object-fit:cover; display:block; transition:transform .6s var(--ease-out); }
.property-photo-main:hover img, .property-video-poster:hover img { transform:scale(1.025); }
.video-poster-shade { position:absolute; inset:0; background:linear-gradient(180deg,rgba(10,7,18,.05),rgba(10,7,18,.58)); }
.video-play-button { position:absolute; left:50%; top:48%; transform:translate(-50%,-50%); width:76px; height:76px; display:grid; place-items:center; border-radius:50%; color:var(--brand-primary); background:white; box-shadow:0 18px 48px rgba(0,0,0,.28); transition:transform .25s ease, box-shadow .25s ease; }
.property-video-poster:hover .video-play-button { transform:translate(-50%,-50%) scale(1.07); box-shadow:0 22px 58px rgba(0,0,0,.34); }
.video-play-button svg { margin-left:4px; }
.video-poster-label { position:absolute; left:24px; bottom:22px; display:flex; flex-direction:column; align-items:flex-start; color:white; text-align:left; }
.video-poster-label strong { font-size:18px; }
.video-poster-label small { color:rgba(255,255,255,.72); margin-top:3px; }
.property-video-frame iframe { display:block; border:0; aspect-ratio:16/9; }
.property-media-rail { display:flex; flex-direction:column; min-width:0; }
.media-rail-heading { display:flex; align-items:center; justify-content:space-between; padding:5px 2px 10px; }
.media-rail-heading span { font-weight:750; color:var(--text-primary); }
.media-rail-heading button { border:0; background:none; color:var(--brand-primary); font-size:12px; font-weight:700; cursor:pointer; }
.media-rail-grid { display:grid; grid-template-columns:1fr 1fr; gap:8px; flex:1; }
.media-rail-thumb { position:relative; min-height:0; border:0; padding:0; overflow:hidden; border-radius:12px; background:var(--bg-secondary); cursor:pointer; }
.media-rail-thumb img { width:100%; height:100%; min-height:96px; object-fit:cover; display:block; transition:transform .35s ease; }
.media-rail-thumb:hover img { transform:scale(1.06); }
.media-more-overlay { position:absolute; inset:0; display:grid; place-items:center; color:white; background:rgba(18,12,31,.58); font-size:22px; font-weight:800; }
.media-external-link { margin-top:9px; display:flex; align-items:center; justify-content:center; gap:7px; padding:10px; border-radius:11px; color:var(--brand-primary); background:var(--brand-primary-soft); font-size:12px; font-weight:750; }

.property-summary-card { display:grid; grid-template-columns:minmax(0,1fr) auto; gap:var(--space-8); align-items:center; padding:var(--space-8); border:1px solid var(--border-light); border-radius:24px; background:white; box-shadow:var(--shadow-sm); margin-bottom:12px; }
.property-summary-copy .property-title { max-width:780px; font-size:clamp(2rem,4vw,3.25rem); margin-bottom:10px; }
.property-subtitle { color:var(--text-secondary); margin:-2px 0 10px; }
.property-summary-copy .property-location { margin-bottom:8px; }
.property-summary-price { min-width:260px; display:flex; flex-direction:column; align-items:flex-end; padding-left:var(--space-8); border-left:1px solid var(--border-light); }
.summary-price-label { color:var(--text-muted); font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.08em; margin-bottom:4px; }
.property-summary-price .price-large { font-size:clamp(1.9rem,3vw,3rem); line-height:1.1; white-space:nowrap; }
.property-summary-price .property-id { margin-top:12px; }
.property-quick-facts { display:grid; grid-template-columns:repeat(5,minmax(0,1fr)); gap:1px; overflow:hidden; border:1px solid var(--border-light); border-radius:18px; background:var(--border-light); margin-bottom:var(--space-8); }
.quick-fact { min-width:0; padding:18px 16px; display:flex; flex-direction:column; background:white; }
.quick-fact span { font-weight:750; color:var(--text-primary); overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.quick-fact small { color:var(--text-muted); margin-top:4px; }
.property-layout-v2 { grid-template-columns:minmax(0,1fr) 350px; gap:var(--space-7); align-items:start; }
.property-content-stack { display:flex; flex-direction:column; gap:18px; }
.property-content-card { margin:0; padding:var(--space-8); border:1px solid var(--border-light); border-radius:22px; background:white; box-shadow:0 8px 30px rgba(45,28,80,.045); }
.content-card-heading { display:flex; gap:14px; align-items:flex-start; padding-bottom:var(--space-6); margin-bottom:var(--space-6); border-bottom:1px solid var(--border-light); }
.content-card-heading > span { width:34px; height:34px; flex:0 0 34px; display:grid; place-items:center; border-radius:10px; color:var(--brand-primary); background:var(--brand-primary-soft); font-size:12px; font-weight:800; }
.content-card-heading h2 { font-size:var(--font-size-xl); margin:0 0 2px; }
.content-card-heading p { color:var(--text-muted); font-size:var(--font-size-sm); margin:0; }
.property-content-card .property-details-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
.property-content-card .detail-item { min-width:0; gap:12px; background:#fbfaff; }
.property-content-card .detail-value { text-align:right; }
.detail-subsection + .detail-subsection { margin-top:var(--space-7); }
.detail-subsection h3 { font-size:var(--font-size-base); margin-bottom:var(--space-4); }
.property-resource-actions { display:flex; flex-wrap:wrap; gap:10px; margin-top:var(--space-6); }
.property-updated { color:var(--text-muted); font-size:12px; padding:0 4px; }
.property-sidebar-v2 { top:calc(var(--header-height) + 18px); }
.enquiry-card-v2 { border-radius:22px; padding:var(--space-7); box-shadow:0 20px 50px rgba(55,28,97,.09); }
.enquiry-eyebrow { display:inline-flex; color:var(--brand-primary); background:var(--brand-primary-soft); padding:6px 9px; border-radius:999px; font-size:11px; font-weight:800; text-transform:uppercase; letter-spacing:.08em; margin-bottom:12px; }
.enquiry-card-v2 h3 { font-size:1.45rem; }
.enquiry-property-mini { display:flex; flex-direction:column; padding:14px; margin:0 0 18px; border-radius:13px; background:#fbfaff; border:1px solid var(--border-light); }
.enquiry-property-mini strong { font-size:13px; line-height:1.4; }
.enquiry-property-mini span { color:var(--text-muted); font-size:11px; margin-top:4px; }
.enquiry-card-v2 .enquiry-actions { margin-bottom:0; }
.enquiry-note { display:flex; gap:9px; align-items:flex-start; color:var(--text-muted); font-size:11px; line-height:1.5; padding-top:16px; margin-top:16px; border-top:1px solid var(--border-light); }
.enquiry-note svg { flex:0 0 auto; margin-top:1px; }
.sidebar-owner-cta { display:flex; flex-direction:column; margin-top:12px; padding:18px; border-radius:18px; color:white; background:linear-gradient(135deg,var(--brand-primary-dark),var(--brand-primary)); box-shadow:var(--shadow-brand); }
.sidebar-owner-cta span { font-size:11px; color:rgba(255,255,255,.7); text-transform:uppercase; letter-spacing:.08em; font-weight:700; }
.sidebar-owner-cta strong { margin:5px 0; }
.sidebar-owner-cta small { color:rgba(255,255,255,.72); line-height:1.45; }

/* Owner listing explainer */
.owner-listing-page { overflow:hidden; }
.owner-listing-hero { position:relative; padding:calc(var(--header-height) + 90px) 0 90px; color:white; background:radial-gradient(circle at 75% 15%,rgba(167,139,250,.28),transparent 28%),linear-gradient(135deg,#1c1234,#392064 55%,#6d28d9); overflow:hidden; }
.owner-hero-orb { position:absolute; border-radius:50%; pointer-events:none; }
.owner-hero-orb-one { width:420px;height:420px;right:-140px;top:-160px;border:1px solid rgba(255,255,255,.13);animation:heroFloatOne 12s ease-in-out infinite; }
.owner-hero-orb-two { width:190px;height:190px;left:42%;bottom:-90px;background:rgba(255,255,255,.045);border:1px solid rgba(255,255,255,.09);animation:heroFloatTwo 10s ease-in-out infinite; }
.owner-hero-grid { position:relative; display:grid; grid-template-columns:1.05fr .95fr; gap:70px; align-items:center; }
.owner-kicker,.section-eyebrow { display:inline-block; color:var(--brand-primary); font-size:12px; font-weight:800; text-transform:uppercase; letter-spacing:.1em; margin-bottom:14px; }
.owner-kicker { color:#ddd6fe; }
.owner-hero-copy h1 { color:white; font-size:clamp(2.7rem,5vw,5rem); line-height:1.01; letter-spacing:-.045em; max-width:760px; }
.owner-hero-copy > p { color:rgba(255,255,255,.72); font-size:clamp(1rem,1.5vw,1.17rem); line-height:1.75; max-width:700px; margin:22px 0 30px; }
.owner-hero-actions { display:flex; gap:12px; flex-wrap:wrap; }
.owner-hero-actions .btn-outline { color:white; border-color:rgba(255,255,255,.3); background:rgba(255,255,255,.06); }
.owner-trust-row { display:flex; flex-wrap:wrap; gap:8px; margin-top:26px; }
.owner-trust-row span { padding:7px 10px; color:rgba(255,255,255,.78); background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.11); border-radius:999px; font-size:11px; font-weight:650; }
.owner-hero-panel { padding:14px; border:1px solid rgba(255,255,255,.17); border-radius:26px; background:rgba(255,255,255,.09); backdrop-filter:blur(18px); box-shadow:0 35px 90px rgba(0,0,0,.25); transform:rotate(1.3deg); }
.owner-panel-top { display:flex; justify-content:space-between; color:rgba(255,255,255,.7); padding:4px 5px 13px; font-size:12px; }
.owner-panel-top strong { color:white; }
.owner-listing-preview { overflow:hidden; border-radius:17px; background:white; color:var(--text-primary); }
.owner-preview-image { position:relative; aspect-ratio:16/10; overflow:hidden; }
.owner-preview-image img { width:100%;height:100%;object-fit:cover;display:block; }
.owner-preview-image span { position:absolute;left:14px;top:14px;padding:7px 10px;border-radius:999px;background:white;color:var(--brand-primary);font-size:11px;font-weight:800; }
.owner-preview-copy { padding:20px; }
.owner-preview-copy small { color:var(--brand-primary);font-weight:700; }
.owner-preview-copy h3 { margin:7px 0 14px;font-size:1.2rem; }
.owner-preview-copy div { display:flex;flex-wrap:wrap;gap:7px; }
.owner-preview-copy div span { font-size:10px;color:var(--text-muted);background:var(--bg-secondary);padding:6px 8px;border-radius:999px; }
.owner-intro-grid { display:grid;grid-template-columns:.8fr 1.2fr;gap:80px;align-items:end; }
.owner-intro-grid p { color:var(--text-secondary);font-size:1.08rem;line-height:1.8;margin:0; }
.owner-process-grid { display:grid;grid-template-columns:repeat(5,1fr);gap:12px;align-items:stretch; }
.owner-process-card { position:relative;padding:24px 20px;border:1px solid var(--border-light);border-radius:20px;background:white;overflow:hidden; }
.owner-process-card > span { position:absolute;right:14px;top:10px;color:#ede9fe;font-size:44px;font-weight:800;line-height:1; }
.owner-process-icon { width:42px;height:42px;display:grid;place-items:center;border-radius:13px;color:white;background:linear-gradient(135deg,var(--brand-primary),var(--brand-accent));font-weight:800;margin-bottom:30px; }
.owner-process-card h3 { font-size:1rem;margin-bottom:9px; }
.owner-process-card p { color:var(--text-muted);font-size:13px;line-height:1.65;margin:0; }
.owner-benefits-grid { display:grid;grid-template-columns:.8fr 1.2fr;gap:80px;align-items:start; }
.owner-benefits-copy p { color:var(--text-secondary);line-height:1.75;margin:18px 0 26px; }
.owner-benefit-list { display:flex;flex-direction:column;border-top:1px solid var(--border-light); }
.owner-benefit-item { display:grid;grid-template-columns:210px 1fr;gap:28px;padding:23px 0;border-bottom:1px solid var(--border-light); }
.owner-benefit-item strong { font-size:15px; }
.owner-benefit-item span { color:var(--text-muted);font-size:14px;line-height:1.65; }
.owner-requirements-card { display:grid;grid-template-columns:.75fr 1.25fr;gap:60px;align-items:center;padding:42px;border:1px solid var(--border-light);border-radius:28px;background:white;box-shadow:var(--shadow-sm); }
.owner-requirements-card h2 { font-size:clamp(1.7rem,3vw,2.5rem); }
.owner-requirements-card p { color:var(--text-muted);line-height:1.65;margin-top:12px; }
.owner-requirements-grid { display:grid;grid-template-columns:1fr 1fr;gap:10px; }
.owner-requirements-grid span { position:relative;padding:13px 14px 13px 35px;border-radius:12px;background:#fbfaff;border:1px solid var(--border-light);font-size:13px;font-weight:650; }
.owner-requirements-grid span::before { content:'✓';position:absolute;left:13px;color:var(--brand-primary);font-weight:900; }
.owner-final-cta-section { padding-top:0; }
.owner-final-cta { display:grid;grid-template-columns:1fr auto;gap:32px;align-items:center;padding:48px;border-radius:28px;color:white;background:linear-gradient(135deg,#24153f,#6d28d9);box-shadow:0 28px 80px rgba(67,31,118,.22); }
.owner-final-cta > div:first-child span { color:#ddd6fe;font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.1em; }
.owner-final-cta h2 { color:white;font-size:clamp(2rem,4vw,3.3rem);margin:7px 0; }
.owner-final-cta p { color:rgba(255,255,255,.7);margin:0; }
.owner-final-actions { display:flex;flex-direction:column;gap:10px;min-width:240px; }
.owner-final-actions .btn-outline { color:white;border-color:rgba(255,255,255,.28); }
.owner-final-cta > small { grid-column:1/-1;color:rgba(255,255,255,.52);line-height:1.6;border-top:1px solid rgba(255,255,255,.12);padding-top:18px; }

@media (max-width:1024px) {
  .property-media-shell { grid-template-columns:minmax(0,1fr) 220px; }
  .property-summary-card { grid-template-columns:1fr; }
  .property-summary-price { align-items:flex-start; padding:20px 0 0; border-left:0; border-top:1px solid var(--border-light); }
  .property-quick-facts { grid-template-columns:repeat(3,1fr); }
  .property-layout-v2 { grid-template-columns:minmax(0,1fr) 310px; }
  .owner-hero-grid,.owner-intro-grid,.owner-benefits-grid { gap:42px; }
  .owner-process-grid { grid-template-columns:repeat(3,1fr); }
}
@media (max-width:800px) {
  .hero-kicker { margin-left:auto;margin-right:auto; }
  .hero-discovery-chips { display:none; }
  .property-breadcrumbs { padding-top:calc(var(--header-height) + 12px); white-space:nowrap; overflow:auto; }
  .property-media-shell { grid-template-columns:1fr; padding:8px; border-radius:18px; }
  .property-media-stage { border-radius:13px; max-height:none; }
  .property-media-rail { display:block; }
  .media-rail-heading { padding:10px 2px 8px; }
  .media-rail-grid { display:flex; overflow-x:auto; gap:8px; padding-bottom:2px; }
  .media-rail-thumb { flex:0 0 92px; aspect-ratio:1.25; }
  .media-rail-thumb img { min-height:0; }
  .media-external-link { width:100%; }
  .video-play-button { width:62px;height:62px; }
  .video-poster-label { left:16px;bottom:14px; }
  .video-poster-label strong { font-size:14px; }
  .property-summary-card { padding:22px; border-radius:18px; }
  .property-summary-copy .property-title { font-size:clamp(1.85rem,8vw,2.55rem); }
  .property-summary-price .price-large { white-space:normal; }
  .property-quick-facts { display:flex; overflow-x:auto; border-radius:14px; }
  .quick-fact { flex:0 0 145px; }
  .property-layout-v2 { display:block; }
  .property-content-stack { gap:12px; }
  .property-content-card { padding:20px; border-radius:17px; }
  .property-content-card .property-details-grid { grid-template-columns:1fr; }
  .property-content-card .detail-item { align-items:flex-start; }
  .property-sidebar-v2 { position:static; margin-top:14px; }
  .enquiry-card-v2 { display:none; }
  .sidebar-owner-cta { margin-bottom:16px; }
  .owner-listing-hero { padding:calc(var(--header-height) + 55px) 0 60px; }
  .owner-hero-grid,.owner-intro-grid,.owner-benefits-grid,.owner-requirements-card,.owner-final-cta { grid-template-columns:1fr; }
  .owner-hero-grid { gap:45px; }
  .owner-hero-copy h1 { font-size:clamp(2.45rem,11vw,4rem); }
  .owner-hero-panel { transform:none; }
  .owner-process-grid { grid-template-columns:1fr 1fr; }
  .owner-intro-grid,.owner-benefits-grid { gap:25px; }
  .owner-benefit-item { grid-template-columns:1fr;gap:7px; }
  .owner-requirements-card { gap:25px;padding:25px; }
  .owner-final-cta { padding:28px; }
  .owner-final-actions { min-width:0;width:100%; }
}
@media (max-width:520px) {
  .hero-orb { opacity:.25; }
  .hero-kicker { font-size:10px;padding:7px 10px; }
  .property-media-shell { margin-left:-4px;margin-right:-4px; }
  .video-poster-label small { display:none; }
  .property-summary-card { padding:18px; }
  .property-meta { flex-wrap:wrap;gap:7px; }
  .property-summary-price { min-width:0; }
  .content-card-heading { margin-bottom:18px;padding-bottom:18px; }
  .property-resource-actions .btn { width:100%;justify-content:center; }
  .owner-process-grid,.owner-requirements-grid { grid-template-columns:1fr; }
  .owner-hero-actions .btn,.owner-final-actions .btn { width:100%;justify-content:center; }
}
@media (prefers-reduced-motion:reduce) {
  .hero-bg img,.hero-orb,.hero-kicker span,.hero-discovery-chips span,.search-box::before { animation:none !important; }
}

/* Owner page content remains readable even before inventory scripts finish. */
.owner-listing-page .reveal { opacity:1; transform:none; animation:ownerPageReveal .72s var(--ease-out) both; }
.owner-listing-page .reveal-delay-1 { animation-delay:.08s; }
.owner-listing-page .reveal-delay-2 { animation-delay:.16s; }
.owner-listing-page .reveal-delay-3 { animation-delay:.24s; }
.owner-listing-page .reveal-delay-4 { animation-delay:.32s; }
@keyframes ownerPageReveal { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:none; } }
@media (prefers-reduced-motion:reduce) { .owner-listing-page .reveal { animation:none; } }

/* =========================================================
   PHASE 1.3 — SEARCH, PROPERTY DETAIL AND OWNER PAGE REWORK
   ========================================================= */

/* Search must remain above the hero media and the following section. */
body { overflow-x: clip; }
.hero { overflow: visible; z-index: 3; }
.hero-bg, .hero-overlay { overflow: hidden; }
.hero-content, .hero-content > .container { position: relative; z-index: 20; overflow: visible; }
.search-box {
  position: relative;
  z-index: 80;
  isolation: auto;
  overflow: visible;
}
.search-box::before { z-index: 0; pointer-events: none; }
.search-form { position: relative; z-index: 2; }
.search-results {
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 9999;
  max-height: min(520px, 62vh);
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid #e4dfeb;
  border-radius: 18px;
  background: rgba(255,255,255,.99);
  box-shadow: 0 24px 70px rgba(24, 15, 42, .24);
  padding: 8px;
}
.search-section { padding: 4px 0; }
.search-section + .search-section { border-top: 1px solid var(--border-light); margin-top: 4px; padding-top: 8px; }
.search-section-title { padding: 7px 10px 5px; font-size: 10px; letter-spacing: .09em; }
.search-item {
  min-width: 0;
  padding: 10px;
  border-radius: 12px;
  gap: 11px;
}
.search-item:hover { background: #f7f4fb; }
.search-item-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex: 0 0 36px;
  border-radius: 10px;
  color: var(--brand-primary);
  background: var(--brand-primary-soft);
}
.search-item-image {
  width: 58px;
  height: 46px;
  flex: 0 0 58px;
  object-fit: cover;
  border-radius: 9px;
  background: var(--bg-secondary);
}
.search-item-copy { min-width: 0; flex: 1; }
.search-item-title { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.search-item-subtitle { margin-top: 2px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.search-item-meta { display: flex; gap: 8px; margin-top: 4px; color: var(--brand-primary-dark); font-size: 10px; font-weight: 700; }
.search-item-meta span + span { color: var(--text-muted); font-weight: 600; }
.search-status { flex: 0 0 auto; font-size: 9px; font-weight: 800; padding: 5px 7px; border-radius: 999px; color: #fff; }
.search-status.badge-success { background: var(--success); }
.search-status.badge-warning { background: var(--warning); }
.search-status.badge-error { background: var(--error); }
.search-status.badge-primary, .search-status.badge-info { background: var(--brand-primary); }
.search-similar-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 2px 2px 7px;
  padding: 9px 10px;
  border-radius: 11px;
  background: #f4effc;
  color: var(--brand-primary-dark);
  font-size: 11px;
  font-weight: 650;
}
.search-loading { display:flex; align-items:center; gap:10px; padding:20px; color:var(--text-secondary); font-size:13px; }
.search-loading span { width:16px; height:16px; border:2px solid #ddd6fe; border-top-color:var(--brand-primary); border-radius:50%; animation:spin .7s linear infinite; }
.search-empty { padding: 22px 18px; text-align: left; }
.search-empty strong { display:block; color:var(--text-primary); margin-bottom:5px; }
.search-empty p { color:var(--text-muted); font-size:12px; margin:0 0 12px; }
.search-view-all {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin:6px 0 0;
  padding:12px 13px;
  border-radius:12px;
  color:var(--brand-primary-dark);
  background:#f5f1fb;
  font-size:12px;
  font-weight:800;
}
.search-button { border-radius: 14px; box-shadow: 0 8px 22px rgba(109,40,217,.2); }
.search-button::before { display:none; }
.hero-discovery-chips { display:none !important; }

/* Cleaner cards and actions across inventory pages. */
.property-card {
  border-radius: 18px;
  border-color: #e8e4ed;
  box-shadow: 0 6px 24px rgba(30, 19, 51, .05);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.property-card::before { display:none; }
.property-card:hover { transform:translateY(-4px); border-color:#d4cce0; box-shadow:0 16px 38px rgba(30,19,51,.1); }
.property-card-image-wrapper { aspect-ratio: 16 / 10; background:#eeeaf2; }
.property-card:hover .property-card-image { transform:scale(1.025); }
.property-card-body { padding:18px; }
.property-card-title { font-size:15px; line-height:1.4; }
.property-card-spec { border-radius:8px; padding:5px 8px; background:#f7f5f9; }
.property-card-actions { padding:12px 18px; background:#fff; }
.property-card-actions > .btn:first-child { flex:1; }
.property-card-actions .btn-ghost { width:36px; min-width:36px; padding:0; }
.property-card-badges { gap:6px; }
.property-card-badges .badge { font-size:9px; padding:5px 7px; box-shadow:none; }
.property-card-transaction { font-size:10px; box-shadow:none; border:1px solid rgba(0,0,0,.06); }

.search-empty-state { padding: 46px 24px; border:1px dashed #d8d1e1; background:#fcfbfd; border-radius:18px; }
.empty-state-actions { display:flex; justify-content:center; gap:10px; flex-wrap:wrap; }
.similar-search-block { margin-top:28px; }
.similar-search-heading { display:flex; align-items:end; justify-content:space-between; gap:20px; margin-bottom:18px; }
.similar-search-heading span { color:var(--brand-primary); font-size:11px; text-transform:uppercase; letter-spacing:.09em; font-weight:800; }
.similar-search-heading h3 { margin:4px 0 0; font-size:1.35rem; }

/* Property detail — composed, balanced and image-safe. */
.property-detail-clean { padding-bottom:96px; background:linear-gradient(180deg,#f9f7fc 0,#fff 520px); }
.property-detail-clean .property-breadcrumbs { padding-top:calc(var(--header-height) + 34px); padding-bottom:18px; }
.property-detail-container { max-width:1240px; }
.property-hero-grid {
  display:grid;
  grid-template-columns:minmax(0, 1.65fr) minmax(320px, .75fr);
  gap:20px;
  align-items:start;
  margin-bottom:24px;
}
.property-showcase {
  min-width:0;
  padding:10px;
  border:1px solid #e5e0ea;
  border-radius:20px;
  background:#fff;
  box-shadow:0 12px 38px rgba(39,24,66,.07);
}
.property-showcase .property-media-stage {
  width:100%;
  aspect-ratio:16 / 10;
  max-height:570px;
  min-height:0;
  border-radius:14px;
  overflow:hidden;
  background:#17121e;
  position:relative;
}
.property-showcase .property-media-stage > button,
.property-showcase .property-media-stage img,
.property-showcase .property-video-frame,
.property-showcase .property-video-frame iframe { width:100%; height:100%; }
.property-showcase .property-photo-main,
.property-showcase .property-video-poster { display:block; width:100%; height:100%; border:0; padding:0; background:#17121e; cursor:pointer; }
.property-showcase .property-photo-main img,
.property-showcase .property-video-poster img { display:block; object-fit:cover; object-position:center; }
.property-media-badges { position:absolute; right:14px; bottom:14px; display:flex; gap:8px; z-index:3; }
.property-media-badges span,
.property-media-badges button {
  min-height:34px;
  display:inline-flex;
  align-items:center;
  border:0;
  border-radius:10px;
  padding:8px 11px;
  color:#fff;
  background:rgba(16,11,24,.76);
  backdrop-filter:blur(8px);
  font-size:11px;
  font-weight:750;
  cursor:pointer;
}
.property-thumbnail-strip {
  display:flex;
  gap:8px;
  padding-top:9px;
  min-width:0;
  overflow-x:auto;
  scrollbar-width:thin;
}
.property-thumbnail {
  position:relative;
  width:92px;
  height:66px;
  flex:0 0 92px;
  overflow:hidden;
  border:2px solid transparent;
  border-radius:10px;
  padding:0;
  background:#eeeaf2;
  cursor:pointer;
}
.property-thumbnail.active { border-color:var(--brand-primary); }
.property-thumbnail img { width:100%; height:100%; object-fit:cover; display:block; }
.thumbnail-more { position:absolute; inset:0; display:grid; place-items:center; color:#fff; background:rgba(20,13,30,.58); font-size:16px; font-weight:800; }
.property-video-external {
  min-width:150px;
  height:66px;
  flex:0 0 150px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:5px;
  border-radius:10px;
  color:var(--brand-primary-dark);
  background:#f3eefb;
  font-size:10px;
  font-weight:750;
}
.video-play-button { width:68px; height:68px; }
.video-poster-label { left:20px; bottom:20px; }
.video-poster-label strong { font-size:16px; }

.property-overview-card {
  position:sticky;
  top:calc(var(--header-height) + 18px);
  padding:26px;
  border:1px solid #e5e0ea;
  border-radius:20px;
  background:#fff;
  box-shadow:0 12px 38px rgba(39,24,66,.07);
}
.property-overview-badges { display:flex; align-items:center; gap:8px; flex-wrap:wrap; margin-bottom:16px; }
.property-overview-card h1 { font-size:clamp(1.55rem,2.6vw,2.35rem); line-height:1.13; letter-spacing:-.035em; margin:0 0 10px; }
.property-overview-subtitle { color:var(--text-secondary); font-size:13px; line-height:1.55; margin:0 0 12px; }
.property-overview-location { display:flex; align-items:flex-start; gap:7px; color:var(--text-secondary); font-size:13px; line-height:1.45; margin:0; }
.property-overview-location svg { flex:0 0 auto; color:var(--brand-primary); margin-top:1px; }
.property-overview-price { display:flex; flex-direction:column; margin:20px 0; padding:17px 0; border-top:1px solid var(--border-light); border-bottom:1px solid var(--border-light); }
.property-overview-price small { color:var(--text-muted); font-size:10px; font-weight:750; text-transform:uppercase; letter-spacing:.08em; }
.property-overview-price strong { margin:4px 0 2px; color:var(--text-primary); font-size:clamp(1.65rem,2.5vw,2.35rem); line-height:1.1; letter-spacing:-.035em; }
.property-overview-price span { color:var(--text-muted); font-size:11px; }
.property-overview-facts { display:grid; grid-template-columns:1fr 1fr; gap:8px; }
.property-overview-facts div { min-width:0; padding:11px; border-radius:11px; background:#f8f6fa; }
.property-overview-facts strong { display:block; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; font-size:12px; }
.property-overview-facts span { display:block; color:var(--text-muted); font-size:9px; margin-top:3px; text-transform:uppercase; letter-spacing:.05em; }
.property-overview-meta { display:flex; flex-wrap:wrap; gap:6px; margin:15px 0; }
.property-overview-meta span { padding:5px 8px; border-radius:8px; color:var(--text-secondary); background:#f5f3f7; font-size:10px; font-weight:650; }
.property-overview-actions { display:flex; flex-direction:column; gap:9px; }
.property-overview-actions .btn { width:100%; }
.property-overview-note { color:var(--text-muted); font-size:10px; line-height:1.5; text-align:center; margin:11px 0 0; }

.property-content-layout { display:grid; grid-template-columns:minmax(0,1fr) 300px; gap:20px; align-items:start; }
.property-content-main { display:flex; flex-direction:column; gap:16px; min-width:0; }
.property-section-card { padding:26px; border:1px solid #e7e2eb; border-radius:18px; background:#fff; box-shadow:0 6px 24px rgba(39,24,66,.035); }
.property-section-heading { display:flex; align-items:end; justify-content:space-between; gap:18px; margin-bottom:20px; padding-bottom:15px; border-bottom:1px solid var(--border-light); }
.property-section-heading h2 { margin:0; font-size:1.22rem; }
.property-section-heading p { margin:0; color:var(--text-muted); font-size:12px; }
.property-detail-list { display:grid; grid-template-columns:1fr 1fr; column-gap:28px; }
.property-detail-row { display:flex; align-items:center; justify-content:space-between; gap:16px; padding:12px 0; border-bottom:1px solid #eeeaf1; }
.property-detail-row span { color:var(--text-muted); font-size:12px; }
.property-detail-row strong { color:var(--text-primary); font-size:12px; text-align:right; }
.amenities-grid-clean { grid-template-columns:repeat(3,1fr); }
.amenities-grid-clean .amenity-item { padding:11px 12px; background:#faf9fb; border-radius:10px; }
.clean-tag { display:inline-flex; padding:7px 10px; border:1px solid #e7e2eb; border-radius:9px; background:#faf9fb; color:var(--text-secondary); font-size:11px; font-weight:650; }
.property-subsection + .property-subsection { margin-top:22px; }
.property-subsection h3 { font-size:13px; margin:0 0 11px; }
.property-section-card .landmark-item { background:#faf9fb; border:1px solid #eeeaf1; border-radius:10px; }
.property-section-card .landmark-item strong { margin-left:auto; color:var(--text-muted); font-size:11px; }
.property-content-sidebar { position:sticky; top:calc(var(--header-height) + 18px); display:flex; flex-direction:column; gap:12px; }
.property-contact-card { padding:22px; border:1px solid #e3dcea; border-radius:17px; background:#fff; }
.property-contact-card > span { color:var(--brand-primary); font-size:10px; text-transform:uppercase; letter-spacing:.09em; font-weight:800; }
.property-contact-card h3 { margin:6px 0 8px; font-size:1.2rem; }
.property-contact-card p { color:var(--text-muted); font-size:12px; line-height:1.6; margin:0 0 16px; }
.property-contact-card .btn { width:100%; }
.property-contact-phone { display:block; margin-top:12px; color:var(--text-secondary); font-size:12px; font-weight:700; text-align:center; }
.property-owner-card { display:flex; flex-direction:column; padding:20px; border-radius:17px; color:#fff; background:linear-gradient(145deg,#33204f,#6941a5); }
.property-owner-card small { color:rgba(255,255,255,.68); font-size:10px; text-transform:uppercase; letter-spacing:.08em; }
.property-owner-card strong { margin:6px 0 5px; font-size:15px; }
.property-owner-card span { color:rgba(255,255,255,.72); font-size:11px; line-height:1.5; }
.property-owner-card b { margin-top:13px; font-size:11px; }
.property-similar-section { margin-top:44px; }
.property-similar-heading { display:flex; align-items:end; justify-content:space-between; gap:20px; margin-bottom:18px; }
.property-similar-heading span { color:var(--brand-primary); font-size:10px; font-weight:800; text-transform:uppercase; letter-spacing:.1em; }
.property-similar-heading h2 { margin:4px 0 0; font-size:1.65rem; }

/* Owner listing page — reduced, focused and easier to scan. */
.owner-listing-clean { overflow:hidden; }
.owner-clean-hero { position:relative; min-height:690px; display:flex; align-items:center; padding:calc(var(--header-height) + 74px) 0 76px; color:#fff; background:linear-gradient(135deg,#1f1530 0,#382154 52%,#6332a5 100%); overflow:hidden; }
.owner-clean-glow { position:absolute; border-radius:50%; pointer-events:none; filter:blur(2px); }
.owner-clean-glow-one { width:440px; height:440px; right:-130px; top:-180px; border:1px solid rgba(255,255,255,.12); background:rgba(255,255,255,.035); }
.owner-clean-glow-two { width:240px; height:240px; left:44%; bottom:-150px; background:rgba(178,139,255,.12); }
.owner-clean-hero-grid { position:relative; display:grid; grid-template-columns:minmax(0,1.08fr) minmax(340px,.72fr); gap:72px; align-items:center; }
.owner-clean-copy h1 { max-width:720px; color:#fff; font-size:clamp(2.8rem,5vw,4.9rem); line-height:1.02; letter-spacing:-.05em; margin:0; }
.owner-clean-copy > p { max-width:660px; color:rgba(255,255,255,.72); font-size:1.05rem; line-height:1.72; margin:22px 0 28px; }
.owner-clean-actions { display:flex; align-items:center; gap:20px; flex-wrap:wrap; }
.owner-text-link { color:#fff; font-size:13px; font-weight:700; }
.owner-text-link span { margin-left:4px; transition:margin .2s ease; }
.owner-text-link:hover span { margin-left:8px; }
.owner-clean-copy > small { display:block; color:rgba(255,255,255,.53); font-size:11px; margin-top:17px; }
.owner-clean-preview { padding:14px; border:1px solid rgba(255,255,255,.15); border-radius:22px; background:rgba(255,255,255,.09); box-shadow:0 30px 80px rgba(0,0,0,.22); backdrop-filter:blur(16px); }
.owner-preview-header { display:flex; align-items:center; justify-content:space-between; padding:3px 4px 12px; color:rgba(255,255,255,.65); font-size:11px; }
.owner-preview-header b { width:28px; height:28px; display:grid; place-items:center; border-radius:9px; color:var(--brand-primary-dark); background:#fff; font-size:10px; }
.owner-preview-property { overflow:hidden; border-radius:15px; background:#fff; color:var(--text-primary); }
.owner-preview-property img { display:block; width:100%; aspect-ratio:16/9; object-fit:cover; }
.owner-preview-property div { padding:16px; }
.owner-preview-property small { display:block; color:var(--brand-primary); font-size:10px; font-weight:750; text-transform:uppercase; letter-spacing:.08em; }
.owner-preview-property strong { display:block; margin-top:5px; font-size:15px; line-height:1.4; }
.owner-preview-steps { display:grid; grid-template-columns:repeat(3,1fr); gap:7px; margin-top:10px; }
.owner-preview-steps div { padding:11px 9px; border-radius:11px; background:rgba(255,255,255,.08); }
.owner-preview-steps span { color:#ddd6fe; font-size:9px; font-weight:800; }
.owner-preview-steps p { color:rgba(255,255,255,.78); font-size:10px; line-height:1.35; margin:4px 0 0; }
.owner-clean-process .section-header { margin-bottom:44px; }
.owner-clean-step-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.owner-clean-step { position:relative; padding:28px; border:1px solid #e5e0ea; border-radius:18px; background:#fff; box-shadow:0 8px 28px rgba(42,25,68,.045); }
.owner-step-number { position:absolute; right:20px; top:16px; color:#ebe5f3; font-size:35px; font-weight:850; }
.owner-step-icon { width:45px; height:45px; display:grid; place-items:center; margin-bottom:24px; border-radius:13px; color:var(--brand-primary); background:var(--brand-primary-soft); }
.owner-clean-step h3 { margin:0 0 9px; font-size:1.05rem; }
.owner-clean-step p { color:var(--text-muted); font-size:13px; line-height:1.65; margin:0; }
.owner-clean-included-card { display:grid; grid-template-columns:.9fr 1.1fr; gap:60px; align-items:center; padding:40px; border:1px solid #e5e0ea; border-radius:22px; background:#fff; }
.owner-clean-included-copy h2 { margin:0; font-size:clamp(1.8rem,3vw,2.7rem); }
.owner-clean-included-copy p { color:var(--text-muted); line-height:1.7; margin:14px 0 0; }
.owner-clean-benefits { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.owner-clean-benefits div { display:flex; align-items:center; gap:10px; padding:14px; border-radius:11px; background:#faf9fb; color:var(--text-secondary); font-size:12px; font-weight:650; }
.owner-clean-benefits svg { color:var(--brand-primary); flex:0 0 auto; }
.owner-clean-cta-section { padding-top:0; }
.owner-clean-cta { display:grid; grid-template-columns:1fr auto; gap:30px; align-items:center; padding:42px; border-radius:22px; color:#fff; background:linear-gradient(135deg,#2b1b40,#6d28d9); }
.owner-clean-cta > div > span { color:#ddd6fe; font-size:10px; text-transform:uppercase; letter-spacing:.1em; font-weight:800; }
.owner-clean-cta h2 { color:#fff; margin:6px 0; font-size:clamp(1.8rem,3.4vw,3rem); }
.owner-clean-cta p { color:rgba(255,255,255,.7); margin:0; }

@media (max-width: 1050px) {
  .property-hero-grid { grid-template-columns:minmax(0,1.45fr) minmax(300px,.8fr); }
  .property-content-layout { grid-template-columns:minmax(0,1fr) 270px; }
  .owner-clean-hero-grid { gap:42px; }
}

@media (max-width: 900px) {
  .property-detail-clean .property-breadcrumbs { padding-top:calc(var(--header-height-mobile) + 28px); }
  .property-hero-grid, .property-content-layout { grid-template-columns:1fr; }
  .property-overview-card, .property-content-sidebar { position:static; }
  .property-overview-card { padding:22px; }
  .property-content-sidebar { display:grid; grid-template-columns:1fr 1fr; }
  .amenities-grid-clean { grid-template-columns:1fr 1fr; }
  .owner-clean-hero { min-height:auto; }
  .owner-clean-hero-grid { grid-template-columns:1fr; }
  .owner-clean-preview { max-width:560px; }
  .owner-clean-included-card { grid-template-columns:1fr; gap:28px; }
}

@media (max-width: 768px) {
  .hero { overflow:visible; }
  .search-results { left:-3px; right:-3px; top:calc(100% + 8px); max-height:54vh; border-radius:15px; }
  .search-property-item .search-status { display:none; }
  .search-item-image { width:52px; height:43px; flex-basis:52px; }
  .properties-grid { gap:16px; }
  .property-card-actions { gap:8px; }
  .property-card-actions > .btn:first-child { padding-left:10px; padding-right:10px; }

  .property-detail-clean { padding-bottom:88px; }
  .property-detail-container { padding-left:14px; padding-right:14px; }
  .property-showcase { padding:7px; border-radius:16px; }
  .property-showcase .property-media-stage { aspect-ratio:16/10; border-radius:11px; }
  .property-media-badges { right:9px; bottom:9px; }
  .property-media-badges span, .property-media-badges button { min-height:30px; padding:6px 8px; font-size:9px; border-radius:8px; }
  .property-thumbnail-strip { padding-top:7px; }
  .property-thumbnail { width:76px; height:54px; flex-basis:76px; border-radius:8px; }
  .property-video-external { height:54px; min-width:124px; flex-basis:124px; }
  .video-play-button { width:58px; height:58px; }
  .video-poster-label { left:13px; bottom:12px; }
  .video-poster-label strong { font-size:13px; }
  .video-poster-label small { display:none; }
  .property-overview-card h1 { font-size:1.75rem; }
  .property-content-sidebar { grid-template-columns:1fr; }
  .property-section-card { padding:20px; border-radius:15px; }
  .property-section-heading { align-items:flex-start; flex-direction:column; gap:5px; margin-bottom:16px; padding-bottom:13px; }
  .property-detail-list { grid-template-columns:1fr; }
  .amenities-grid-clean { grid-template-columns:1fr 1fr; gap:8px; }
  .amenities-grid-clean .amenity-item { font-size:11px; }
  .floor-plans-grid { grid-template-columns:1fr 1fr; }
  .property-similar-heading { align-items:center; }
  .property-similar-heading .btn { display:none; }

  .owner-clean-hero { padding:calc(var(--header-height-mobile) + 54px) 0 58px; }
  .owner-clean-copy h1 { font-size:clamp(2.45rem,11vw,3.7rem); }
  .owner-clean-copy > p { font-size:.98rem; }
  .owner-clean-step-grid { grid-template-columns:1fr; }
  .owner-clean-step { padding:24px; }
  .owner-clean-benefits { grid-template-columns:1fr; }
  .owner-clean-included-card { padding:26px; }
  .owner-clean-cta { grid-template-columns:1fr; padding:30px; }
  .owner-clean-cta .btn { width:100%; }
}

@media (max-width: 480px) {
  .search-results { position:absolute; max-height:58vh; }
  .search-similar-note { align-items:flex-start; }
  .search-item { padding:9px 7px; }
  .search-item-meta { flex-direction:column; gap:1px; }
  .similar-search-heading { align-items:flex-start; flex-direction:column; }
  .property-overview-card { padding:19px; border-radius:16px; }
  .property-overview-facts { grid-template-columns:1fr 1fr; }
  .property-detail-row { align-items:flex-start; }
  .amenities-grid-clean { grid-template-columns:1fr; }
  .floor-plans-grid { grid-template-columns:1fr; }
  .owner-clean-actions { align-items:flex-start; flex-direction:column; gap:14px; }
  .owner-clean-preview { padding:10px; border-radius:18px; }
  .owner-preview-steps { grid-template-columns:1fr; }
}

/* Cleaner configuration cards */
.property-section-card .configurations-list { gap:10px; }
.property-section-card .config-card {
  padding:18px;
  border:1px solid #e7e2eb;
  border-radius:14px;
  background:#faf9fb;
  box-shadow:none;
}
.property-section-card .config-card:hover { border-color:#d2c8dd; box-shadow:none; }
.property-section-card .config-header { margin-bottom:12px; }
.property-section-card .config-header h4 { font-size:15px; }
.property-section-card .config-details { gap:7px; margin-bottom:12px; }
.property-section-card .config-details span { padding:5px 8px; border-radius:8px; background:#fff; border:1px solid #ece8ef; font-size:10px; }
.property-section-card .config-price .price { font-size:18px; }
.property-section-card .config-availability { font-size:10px; }

/* Filter toolbar refinement */
#filterToggleBtn { display:none; }
@media (max-width:1024px) { #filterToggleBtn { display:inline-flex; } }

/* ============================================
   PHASE 1.4 — COMPACT SPACING, CARDS & NEW PAGES
   ============================================ */

/* Tighter vertical rhythm across the site */
.section { padding: 64px 0; }
.section-header { margin-bottom: 30px; }
.section-header h2 { margin-bottom: 8px; }
.section-header p { font-size: 15px; line-height: 1.55; }
.page-header { padding-top: calc(var(--header-height) + 48px); padding-bottom: 42px; }
.page-header h1 { margin-bottom: 8px; }
.text-center[style*="margin-top"] { margin-top: 28px !important; }

/* Property cards: equal height, compact details and aligned CTAs */
.properties-grid { gap: 20px; align-items: stretch; }
.property-card { display: flex; flex-direction: column; height: 100%; border-radius: 18px; }
.property-card-link { display: flex; flex: 1; flex-direction: column; min-height: 0; }
.property-card-image-wrapper { aspect-ratio: 16 / 9.5; }
.property-card-body { display: flex; flex: 1; flex-direction: column; padding: 15px 16px 14px; }
.property-card-title { margin-bottom: 7px; min-height: 42px; font-size: 15px; line-height: 1.38; }
.property-card-location { margin-bottom: 9px; font-size: 12px; }
.property-card-specs { min-height: 29px; margin-bottom: 11px; gap: 6px; }
.property-card-spec { padding: 4px 7px; font-size: 10px; }
.property-card-price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px; margin-top: auto; margin-bottom: 4px; }
.property-card-price .price { font-size: 18px; line-height: 1.25; }
.property-card-price .price-unit { font-size: 10px; }
.property-card-possession { min-height: 17px; font-size: 10px; }
.property-card-actions { display: flex; align-items: center; min-height: 58px; gap: 10px; padding: 10px 16px 12px; border-top: 1px solid var(--border-light); }
.property-card-primary-action { flex: 1; min-height: 40px; justify-content: center; white-space: nowrap; }
.property-card-icon-actions { display: flex; flex: 0 0 auto; gap: 5px; }
.property-card-icon-actions .btn { width: 38px; min-width: 38px; height: 38px; padding: 0; border-radius: 10px; }
.property-card-unavailable { opacity: 1; }
.property-card-transactions { position: absolute; top: 12px; right: 12px; z-index: 3; display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 5px; max-width: 62%; }
.property-card-transactions span { padding: 6px 9px; border: 1px solid rgba(31,24,42,.08); border-radius: 999px; background: rgba(255,255,255,.94); color: #241c2f; box-shadow: 0 3px 12px rgba(21,14,30,.08); font-size: 9px; font-weight: 750; }
.property-card-status-ribbon { position: absolute; left: -42px; bottom: 22px; z-index: 4; width: 175px; padding: 7px 0; transform: rotate(36deg); background: rgba(180,20,35,.94); color: #fff; text-align: center; font-size: 11px; font-weight: 850; letter-spacing: .18em; box-shadow: 0 5px 18px rgba(114,8,20,.25); }
.property-video-badge { bottom: 10px; right: 10px; }

/* Property page gallery: inline carousel only, no image popup */
.property-detail-clean { padding-bottom: 78px; }
.property-detail-clean .property-breadcrumbs { padding-top: calc(var(--header-height) + 22px); padding-bottom: 12px; }
.property-hero-grid { gap: 18px; margin-bottom: 22px; }
.property-showcase { padding: 8px; border-radius: 17px; }
.property-showcase .property-media-stage { position: relative; aspect-ratio: 16 / 9; max-height: 525px; border-radius: 12px; }
.property-showcase .property-photo-main { position: relative; cursor: default; }
.property-media-arrow { position: absolute; top: 50%; z-index: 6; width: 42px; height: 42px; display: grid; place-items: center; transform: translateY(-50%); border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: rgba(20,14,28,.64); color: #fff; font-size: 29px; line-height: 1; backdrop-filter: blur(8px); transition: transform .18s ease, background .18s ease; }
.property-media-arrow:hover { background: rgba(30,18,43,.86); transform: translateY(-50%) scale(1.04); }
.property-media-prev { left: 13px; }
.property-media-next { right: 13px; }
.property-media-counter { position: absolute; right: 14px; bottom: 13px; z-index: 5; padding: 6px 9px; border-radius: 9px; color: #fff; background: rgba(16,11,23,.68); font-size: 10px; font-weight: 700; backdrop-filter: blur(7px); }
.property-thumbnail-strip { gap: 7px; padding-top: 8px; }
.property-thumbnail { width: 78px; height: 54px; flex-basis: 78px; border-radius: 8px; }
.thumbnail-video-icon { position: absolute; inset: 0; display: grid; place-items: center; color: #fff; background: rgba(23,14,33,.28); font-size: 19px; }
.property-media-back { position: absolute; left: 12px; top: 12px; z-index: 5; padding: 7px 10px; border-radius: 9px; color: #fff; background: rgba(15,10,22,.72); font-size: 10px; font-weight: 700; }
.property-status-ribbon { position: absolute; top: 24px; left: -46px; z-index: 8; width: 210px; padding: 10px 0; transform: rotate(-38deg); background: linear-gradient(90deg,#b91c2d,#e11d48); color: #fff; text-align: center; font-size: 14px; font-weight: 900; letter-spacing: .22em; box-shadow: 0 7px 24px rgba(114,8,20,.32); pointer-events: none; }
.property-overview-card { top: calc(var(--header-height) + 18px); padding: 22px; border-radius: 17px; }
.property-overview-card h1 { font-size: clamp(1.55rem,2.25vw,2.15rem); margin-bottom: 8px; }
.property-overview-location { margin-bottom: 17px; }
.property-overview-price { padding: 15px 0; }
.property-overview-price strong { font-size: clamp(1.6rem,2.6vw,2.15rem); }
.property-overview-facts { margin: 16px 0; gap: 7px; }
.property-overview-facts > div { padding: 10px; }
.property-overview-meta { margin-top: 12px; gap: 6px; }
.property-overview-transactions .transaction-tag { color: var(--brand-primary); border-color: rgba(107,33,168,.16); background: var(--brand-primary-soft); }
.property-overview-actions { margin-top: 16px; gap: 8px; }
.property-overview-actions .btn { min-height: 42px; padding: 10px 14px; }
.property-content-layout { gap: 16px; }
.property-content-layout-compact { margin-top: 0; }
.property-section-card { padding: 20px; border-radius: 15px; }
.property-content-main { gap: 14px; }
.property-section-heading { margin-bottom: 14px; padding-bottom: 11px; }
.property-section-heading h2 { font-size: 17px; }
.property-detail-row { padding: 9px 0; }
.property-detail-row span, .property-detail-row strong { font-size: 11px; }
.property-content-sidebar-compact { gap: 12px; }
.property-contact-card-compact { padding: 20px; }
.property-contact-card-compact p { display: none; }
.property-contact-card-compact h3 { margin-bottom: 15px; font-size: 18px; }
.property-owner-card { padding: 18px; }
.property-owner-card span { display: none; }
.property-similar-section { margin-top: 30px; }
.property-similar-heading { margin-bottom: 18px; }

/* Compact quick actions: horizontal and swipeable on mobile */
.category-grid, .type-grid { gap: 12px; }
.category-card { padding: 18px 15px; min-height: 142px; border-radius: 15px; }
.category-card .category-icon { width: 42px; height: 42px; margin-bottom: 15px; }
.category-card h4 { margin-bottom: 3px; }
.type-card { min-height: 82px; }

/* Homepage opportunity cards */
.opportunity-section { padding-top: 0; }
.opportunity-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.opportunity-card { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start; padding: 25px; border: 1px solid #e5dfeb; border-radius: 18px; background: #fff; box-shadow: 0 8px 28px rgba(31,20,48,.04); }
.opportunity-card > b { grid-column: 2; color: var(--brand-primary); font-size: 12px; }
.opportunity-card span { color: var(--brand-primary); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.opportunity-card h3 { margin: 5px 0 7px; font-size: 19px; }
.opportunity-card p { margin: 0; color: var(--text-tertiary); font-size: 12px; line-height: 1.6; }
.opportunity-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 13px; color: var(--brand-primary); background: var(--brand-primary-soft); }
.opportunity-card-dark { color: #fff; border-color: #2d213d; background: linear-gradient(135deg,#21162e,#4c1d75); }
.opportunity-card-dark span, .opportunity-card-dark > b { color: #d8b4fe; }
.opportunity-card-dark h3 { color: #fff; }
.opportunity-card-dark p { color: rgba(255,255,255,.67); }
.opportunity-card-dark .opportunity-icon { color: #fff; background: rgba(255,255,255,.1); }

/* Requirements page */
.compact-page-hero { padding: calc(var(--header-height) + 58px) 0 54px; background: linear-gradient(135deg,#faf7ff,#f4effa); border-bottom: 1px solid #eee8f3; }
.compact-page-hero-inner { display: flex; align-items: end; justify-content: space-between; gap: 32px; }
.compact-page-hero h1 { max-width: 760px; margin: 0; font-size: clamp(2.15rem,4.4vw,4rem); line-height: 1.08; letter-spacing: -.045em; }
.compact-page-hero p { max-width: 720px; margin: 15px 0 0; color: var(--text-tertiary); line-height: 1.65; }
.requirements-section { padding-top: 48px; }
.requirements-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 22px; }
.requirements-toolbar h2 { margin: 0 0 4px; font-size: 23px; }
.requirements-toolbar p { margin: 0; color: var(--text-muted); font-size: 12px; }
.requirements-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; }
.requirement-card { display: flex; flex-direction: column; padding: 22px; border: 1px solid #e6e0ea; border-radius: 17px; background: #fff; box-shadow: 0 7px 24px rgba(35,22,53,.035); }
.requirement-card-top { display: flex; align-items: start; justify-content: space-between; gap: 14px; }
.requirement-id { display: inline-block; margin-bottom: 6px; color: var(--brand-primary); font-size: 10px; font-weight: 800; letter-spacing: .09em; }
.requirement-card h3 { margin: 0; font-size: 18px; line-height: 1.35; }
.requirement-urgency { flex: 0 0 auto; padding: 5px 8px; border-radius: 999px; color: #9f1239; background: #fff1f2; font-size: 9px; font-weight: 750; }
.requirement-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 14px 0 12px; }
.requirement-tags span { padding: 5px 8px; border-radius: 8px; color: var(--text-secondary); background: #f6f3f8; font-size: 9px; font-weight: 700; }
.requirement-tags .transaction-tag { color: var(--brand-primary); background: var(--brand-primary-soft); }
.requirement-location { display: flex; align-items: center; gap: 7px; color: var(--text-tertiary); font-size: 12px; }
.requirement-facts { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 8px; margin: 15px 0; }
.requirement-facts div { padding: 10px; border-radius: 10px; background: #faf8fb; }
.requirement-facts small, .requirement-facts strong { display: block; }
.requirement-facts small { margin-bottom: 3px; color: var(--text-muted); font-size: 9px; }
.requirement-facts strong { font-size: 11px; line-height: 1.35; }
.requirement-card > p { margin: 0 0 16px; color: var(--text-tertiary); font-size: 12px; line-height: 1.6; }
.requirement-card > .btn { margin-top: auto; min-height: 42px; }

/* Partner page */
.partner-hero { padding: calc(var(--header-height) + 66px) 0 68px; background: radial-gradient(circle at 80% 20%,rgba(139,92,246,.17),transparent 34%),linear-gradient(135deg,#fbf8ff,#f3edf9); }
.partner-hero-grid { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(360px,.75fr); align-items: center; gap: 64px; }
.partner-hero h1 { max-width: 720px; margin: 0; font-size: clamp(2.6rem,5vw,4.9rem); line-height: 1.02; letter-spacing: -.055em; }
.partner-hero p { max-width: 660px; margin: 18px 0 0; color: var(--text-tertiary); line-height: 1.7; }
.partner-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 25px; }
.partner-visual { display: grid; gap: 10px; padding: 12px; border: 1px solid rgba(107,33,168,.13); border-radius: 20px; background: rgba(255,255,255,.76); box-shadow: 0 22px 65px rgba(62,29,93,.1); }
.partner-visual-card { position: relative; padding: 18px 18px 18px 62px; border-radius: 13px; background: #fff; }
.partner-visual-card span { position: absolute; left: 17px; top: 17px; width: 32px; height: 32px; display: grid; place-items: center; border-radius: 9px; color: var(--brand-primary); background: var(--brand-primary-soft); font-size: 10px; font-weight: 850; }
.partner-visual-card strong { display: block; margin-bottom: 4px; font-size: 14px; }
.partner-visual-card p { margin: 0; font-size: 11px; line-height: 1.5; }
.partner-fit-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.partner-fit-grid > div { padding: 22px; border: 1px solid #e7e1eb; border-radius: 15px; background: #fff; }
.partner-fit-grid h3 { margin: 0 0 7px; font-size: 16px; }
.partner-fit-grid p { margin: 0; color: var(--text-tertiary); font-size: 12px; line-height: 1.6; }
.partner-note { margin: 17px 0 0; color: var(--text-muted); text-align: center; font-size: 11px; }
.simple-cta-card { display: flex; align-items: center; justify-content: space-between; gap: 26px; padding: 30px; border-radius: 18px; color: #fff; background: linear-gradient(135deg,#281735,#6621a7); }
.simple-cta-card span { color: #d8b4fe; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.simple-cta-card h2 { max-width: 700px; margin: 5px 0 0; color: #fff; font-size: clamp(1.6rem,3vw,2.6rem); }

@media (max-width: 1024px) {
  .property-card-title { min-height: 0; }
  .partner-hero-grid { gap: 34px; }
}

@media (max-width: 768px) {
  .section { padding: 42px 0; }
  .section-header { margin-bottom: 22px; }
  .section-header p { font-size: 13px; }
  .page-header { padding-top: calc(var(--header-height-mobile) + 34px); padding-bottom: 28px; }
  .properties-grid { gap: 13px; }
  .property-card-body { padding: 13px 14px 12px; }
  .property-card-title { min-height: 0; font-size: 14px; }
  .property-card-actions { min-height: 52px; padding: 8px 13px 10px; }
  .property-card-primary-action { min-height: 36px; font-size: 11px; }
  .property-card-icon-actions .btn { width: 35px; min-width: 35px; height: 35px; }
  .property-card-transactions { top: 9px; right: 9px; }
  .property-card-transactions span { padding: 5px 7px; font-size: 8px; }

  .category-grid, .type-grid { display: flex !important; grid-template-columns: none !important; overflow-x: auto; gap: 10px; margin-left: -16px; margin-right: -16px; padding: 2px 16px 10px; scroll-snap-type: x proximity; scrollbar-width: none; }
  .category-grid::-webkit-scrollbar, .type-grid::-webkit-scrollbar { display: none; }
  .category-card { min-width: 150px; min-height: 122px; flex: 0 0 150px; padding: 14px; scroll-snap-align: start; }
  .category-card .category-icon { width: 38px; height: 38px; margin-bottom: 12px; }
  .category-card p { font-size: 10px; }
  .type-card { min-width: 118px; min-height: 70px; flex: 0 0 118px; padding: 13px; scroll-snap-align: start; }

  .property-detail-clean .property-breadcrumbs { padding-top: calc(var(--header-height-mobile) + 15px); padding-bottom: 9px; }
  .property-detail-container { padding-left: 12px; padding-right: 12px; }
  .property-hero-grid { gap: 12px; margin-bottom: 13px; }
  .property-showcase { padding: 6px; border-radius: 14px; }
  .property-showcase .property-media-stage { aspect-ratio: 16 / 10; border-radius: 10px; }
  .property-media-arrow { width: 35px; height: 35px; font-size: 24px; }
  .property-media-prev { left: 8px; }
  .property-media-next { right: 8px; }
  .property-status-ribbon { top: 17px; left: -58px; width: 205px; padding: 8px 0; font-size: 11px; }
  .property-thumbnail-strip { padding-top: 6px; }
  .property-thumbnail { width: 68px; height: 47px; flex-basis: 68px; }
  .property-overview-card { padding: 17px; border-radius: 14px; }
  .property-overview-card h1 { font-size: 1.55rem; }
  .property-overview-facts { display: flex; overflow-x: auto; margin: 13px -3px; padding: 0 3px 3px; }
  .property-overview-facts > div { min-width: 112px; flex: 0 0 112px; }
  .property-overview-actions { display: none; }
  .property-section-card { padding: 16px; border-radius: 13px; }
  .property-content-main { gap: 10px; }
  .property-content-sidebar { display: none; }
  .property-detail-list { gap: 0; }
  .property-similar-section { margin-top: 22px; }
  .mobile-property-actions { left: 10px; right: 10px; bottom: 9px; gap: 7px; width: auto; padding: 7px; border: 1px solid #e8e2ec; border-radius: 14px; background: rgba(255,255,255,.94); box-shadow: 0 12px 34px rgba(30,18,45,.13); backdrop-filter: blur(13px); }
  .mobile-property-actions .btn { min-height: 38px; padding: 8px 10px; font-size: 11px; border-radius: 10px; }

  .opportunity-grid { grid-template-columns: 1fr; }
  .opportunity-card { padding: 19px; }
  .compact-page-hero { padding: calc(var(--header-height-mobile) + 42px) 0 38px; }
  .compact-page-hero-inner { align-items: flex-start; flex-direction: column; gap: 20px; }
  .compact-page-hero h1 { font-size: clamp(2.1rem,10vw,3.2rem); }
  .requirements-section { padding-top: 34px; }
  .requirements-toolbar { align-items: flex-start; flex-direction: column; }
  .requirements-grid { grid-template-columns: 1fr; gap: 12px; }
  .requirement-card { padding: 18px; }
  .requirement-facts { grid-template-columns: 1fr 1fr; }
  .partner-hero { padding: calc(var(--header-height-mobile) + 42px) 0 44px; }
  .partner-hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .partner-hero h1 { font-size: clamp(2.45rem,11vw,3.65rem); }
  .partner-fit-grid { grid-template-columns: 1fr; gap: 10px; }
  .simple-cta-card { align-items: flex-start; flex-direction: column; padding: 24px; }
  .simple-cta-card .btn { width: 100%; }
}

@media (max-width: 420px) {
  .property-card-actions { gap: 6px; }
  .property-card-primary-action { padding-left: 8px; padding-right: 8px; }
  .property-card-icon-actions { gap: 3px; }
  .property-card-icon-actions .btn { width: 32px; min-width: 32px; height: 34px; }
  .property-card-price .price { font-size: 17px; }
  .requirement-facts { grid-template-columns: 1fr; }
}
.property-video-play-surface { position: relative; display: block; width: 100%; height: 100%; padding: 0; border: 0; background: transparent; }
.property-video-play-surface > img { width: 100%; height: 100%; object-fit: cover; }

/* =========================================================
   PHASE 1.5 — CENTERED HERO, REQUIREMENTS & PARTNER REDESIGN
   ========================================================= */

/* Homepage hero: centered and search-led */
body[data-page="home"] .hero {
  min-height: 86vh;
  align-items: center;
  padding: calc(var(--header-height) + 56px) 0 72px;
}
body[data-page="home"] .hero-content {
  padding-top: 0;
}
body[data-page="home"] .hero-content > .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
body[data-page="home"] .hero-title {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.9rem, 5.8vw, 5.6rem);
  line-height: .98;
  letter-spacing: -.058em;
  text-wrap: balance;
}
body[data-page="home"] .hero-subtitle {
  max-width: 720px;
  margin: 18px auto 34px;
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.65;
  text-wrap: balance;
}
body[data-page="home"] .search-box {
  width: min(100%, 1050px);
  max-width: none;
  margin: 0 auto;
  padding: 7px;
  border-radius: 24px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 26px 80px rgba(11,7,20,.28), 0 0 0 1px rgba(255,255,255,.18) inset;
}
body[data-page="home"] .search-field {
  padding: 15px 22px;
}
body[data-page="home"] .search-field:first-child {
  flex: 1.65;
}
body[data-page="home"] .search-button {
  min-width: 136px;
  margin: 4px;
  border-radius: 17px;
}
body[data-page="home"] .hero-stats {
  justify-content: center;
  margin-top: 30px;
}
body[data-page="home"] .hero-stat {
  text-align: center;
}
body[data-page="home"] .hero-overlay {
  background:
    linear-gradient(180deg, rgba(12,8,20,.46) 0%, rgba(17,10,27,.3) 42%, rgba(17,10,27,.62) 100%),
    radial-gradient(circle at 50% 40%, rgba(107,33,168,.16), transparent 45%);
}

/* Shared hero buttons on dark backgrounds */
.btn-hero-ghost {
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
}
.btn-hero-ghost:hover:not(:disabled) {
  color: #fff;
  border-color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.15);
  transform: translateY(-1px);
}

/* ---------- Requirements page ---------- */
.requirements-page-v2 {
  background: #f8f7fa;
}
.requirements-hero-v2 {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-height) + 62px) 0 72px;
  color: #fff;
  background:
    radial-gradient(circle at 14% 8%, rgba(168,85,247,.35), transparent 36%),
    radial-gradient(circle at 88% 76%, rgba(124,58,237,.25), transparent 40%),
    linear-gradient(135deg, #1d1228 0%, #3a1754 54%, #24112f 100%);
}
.requirements-hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .16;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, black, transparent 70%);
}
.requirements-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0,1.08fr) minmax(380px,.8fr);
  align-items: center;
  gap: 72px;
}
.requirements-eyebrow,
.partner-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 11px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: #e9d5ff;
  background: rgba(255,255,255,.07);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.requirements-hero-copy h1 {
  max-width: 760px;
  margin: 19px 0 0;
  color: #fff;
  font-size: clamp(2.75rem,5vw,5.1rem);
  line-height: 1;
  letter-spacing: -.058em;
  text-wrap: balance;
}
.requirements-hero-copy > p {
  max-width: 680px;
  margin: 20px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 16px;
  line-height: 1.7;
}
.requirements-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.requirements-demand-board {
  padding: 12px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  background: rgba(255,255,255,.09);
  box-shadow: 0 30px 90px rgba(0,0,0,.24);
  backdrop-filter: blur(18px);
}
.demand-board-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 12px 18px;
}
.demand-board-head > div span,
.demand-board-head > div strong {
  display: block;
}
.demand-board-head > div span {
  margin-bottom: 4px;
  color: rgba(255,255,255,.54);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.demand-board-head > div strong {
  color: #fff;
  font-size: 20px;
}
.demand-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #bbf7d0;
  background: rgba(34,197,94,.12);
  font-size: 10px;
  font-weight: 800;
}
.demand-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 5px rgba(74,222,128,.13);
}
.demand-board-list {
  display: grid;
  gap: 8px;
}
.demand-board-item {
  display: grid;
  grid-template-columns: auto minmax(0,1fr) auto;
  align-items: center;
  gap: 13px;
  padding: 15px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 15px;
  background: rgba(255,255,255,.96);
  color: var(--text-primary);
}
.demand-board-item > div {
  min-width: 0;
}
.demand-board-item strong,
.demand-board-item small {
  display: block;
}
.demand-board-item strong {
  margin-bottom: 3px;
  font-size: 13px;
}
.demand-board-item small {
  color: var(--text-muted);
  font-size: 10px;
}
.demand-board-item > b {
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--brand-primary);
  background: var(--brand-primary-soft);
  font-size: 9px;
}
.demand-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
}
.demand-icon svg,
.requirements-bottom-icon svg,
.requirement-type-icon svg,
.requirement-block-label svg,
.requirement-match-button svg,
.requirements-search-control svg,
.partner-network svg,
.partner-card-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.demand-icon-home { color:#6d28d9; background:#f3e8ff; }
.demand-icon-key { color:#0369a1; background:#e0f2fe; }
.demand-icon-office { color:#047857; background:#d1fae5; }

.requirements-finder-section {
  padding: 68px 0 74px;
}
.requirements-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}
.requirements-heading-row h2 {
  margin: 7px 0 5px;
  font-size: clamp(1.85rem,3vw,2.7rem);
  letter-spacing: -.035em;
}
.requirements-heading-row p {
  margin: 0;
  color: var(--text-muted);
  font-size: 12px;
}
.requirements-list-link,
.partner-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--brand-primary);
  font-size: 12px;
  font-weight: 750;
}
.requirements-list-link span,
.partner-inline-link span {
  transition: transform .2s ease;
}
.requirements-list-link:hover span,
.partner-inline-link:hover span {
  transform: translateX(4px);
}
.requirements-filterbar {
  display: grid;
  grid-template-columns: minmax(260px,1fr) 190px 190px;
  gap: 10px;
  margin-bottom: 24px;
  padding: 9px;
  border: 1px solid #e4dfea;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(32,18,48,.05);
}
.requirements-search-control {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 0 14px;
  border-radius: 12px;
  background: #f8f6fa;
}
.requirements-search-control svg {
  flex: 0 0 19px;
  color: var(--brand-primary);
}
.requirements-search-control input {
  width: 100%;
  min-width: 0;
  height: 52px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text-primary);
  font-size: 13px;
}
.requirements-select-control {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7px 13px;
  border-left: 1px solid #eee9f1;
}
.requirements-select-control > span {
  margin-bottom: 2px;
  color: var(--text-muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.requirements-select-control select {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text-primary);
  font-size: 12px;
  font-weight: 700;
}
.requirements-grid-v2 {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 16px;
}
.requirement-card-v2 {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 22px;
  border: 1px solid #e5e0e9;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 34px rgba(35,22,53,.04);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.requirement-card-v2:hover {
  transform: translateY(-3px);
  border-color: #d8cae5;
  box-shadow: 0 18px 46px rgba(35,22,53,.08);
}
.requirement-card-v2-head {
  display: flex;
  align-items: center;
  gap: 11px;
}
.requirement-type-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  border-radius: 13px;
}
.requirement-type-residential { color:#6d28d9; background:#f3e8ff; }
.requirement-type-commercial { color:#047857; background:#d1fae5; }
.requirement-type-plot_land { color:#b45309; background:#fef3c7; }
.requirement-card-v2-meta {
  min-width: 0;
  flex: 1;
}
.requirement-card-v2-meta span,
.requirement-card-v2-meta strong {
  display: block;
}
.requirement-card-v2-meta span {
  margin-bottom: 3px;
  color: var(--brand-primary);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .09em;
}
.requirement-card-v2-meta strong {
  overflow: hidden;
  color: var(--text-secondary);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.requirement-priority {
  flex: 0 0 auto;
  padding: 6px 9px;
  border: 1px solid #fecdd3;
  border-radius: 999px;
  color: #be123c;
  background: #fff1f2;
  font-size: 8px;
  font-weight: 800;
}
.requirement-card-v2 > h3 {
  margin: 17px 0 10px;
  font-size: 19px;
  line-height: 1.35;
  letter-spacing: -.018em;
}
.requirement-transaction-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 17px;
}
.requirement-transaction {
  padding: 5px 8px;
  border-radius: 8px;
  color: #5b21b6;
  background: #f3e8ff;
  font-size: 9px;
  font-weight: 800;
}
.requirement-transaction-rent { color:#0369a1; background:#e0f2fe; }
.requirement-transaction-lease { color:#0f766e; background:#ccfbf1; }
.requirement-location-block {
  padding: 13px;
  border-radius: 13px;
  background: #faf9fb;
}
.requirement-block-label {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 9px;
  color: var(--text-muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.requirement-block-label svg {
  width: 14px;
  height: 14px;
  color: var(--brand-primary);
}
.requirement-location-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.requirement-location-chips span {
  padding: 5px 7px;
  border: 1px solid #ebe6ef;
  border-radius: 8px;
  background: #fff;
  color: var(--text-secondary);
  font-size: 9px;
  font-weight: 650;
}
.requirement-location-chips .requirement-more-chip {
  color: var(--brand-primary);
  border-color: #e6d8f5;
  background: #f8f2ff;
}
.requirement-fact-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 8px;
  margin-top: 10px;
}
.requirement-fact-grid-v2 > div {
  min-width: 0;
  padding: 11px;
  border: 1px solid #eeeaf1;
  border-radius: 12px;
}
.requirement-fact-grid-v2 span,
.requirement-fact-grid-v2 strong {
  display: block;
}
.requirement-fact-grid-v2 span {
  margin-bottom: 4px;
  color: var(--text-muted);
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
}
.requirement-fact-grid-v2 strong {
  color: var(--text-primary);
  font-size: 11px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.requirement-budget-fact strong {
  color: var(--brand-primary-dark);
}
.requirement-preference {
  margin-top: 11px;
  padding-left: 11px;
  border-left: 2px solid #d8b4fe;
}
.requirement-preference > span {
  display: block;
  margin-bottom: 3px;
  color: var(--text-muted);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}
.requirement-preference p {
  margin: 0;
  color: var(--text-tertiary);
  font-size: 10px;
  line-height: 1.55;
}
.requirement-card-v2-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
}
.requirement-card-v2-footer > span {
  color: var(--text-muted);
  font-size: 9px;
}
.requirement-match-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  padding: 9px 13px;
  border-radius: 10px;
  color: #fff;
  background: var(--brand-primary);
  font-size: 10px;
  font-weight: 800;
  transition: background .2s ease, transform .2s ease;
}
.requirement-match-button:hover {
  color: #fff;
  background: var(--brand-primary-dark);
  transform: translateY(-1px);
}
.requirement-match-button svg {
  width: 14px;
  height: 14px;
}
.requirements-empty-state {
  grid-column: 1 / -1;
  padding: 54px 24px;
  border: 1px dashed #d9d0e1;
  border-radius: 20px;
  background: #fff;
  text-align: center;
}
.requirements-empty-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  border-radius: 15px;
  color: var(--brand-primary);
  background: var(--brand-primary-soft);
}
.requirements-empty-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.requirements-empty-state h3 { margin:0 0 7px; }
.requirements-empty-state p { max-width:520px; margin:0 auto 18px; color:var(--text-muted); font-size:12px; line-height:1.6; }
.requirements-bottom-section {
  padding: 0 0 72px;
}
.requirements-bottom-card {
  display: grid;
  grid-template-columns: auto minmax(0,1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 28px;
  border-radius: 22px;
  background: linear-gradient(135deg,#fff,#f2eafa);
  border: 1px solid #e3d9eb;
}
.requirements-bottom-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg,var(--brand-primary),#9333ea);
  box-shadow: 0 12px 28px rgba(107,33,168,.22);
}
.requirements-bottom-card span {
  color: var(--brand-primary);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.requirements-bottom-card h2 {
  max-width: 720px;
  margin: 5px 0 0;
  font-size: clamp(1.35rem,2.5vw,2rem);
  letter-spacing: -.025em;
}

/* ---------- Partner program ---------- */
.partner-page-v2 {
  background: #fff;
}
.partner-hero-v2 {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-height) + 68px) 0 80px;
  color: #fff;
  background: linear-gradient(135deg,#160c20 0%,#311445 54%,#1b0d27 100%);
}
.partner-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}
.partner-hero-glow-one {
  width: 430px;
  height: 430px;
  top: -190px;
  left: -120px;
  background: radial-gradient(circle,rgba(147,51,234,.34),transparent 68%);
}
.partner-hero-glow-two {
  width: 520px;
  height: 520px;
  right: -190px;
  bottom: -250px;
  background: radial-gradient(circle,rgba(192,132,252,.2),transparent 68%);
}
.partner-hero-layout-v2 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(400px,.84fr);
  align-items: center;
  gap: 80px;
}
.partner-hero-copy-v2 h1 {
  max-width: 780px;
  margin: 19px 0 0;
  color: #fff;
  font-size: clamp(2.8rem,5.3vw,5.4rem);
  line-height: .98;
  letter-spacing: -.06em;
  text-wrap: balance;
}
.partner-hero-copy-v2 > p {
  max-width: 690px;
  margin: 21px 0 0;
  color: rgba(255,255,255,.7);
  font-size: 15px;
  line-height: 1.72;
}
.partner-actions-v2 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.partner-mini-points {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 22px;
}
.partner-mini-points span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.68);
  font-size: 10px;
  font-weight: 650;
}
.partner-mini-points i {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #4ade80;
  background: rgba(74,222,128,.12);
  font-style: normal;
  font-size: 9px;
}
.partner-network {
  position: relative;
  width: min(100%,440px);
  aspect-ratio: 1;
  margin: 0 auto;
}
.partner-network-ring {
  position: absolute;
  border: 1px dashed rgba(255,255,255,.18);
  border-radius: 50%;
}
.partner-network-ring-one { inset: 14%; }
.partner-network-ring-two { inset: 29%; border-style:solid; border-color:rgba(255,255,255,.1); }
.partner-network-center {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 134px;
  height: 134px;
  display: grid;
  place-content: center;
  transform: translate(-50%,-50%);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: #fff;
  text-align: center;
  background: linear-gradient(145deg,#7e22ce,#4c1d95);
  box-shadow: 0 24px 65px rgba(0,0,0,.28),0 0 0 14px rgba(255,255,255,.035);
}
.partner-network-center span,
.partner-network-center strong { display:block; }
.partner-network-center span { font-size:31px; font-weight:850; letter-spacing:-.06em; }
.partner-network-center strong { margin-top:2px; font-size:9px; letter-spacing:.06em; text-transform:uppercase; }
.partner-network-node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 13px;
  color: #fff;
  background: rgba(255,255,255,.1);
  box-shadow: 0 12px 30px rgba(0,0,0,.16);
  backdrop-filter: blur(13px);
}
.partner-network-node > span {
  width: 31px;
  height: 31px;
  display:grid;
  place-items:center;
  border-radius:9px;
  color:#e9d5ff;
  background:rgba(255,255,255,.1);
}
.partner-network-node svg { width:17px; height:17px; }
.partner-network-node strong { font-size:10px; }
.partner-node-owner { top:5%; left:32%; }
.partner-node-broker { top:35%; right:-1%; }
.partner-node-buyer { bottom:7%; right:22%; }
.partner-node-business { bottom:23%; left:0; }

.partner-opportunities-section {
  padding: 76px 0;
  background: #faf9fb;
}
.partner-section-heading {
  max-width: 680px;
  margin: 0 auto 30px;
  text-align: center;
}
.partner-section-heading h2 {
  margin: 7px 0 9px;
  font-size: clamp(2rem,3.6vw,3.2rem);
  line-height: 1.08;
  letter-spacing: -.045em;
}
.partner-section-heading p {
  margin:0;
  color:var(--text-muted);
  font-size:13px;
}
.partner-opportunity-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:15px;
}
.partner-opportunity-card {
  position:relative;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  min-height:310px;
  padding:24px;
  border:1px solid #e5e0e9;
  border-radius:20px;
  background:#fff;
  transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease;
}
.partner-opportunity-card::before {
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:4px;
  background:var(--card-accent,#7e22ce);
}
.partner-opportunity-card:hover {
  transform:translateY(-4px);
  border-color:#d6cae1;
  box-shadow:0 18px 50px rgba(35,22,53,.08);
}
.partner-card-property { --card-accent:#7e22ce; }
.partner-card-client { --card-accent:#0284c7; }
.partner-card-referral { --card-accent:#059669; }
.partner-card-number {
  position:absolute;
  top:17px;
  right:20px;
  color:#eee9f2;
  font-size:32px;
  font-weight:850;
  letter-spacing:-.08em;
}
.partner-card-icon {
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  border-radius:14px;
  color:var(--card-accent);
  background:color-mix(in srgb,var(--card-accent) 10%,white);
}
.partner-card-icon svg { width:22px; height:22px; }
.partner-opportunity-card h3 {
  margin:24px 0 9px;
  font-size:19px;
  letter-spacing:-.02em;
}
.partner-opportunity-card p {
  margin:0;
  color:var(--text-tertiary);
  font-size:12px;
  line-height:1.65;
}
.partner-opportunity-card > a {
  display:inline-flex;
  align-items:center;
  gap:7px;
  margin-top:auto;
  padding-top:22px;
  color:var(--card-accent);
  font-size:11px;
  font-weight:800;
}
.partner-opportunity-card > a span { transition:transform .2s ease; }
.partner-opportunity-card > a:hover span { transform:translateX(4px); }

.partner-process-section {
  padding:76px 0;
}
.partner-process-layout {
  display:grid;
  grid-template-columns:minmax(0,.78fr) minmax(420px,1fr);
  align-items:center;
  gap:72px;
}
.partner-process-copy h2 {
  max-width:600px;
  margin:7px 0 12px;
  font-size:clamp(2rem,3.8vw,3.4rem);
  line-height:1.08;
  letter-spacing:-.045em;
}
.partner-process-copy p {
  max-width:570px;
  margin:0 0 18px;
  color:var(--text-tertiary);
  font-size:13px;
  line-height:1.7;
}
.partner-process-steps {
  display:grid;
  gap:10px;
  padding:12px;
  border:1px solid #e4ddea;
  border-radius:21px;
  background:#faf8fc;
}
.partner-process-step {
  display:grid;
  grid-template-columns:auto 1fr;
  align-items:center;
  gap:15px;
  padding:17px;
  border-radius:14px;
  background:#fff;
}
.partner-process-step > span {
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border-radius:11px;
  color:#fff;
  background:linear-gradient(135deg,var(--brand-primary),#9333ea);
  font-size:11px;
  font-weight:850;
}
.partner-process-step strong { display:block; margin-bottom:3px; font-size:13px; }
.partner-process-step p { margin:0; color:var(--text-muted); font-size:10px; }

.partner-final-section {
  padding:0 0 76px;
}
.partner-final-card {
  position:relative;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  padding:34px;
  border-radius:24px;
  color:#fff;
  background:linear-gradient(135deg,#281237,#6b21a8);
}
.partner-final-card::after {
  content:"";
  position:absolute;
  width:250px;
  height:250px;
  right:-100px;
  top:-130px;
  border-radius:50%;
  background:rgba(255,255,255,.08);
}
.partner-final-card > * { position:relative; z-index:1; }
.partner-final-card span {
  color:#d8b4fe;
  font-size:9px;
  font-weight:800;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.partner-final-card h2 {
  max-width:750px;
  margin:6px 0 0;
  color:#fff;
  font-size:clamp(1.55rem,3vw,2.6rem);
  line-height:1.16;
  letter-spacing:-.035em;
}

@media (max-width: 1024px) {
  .requirements-hero-layout,
  .partner-hero-layout-v2 {
    gap: 42px;
  }
  .partner-network { width:min(100%,390px); }
  .partner-opportunity-card { min-height:330px; }
  .partner-process-layout { gap:40px; }
}

@media (max-width: 820px) {
  body[data-page="home"] .hero {
    min-height: auto;
    padding: calc(var(--header-height-mobile) + 48px) 0 46px;
  }
  body[data-page="home"] .hero-title {
    max-width: 650px;
    font-size: clamp(2.35rem,10vw,4rem);
    line-height: 1.02;
  }
  body[data-page="home"] .hero-subtitle {
    margin: 14px auto 24px;
    font-size: 14px;
  }
  body[data-page="home"] .search-box {
    width: min(100%,580px);
    padding: 7px;
    border-radius: 20px;
  }
  body[data-page="home"] .search-field {
    padding: 11px 13px;
  }
  body[data-page="home"] .search-button {
    min-height: 48px;
    margin: 4px 0 0;
  }
  body[data-page="home"] .hero-stats {
    width: 100%;
    justify-content: space-around;
    gap: 8px;
    margin-top: 24px;
  }

  .requirements-hero-v2,
  .partner-hero-v2 {
    padding: calc(var(--header-height-mobile) + 44px) 0 52px;
  }
  .requirements-hero-layout,
  .partner-hero-layout-v2 {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .requirements-hero-copy,
  .partner-hero-copy-v2 {
    text-align: center;
  }
  .requirements-hero-copy h1,
  .partner-hero-copy-v2 h1 {
    margin-left:auto;
    margin-right:auto;
    font-size:clamp(2.35rem,10.5vw,4rem);
  }
  .requirements-hero-copy > p,
  .partner-hero-copy-v2 > p {
    margin-left:auto;
    margin-right:auto;
    font-size:13px;
  }
  .requirements-hero-actions,
  .partner-actions-v2,
  .partner-mini-points {
    justify-content:center;
  }
  .requirements-demand-board {
    width:min(100%,540px);
    margin:0 auto;
  }
  .partner-network {
    width:min(100%,390px);
  }
  .requirements-heading-row {
    align-items:flex-start;
    flex-direction:column;
    gap:12px;
  }
  .requirements-filterbar {
    grid-template-columns:1fr 1fr;
  }
  .requirements-search-control {
    grid-column:1/-1;
  }
  .requirements-select-control:first-of-type { border-left:0; }
  .requirements-grid-v2 { grid-template-columns:1fr; }
  .requirements-bottom-card {
    grid-template-columns:auto 1fr;
  }
  .requirements-bottom-card .btn {
    grid-column:1/-1;
    width:100%;
  }
  .partner-opportunity-grid { grid-template-columns:1fr; }
  .partner-opportunity-card { min-height:260px; }
  .partner-process-layout { grid-template-columns:1fr; gap:28px; }
  .partner-final-card { align-items:flex-start; flex-direction:column; }
}

@media (max-width: 560px) {
  body[data-page="home"] .hero {
    padding-top: calc(var(--header-height-mobile) + 34px);
  }
  body[data-page="home"] .hero-title {
    font-size: clamp(2rem,11vw,3rem);
    letter-spacing: -.045em;
  }
  body[data-page="home"] .hero-subtitle {
    max-width: 350px;
    font-size: 12px;
    line-height: 1.55;
  }
  body[data-page="home"] .search-box {
    padding: 6px;
    border-radius: 16px;
  }
  body[data-page="home"] .search-field {
    padding: 9px 11px;
  }
  body[data-page="home"] .search-label { font-size:8px; }
  body[data-page="home"] .search-input,
  body[data-page="home"] .search-select { font-size:12px; }
  body[data-page="home"] .hero-stat-number { font-size:17px; }
  body[data-page="home"] .hero-stat-label { font-size:8px; }

  .requirements-hero-v2,
  .partner-hero-v2 {
    padding-top:calc(var(--header-height-mobile) + 32px);
    padding-bottom:40px;
  }
  .requirements-eyebrow,
  .partner-eyebrow {
    min-height:27px;
    padding:5px 9px;
    font-size:8px;
  }
  .requirements-hero-copy h1,
  .partner-hero-copy-v2 h1 {
    margin-top:14px;
    font-size:clamp(2rem,11vw,2.9rem);
  }
  .requirements-hero-copy > p,
  .partner-hero-copy-v2 > p {
    margin-top:14px;
    font-size:11px;
    line-height:1.6;
  }
  .requirements-hero-actions,
  .partner-actions-v2 {
    display:grid;
    grid-template-columns:1fr;
    width:100%;
    gap:8px;
    margin-top:21px;
  }
  .requirements-hero-actions .btn,
  .partner-actions-v2 .btn { width:100%; min-height:44px; }
  .demand-board-head { padding:9px 9px 13px; }
  .demand-board-head > div strong { font-size:16px; }
  .demand-board-item { padding:11px; gap:10px; }
  .demand-icon { width:36px; height:36px; }
  .demand-board-item strong { font-size:11px; }
  .demand-board-item small { font-size:8px; }
  .demand-board-item > b { font-size:7px; }

  .requirements-finder-section,
  .partner-opportunities-section,
  .partner-process-section { padding:44px 0; }
  .requirements-filterbar {
    grid-template-columns:1fr;
    gap:5px;
    padding:7px;
    border-radius:15px;
  }
  .requirements-search-control { grid-column:auto; }
  .requirements-search-control input { height:44px; font-size:11px; }
  .requirements-select-control {
    min-height:48px;
    border-top:1px solid #eee9f1;
    border-left:0;
  }
  .requirement-card-v2 { padding:16px; border-radius:16px; }
  .requirement-type-icon { width:39px; height:39px; flex-basis:39px; }
  .requirement-card-v2 > h3 { margin-top:14px; font-size:16px; }
  .requirement-priority { padding:5px 7px; font-size:7px; }
  .requirement-fact-grid-v2 { grid-template-columns:1fr 1fr; }
  .requirement-budget-fact { grid-column:1/-1; }
  .requirement-card-v2-footer { align-items:stretch; flex-direction:column; gap:7px; }
  .requirement-match-button { justify-content:center; width:100%; }
  .requirements-bottom-section { padding-bottom:44px; }
  .requirements-bottom-card {
    grid-template-columns:1fr;
    gap:14px;
    padding:20px;
    text-align:center;
  }
  .requirements-bottom-icon { margin:0 auto; }
  .requirements-bottom-card .btn { grid-column:auto; }

  .partner-mini-points { gap:8px 12px; }
  .partner-mini-points span { font-size:8px; }
  .partner-network { width:min(100%,330px); }
  .partner-network-center { width:104px; height:104px; }
  .partner-network-center span { font-size:25px; }
  .partner-network-node { gap:5px; padding:7px 8px; border-radius:10px; }
  .partner-network-node > span { width:25px; height:25px; }
  .partner-network-node strong { font-size:8px; }
  .partner-node-owner { top:3%; left:29%; }
  .partner-node-broker { top:33%; right:-2%; }
  .partner-node-buyer { bottom:4%; right:18%; }
  .partner-node-business { bottom:21%; left:-1%; }
  .partner-opportunity-card { min-height:245px; padding:19px; border-radius:16px; }
  .partner-card-number { font-size:27px; }
  .partner-card-icon { width:42px; height:42px; }
  .partner-opportunity-card h3 { margin-top:19px; font-size:17px; }
  .partner-process-step { padding:14px; }
  .partner-final-section { padding-bottom:44px; }
  .partner-final-card { padding:23px; border-radius:19px; }
  .partner-final-card .btn { width:100%; }
}

@media (prefers-reduced-motion: reduce) {
  .requirement-card-v2,
  .partner-opportunity-card,
  .requirements-list-link span,
  .partner-inline-link span {
    transition:none !important;
  }
}

/* ==========================================================
   PHASE 1.6 — READABILITY, REQUIREMENTS, PARTNER & PROPERTY UI
   ========================================================== */

/* Tighter home transition between Quick Categories and Featured Properties */
.home-quick-categories-section {
  padding-top: 64px;
  padding-bottom: 30px;
}
.home-featured-properties-section {
  padding-top: 38px;
  padding-bottom: 70px;
}
.home-quick-categories-section .section-header,
.home-featured-properties-section .section-header {
  margin-bottom: 30px;
}
.home-featured-properties-section .text-center {
  margin-top: 34px !important;
}

/* Improve readable property-card data without increasing card height excessively */
.property-card-title { font-size: 17px; line-height: 1.36; }
.property-card-location { font-size: 13px; }
.property-card-spec { font-size: 12px; padding: 6px 9px; }
.property-card-price .price { font-size: 21px; }
.property-card-price .price-unit { font-size: 12px; }
.property-card-possession { font-size: 12px; }
.property-card-actions .btn { min-height: 42px; font-size: 12px; }

/* ---------------- Requirements v3 ---------------- */
.requirements-page-v3 { background: #f7f6f9; }
.requirements-hero-v3 {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-height) + 64px) 0 72px;
  color: #fff;
  background: linear-gradient(132deg, #180d22 0%, #351448 50%, #5d2384 100%);
}
.requirements-v3-orb { position:absolute; border-radius:50%; filter:blur(4px); pointer-events:none; }
.requirements-v3-orb-one { width:430px; height:430px; right:-140px; top:-190px; background:rgba(192,132,252,.18); }
.requirements-v3-orb-two { width:340px; height:340px; left:-160px; bottom:-210px; background:rgba(168,85,247,.16); }
.requirements-hero-v3-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0,1.05fr) minmax(410px,.78fr);
  align-items: center;
  gap: 72px;
}
.requirements-v3-eyebrow,
.partner-v3-eyebrow {
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:7px 12px;
  border:1px solid rgba(255,255,255,.2);
  border-radius:999px;
  color:#ead7ff;
  background:rgba(255,255,255,.08);
  font-size:11px;
  font-weight:800;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.requirements-hero-v3-copy h1,
.partner-hero-v3-copy h1 {
  max-width:780px;
  margin:20px 0 0;
  color:#fff;
  font-size:clamp(3rem,5.1vw,5.25rem);
  line-height:.99;
  letter-spacing:-.058em;
  text-wrap:balance;
}
.requirements-hero-v3-copy > p,
.partner-hero-v3-copy > p {
  max-width:700px;
  margin:22px 0 0;
  color:rgba(255,255,255,.76);
  font-size:17px;
  line-height:1.7;
}
.requirements-v3-actions,
.partner-v3-actions { display:flex; flex-wrap:wrap; gap:11px; margin-top:30px; }
.requirements-v3-note { margin-top:15px !important; color:rgba(255,255,255,.55) !important; font-size:13px !important; }
.requirements-match-panel {
  padding:18px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:26px;
  background:rgba(255,255,255,.1);
  box-shadow:0 34px 90px rgba(0,0,0,.26);
  backdrop-filter:blur(18px);
}
.requirements-match-panel-head { display:flex; align-items:center; justify-content:space-between; gap:16px; padding:6px 5px 18px; }
.requirements-match-panel-head div span,
.requirements-match-panel-head div strong { display:block; }
.requirements-match-panel-head div span { color:rgba(255,255,255,.55); font-size:11px; font-weight:750; letter-spacing:.08em; text-transform:uppercase; }
.requirements-match-panel-head div strong { margin-top:4px; color:#fff; font-size:23px; }
.requirements-live-pill { display:inline-flex; align-items:center; gap:7px; padding:8px 11px; border-radius:999px; color:#bbf7d0; background:rgba(34,197,94,.12); font-size:11px; font-weight:800; }
.requirements-live-pill i { width:8px; height:8px; border-radius:50%; background:#4ade80; box-shadow:0 0 0 5px rgba(74,222,128,.14); }
.requirements-match-metrics { display:grid; grid-template-columns:repeat(3,1fr); overflow:hidden; border:1px solid rgba(255,255,255,.11); border-radius:17px; background:rgba(12,7,17,.19); }
.requirements-match-metrics div { padding:18px 14px; border-right:1px solid rgba(255,255,255,.1); }
.requirements-match-metrics div:last-child { border-right:0; }
.requirements-match-metrics strong { display:block; color:#fff; font-size:30px; line-height:1; }
.requirements-match-metrics span { display:block; margin-top:7px; color:rgba(255,255,255,.64); font-size:12px; line-height:1.35; }
.requirements-match-message { display:grid; grid-template-columns:auto 1fr; gap:13px; align-items:start; margin-top:12px; padding:17px; border-radius:16px; color:var(--text-primary); background:#fff; }
.requirements-match-icon { width:40px; height:40px; display:grid; place-items:center; border-radius:12px; color:#fff; background:linear-gradient(135deg,var(--brand-primary),#9333ea); }
.requirements-match-icon svg { width:21px; height:21px; fill:none; stroke:currentColor; stroke-width:2; }
.requirements-match-message strong { display:block; margin-bottom:5px; font-size:15px; }
.requirements-match-message p { margin:0; color:var(--text-muted); font-size:13px; line-height:1.55; }

.requirements-how-section { position:relative; z-index:2; margin-top:-25px; }
.requirements-how-grid { display:grid; grid-template-columns:repeat(3,1fr); overflow:hidden; border:1px solid #e4ddea; border-radius:21px; background:#fff; box-shadow:0 18px 55px rgba(41,23,61,.08); }
.requirements-how-grid article { display:grid; grid-template-columns:auto 1fr; gap:15px; padding:24px; border-right:1px solid #ece7ef; }
.requirements-how-grid article:last-child { border-right:0; }
.requirements-how-grid article > span { width:39px; height:39px; display:grid; place-items:center; border-radius:11px; color:var(--brand-primary); background:var(--brand-primary-soft); font-size:12px; font-weight:850; }
.requirements-how-grid h2 { margin:0 0 6px; font-size:16px; }
.requirements-how-grid p { margin:0; color:var(--text-muted); font-size:13px; line-height:1.55; }

.requirements-finder-v3 { padding:72px 0 78px; }
.requirements-v3-heading { display:flex; align-items:end; justify-content:space-between; gap:24px; margin-bottom:25px; }
.requirements-v3-heading h2 { margin:7px 0 5px; font-size:clamp(2rem,3.4vw,3rem); letter-spacing:-.04em; }
.requirements-v3-heading p { margin:0; color:var(--text-muted); font-size:14px; }
.requirements-v3-secondary-link { display:inline-flex; align-items:center; gap:8px; color:var(--brand-primary); font-size:13px; font-weight:750; }
.requirements-filterbar-v3 { margin-bottom:27px; }
.requirements-filterbar-v3 .requirements-search-control input { font-size:14px; }
.requirements-filterbar-v3 .requirements-select-control > span { font-size:10px; }
.requirements-filterbar-v3 .requirements-select-control select { font-size:13px; }
.requirements-grid-v3 { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:20px; }
.requirement-card-v3 {
  display:flex;
  flex-direction:column;
  min-width:0;
  padding:25px;
  border:1px solid #e3dce8;
  border-radius:22px;
  background:#fff;
  box-shadow:0 9px 32px rgba(38,22,54,.045);
  transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease;
}
.requirement-card-v3:hover { transform:translateY(-3px); border-color:#d2c2df; box-shadow:0 20px 52px rgba(38,22,54,.085); }
.requirement-v3-header { display:flex; align-items:center; justify-content:space-between; gap:15px; }
.requirement-v3-id span { display:block; color:var(--brand-primary); font-size:12px; font-weight:850; letter-spacing:.08em; }
.requirement-v3-id strong { display:block; margin-top:4px; color:var(--text-secondary); font-size:13px; }
.requirement-v3-priority { padding:7px 10px; border:1px solid #fecdd3; border-radius:999px; color:#be123c; background:#fff1f2; font-size:11px; font-weight:800; }
.requirement-v3-title-row { display:grid; grid-template-columns:auto 1fr; align-items:start; gap:15px; margin-top:20px; }
.requirement-v3-title-row .requirement-type-icon { width:52px; height:52px; flex-basis:52px; }
.requirement-v3-title-row h3 { margin:1px 0 10px; font-size:21px; line-height:1.32; letter-spacing:-.02em; }
.requirement-v3-title-row .requirement-transaction-row { margin-bottom:0; }
.requirement-v3-title-row .requirement-transaction { padding:6px 9px; font-size:11px; }
.requirement-v3-location { margin-top:20px; padding:16px; border:1px solid #ece7ef; border-radius:15px; background:#faf9fb; }
.requirement-v3-location-label { display:flex; align-items:center; gap:7px; margin-bottom:11px; color:var(--text-muted); font-size:11px; font-weight:800; text-transform:uppercase; letter-spacing:.05em; }
.requirement-v3-location-label svg { width:16px; height:16px; fill:none; stroke:var(--brand-primary); stroke-width:2; }
.requirement-v3-location > div { display:flex; flex-wrap:wrap; gap:7px; }
.requirement-v3-location > div span { padding:6px 9px; border:1px solid #e7e1eb; border-radius:9px; color:var(--text-secondary); background:#fff; font-size:12px; font-weight:650; }
.requirement-v3-location .requirement-more-chip { color:var(--brand-primary); background:#f7f0fd; }
.requirement-v3-facts { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:9px; margin-top:11px; }
.requirement-v3-facts > div { min-width:0; padding:14px; border:1px solid #ece7ef; border-radius:13px; }
.requirement-v3-facts span { display:block; margin-bottom:6px; color:var(--text-muted); font-size:10px; font-weight:750; text-transform:uppercase; letter-spacing:.04em; }
.requirement-v3-facts strong { display:block; color:var(--text-primary); font-size:14px; line-height:1.4; overflow-wrap:anywhere; }
.requirement-v3-budget { background:#fbf7ff; border-color:#e3d5ef !important; }
.requirement-v3-budget strong { color:var(--brand-primary-dark); font-size:16px; }
.requirement-v3-preference { margin-top:14px; padding:14px 15px; border-left:3px solid #a855f7; border-radius:0 12px 12px 0; background:#fbf9fd; }
.requirement-v3-preference span { display:block; margin-bottom:5px; color:var(--text-muted); font-size:10px; font-weight:800; text-transform:uppercase; }
.requirement-v3-preference p { margin:0; color:var(--text-tertiary); font-size:13px; line-height:1.6; }
.requirement-v3-footer { display:flex; align-items:center; justify-content:space-between; gap:18px; margin-top:auto; padding-top:21px; }
.requirement-v3-footer > div strong { display:block; font-size:14px; }
.requirement-v3-footer > div span { display:block; margin-top:3px; color:var(--text-muted); font-size:12px; }
.requirement-v3-cta { display:inline-flex; align-items:center; justify-content:center; gap:8px; min-height:44px; flex:0 0 auto; padding:11px 15px; border-radius:11px; color:#fff; background:var(--brand-primary); font-size:12px; font-weight:800; }
.requirement-v3-cta:hover { color:#fff; background:var(--brand-primary-dark); }
.requirement-v3-cta svg { width:16px; height:16px; fill:none; stroke:currentColor; stroke-width:2; }
.requirements-final-v3 { padding:0 0 78px; }
.requirements-final-v3-card { display:flex; align-items:center; justify-content:space-between; gap:35px; padding:36px; border-radius:25px; color:#fff; background:linear-gradient(135deg,#281137,#6d28a0); }
.requirements-final-v3-card > div { max-width:790px; }
.requirements-final-v3-card span { color:#e9d5ff; font-size:11px; font-weight:800; text-transform:uppercase; letter-spacing:.08em; }
.requirements-final-v3-card h2 { margin:7px 0 8px; color:#fff; font-size:clamp(1.65rem,3vw,2.65rem); line-height:1.15; }
.requirements-final-v3-card p { margin:0; color:rgba(255,255,255,.7); font-size:14px; }

/* ---------------- Partner v3 ---------------- */
.partner-page-v3 { background:#fff; }
.partner-hero-v3 { position:relative; overflow:hidden; padding:calc(var(--header-height) + 68px) 0 76px; color:#fff; background:linear-gradient(135deg,#160b20 0%,#35134d 56%,#5b2182 100%); }
.partner-v3-grid-pattern { position:absolute; inset:0; opacity:.1; background-image:linear-gradient(rgba(255,255,255,.14) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.14) 1px,transparent 1px); background-size:48px 48px; mask-image:linear-gradient(90deg,transparent,black 42%,black); }
.partner-hero-v3-layout { position:relative; z-index:1; display:grid; grid-template-columns:minmax(0,1.05fr) minmax(410px,.78fr); align-items:center; gap:74px; }
.partner-flow-panel { padding:18px; border:1px solid rgba(255,255,255,.16); border-radius:26px; background:rgba(255,255,255,.1); box-shadow:0 34px 90px rgba(0,0,0,.25); backdrop-filter:blur(18px); }
.partner-flow-panel-head { padding:7px 7px 18px; }
.partner-flow-panel-head span { display:block; color:rgba(255,255,255,.55); font-size:11px; font-weight:800; text-transform:uppercase; letter-spacing:.09em; }
.partner-flow-panel-head strong { display:block; margin-top:5px; color:#fff; font-size:22px; }
.partner-flow-list { display:grid; gap:9px; }
.partner-flow-list > div { display:grid; grid-template-columns:auto 1fr; gap:14px; align-items:start; padding:16px; border:1px solid rgba(255,255,255,.09); border-radius:16px; color:var(--text-primary); background:#fff; }
.partner-flow-number { width:39px; height:39px; display:grid; place-items:center; border-radius:11px; color:#fff; background:linear-gradient(135deg,var(--brand-primary),#9333ea); font-size:12px; font-weight:850; }
.partner-flow-list strong { display:block; margin-bottom:5px; font-size:15px; }
.partner-flow-list p { margin:0; color:var(--text-muted); font-size:13px; line-height:1.55; }
.partner-flow-footer { display:grid; grid-template-columns:auto 1fr; gap:11px; align-items:start; margin-top:11px; padding:14px; border-radius:14px; background:rgba(255,255,255,.08); }
.partner-flow-footer span { width:27px; height:27px; display:grid; place-items:center; border-radius:50%; color:#bbf7d0; background:rgba(34,197,94,.13); font-weight:900; }
.partner-flow-footer p { margin:2px 0 0; color:rgba(255,255,255,.72); font-size:12px; line-height:1.55; }
.partner-value-strip { position:relative; z-index:2; margin-top:-25px; }
.partner-value-grid { display:grid; grid-template-columns:repeat(3,1fr); overflow:hidden; border:1px solid #e4ddea; border-radius:21px; background:#fff; box-shadow:0 18px 55px rgba(41,23,61,.08); }
.partner-value-grid article { padding:25px; border-right:1px solid #ece7ef; }
.partner-value-grid article:last-child { border-right:0; }
.partner-value-grid strong { display:block; margin-bottom:7px; font-size:16px; }
.partner-value-grid p { margin:0; color:var(--text-muted); font-size:13px; line-height:1.55; }
.partner-paths-section { padding:76px 0; background:#faf9fb; }
.partner-v3-heading { max-width:720px; margin:0 auto 32px; text-align:center; }
.partner-v3-heading h2 { margin:8px 0 10px; font-size:clamp(2.15rem,3.8vw,3.45rem); line-height:1.08; letter-spacing:-.045em; }
.partner-v3-heading p { margin:0; color:var(--text-muted); font-size:15px; }
.partner-path-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; }
.partner-path-card { --path:#7e22ce; display:flex; flex-direction:column; min-height:445px; padding:27px; border:1px solid #e2dbe7; border-radius:22px; background:#fff; box-shadow:0 8px 30px rgba(37,21,52,.035); }
.partner-path-purple { --path:#7e22ce; }
.partner-path-blue { --path:#0369a1; }
.partner-path-green { --path:#047857; }
.partner-path-top { display:flex; align-items:center; justify-content:space-between; gap:12px; }
.partner-path-icon { width:50px; height:50px; display:grid; place-items:center; border-radius:14px; color:var(--path); background:color-mix(in srgb,var(--path) 10%,white); }
.partner-path-icon svg { width:23px; height:23px; fill:none; stroke:currentColor; stroke-width:1.8; }
.partner-path-label { color:var(--path); font-size:11px; font-weight:800; text-transform:uppercase; letter-spacing:.06em; }
.partner-path-card h3 { margin:25px 0 10px; font-size:22px; line-height:1.25; }
.partner-path-card > p { margin:0; color:var(--text-tertiary); font-size:14px; line-height:1.65; }
.partner-path-card ul { display:grid; gap:9px; margin:21px 0 0; padding:0; list-style:none; }
.partner-path-card li { position:relative; padding-left:23px; color:var(--text-secondary); font-size:13px; line-height:1.45; }
.partner-path-card li::before { content:'✓'; position:absolute; left:0; top:0; color:var(--path); font-weight:900; }
.partner-path-card > a { display:flex; align-items:center; justify-content:space-between; gap:8px; margin-top:auto; padding-top:25px; color:var(--path); font-size:13px; font-weight:800; }
.partner-steps-v3-section { padding:78px 0; }
.partner-steps-v3-layout { display:grid; grid-template-columns:minmax(0,.8fr) minmax(440px,1fr); align-items:center; gap:78px; }
.partner-steps-v3-copy h2 { margin:8px 0 13px; font-size:clamp(2rem,3.8vw,3.35rem); line-height:1.08; letter-spacing:-.045em; }
.partner-steps-v3-copy p { margin:0 0 20px; color:var(--text-tertiary); font-size:15px; line-height:1.72; }
.partner-v3-text-link { display:inline-flex; align-items:center; gap:8px; color:var(--brand-primary); font-size:14px; font-weight:800; }
.partner-steps-v3-list { display:grid; gap:11px; padding:13px; border:1px solid #e4ddea; border-radius:22px; background:#faf8fc; }
.partner-steps-v3-list article { display:grid; grid-template-columns:auto 1fr; gap:16px; align-items:start; padding:19px; border-radius:15px; background:#fff; }
.partner-steps-v3-list article > span { width:43px; height:43px; display:grid; place-items:center; border-radius:12px; color:#fff; background:linear-gradient(135deg,var(--brand-primary),#9333ea); font-size:12px; font-weight:850; }
.partner-steps-v3-list h3 { margin:1px 0 5px; font-size:16px; }
.partner-steps-v3-list p { margin:0; color:var(--text-muted); font-size:13px; line-height:1.55; }
.partner-final-v3-section { padding:0 0 78px; }
.partner-final-v3-card { display:flex; align-items:center; justify-content:space-between; gap:38px; padding:38px; border-radius:26px; color:#fff; background:linear-gradient(135deg,#281137,#6d28a0); }
.partner-final-v3-card > div { max-width:780px; }
.partner-final-v3-card span { color:#e9d5ff; font-size:11px; font-weight:800; text-transform:uppercase; letter-spacing:.08em; }
.partner-final-v3-card h2 { margin:8px 0; color:#fff; font-size:clamp(1.7rem,3vw,2.75rem); line-height:1.15; }
.partner-final-v3-card p { margin:0; color:rgba(255,255,255,.7); font-size:14px; }

/* ---------------- Property detail v3 ---------------- */
.property-detail-v3 { padding-bottom:82px; background:linear-gradient(180deg,#f8f6fb 0,#fff 520px); }
.property-v3-breadcrumbs { padding-top:calc(var(--header-height) + 24px); padding-bottom:14px; font-size:12px; }
.property-v3-container { max-width:1240px; }
.property-v3-header { display:grid; grid-template-columns:minmax(0,1fr) auto; gap:32px; align-items:end; margin-bottom:18px; padding:25px 27px; border:1px solid #e4dfea; border-radius:21px; background:#fff; box-shadow:0 8px 30px rgba(38,21,54,.045); }
.property-v3-badges { display:flex; align-items:center; flex-wrap:wrap; gap:7px; margin-bottom:13px; }
.property-v3-header h1 { max-width:810px; margin:0; font-size:clamp(2rem,3.9vw,3.45rem); line-height:1.06; letter-spacing:-.047em; }
.property-v3-header-main > p { display:flex; align-items:center; gap:8px; margin:12px 0 0; color:var(--text-secondary); font-size:15px; }
.property-v3-header-main > p svg { width:18px; height:18px; fill:none; stroke:var(--brand-primary); stroke-width:2; }
.property-v3-price-block { min-width:265px; padding-left:27px; border-left:1px solid #ebe6ef; text-align:right; }
.property-v3-price-block > span { display:block; color:var(--text-muted); font-size:11px; font-weight:800; text-transform:uppercase; letter-spacing:.07em; }
.property-v3-price-block > strong { display:block; margin:6px 0 3px; color:var(--brand-primary-dark); font-size:clamp(2rem,3.2vw,3rem); line-height:1.05; letter-spacing:-.04em; white-space:nowrap; }
.property-v3-price-block > small { display:block; color:var(--text-muted); font-size:13px; }
.property-v3-price-block > b { display:block; margin-top:11px; color:var(--text-secondary); font-size:12px; }
.property-v3-top-grid { display:grid; grid-template-columns:minmax(0,1fr) 330px; gap:19px; align-items:start; }
.property-v3-media-column { min-width:0; }
.property-detail-v3 .property-showcase { padding:9px; border-radius:19px; }
.property-detail-v3 .property-showcase .property-media-stage { aspect-ratio:16/9; max-height:570px; border-radius:13px; }
.property-detail-v3 .property-thumbnail { width:96px; height:67px; flex-basis:96px; }
.property-v3-facts { display:grid; grid-template-columns:repeat(5,minmax(0,1fr)); gap:8px; margin-top:10px; }
.property-v3-facts > div { display:grid; grid-template-columns:auto minmax(0,1fr); align-items:center; gap:10px; min-width:0; padding:13px; border:1px solid #e8e2eb; border-radius:13px; background:#fff; }
.property-v3-fact-icon { width:35px; height:35px; display:grid; place-items:center; border-radius:10px; color:var(--brand-primary); background:var(--brand-primary-soft); }
.property-v3-fact-icon svg { width:18px; height:18px; fill:none; stroke:currentColor; stroke-width:1.7; }
.property-v3-facts strong { display:block; overflow:hidden; color:var(--text-primary); font-size:13px; text-overflow:ellipsis; white-space:nowrap; }
.property-v3-facts div div span { display:block; margin-top:3px; color:var(--text-muted); font-size:10px; text-transform:uppercase; letter-spacing:.04em; }
.property-v3-enquiry-card { position:sticky; top:calc(var(--header-height) + 18px); padding:26px; border:1px solid #dfd6e5; border-radius:20px; background:#fff; box-shadow:0 16px 48px rgba(39,23,58,.08); }
.property-v3-enquiry-eyebrow { display:block; color:var(--brand-primary); font-size:11px; font-weight:850; letter-spacing:.07em; text-transform:uppercase; }
.property-v3-enquiry-card h2 { margin:8px 0 10px; font-size:1.55rem; line-height:1.25; }
.property-v3-enquiry-card > p { margin:0; color:var(--text-muted); font-size:13px; line-height:1.65; }
.property-v3-enquiry-summary { display:grid; grid-template-columns:1fr 1fr; gap:8px; margin:19px 0; }
.property-v3-enquiry-summary div { padding:12px; border-radius:11px; background:#f8f6fa; }
.property-v3-enquiry-summary span { display:block; color:var(--text-muted); font-size:9px; font-weight:750; text-transform:uppercase; }
.property-v3-enquiry-summary strong { display:block; margin-top:5px; font-size:12px; line-height:1.4; }
.property-v3-enquiry-actions { display:grid; gap:9px; }
.property-v3-enquiry-actions .btn { width:100%; }
.property-v3-enquiry-card > small { display:block; margin-top:12px; color:var(--text-muted); font-size:10px; line-height:1.5; text-align:center; }
.property-v3-content-grid { display:grid; grid-template-columns:minmax(0,1fr) 335px; gap:19px; align-items:start; margin-top:20px; }
.property-v3-content-main { display:grid; gap:16px; min-width:0; }
.property-v3-section,
.property-v3-side-card { padding:27px; border:1px solid #e5dfea; border-radius:19px; background:#fff; box-shadow:0 7px 26px rgba(39,23,58,.035); }
.property-v3-section-head { display:flex; align-items:end; justify-content:space-between; gap:18px; margin-bottom:20px; padding-bottom:16px; border-bottom:1px solid #ece7ef; }
.property-v3-section-head span,
.property-v3-side-label { display:block; color:var(--brand-primary); font-size:10px; font-weight:850; text-transform:uppercase; letter-spacing:.08em; }
.property-v3-section-head h2,
.property-v3-side-card h2 { margin:5px 0 0; font-size:1.35rem; }
.property-v3-section-head > p { margin:0; color:var(--text-muted); font-size:12px; }
.property-v3-detail-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); column-gap:30px; }
.property-v3-detail-grid > div { display:flex; align-items:center; justify-content:space-between; gap:16px; min-width:0; padding:13px 0; border-bottom:1px solid #eeeaf1; }
.property-v3-detail-grid span { color:var(--text-muted); font-size:13px; }
.property-v3-detail-grid strong { color:var(--text-primary); font-size:14px; text-align:right; overflow-wrap:anywhere; }
.amenities-grid-v3 { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:9px; }
.amenities-grid-v3 .amenity-item { display:flex; align-items:center; gap:9px; padding:12px; border:1px solid #ebe6ef; border-radius:11px; background:#faf9fb; font-size:13px; }
.amenities-grid-v3 .amenity-item svg { width:16px; height:16px; fill:none; stroke:var(--brand-primary); stroke-width:2.4; }
.property-v3-content-side { position:sticky; top:calc(var(--header-height) + 18px); display:grid; gap:13px; }
.property-v3-subsection { margin-top:20px; }
.property-v3-subsection h3 { margin:0 0 11px; font-size:13px; }
.property-v3-side-card .clean-tag { font-size:12px; }
.property-v3-side-card .landmark-item { padding:11px 0; border-bottom:1px solid #eeeaf1; background:transparent; }
.property-v3-side-card .landmark-item span { font-size:13px; }
.property-v3-side-card .landmark-item strong { font-size:12px; }
.property-v3-full-btn { width:100%; margin-top:18px; }
.property-v3-resource-list { display:grid; gap:8px; margin-top:18px; }
.property-v3-resource-list a,
.property-v3-resource-list button { display:flex; align-items:center; justify-content:space-between; gap:12px; width:100%; padding:13px; border:1px solid #e8e2eb; border-radius:11px; color:var(--text-primary); background:#faf9fb; text-align:left; cursor:pointer; }
.property-v3-resource-list span { font-size:13px; font-weight:700; }
.property-v3-resource-list b { color:var(--brand-primary); font-size:11px; }
.property-v3-owner-cta { display:flex; flex-direction:column; padding:23px; border-radius:19px; color:#fff; background:linear-gradient(145deg,#311b47,#6b2f9d); }
.property-v3-owner-cta:hover { color:#fff; transform:translateY(-2px); }
.property-v3-owner-cta span { color:#dec6f2; font-size:10px; font-weight:800; text-transform:uppercase; letter-spacing:.08em; }
.property-v3-owner-cta strong { margin:8px 0 16px; font-size:18px; line-height:1.35; }
.property-v3-owner-cta b { font-size:12px; }
.property-similar-v3 { margin-top:38px; }
.property-similar-v3 .property-similar-heading h2 { font-size:2rem; }
.property-v3-mobile-actions { display:none; }

@media (max-width: 1050px) {
  .requirements-hero-v3-layout,
  .partner-hero-v3-layout { gap:42px; }
  .property-v3-top-grid { grid-template-columns:minmax(0,1fr) 300px; }
  .property-v3-content-grid { grid-template-columns:minmax(0,1fr) 300px; }
  .property-v3-facts { grid-template-columns:repeat(3,minmax(0,1fr)); }
  .partner-path-card { min-height:485px; }
}

@media (max-width: 820px) {
  .home-quick-categories-section { padding-top:46px; padding-bottom:22px; }
  .home-featured-properties-section { padding-top:30px; padding-bottom:52px; }
  .home-quick-categories-section .section-header,
  .home-featured-properties-section .section-header { margin-bottom:23px; }

  .requirements-hero-v3,
  .partner-hero-v3 { padding:calc(var(--header-height-mobile) + 45px) 0 54px; }
  .requirements-hero-v3-layout,
  .partner-hero-v3-layout { grid-template-columns:1fr; gap:34px; }
  .requirements-hero-v3-copy,
  .partner-hero-v3-copy { text-align:center; }
  .requirements-hero-v3-copy h1,
  .partner-hero-v3-copy h1 { margin-left:auto; margin-right:auto; font-size:clamp(2.55rem,9.5vw,4.25rem); }
  .requirements-hero-v3-copy > p,
  .partner-hero-v3-copy > p { margin-left:auto; margin-right:auto; font-size:15px; }
  .requirements-v3-actions,
  .partner-v3-actions { justify-content:center; }
  .requirements-match-panel,
  .partner-flow-panel { width:min(100%,610px); margin:0 auto; }
  .requirements-how-grid,
  .partner-value-grid { grid-template-columns:1fr; }
  .requirements-how-grid article,
  .partner-value-grid article { border-right:0; border-bottom:1px solid #ece7ef; }
  .requirements-how-grid article:last-child,
  .partner-value-grid article:last-child { border-bottom:0; }
  .requirements-v3-heading { align-items:flex-start; flex-direction:column; gap:12px; }
  .requirements-filterbar-v3 { grid-template-columns:1fr 1fr; }
  .requirements-filterbar-v3 .requirements-search-control { grid-column:1/-1; }
  .requirements-grid-v3 { grid-template-columns:1fr; }
  .requirements-final-v3-card,
  .partner-final-v3-card { align-items:flex-start; flex-direction:column; }
  .partner-path-grid { grid-template-columns:1fr; }
  .partner-path-card { min-height:0; }
  .partner-steps-v3-layout { grid-template-columns:1fr; gap:30px; }

  .property-v3-header { grid-template-columns:1fr; align-items:start; }
  .property-v3-price-block { min-width:0; padding:19px 0 0; border-left:0; border-top:1px solid #ebe6ef; text-align:left; }
  .property-v3-top-grid,
  .property-v3-content-grid { grid-template-columns:1fr; }
  .property-v3-enquiry-card,
  .property-v3-content-side { position:static; }
  .property-v3-enquiry-card { order:2; }
  .property-v3-content-side { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .property-v3-owner-cta { min-height:100%; }
}

@media (max-width: 560px) {
  .home-quick-categories-section { padding-top:38px; padding-bottom:15px; }
  .home-featured-properties-section { padding-top:24px; padding-bottom:42px; }
  .home-quick-categories-section .section-header,
  .home-featured-properties-section .section-header { margin-bottom:19px; }
  .home-featured-properties-section .text-center { margin-top:25px !important; }

  .requirements-hero-v3,
  .partner-hero-v3 { padding-top:calc(var(--header-height-mobile) + 33px); padding-bottom:42px; }
  .requirements-v3-eyebrow,
  .partner-v3-eyebrow { min-height:30px; padding:6px 10px; font-size:9px; }
  .requirements-hero-v3-copy h1,
  .partner-hero-v3-copy h1 { margin-top:15px; font-size:clamp(2.1rem,11vw,3.05rem); line-height:1.02; }
  .requirements-hero-v3-copy > p,
  .partner-hero-v3-copy > p { margin-top:15px; font-size:13px; line-height:1.62; }
  .requirements-v3-actions,
  .partner-v3-actions { display:grid; grid-template-columns:1fr; margin-top:22px; }
  .requirements-v3-actions .btn,
  .partner-v3-actions .btn { width:100%; }
  .requirements-v3-note { font-size:11px !important; }
  .requirements-match-panel,
  .partner-flow-panel { padding:11px; border-radius:19px; }
  .requirements-match-panel-head div strong,
  .partner-flow-panel-head strong { font-size:18px; }
  .requirements-match-metrics { grid-template-columns:1fr; }
  .requirements-match-metrics div { display:flex; align-items:center; justify-content:space-between; padding:13px; border-right:0; border-bottom:1px solid rgba(255,255,255,.1); }
  .requirements-match-metrics div:last-child { border-bottom:0; }
  .requirements-match-metrics strong { font-size:24px; }
  .requirements-match-metrics span { margin:0; font-size:11px; }
  .requirements-match-message { padding:14px; }
  .requirements-how-section,
  .partner-value-strip { margin-top:-15px; }
  .requirements-how-grid article,
  .partner-value-grid article { padding:18px; }
  .requirements-how-grid h2,
  .partner-value-grid strong { font-size:15px; }
  .requirements-how-grid p,
  .partner-value-grid p { font-size:12px; }
  .requirements-finder-v3,
  .partner-paths-section,
  .partner-steps-v3-section { padding:48px 0; }
  .requirements-v3-heading h2,
  .partner-v3-heading h2 { font-size:2rem; }
  .requirements-v3-heading p,
  .partner-v3-heading p { font-size:13px; }
  .requirements-filterbar-v3 { grid-template-columns:1fr; gap:6px; padding:7px; }
  .requirements-filterbar-v3 .requirements-search-control { grid-column:auto; }
  .requirements-filterbar-v3 .requirements-select-control { border-left:0; border-top:1px solid #eee9f1; padding:10px 12px; }
  .requirement-card-v3 { padding:18px; border-radius:17px; }
  .requirement-v3-priority { font-size:9px; }
  .requirement-v3-title-row { gap:11px; margin-top:16px; }
  .requirement-v3-title-row .requirement-type-icon { width:44px; height:44px; flex-basis:44px; }
  .requirement-v3-title-row h3 { font-size:18px; }
  .requirement-v3-facts { grid-template-columns:1fr 1fr; }
  .requirement-v3-budget { grid-column:1/-1; }
  .requirement-v3-footer { align-items:stretch; flex-direction:column; }
  .requirement-v3-cta { width:100%; }
  .requirements-final-v3,
  .partner-final-v3-section { padding-bottom:50px; }
  .requirements-final-v3-card,
  .partner-final-v3-card { padding:25px; border-radius:20px; }
  .partner-path-card { padding:21px; border-radius:18px; }
  .partner-path-card h3 { font-size:20px; }
  .partner-path-card > p { font-size:13px; }
  .partner-steps-v3-list article { padding:15px; }

  .property-detail-v3 { padding-bottom:88px; }
  .property-v3-breadcrumbs { padding-top:calc(var(--header-height-mobile) + 14px); padding-bottom:9px; font-size:10px; }
  .property-v3-container { padding-left:12px; padding-right:12px; }
  .property-v3-header { gap:16px; margin-bottom:12px; padding:18px; border-radius:16px; }
  .property-v3-header h1 { font-size:clamp(1.8rem,8.7vw,2.45rem); }
  .property-v3-header-main > p { font-size:13px; }
  .property-v3-price-block { padding-top:15px; }
  .property-v3-price-block > strong { font-size:1.9rem; white-space:normal; }
  .property-v3-top-grid { gap:12px; }
  .property-detail-v3 .property-showcase { padding:6px; border-radius:14px; }
  .property-detail-v3 .property-showcase .property-media-stage { aspect-ratio:16/10; border-radius:9px; }
  .property-detail-v3 .property-thumbnail { width:78px; height:56px; flex-basis:78px; }
  .property-v3-facts { display:flex; overflow-x:auto; gap:8px; padding-bottom:3px; scrollbar-width:none; }
  .property-v3-facts::-webkit-scrollbar { display:none; }
  .property-v3-facts > div { flex:0 0 155px; padding:11px; }
  .property-v3-enquiry-card { padding:20px; border-radius:17px; }
  .property-v3-enquiry-card h2 { font-size:1.35rem; }
  .property-v3-enquiry-actions .btn-outline { display:none; }
  .property-v3-content-grid { gap:12px; margin-top:12px; }
  .property-v3-section,
  .property-v3-side-card { padding:19px; border-radius:16px; }
  .property-v3-section-head { align-items:flex-start; flex-direction:column; gap:6px; margin-bottom:15px; padding-bottom:13px; }
  .property-v3-section-head h2,
  .property-v3-side-card h2 { font-size:1.2rem; }
  .property-v3-detail-grid { grid-template-columns:1fr; }
  .property-v3-detail-grid > div { padding:11px 0; }
  .property-v3-detail-grid span { font-size:12px; }
  .property-v3-detail-grid strong { font-size:13px; }
  .amenities-grid-v3 { grid-template-columns:1fr 1fr; gap:7px; }
  .amenities-grid-v3 .amenity-item { padding:10px; font-size:12px; }
  .property-v3-content-side { grid-template-columns:1fr; }
  .property-v3-mobile-actions { display:grid; grid-template-columns:.72fr 1.28fr; }
  .property-similar-v3 { margin-top:27px; }
}

/* Property configuration cards inside the v3 detail layout */
.configurations-list-v3 { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; }
.configurations-list-v3 .config-card { padding:18px; border:1px solid #e6dfea; border-radius:14px; background:#faf9fb; box-shadow:none; }
.configurations-list-v3 .config-card:hover { border-color:#d3c5df; transform:none; box-shadow:0 8px 24px rgba(38,22,54,.05); }
.configurations-list-v3 .config-header h4 { font-size:16px; }
.configurations-list-v3 .config-details { gap:7px; }
.configurations-list-v3 .config-details span { padding:6px 9px; border:1px solid #e8e2eb; border-radius:8px; background:#fff; font-size:12px; }
.configurations-list-v3 .config-price .price { font-size:21px; }
.configurations-list-v3 .config-availability { font-size:11px; }
.configurations-list-v3 .btn { min-height:39px; font-size:11px; }
@media (max-width:560px) {
  .configurations-list-v3 { grid-template-columns:1fr; }
}


/* ===== premium-v17.css ===== */
/* =========================================================
   AVESH REALTY — Premium Brand Refresh v1.7
   Uses official brand colour sampled from the supplied logo.
   ========================================================= */

:root {
  --brand-primary: #67187A;
  --brand-primary-dark: #4D105D;
  --brand-primary-darker: #2B0A34;
  --brand-primary-light: #8A3B9C;
  --brand-primary-lighter: #B67AC1;
  --brand-accent: #B55DC2;
  --brand-primary-soft: rgba(103, 24, 122, .075);
  --brand-primary-medium: rgba(103, 24, 122, .14);
  --bg-primary: #FFFFFF;
  --bg-secondary: #FBF9FC;
  --bg-tertiary: #F3EEF5;
  --surface: #FFFFFF;
  --border: #E7DFE9;
  --border-light: #F1EBF2;
  --border-focus: #7A2B8D;
  --text-primary: #171219;
  --text-secondary: #4C4550;
  --text-tertiary: #706876;
  --text-muted: #938A98;
  --max-width: 1320px;
  --header-height: 78px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-2xl: 36px;
  --shadow-sm: 0 4px 14px rgba(34, 16, 39, .055);
  --shadow-md: 0 10px 28px rgba(34, 16, 39, .075);
  --shadow-lg: 0 18px 48px rgba(34, 16, 39, .105);
  --shadow-xl: 0 28px 70px rgba(34, 16, 39, .14);
  --shadow-brand: 0 12px 32px rgba(103, 24, 122, .24);
}

body {
  background: #fff;
  color: var(--text-primary);
}

body::selection { background: rgba(103,24,122,.16); }

.container { max-width: var(--max-width); }

/* ---------- shared typography ---------- */
.heading-1,
.heading-2,
.heading-3,
.section-header h2,
.property-v3-header h1,
.requirements-hero-v3-copy h1,
.partner-hero-v3-copy h1,
.owner-clean-copy h1 {
  letter-spacing: -.045em;
  text-wrap: balance;
}

.section {
  padding-top: 76px;
  padding-bottom: 76px;
}

.section-header {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-header h2,
.section-header .heading-3 {
  font-size: clamp(1.95rem, 3.5vw, 3rem);
  line-height: 1.1;
}

.section-header p {
  max-width: 620px;
  margin: 10px auto 0;
  color: var(--text-tertiary);
  font-size: 1rem;
  line-height: 1.65;
}

.section-eyebrow,
.owner-kicker,
.requirements-v3-eyebrow,
.partner-v3-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.section-eyebrow::before,
.owner-kicker::before,
.requirements-v3-eyebrow::before,
.partner-v3-eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

/* ---------- buttons ---------- */
.btn,
.search-button,
.btn-whatsapp,
.requirement-v3-cta {
  border-radius: 13px;
  font-weight: 750;
  letter-spacing: -.01em;
  box-shadow: none;
}

.btn-primary,
.search-button {
  background: linear-gradient(135deg, #67187A 0%, #4D105D 100%);
  box-shadow: 0 10px 24px rgba(103,24,122,.22);
}

.btn-primary:hover:not(:disabled),
.search-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(103,24,122,.28);
}

.btn-outline {
  border-color: #D9CFDC;
  background: #fff;
}

.btn-outline:hover:not(:disabled) {
  border-color: rgba(103,24,122,.38);
  color: var(--brand-primary);
  background: #FCF9FD;
}

.btn-secondary {
  background: #F4EDF6;
  color: var(--brand-primary-dark);
}

.btn-large { min-height: 52px; padding: 14px 24px; }

/* ---------- logo ---------- */
.logo {
  gap: 0;
  min-width: 188px;
}

.logo-mark,
.logo-text { display: none !important; }

.brand-logo-image {
  display: block;
  width: 190px;
  height: 52px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand-logo {
  width: 210px;
  height: 66px;
  object-fit: contain;
  object-position: left center;
}

/* ---------- header ---------- */
.header {
  height: var(--header-height);
  background: rgba(255,255,255,.9);
  border-bottom: 1px solid rgba(103,24,122,.07);
  box-shadow: 0 8px 28px rgba(32,16,37,.045);
  backdrop-filter: blur(18px) saturate(150%);
}

.header.scrolled { background: rgba(255,255,255,.97); }

.nav-desktop { gap: 2px; }

.nav-link,
.dropdown-toggle {
  min-height: 42px;
  padding: 10px 12px;
  color: #4F4852;
  font-size: .84rem;
  font-weight: 650;
}

.nav-link::after { display: none; }

.nav-link:hover,
.nav-link.active,
.dropdown-toggle:hover {
  color: var(--brand-primary);
  background: #F6F0F7;
}

.dropdown-menu {
  border-color: rgba(103,24,122,.1);
  box-shadow: 0 22px 58px rgba(31,13,35,.13);
}

.btn-whatsapp {
  min-height: 42px;
  padding: 10px 17px;
  background: #171219;
  box-shadow: none;
}

.btn-whatsapp:hover {
  background: var(--brand-primary-dark);
  box-shadow: 0 10px 24px rgba(103,24,122,.22);
}

/* ---------- home hero ---------- */
.hero {
  min-height: 86vh;
  align-items: center;
  padding: calc(var(--header-height) + 42px) 0 58px;
  background: #150D18;
}

.hero-bg img {
  filter: brightness(.62) saturate(.88);
  transform: scale(1.035);
}

.hero:hover .hero-bg img { transform: scale(1.065); }

.hero-overlay {
  background:
    radial-gradient(circle at 50% 42%, rgba(103,24,122,.24), transparent 38%),
    linear-gradient(180deg, rgba(13,8,15,.42) 0%, rgba(19,10,22,.54) 58%, rgba(16,9,18,.76) 100%);
}

.hero-content { padding-top: 0; }

.hero-content .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-brand-logo {
  width: 174px;
  max-height: 62px;
  object-fit: contain;
  margin: 0 auto 22px;
  opacity: .96;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.2));
  animation: heroLogoIn .8s var(--ease-out) both;
}

.hero-title {
  max-width: 880px;
  margin: 0 auto 18px;
  font-size: clamp(2.8rem, 6.2vw, 5.25rem);
  line-height: .99;
  font-weight: 760;
}

.hero-subtitle {
  max-width: 690px;
  margin: 0 auto 32px;
  color: rgba(255,255,255,.77);
  font-size: clamp(1rem,1.7vw,1.22rem);
  line-height: 1.65;
}

.search-box {
  position: relative;
  z-index: 24;
  width: min(1100px, 100%);
  max-width: none;
  margin: 0 auto;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 22px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 30px 78px rgba(9,4,11,.32);
  backdrop-filter: blur(20px);
}

.search-form { min-height: 76px; }

.search-field { padding: 15px 20px; }
.search-field:first-child { flex: 1.7; }
.search-label { font-size: .66rem; color: #8A808E; letter-spacing: .1em; }
.search-input,
.search-select { font-size: .98rem; font-weight: 650; }
.search-input::placeholder { color: #8F8592; }
.search-divider { margin: 14px 0; }
.search-button {
  min-width: 150px;
  margin: 4px;
  padding: 0 24px;
  border-radius: 16px;
}

.search-results {
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 9999;
  max-height: 430px;
  border-radius: 18px;
  border-color: rgba(103,24,122,.12);
  box-shadow: 0 28px 72px rgba(22,10,25,.24);
}

.search-item { padding: 14px 16px; }
.search-item:hover { background: #F7F0F8; }
.search-item-title { font-size: .92rem; }
.search-item-subtitle { font-size: .75rem; }

.hero-stats {
  justify-content: center;
  margin-top: 28px;
  gap: 38px;
}

.hero-stat { text-align: center; }
.hero-stat-number { font-size: 1.35rem; }
.hero-stat-label { font-size: .77rem; color: rgba(255,255,255,.58); }

.hero-orb {
  opacity: .65;
  filter: blur(2px);
}

@keyframes heroLogoIn {
  from { opacity: 0; transform: translateY(-10px) scale(.97); }
  to { opacity: .96; transform: none; }
}

/* ---------- home sections ---------- */
.home-quick-categories-section {
  padding-top: 58px !important;
  padding-bottom: 28px !important;
}

.home-featured-properties-section {
  padding-top: 30px !important;
  padding-bottom: 70px !important;
}

.category-grid {
  grid-template-columns: repeat(6,minmax(0,1fr));
  gap: 13px;
}

.category-card {
  min-height: 172px;
  justify-content: center;
  padding: 22px 14px;
  border: 1px solid #ECE5EE;
  border-radius: 20px;
  background: linear-gradient(180deg,#fff 0%,#FCFAFD 100%);
  box-shadow: 0 6px 22px rgba(42,19,49,.045);
}

.category-card::before { height: 2px; }
.category-card:hover { transform: translateY(-5px); box-shadow: 0 18px 42px rgba(42,19,49,.095); }
.category-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 14px;
  border-radius: 15px;
  background: #F5EEF7;
}
.category-card h4 { font-size: .96rem; }
.category-card p { margin-top: 3px; font-size: .76rem; line-height: 1.35; }

.features-grid { gap: 16px; }
.feature-card {
  padding: 26px;
  border: 1px solid #ECE5EE;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 6px 24px rgba(42,19,49,.04);
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.feature-icon { border-radius: 15px; }

/* ---------- property cards ---------- */
.properties-grid { gap: 22px; }

.property-card {
  border: 1px solid #E8E0EA;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(43,20,49,.055);
  transition: transform .32s var(--ease-out), box-shadow .32s var(--ease-out), border-color .32s ease;
}

.property-card:hover {
  transform: translateY(-7px);
  border-color: rgba(103,24,122,.18);
  box-shadow: 0 22px 52px rgba(43,20,49,.12);
}

.property-card-image-wrapper {
  aspect-ratio: 16 / 10;
  background: #EFE9F0;
}

.property-card-image {
  transition: transform .75s var(--ease-out), filter .35s ease;
}

.property-card:hover .property-card-image { transform: scale(1.045); }

.property-card-badges { top: 14px; left: 14px; gap: 6px; }
.property-card-badges .badge,
.property-card-transactions span,
.property-video-badge {
  padding: 7px 10px;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .02em;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.property-card-transactions { top: 14px; right: 14px; }
.property-card-transactions span { background: rgba(255,255,255,.94); }
.property-video-badge { bottom: 14px; right: 14px; }

.property-card-body { padding: 20px 20px 17px; }
.property-card-title {
  min-height: 0;
  margin: 0 0 9px;
  font-size: 1.08rem;
  line-height: 1.32;
  letter-spacing: -.025em;
}
.property-card-location { margin-bottom: 13px; font-size: .86rem; }
.property-card-specs { min-height: 32px; gap: 7px; }
.property-card-spec {
  padding: 6px 9px;
  border-radius: 9px;
  background: #F6F2F7;
  color: #625868;
  font-size: .72rem;
  font-weight: 650;
}
.property-card-price { margin-top: 14px; gap: 8px; }
.property-card-price .price { color: var(--brand-primary-dark); font-size: 1.42rem; letter-spacing: -.03em; }
.property-card-price .price-unit { font-size: .73rem; }
.property-card-possession { margin-top: 7px; color: #918795; font-size: .72rem; }
.property-card-actions {
  min-height: 66px;
  padding: 12px 18px 15px;
  border-top: 1px solid #F0EAF1;
}
.property-card-primary-action { min-height: 43px; }
.property-card-icon-actions .btn { width: 42px; min-width: 42px; height: 42px; border-radius: 12px; }

/* ---------- listings page ---------- */
.page-header {
  padding: calc(var(--header-height) + 52px) 0 42px;
  background:
    radial-gradient(circle at 85% 25%,rgba(103,24,122,.14),transparent 24%),
    linear-gradient(180deg,#FBF8FC 0%,#fff 100%);
  border-bottom: 1px solid #EFE8F0;
}
.page-header h1 { font-size: clamp(2.45rem,5vw,4.5rem); }
.page-header p { margin-top: 10px; font-size: 1rem; }

.properties-toolbar,
.filters-sidebar,
.mobile-filter-sheet,
.property-listing-toolbar {
  border-color: #E9E1EB;
  box-shadow: 0 8px 28px rgba(43,20,49,.045);
}

/* ---------- property detail ---------- */
.property-detail-v3 {
  padding-bottom: 92px;
  background:
    radial-gradient(circle at 100% 0%,rgba(103,24,122,.075),transparent 27%),
    linear-gradient(180deg,#FCFAFD 0%,#fff 640px);
}

.property-v3-breadcrumbs {
  padding-top: calc(var(--header-height) + 24px);
  padding-bottom: 18px;
  color: #8C828F;
  font-size: .78rem;
}

.property-v3-container { max-width: 1320px; }

.property-v3-header {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  align-items: end;
  gap: 36px;
  margin-bottom: 26px;
  padding: 0 2px 24px;
  border: 0;
  border-bottom: 1px solid #E9E1EB;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.property-v3-badges { margin-bottom: 14px; gap: 8px; }
.property-v3-header h1 {
  max-width: 840px;
  font-size: clamp(2.2rem,4.1vw,4rem);
  line-height: 1.03;
}
.property-v3-header-main > p { margin-top: 13px; font-size: .98rem; }
.property-v3-price-block {
  min-width: 270px;
  padding: 0 0 3px 30px;
  border-left: 1px solid #E1D7E4;
}
.property-v3-price-block > span { font-size: .68rem; }
.property-v3-price-block > strong { color: var(--brand-primary); font-size: clamp(2rem,3vw,3rem); }
.property-v3-price-block > small { font-size: .78rem; }
.property-v3-price-block > b { font-size: .76rem; }

.property-v3-top-grid {
  grid-template-columns: minmax(0,1fr) 365px;
  gap: 24px;
}

.property-detail-v3 .property-showcase {
  padding: 0;
  border: 0;
  border-radius: 28px;
  background: transparent;
  box-shadow: none;
}

.property-detail-v3 .property-showcase .property-media-stage {
  aspect-ratio: 16 / 9.7;
  max-height: 610px;
  overflow: hidden;
  border: 1px solid rgba(103,24,122,.08);
  border-radius: 26px;
  box-shadow: 0 20px 54px rgba(39,17,45,.13);
}

.property-photo-main,
.property-video-poster,
.property-video-play-surface,
.property-photo-main img,
.property-video-poster img { width: 100%; height: 100%; }
.property-photo-main img,
.property-video-poster img { object-fit: cover; }

.property-media-arrow {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(18,11,21,.72);
  box-shadow: 0 8px 22px rgba(0,0,0,.2);
}
.property-media-prev { left: 18px; }
.property-media-next { right: 18px; }
.property-media-counter {
  right: 18px;
  bottom: 18px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(19,11,21,.7);
}

.property-thumbnail-strip {
  gap: 10px;
  margin-top: 13px;
  padding: 2px 1px 4px;
}
.property-detail-v3 .property-thumbnail {
  width: 104px;
  height: 72px;
  flex-basis: 104px;
  border: 2px solid transparent;
  border-radius: 13px;
  box-shadow: 0 4px 14px rgba(34,16,39,.08);
}
.property-thumbnail.active { border-color: var(--brand-primary); box-shadow: 0 0 0 3px rgba(103,24,122,.11); }

.property-status-ribbon {
  top: 26px;
  left: -52px;
  bottom: auto;
  width: 220px;
  padding: 10px 0;
  transform: rotate(-38deg);
  font-size: .75rem;
  letter-spacing: .17em;
}

.property-v3-facts {
  grid-template-columns: repeat(5,minmax(0,1fr));
  gap: 10px;
  margin-top: 14px;
}
.property-v3-facts > div {
  padding: 15px;
  border-color: #E9E1EB;
  border-radius: 16px;
  box-shadow: 0 5px 18px rgba(38,16,43,.035);
}
.property-v3-fact-icon { width: 39px; height: 39px; border-radius: 12px; }
.property-v3-facts strong { font-size: .86rem; }
.property-v3-facts div div span { font-size: .62rem; }

.property-v3-enquiry-card {
  top: calc(var(--header-height) + 18px);
  padding: 30px;
  border: 1px solid rgba(103,24,122,.13);
  border-radius: 25px;
  background:
    radial-gradient(circle at 100% 0%,rgba(103,24,122,.13),transparent 33%),
    #fff;
  box-shadow: 0 20px 56px rgba(42,18,48,.11);
}
.property-v3-enquiry-card::before {
  content: '';
  display: block;
  width: 42px;
  height: 4px;
  margin-bottom: 21px;
  border-radius: 99px;
  background: var(--brand-primary);
}
.property-v3-enquiry-eyebrow { font-size: .7rem; }
.property-v3-enquiry-card h2 { margin: 10px 0 12px; font-size: 1.72rem; line-height: 1.18; }
.property-v3-enquiry-card > p { font-size: .87rem; }
.property-v3-enquiry-summary { gap: 10px; margin: 22px 0; }
.property-v3-enquiry-summary div { padding: 14px; border-radius: 13px; background: #F7F2F8; }
.property-v3-enquiry-summary span { font-size: .62rem; }
.property-v3-enquiry-summary strong { font-size: .82rem; }
.property-v3-enquiry-card > small { font-size: .68rem; }

.property-v3-content-grid {
  grid-template-columns: minmax(0,1fr) 365px;
  gap: 24px;
  margin-top: 28px;
}
.property-v3-content-main { gap: 20px; }
.property-v3-section,
.property-v3-side-card {
  padding: 30px;
  border-color: #E9E1EB;
  border-radius: 23px;
  box-shadow: 0 8px 28px rgba(39,17,45,.045);
}
.property-v3-section-head { margin-bottom: 22px; padding-bottom: 18px; }
.property-v3-section-head h2,
.property-v3-side-card h2 { font-size: 1.55rem; }
.property-v3-section-head span,
.property-v3-side-label { font-size: .66rem; }
.property-v3-detail-grid { column-gap: 38px; }
.property-v3-detail-grid > div { min-height: 52px; }
.property-v3-detail-grid span { font-size: .86rem; }
.property-v3-detail-grid strong { font-size: .91rem; }
.amenities-grid-v3 { gap: 10px; }
.amenities-grid-v3 .amenity-item { min-height: 48px; padding: 13px 14px; font-size: .84rem; }
.property-v3-side-card .landmark-item span { font-size: .85rem; }
.property-v3-side-card .landmark-item strong { font-size: .78rem; }
.property-v3-resource-list a,
.property-v3-resource-list button { min-height: 50px; padding: 14px; border-radius: 13px; }
.property-v3-resource-list span { font-size: .86rem; }
.property-v3-owner-cta {
  padding: 26px;
  border-radius: 23px;
  background:
    radial-gradient(circle at 95% 12%,rgba(255,255,255,.14),transparent 28%),
    linear-gradient(145deg,#25112C,#67187A);
  box-shadow: 0 18px 42px rgba(54,17,62,.2);
}
.property-v3-owner-cta strong { font-size: 1.22rem; }
.property-similar-v3 { margin-top: 50px; }

/* ---------- requirements page ---------- */
.requirements-hero-v3 {
  padding: calc(var(--header-height) + 72px) 0 76px;
  background:
    radial-gradient(circle at 78% 18%,rgba(174,100,188,.27),transparent 27%),
    radial-gradient(circle at 12% 100%,rgba(103,24,122,.3),transparent 35%),
    linear-gradient(135deg,#160A19 0%,#32103C 50%,#67187A 100%);
}
.requirements-hero-v3-layout { grid-template-columns: minmax(0,1.08fr) minmax(390px,.78fr); gap: 72px; }
.requirements-hero-v3-copy h1 { max-width: 750px; font-size: clamp(2.8rem,5vw,5rem); line-height: 1.01; }
.requirements-hero-v3-copy > p { max-width: 660px; font-size: 1.05rem; }
.requirements-v3-actions { gap: 11px; }
.requirements-match-panel {
  padding: 26px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 25px;
  background: rgba(255,255,255,.095);
  box-shadow: 0 28px 70px rgba(7,2,8,.24);
  backdrop-filter: blur(18px);
}
.requirements-match-panel-head strong { font-size: 1.55rem; }
.requirements-match-metrics { gap: 10px; }
.requirements-match-metrics > div { padding: 18px 14px; border-radius: 16px; }
.requirements-match-metrics strong { font-size: 1.75rem; }
.requirements-match-metrics span { font-size: .72rem; }
.requirements-how-section { padding: 26px 0; background: #fff; border-bottom: 1px solid #EEE6F0; }
.requirements-how-grid { gap: 14px; }
.requirements-how-grid article { padding: 18px 20px; border-radius: 16px; background: #FBF9FC; }
.requirements-how-grid h2 { font-size: .98rem; }
.requirements-how-grid p { font-size: .78rem; }
.requirements-finder-v3 { padding: 70px 0 80px; background: #FBF9FC; }
.requirements-v3-heading h2 { font-size: clamp(2rem,3vw,3.1rem); }
.requirements-filterbar-v3 {
  margin: 28px 0 26px;
  padding: 10px;
  border: 1px solid #E8DFEA;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 32px rgba(41,18,47,.055);
}
.requirements-search-control,
.requirements-select-control { min-height: 58px; }
.requirements-grid-v3 { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 20px; }
.requirement-card-v3 {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid #E7DEE9;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(42,18,48,.06);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.requirement-card-v3:hover { transform: translateY(-6px); box-shadow: 0 22px 52px rgba(42,18,48,.12); }
.requirement-v3-header { padding: 18px 22px; border-bottom: 1px solid #EFE8F0; background: #FCFAFD; }
.requirement-v3-id span { font-size: .71rem; }
.requirement-v3-id strong { font-size: .86rem; }
.requirement-v3-title-row { padding: 22px 22px 16px; }
.requirement-v3-title-row h3 { font-size: 1.35rem; line-height: 1.25; }
.requirement-type-icon { width: 48px; height: 48px; border-radius: 14px; }
.requirement-v3-location { margin: 0 22px; padding: 16px; border-radius: 15px; background: #F8F4F9; }
.requirement-v3-location-label { font-size: .72rem; }
.requirement-v3-location > div span { font-size: .76rem; }
.requirement-v3-facts {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 0;
  margin: 18px 22px 0;
  overflow: hidden;
  border: 1px solid #E8E0EA;
  border-radius: 16px;
}
.requirement-v3-facts > div { min-height: 96px; padding: 16px; border-right: 1px solid #E8E0EA; background: #fff; }
.requirement-v3-facts > div:last-child { border-right: 0; }
.requirement-v3-facts span { font-size: .68rem; }
.requirement-v3-facts strong { margin-top: 8px; font-size: 1rem; line-height: 1.35; }
.requirement-v3-budget strong { color: var(--brand-primary); font-size: 1.18rem; }
.requirement-v3-preference { margin: 18px 22px 0; padding: 16px 18px; border-left: 3px solid var(--brand-primary); border-radius: 0 13px 13px 0; background: #FBF7FC; }
.requirement-v3-preference span { font-size: .68rem; }
.requirement-v3-preference p { margin-top: 7px; font-size: .86rem; line-height: 1.6; }
.requirement-v3-footer {
  margin-top: auto;
  padding: 20px 22px 22px;
  border-top: 1px solid #EFE8F0;
  background: #FCFAFD;
}
.requirement-v3-footer > div strong { font-size: .92rem; }
.requirement-v3-footer > div span { font-size: .76rem; }
.requirement-v3-cta { min-height: 46px; padding: 0 16px; background: var(--brand-primary); color: #fff; }
.requirements-final-v3 { padding: 30px 0 76px; background: #FBF9FC; }
.requirements-final-v3-card { border-radius: 27px; }

/* ---------- partner page ---------- */
.partner-hero-v3 {
  padding: calc(var(--header-height) + 72px) 0 78px;
  background:
    radial-gradient(circle at 85% 10%,rgba(180,105,194,.26),transparent 28%),
    linear-gradient(135deg,#150A18 0%,#35103F 52%,#67187A 100%);
}
.partner-hero-v3-layout { grid-template-columns: minmax(0,1.1fr) minmax(390px,.75fr); gap: 72px; }
.partner-hero-v3-copy h1 { max-width: 780px; font-size: clamp(2.85rem,5.1vw,5.2rem); line-height: 1.01; }
.partner-hero-v3-copy > p { max-width: 670px; font-size: 1.05rem; }
.partner-flow-panel {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 26px;
  background: rgba(255,255,255,.09);
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 70px rgba(7,2,8,.23);
}
.partner-flow-panel-head strong { font-size: 1.55rem; }
.partner-flow-list > div { padding: 16px 0; }
.partner-flow-list strong { font-size: .95rem; }
.partner-flow-list p { font-size: .78rem; }
.partner-value-strip { padding: 22px 0; }
.partner-value-grid { gap: 14px; }
.partner-value-grid article { padding: 18px 20px; border-radius: 16px; background: #FBF9FC; }
.partner-value-grid strong { font-size: .92rem; }
.partner-value-grid p { font-size: .78rem; }
.partner-paths-section { padding: 76px 0; background: #FBF9FC; }
.partner-v3-heading h2 { font-size: clamp(2.05rem,3.7vw,3.4rem); }
.partner-path-grid { gap: 20px; }
.partner-path-card {
  min-height: 100%;
  padding: 27px;
  border: 1px solid #E6DDE8;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(42,18,48,.055);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.partner-path-card:hover { transform: translateY(-7px); box-shadow: 0 22px 50px rgba(42,18,48,.115); }
.partner-path-icon { width: 50px; height: 50px; border-radius: 15px; }
.partner-path-card h3 { margin-top: 22px; font-size: 1.45rem; }
.partner-path-card > p { font-size: .88rem; line-height: 1.65; }
.partner-path-card li { font-size: .82rem; }
.partner-path-card > a { min-height: 49px; margin-top: auto; padding: 0 15px; border-radius: 13px; }
.partner-steps-v3-section { padding: 78px 0; }
.partner-steps-v3-layout { gap: 72px; }
.partner-steps-v3-copy h2 { font-size: clamp(2.1rem,3.6vw,3.35rem); }
.partner-steps-v3-list article { padding: 22px; border-radius: 18px; }
.partner-steps-v3-list h3 { font-size: 1.05rem; }
.partner-steps-v3-list p { font-size: .82rem; }
.partner-final-v3-section { padding: 20px 0 82px; }
.partner-final-v3-card { border-radius: 28px; }

/* ---------- owner listing ---------- */
.owner-clean-hero {
  padding: calc(var(--header-height) + 74px) 0 76px;
  background:
    radial-gradient(circle at 80% 15%,rgba(182,122,193,.24),transparent 30%),
    linear-gradient(135deg,#160A19 0%,#3B1246 55%,#67187A 100%);
}
.owner-clean-copy h1 { font-size: clamp(2.85rem,5vw,5.1rem); line-height: 1.01; }
.owner-clean-copy > p { font-size: 1.05rem; }
.owner-clean-preview { border-radius: 26px; box-shadow: 0 30px 70px rgba(8,3,9,.28); }
.owner-clean-step-grid { gap: 18px; }
.owner-clean-step { padding: 28px; border-radius: 22px; }
.owner-clean-included-card { border-radius: 27px; }
.owner-clean-cta { border-radius: 27px; }

/* ---------- footer ---------- */
.footer {
  background:
    radial-gradient(circle at 80% 10%,rgba(103,24,122,.22),transparent 28%),
    #120B14;
}
.footer-grid { gap: 46px; }
.footer-brand p { color: rgba(255,255,255,.58); }
.footer h4 { color: #fff; }
.footer a { color: rgba(255,255,255,.66); }
.footer a:hover { color: #fff; }
.footer-social a { background: rgba(255,255,255,.08); }
.footer-bottom { border-color: rgba(255,255,255,.08); }

/* ---------- animation polish ---------- */
.reveal {
  transform: translateY(24px);
  transition-duration: .72s;
}
.reveal.revealed { transform: none; }

.property-card,
.category-card,
.feature-card,
.requirement-card-v3,
.partner-path-card {
  will-change: transform;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-orb-one { animation: aveshFloatOne 10s ease-in-out infinite alternate; }
  .hero-orb-two { animation: aveshFloatTwo 12s ease-in-out infinite alternate; }
  .hero-orb-three { animation: aveshFloatOne 14s ease-in-out infinite alternate-reverse; }
  .requirements-v3-orb-one,
  .requirements-v3-orb-two { animation: aveshFloatTwo 11s ease-in-out infinite alternate; }
}

@keyframes aveshFloatOne { from { transform: translate3d(0,0,0); } to { transform: translate3d(20px,-18px,0); } }
@keyframes aveshFloatTwo { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(-18px,16px,0) scale(1.07); } }

/* ---------- responsive ---------- */
@media (max-width: 1180px) {
  .nav-link,
  .dropdown-toggle { padding-inline: 9px; font-size: .79rem; }
  .brand-logo-image { width: 170px; }
  .property-v3-top-grid,
  .property-v3-content-grid { grid-template-columns: minmax(0,1fr) 330px; }
  .requirements-hero-v3-layout,
  .partner-hero-v3-layout { gap: 42px; }
}

@media (max-width: 1024px) {
  .section { padding-top: 62px; padding-bottom: 62px; }
  .category-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .property-v3-header { grid-template-columns: 1fr; gap: 18px; }
  .property-v3-price-block { padding: 0; border: 0; text-align: left; }
  .property-v3-top-grid,
  .property-v3-content-grid { grid-template-columns: 1fr; }
  .property-v3-enquiry-card,
  .property-v3-content-side { position: static; }
  .property-v3-content-side { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .property-v3-owner-cta { grid-column: 1/-1; }
  .requirements-hero-v3-layout,
  .partner-hero-v3-layout { grid-template-columns: 1fr; }
  .requirements-hero-v3-copy,
  .partner-hero-v3-copy { text-align: center; }
  .requirements-hero-v3-copy h1,
  .requirements-hero-v3-copy > p,
  .partner-hero-v3-copy h1,
  .partner-hero-v3-copy > p { margin-left: auto; margin-right: auto; }
  .requirements-v3-actions,
  .partner-v3-actions { justify-content: center; }
  .requirements-match-panel,
  .partner-flow-panel { max-width: 720px; margin: 0 auto; }
}

@media (max-width: 768px) {
  :root { --header-height-mobile: 66px; }
  .container { padding-inline: 16px; }
  .header { height: var(--header-height-mobile); }
  .brand-logo-image { width: 152px; height: 44px; }
  .logo { min-width: 0; }
  .btn-whatsapp { display: none; }

  .section { padding-top: 48px; padding-bottom: 48px; }
  .section-header { margin-bottom: 24px; }
  .section-header h2,
  .section-header .heading-3 { font-size: 1.88rem; }
  .section-header p { font-size: .9rem; }

  .hero {
    min-height: auto;
    padding: calc(var(--header-height-mobile) + 52px) 0 42px;
  }
  .hero-brand-logo { width: 140px; margin-bottom: 16px; }
  .hero-title { font-size: clamp(2.35rem,11vw,3.5rem); }
  .hero-subtitle { margin-bottom: 24px; font-size: .92rem; }
  .search-box { padding: 7px; border-radius: 18px; }
  .search-form { flex-direction: column; min-height: 0; gap: 0; }
  .search-field { width: 100%; padding: 13px 14px; border-bottom: 1px solid #EEE7EF; }
  .search-divider { display: none; }
  .search-button { width: calc(100% - 8px); min-height: 50px; margin: 8px 4px 4px; }
  .search-results { top: calc(100% + 8px); max-height: 52vh; }
  .hero-stats { width: 100%; justify-content: space-between; gap: 8px; margin-top: 22px; }
  .hero-stat { flex: 1; }
  .hero-stat-number { font-size: 1.08rem; }
  .hero-stat-label { font-size: .62rem; }
  .hero-stat-divider { height: 28px; }

  .home-quick-categories-section { padding-top: 42px !important; padding-bottom: 18px !important; }
  .home-featured-properties-section { padding-top: 24px !important; padding-bottom: 52px !important; }
  .category-grid {
    display: flex;
    gap: 12px;
    margin-inline: -16px;
    padding: 0 16px 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .category-card {
    flex: 0 0 154px;
    min-height: 145px;
    padding: 18px 12px;
    scroll-snap-align: start;
  }
  .category-icon { width: 44px; height: 44px; }
  .category-card p { font-size: .69rem; }

  .properties-grid { grid-template-columns: 1fr; gap: 17px; }
  .property-card { border-radius: 20px; }
  .property-card-image-wrapper { aspect-ratio: 16 / 9.8; }
  .property-card-body { padding: 17px 17px 14px; }
  .property-card-title { font-size: 1.03rem; }
  .property-card-price .price { font-size: 1.3rem; }
  .property-card-actions { min-height: 60px; padding: 10px 15px 13px; }

  .page-header { padding: calc(var(--header-height-mobile) + 34px) 0 30px; }
  .page-header h1 { font-size: 2.3rem; }

  .property-v3-breadcrumbs { padding-top: calc(var(--header-height-mobile) + 16px); }
  .property-v3-header { margin-bottom: 19px; padding-bottom: 19px; }
  .property-v3-header h1 { font-size: 2.18rem; }
  .property-v3-header-main > p { font-size: .88rem; }
  .property-v3-price-block > strong { white-space: normal; font-size: 2rem; }
  .property-detail-v3 .property-showcase .property-media-stage { aspect-ratio: 16 / 10.8; border-radius: 19px; }
  .property-media-arrow { width: 40px; height: 40px; border-radius: 12px; }
  .property-media-prev { left: 10px; }
  .property-media-next { right: 10px; }
  .property-detail-v3 .property-thumbnail { width: 82px; height: 59px; flex-basis: 82px; }
  .property-v3-facts {
    display: flex;
    gap: 9px;
    overflow-x: auto;
    padding-bottom: 4px;
  }
  .property-v3-facts > div { min-width: 155px; flex: 0 0 155px; }
  .property-v3-enquiry-card { padding: 23px; border-radius: 20px; }
  .property-v3-enquiry-card h2 { font-size: 1.45rem; }
  .property-v3-content-grid { margin-top: 18px; }
  .property-v3-section,
  .property-v3-side-card { padding: 21px; border-radius: 19px; }
  .property-v3-section-head { align-items: flex-start; flex-direction: column; gap: 7px; }
  .property-v3-detail-grid { grid-template-columns: 1fr; }
  .property-v3-detail-grid > div { min-height: 48px; }
  .amenities-grid-v3 { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .property-v3-content-side { grid-template-columns: 1fr; }
  .property-v3-owner-cta { grid-column: auto; }
  .property-v3-mobile-actions { display: flex; }

  .requirements-hero-v3,
  .partner-hero-v3,
  .owner-clean-hero { padding: calc(var(--header-height-mobile) + 44px) 0 50px; }
  .requirements-hero-v3-copy h1,
  .partner-hero-v3-copy h1,
  .owner-clean-copy h1 { font-size: clamp(2.25rem,10.7vw,3.4rem); }
  .requirements-hero-v3-copy > p,
  .partner-hero-v3-copy > p,
  .owner-clean-copy > p { font-size: .9rem; }
  .requirements-v3-actions,
  .partner-v3-actions,
  .owner-clean-actions { flex-direction: column; align-items: stretch; }
  .requirements-v3-actions .btn,
  .partner-v3-actions .btn,
  .owner-clean-actions .btn { width: 100%; }
  .requirements-match-panel,
  .partner-flow-panel { padding: 21px; border-radius: 20px; }
  .requirements-match-metrics { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .requirements-match-metrics > div { padding: 13px 8px; }
  .requirements-match-metrics strong { font-size: 1.35rem; }
  .requirements-match-metrics span { font-size: .6rem; }
  .requirements-how-grid,
  .partner-value-grid { display: flex; overflow-x: auto; margin-inline: -16px; padding: 0 16px 5px; gap: 10px; }
  .requirements-how-grid article,
  .partner-value-grid article { flex: 0 0 270px; }
  .requirements-finder-v3,
  .partner-paths-section,
  .partner-steps-v3-section { padding: 50px 0; }
  .requirements-filterbar-v3 { display: grid; gap: 8px; padding: 9px; }
  .requirements-grid-v3 { grid-template-columns: 1fr; gap: 16px; }
  .requirement-v3-title-row { padding: 19px 18px 14px; }
  .requirement-v3-location { margin-inline: 18px; }
  .requirement-v3-facts { margin-inline: 18px; grid-template-columns: 1fr; }
  .requirement-v3-facts > div { min-height: 0; border-right: 0; border-bottom: 1px solid #E8E0EA; }
  .requirement-v3-facts > div:last-child { border-bottom: 0; }
  .requirement-v3-preference { margin-inline: 18px; }
  .requirement-v3-footer { flex-direction: column; align-items: stretch; padding: 18px; }
  .requirement-v3-cta { width: 100%; justify-content: center; margin-top: 12px; }
  .partner-path-grid { grid-template-columns: 1fr; }
  .partner-path-card { padding: 23px; }
  .partner-steps-v3-layout { grid-template-columns: 1fr; gap: 30px; }
  .requirements-final-v3-card,
  .partner-final-v3-card,
  .owner-clean-cta { padding: 25px; border-radius: 21px; }

  .footer-brand-logo { width: 190px; }
}

@media (max-width: 420px) {
  .hero-title { font-size: 2.18rem; }
  .hero-stat-label { max-width: 80px; margin: 2px auto 0; line-height: 1.3; }
  .property-card-transactions { max-width: 54%; }
  .property-v3-header h1 { font-size: 1.98rem; }
  .property-v3-enquiry-summary { grid-template-columns: 1fr; }
  .amenities-grid-v3 { grid-template-columns: 1fr; }
  .requirements-match-metrics span { line-height: 1.25; }
}

.page-hero-brand-logo {
  display: block;
  width: 164px;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 24px;
  opacity: .96;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.2));
}
@media (max-width:1024px) {
  .requirements-hero-v3-copy .page-hero-brand-logo,
  .partner-hero-v3-copy .page-hero-brand-logo { margin-left:auto; margin-right:auto; }
}
@media (max-width:768px) {
  .page-hero-brand-logo { width: 138px; margin-bottom: 18px; }
  .owner-clean-copy .page-hero-brand-logo { margin-left:0; }
}

/* ===== Phase 1.8 UX refinement overrides ===== */
:root {
  --brand-whatsapp: #25D366;
  --brand-whatsapp-dark: #128C7E;
  --footer-soft-bg: #F6F1F8;
  --footer-soft-border: #E7DCEB;
}

/* enquiry button back to green */
.btn-whatsapp {
  background: linear-gradient(135deg, var(--brand-whatsapp) 0%, var(--brand-whatsapp-dark) 100%) !important;
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(37,211,102,.26) !important;
}
.btn-whatsapp:hover {
  background: linear-gradient(135deg, #29df6e 0%, #109c8c 100%) !important;
  box-shadow: 0 14px 28px rgba(37,211,102,.32) !important;
}

/* better footer */
.footer {
  background:
    radial-gradient(circle at 100% 0%, rgba(103,24,122,.12), transparent 26%),
    linear-gradient(180deg, #FAF7FB 0%, #F2EBF5 100%) !important;
  color: #2A2230;
  border-top: 1px solid var(--footer-soft-border);
}
.footer::before { display:none; }
.footer h4,
.footer .footer-title,
.footer .footer-contact-item .label,
.footer .footer-contact-item .value,
.footer-bottom p { color: #251D2B !important; }
.footer a { color: #5C4E64 !important; }
.footer a:hover { color: var(--brand-primary) !important; }
.footer-brand p { color: #6D6273 !important; }
.footer-social a {
  background: #fff !important;
  color: var(--brand-primary) !important;
  border: 1px solid var(--footer-soft-border);
  box-shadow: 0 8px 18px rgba(61,31,72,.06);
}
.footer-bottom {
  border-color: var(--footer-soft-border) !important;
}
.footer-logo img { filter: none; }

/* list property cleanups */
.owner-clean-hero {
  padding: calc(var(--header-height) + 48px) 0 54px !important;
}
.owner-clean-preview {
  background: rgba(255,255,255,.92);
}
.owner-clean-actions { gap: 16px !important; }
.owner-text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 18px;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
}
.owner-clean-cta-section { padding-top: 16px !important; padding-bottom: 44px !important; }
.owner-clean-cta {
  padding: 30px 34px !important;
  background: linear-gradient(135deg,#2B1633 0%, #67187A 100%) !important;
}
.owner-clean-cta .btn-light { color: #2B1633 !important; }

/* smaller, cleaner requirement/partner heroes */
.requirements-hero-v3,
.partner-hero-v3 {
  padding: calc(var(--header-height) + 40px) 0 46px !important;
}
.requirements-hero-v3-layout,
.partner-hero-v3-layout {
  align-items: stretch !important;
  gap: 34px !important;
}
.requirements-hero-v3-copy h1,
.partner-hero-v3-copy h1 {
  margin-top: 8px;
  font-size: clamp(2.2rem, 4vw, 3.9rem) !important;
  line-height: 1.04 !important;
}
.requirements-hero-v3-copy > p,
.partner-hero-v3-copy > p {
  margin-top: 12px;
  font-size: 1rem !important;
  line-height: 1.68 !important;
}
.compact-hero-actions { gap: 12px !important; }
.compact-hero-actions .btn { min-height: 52px; border-radius: 16px; }
.requirements-v3-note { margin-top: 12px; opacity: .82; }
.requirements-match-panel,
.partner-flow-panel {
  padding: 22px !important;
  border-radius: 22px !important;
  background: rgba(255,255,255,.12) !important;
}
.requirements-match-panel-head strong,
.partner-flow-panel-head strong { line-height: 1.2; }
.requirements-how-section,
.partner-value-strip {
  padding: 18px 0 !important;
}
.requirements-how-grid article,
.partner-value-grid article {
  border: 1px solid #ECE2EE;
  box-shadow: 0 8px 20px rgba(39,16,45,.04);
}
.requirements-finder-v3,
.partner-paths-section,
.partner-steps-v3-section {
  padding-top: 54px !important;
  padding-bottom: 56px !important;
}
.partner-path-card {
  padding: 24px !important;
  border-radius: 22px !important;
}
.partner-path-card h3 { font-size: 1.34rem !important; }
.partner-path-card > p,
.partner-path-card li { font-size: .92rem !important; }
.partner-final-v3-section,
.requirements-final-v3 { padding-top: 10px !important; padding-bottom: 56px !important; }
.partner-final-v3-card,
.requirements-final-v3-card {
  border-radius: 24px !important;
}

/* requirements cards readable */
.requirement-v3-header { padding: 16px 18px !important; }
.requirement-v3-id span { font-size: .74rem !important; }
.requirement-v3-id strong { font-size: .94rem !important; }
.requirement-v3-title-row { padding: 18px 18px 14px !important; }
.requirement-v3-title-row h3 { font-size: 1.32rem !important; }
.requirement-v3-location { margin: 0 18px !important; }
.requirement-v3-location > div { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.requirement-v3-location > div span {
  padding: 8px 11px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #E6DCE8;
  font-size: .82rem !important;
  color: #4E4255;
}
.requirement-v3-facts { margin: 18px 18px 0 !important; }
.requirement-v3-facts > div { min-height: 102px !important; }
.requirement-v3-facts span { font-size: .72rem !important; }
.requirement-v3-facts strong { font-size: 1.04rem !important; }
.requirement-v3-budget strong { font-size: 1.24rem !important; }
.requirement-v3-preference { margin: 18px 18px 0 !important; }
.requirement-v3-preference p { font-size: .92rem !important; }
.requirement-v3-footer { padding: 18px !important; }
.requirement-v3-cta {
  min-height: 48px !important;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(103,24,122,.18);
}

/* partner page cards */
.partner-flow-footer span { color: #DCFCE7 !important; background: rgba(37,211,102,.15) !important; }
.partner-v3-heading p,
.partner-steps-v3-copy p { font-size: .97rem; }
.partner-path-top { align-items: center; }
.partner-path-label { font-size: .79rem; }
.partner-steps-v3-list article {
  border: 1px solid #ECE2EE;
  box-shadow: 0 10px 24px rgba(38,16,44,.04);
}

/* properties page hero/filter */
.page-header,
.properties-hero {
  padding-top: calc(var(--header-height) + 30px) !important;
  padding-bottom: 28px !important;
}
.properties-toolbar,
.property-listing-toolbar,
.filters-sidebar {
  border-radius: 22px !important;
}

/* property cards */
.property-card {
  border-radius: 22px !important;
  box-shadow: 0 12px 28px rgba(38,16,44,.06) !important;
}
.property-card-image-wrapper { aspect-ratio: 16 / 9.2 !important; }
.property-card-title {
  min-height: 0 !important;
  font-size: 1.04rem !important;
}
.property-card-specs {
  min-height: 0 !important;
  flex-wrap: wrap;
}
.property-card-spec {
  font-size: .78rem !important;
  line-height: 1.3;
}
.property-card-transactions {
  max-width: calc(100% - 24px) !important;
}
.property-card-transactions span,
.transaction-tag,
.clean-tag {
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  line-height: 1.25;
}
.property-card-price-multi {
  display: grid;
  gap: 8px;
  margin-top: auto;
}
.property-price-chip {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: linear-gradient(180deg,#FBF7FC 0%, #F3ECF5 100%);
  border: 1px solid #E7DBEA;
}
.property-price-chip span { font-size: .74rem; color: #715F79; font-weight: 700; }
.property-price-chip strong { color: var(--brand-primary-dark); font-size: .98rem; letter-spacing: -.02em; }

/* property detail */
.property-detail-v3 {
  padding-bottom: 78px !important;
}
.property-v3-breadcrumbs {
  padding-top: calc(var(--header-height) + 16px) !important;
  padding-bottom: 14px !important;
}
.property-v3-header {
  gap: 22px !important;
  margin-bottom: 18px !important;
  padding-bottom: 18px !important;
}
.property-v3-badges,
.property-v3-header-main > p { margin-bottom: 0; }
.property-v3-header-main > p { margin-top: 10px !important; }
.property-v3-header h1 { font-size: clamp(2rem, 3.4vw, 3.3rem) !important; }
.property-v3-badges {
  display: flex; flex-wrap: wrap;
}
.property-v3-badges .transaction-tag,
.property-v3-badges .badge {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: .78rem;
}
.property-v3-price-block {
  min-width: 320px !important;
  padding: 18px 0 6px 26px !important;
  border-left: 1px solid #E5D9E8 !important;
}
.property-v3-price-stack {
  display: grid;
  gap: 8px;
}
.property-v3-price-stack > span { font-size: .78rem !important; color: #6F6276; }
.property-v3-price-stack > strong { color: var(--brand-primary-dark); font-size: clamp(2rem, 3vw, 2.9rem) !important; line-height: 1.04; }
.property-v3-price-options {
  display: grid;
  gap: 10px;
}
.property-v3-price-option {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 15px;
  background: linear-gradient(180deg,#FBF7FC 0%, #F1E9F4 100%);
  border: 1px solid #E7DBEA;
}
.property-v3-price-option small { font-size: .76rem; color: #6E6176; font-weight: 700; }
.property-v3-price-option strong { color: var(--brand-primary-dark); font-size: 1.1rem; }
.property-v3-price-block > b { display:block; margin-top: 12px; }
.property-v3-top-grid,
.property-v3-content-grid { gap: 20px !important; }
.property-detail-v3 .property-showcase .property-media-stage { border-radius: 24px !important; }
.property-media-arrow {
  background: rgba(24,13,30,.76) !important;
  border-radius: 16px !important;
}
.property-v3-facts { grid-template-columns: repeat(5,minmax(0,1fr)); gap: 12px !important; }
.property-v3-facts strong,
.property-v3-detail-grid strong,
.property-v3-side-card .landmark-item span,
.property-v3-resource-list span {
  overflow: visible !important;
  text-overflow: clip !important;
  white-space: normal !important;
}
.property-v3-enquiry-card {
  border-radius: 26px !important;
  padding: 28px !important;
}
.property-v3-enquiry-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.property-v3-section,
.property-v3-side-card,
.config-card {
  border-radius: 24px !important;
}
.property-v3-detail-grid { row-gap: 16px !important; }
.property-v3-detail-grid > div {
  min-height: 0 !important;
  padding-bottom: 12px;
  border-bottom: 1px solid #F1EAF3;
}
.property-v3-detail-grid > div:last-child,
.property-v3-detail-grid > div:nth-last-child(2) { border-bottom: 0; }
.property-v3-side-card .clean-tag {
  padding: 9px 12px !important;
  font-size: .84rem !important;
}
.property-v3-mobile-actions .btn:first-child::before,
.property-v3-enquiry-actions .btn-outline::before {
  content: '';
  width: 16px;
  height: 16px;
  display: inline-block;
  margin-right: 8px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884'/%3E%3C/svg%3E") center/contain no-repeat;
}
.property-v3-mobile-actions .btn:first-child { color: var(--brand-primary-dark); }

/* spacing between quick categories and featured */
.quick-categories-section,
.category-section,
.quick-actions-section { padding-bottom: 20px !important; }
.featured-properties-section,
.featured-section { padding-top: 26px !important; }

/* responsive */
@media (max-width: 1024px) {
  .footer { padding-top: 54px !important; }
  .requirements-grid-v3 { grid-template-columns: 1fr !important; }
  .requirement-v3-facts { grid-template-columns: 1fr !important; }
  .requirement-v3-facts > div { border-right: 0 !important; border-bottom: 1px solid #E8E0EA; }
  .requirement-v3-facts > div:last-child { border-bottom: 0; }
  .property-v3-price-block {
    min-width: 0 !important;
    padding: 0 !important;
    border-left: 0 !important;
  }
  .property-v3-content-side { grid-template-columns: 1fr !important; }
}
@media (max-width: 767px) {
  .requirements-hero-v3,
  .partner-hero-v3,
  .owner-clean-hero { padding-top: calc(var(--header-height-mobile) + 28px) !important; }
  .requirements-hero-v3,
  .partner-hero-v3 { padding-bottom: 34px !important; }
  .requirements-hero-v3-copy h1,
  .partner-hero-v3-copy h1 { font-size: clamp(1.95rem, 9vw, 2.65rem) !important; }
  .requirements-v3-actions,
  .partner-v3-actions,
  .owner-clean-actions { flex-direction: column; align-items: stretch !important; }
  .compact-hero-actions .btn,
  .owner-clean-actions .btn,
  .owner-text-link { width: 100%; }
  .partner-path-grid,
  .partner-value-grid,
  .requirements-how-grid { grid-template-columns: 1fr !important; }
  .property-card-body { padding: 14px 14px 12px !important; }
  .property-card-actions { padding: 10px 14px 14px !important; }
  .property-card-icon-actions .btn { width: 36px; min-width: 36px; height: 36px; }
  .property-price-chip strong { font-size: .92rem; }
  .property-v3-facts { grid-template-columns: 1fr 1fr !important; }
  .property-v3-enquiry-card,
  .property-v3-section,
  .property-v3-side-card { padding: 20px !important; }
  .property-v3-header h1 { font-size: 1.8rem !important; }
  .property-v3-price-option { align-items: flex-start; flex-direction: column; }
  .property-v3-mobile-actions { gap: 8px; }
  .property-v3-mobile-actions .btn { min-height: 46px; border-radius: 14px; }
}


/* ===== selected-v19.css ===== */
/* =========================================================
   AVESH REALTY — SELECTED PAGE DESIGNS V19
   Property Clean Split / Requirements Modern List / Partner Minimal
   ========================================================= */

:root {
  --v19-purple: #67187a;
  --v19-purple-dark: #4b0f5a;
  --v19-purple-deep: #27112f;
  --v19-purple-soft: #f6eff8;
  --v19-purple-line: #e5d8e9;
  --v19-green: #22c55e;
  --v19-green-dark: #16a34a;
  --v19-ink: #19151d;
  --v19-muted: #706777;
  --v19-bg: #fbf9fc;
  --v19-shadow: 0 16px 42px rgba(44, 19, 50, .08);
}

/* ---------- Requirements: selected modern list ---------- */
.requirements-selected-page {
  background: var(--v19-bg);
  color: var(--v19-ink);
}
.requirements-selected-hero {
  padding: calc(var(--header-height) + 48px) 0 96px;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 14% 0%, rgba(255,255,255,.12), transparent 28%),
    linear-gradient(135deg, #33103e 0%, #67187a 58%, #7e268f 100%);
}
.requirements-selected-hero-inner { max-width: 760px; }
.requirements-selected-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #ead9ef;
}
.requirements-selected-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.2rem, 4.4vw, 4.15rem);
  line-height: 1.05;
  letter-spacing: -.04em;
}
.requirements-selected-hero p {
  max-width: 680px;
  margin: 17px auto 0;
  color: rgba(255,255,255,.78);
  font-size: 1rem;
  line-height: 1.7;
}
.requirements-selected-summary-wrap {
  position: relative;
  z-index: 3;
  margin-top: -58px;
}
.requirements-selected-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  padding: 17px;
  border: 1px solid rgba(103,24,122,.12);
  border-radius: 20px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 20px 48px rgba(42,17,48,.12);
  backdrop-filter: blur(14px);
}
.requirements-summary-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 72px;
  padding: 8px 20px;
  border-right: 1px solid #eee5f0;
}
.requirements-summary-item:last-child { border-right: 0; }
.requirements-summary-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 13px;
  color: var(--v19-purple);
  background: var(--v19-purple-soft);
  font-size: 1rem;
  font-weight: 800;
}
.requirements-summary-item div { display: grid; gap: 3px; }
.requirements-summary-item strong { font-size: 1.35rem; line-height: 1; color: var(--v19-purple-dark); }
.requirements-summary-item span:last-child { color: var(--v19-muted); font-size: .72rem; font-weight: 600; }
.requirements-selected-board { padding: 42px 0 70px; }
.requirements-selected-filterbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}
.requirements-selected-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.requirement-filter-chip {
  min-height: 38px;
  padding: 8px 15px;
  border: 1px solid #e5dbe8;
  border-radius: 999px;
  color: #625668;
  background: #fff;
  font-size: .76rem;
  font-weight: 700;
  transition: .2s ease;
}
.requirement-filter-chip:hover,
.requirement-filter-chip.active {
  color: #fff;
  border-color: var(--v19-purple);
  background: var(--v19-purple);
  box-shadow: 0 8px 18px rgba(103,24,122,.18);
}
.requirements-location-filter select {
  min-width: 178px;
  min-height: 42px;
  padding: 0 38px 0 14px;
  border: 1px solid #e5dbe8;
  border-radius: 12px;
  background: #fff;
  color: #554a5b;
  font-size: .78rem;
  font-weight: 600;
}
.requirements-selected-list-card {
  overflow: hidden;
  border: 1px solid #e8deeb;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--v19-shadow);
}
.requirements-selected-list-head,
.requirements-selected-row {
  display: grid;
  grid-template-columns: minmax(280px, 1.5fr) minmax(120px,.72fr) minmax(130px,.78fr) minmax(170px,1fr) 138px;
  align-items: center;
  gap: 16px;
}
.requirements-selected-list-head {
  padding: 13px 20px;
  color: #7c7082;
  background: #f8f4f9;
  border-bottom: 1px solid #e9e0eb;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.requirements-selected-row {
  min-height: 106px;
  padding: 18px 20px;
  border-bottom: 1px solid #eee6f0;
  transition: background .2s ease, transform .2s ease;
}
.requirements-selected-row:last-child { border-bottom: 0; }
.requirements-selected-row:hover { background: #fdfbfe; }
.requirements-selected-main-cell {
  display: grid;
  grid-template-columns: 44px minmax(0,1fr);
  align-items: center;
  gap: 13px;
}
.requirements-selected-row-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--v19-purple);
  background: var(--v19-purple-soft);
}
.requirements-selected-row-icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.requirements-selected-row-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 5px; }
.requirements-selected-row-meta span {
  padding: 4px 7px;
  border-radius: 999px;
  color: var(--v19-purple);
  background: #f1e7f4;
  font-size: .61rem;
  font-weight: 800;
  text-transform: uppercase;
}
.requirements-selected-row-meta small { color: #9b8da0; font-size: .63rem; font-weight: 700; }
.requirements-selected-main-cell h3 {
  margin: 0;
  color: #211a25;
  font-size: .94rem;
  line-height: 1.35;
}
.requirements-selected-main-cell p { margin: 4px 0 0; color: #7a6e80; font-size: .71rem; line-height: 1.45; }
.requirements-selected-data { display: grid; gap: 5px; }
.requirements-selected-data strong { color: #2d2531; font-size: .79rem; line-height: 1.45; }
.requirements-selected-data span { color: #8b7f91; font-size: .67rem; line-height: 1.4; }
.requirements-selected-preference strong {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-weight: 600;
}
.requirements-selected-action {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 9px;
  color: #fff;
  background: var(--v19-purple);
  font-size: .68rem;
  font-weight: 750;
  text-align: center;
  transition: .2s ease;
}
.requirements-selected-action:hover { color: #fff; background: var(--v19-purple-dark); transform: translateY(-1px); }
.requirements-selected-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid #e8deeb;
  border-radius: 15px;
  background: #fff;
}
.requirements-selected-footer-row > p { margin: 0; color: #7a6d80; font-size: .75rem; }
.requirements-selected-share { display: flex; align-items: center; gap: 13px; }
.requirements-selected-share span { color: #75687b; font-size: .72rem; }
.requirements-selected-share strong {
  padding: 10px 15px;
  border-radius: 9px;
  color: #fff;
  background: var(--v19-purple);
  font-size: .73rem;
}
.requirements-selected-empty { grid-column: 1/-1; padding: 50px 24px; text-align: center; }
.requirements-selected-empty h3 { margin: 0 0 8px; }
.requirements-selected-empty p { color: var(--v19-muted); }
.requirements-selected-empty a { display: inline-flex; margin-top: 15px; padding: 11px 16px; border-radius: 10px; color: #fff; background: var(--v19-purple); }

/* ---------- Partner: selected minimal conversion page ---------- */
.partner-selected-page { background: #fff; color: var(--v19-ink); }
.partner-selected-hero { padding: calc(var(--header-height) + 45px) 0 54px; overflow: hidden; }
.partner-selected-hero-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(360px,.9fr); align-items: center; gap: 52px; }
.partner-selected-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--v19-purple);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.partner-selected-copy h1 { margin: 0; font-size: clamp(2.45rem,4.7vw,4.85rem); line-height: 1.02; letter-spacing: -.055em; }
.partner-selected-copy h1 em { color: var(--v19-purple); font-style: normal; }
.partner-selected-copy > p { max-width: 620px; margin: 20px 0 23px; color: #6e6473; font-size: .98rem; line-height: 1.75; }
.partner-selected-whatsapp {
  min-height: 51px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 19px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg,var(--v19-green),var(--v19-green-dark));
  box-shadow: 0 12px 26px rgba(34,197,94,.22);
  font-size: .82rem;
  font-weight: 800;
}
.partner-selected-whatsapp:hover { color: #fff; transform: translateY(-2px); }
.partner-selected-whatsapp svg { width: 20px; height: 20px; fill: currentColor; }
.partner-selected-copy small { display: block; margin-top: 10px; color: #827687; font-size: .7rem; }
.partner-selected-illustration { min-height: 360px; display: grid; place-items: center; }
.partner-selected-illustration svg { width: min(100%,620px); filter: drop-shadow(0 20px 30px rgba(103,24,122,.08)); }
.partner-selected-section,
.partner-selected-process-section { padding: 38px 0; }
.partner-selected-heading { display: grid; place-items: center; margin-bottom: 25px; text-align: center; }
.partner-selected-heading h2 { margin: 0; font-size: clamp(1.55rem,2.6vw,2.15rem); }
.partner-selected-heading span { width: 28px; height: 3px; margin-top: 10px; border-radius: 99px; background: var(--v19-purple); }
.partner-selected-paths { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 20px; }
.partner-selected-paths article {
  display: grid;
  grid-template-columns: 58px minmax(0,1fr);
  gap: 17px;
  padding: 26px;
  border: 1px solid #e8deeb;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(44,19,50,.035);
  transition: .25s ease;
}
.partner-selected-paths article:hover { transform: translateY(-4px); box-shadow: var(--v19-shadow); }
.partner-selected-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; color: var(--v19-purple); background: var(--v19-purple-soft); }
.partner-selected-icon svg { width: 29px; height: 29px; fill: none; stroke: currentColor; stroke-width: 1.65; }
.partner-selected-paths h3 { margin: 4px 0 10px; color: var(--v19-purple-dark); font-size: 1rem; line-height: 1.35; }
.partner-selected-paths p { margin: 0; color: #746a79; font-size: .8rem; line-height: 1.65; }
.partner-selected-process-section { padding-top: 28px; }
.partner-selected-process { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 40px; max-width: 900px; margin: 0 auto; }
.partner-selected-process article { position: relative; text-align: center; }
.partner-selected-process article:not(:last-child)::after { content: ''; position: absolute; top: 23px; left: calc(50% + 35px); width: calc(100% - 30px); border-top: 1px dashed #d8c7dd; }
.partner-selected-process article > span { position: relative; z-index: 1; width: 48px; height: 48px; display: grid; place-items: center; margin: 0 auto 13px; border-radius: 50%; color: var(--v19-purple); background: var(--v19-purple-soft); font-size: 1.1rem; font-weight: 800; }
.partner-selected-process h3 { margin: 0 0 6px; font-size: .92rem; }
.partner-selected-process p { max-width: 240px; margin: 0 auto; color: #7b7080; font-size: .72rem; line-height: 1.55; }
.partner-selected-benefits-section { padding: 15px 0 36px; }
.partner-selected-benefits { padding: 23px 28px; border: 1px solid #e7dbe9; border-radius: 16px; background: linear-gradient(180deg,#fbf8fc,#f6eff8); }
.partner-selected-benefits > h2 { margin: 0 0 18px; text-align: center; font-size: 1.15rem; }
.partner-selected-benefit-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); }
.partner-selected-benefit-grid article { display: grid; grid-template-columns: 48px minmax(0,1fr); gap: 14px; padding: 4px 24px; border-right: 1px solid #dfd1e3; }
.partner-selected-benefit-grid article:last-child { border-right: 0; }
.partner-selected-benefit-grid article > span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; color: var(--v19-purple); background: #fff; font-size: 1.2rem; font-weight: 800; }
.partner-selected-benefit-grid h3 { margin: 2px 0 5px; color: var(--v19-purple-dark); font-size: .86rem; }
.partner-selected-benefit-grid p { margin: 0; color: #776d7c; font-size: .71rem; line-height: 1.5; }
.partner-selected-cta-section { padding: 0 0 55px; }
.partner-selected-cta { display: grid; grid-template-columns: 70px minmax(0,1fr) auto; align-items: center; gap: 22px; padding: 25px 30px; border-radius: 16px; color: #fff; background: linear-gradient(135deg,#4b0f5a,#7d268f); }
.partner-selected-cta-icon { width: 64px; height: 64px; display: grid; place-items: center; border: 2px solid rgba(255,255,255,.55); border-radius: 50%; font-size: 1.7rem; }
.partner-selected-cta h2 { margin: 0 0 5px; color: #fff; font-size: 1.25rem; }
.partner-selected-cta p { margin: 0; color: rgba(255,255,255,.72); font-size: .78rem; }
.partner-selected-cta a { min-height: 46px; display: inline-flex; align-items: center; justify-content: center; padding: 10px 18px; border-radius: 9px; color: #fff; background: var(--v19-green); font-size: .78rem; font-weight: 800; }
.partner-selected-cta a:hover { color: #fff; background: var(--v19-green-dark); }

/* ---------- Property: selected clean split ---------- */
.property-selected-page { padding-bottom: 0; color: var(--v19-ink); background: #fff; }
.property-selected-breadcrumbs { display: flex; align-items: center; gap: 8px; padding-top: calc(var(--header-height) + 20px); padding-bottom: 18px; color: #8b7d90; font-size: .72rem; }
.property-selected-breadcrumbs a { color: #725d7c; }
.property-selected-breadcrumbs strong { color: var(--v19-purple); }
.property-selected-container { max-width: 1320px; }
.property-selected-hero-grid { display: grid; grid-template-columns: minmax(300px,.7fr) minmax(0,1.35fr); align-items: start; gap: 34px; padding-bottom: 28px; }
.property-selected-summary { padding-top: 14px; }
.property-selected-topline { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.property-selected-id { padding: 7px 11px; border-radius: 7px; color: #fff; background: var(--v19-purple); font-size: .7rem; font-weight: 800; }
.property-selected-featured { color: var(--v19-purple); font-size: .72rem; font-weight: 750; }
.property-selected-topline .badge { padding: 7px 10px; border-radius: 999px; font-size: .66rem; }
.property-selected-summary h1 { max-width: 510px; margin: 0; font-size: clamp(2.05rem,3.55vw,3.65rem); line-height: 1.08; letter-spacing: -.045em; }
.property-selected-location { display: flex; align-items: center; gap: 7px; margin: 15px 0 0; color: #5e5363; font-size: .9rem; line-height: 1.5; }
.property-selected-location svg { width: 19px; height: 19px; fill: none; stroke: var(--v19-purple); stroke-width: 2; flex: 0 0 auto; }
.property-selected-transaction-tabs { display: flex; gap: 10px; margin-top: 25px; }
.property-selected-transaction-tabs span { min-width: 118px; min-height: 38px; display: inline-flex; align-items: center; justify-content: center; padding: 8px 16px; border-radius: 9px; color: var(--v19-purple); background: #f1e8f4; font-size: .76rem; font-weight: 750; }
.property-selected-transaction-tabs span:first-child { color: #fff; background: var(--v19-purple); }
.property-selected-prices { display: grid; grid-template-columns: repeat(auto-fit,minmax(130px,1fr)); max-width: 440px; margin-top: 15px; padding: 18px 0; border-radius: 14px; background: linear-gradient(90deg,#faf6fb,#f5eef7); }
.property-selected-prices > div { padding: 0 20px; border-right: 1px solid #dcccdf; }
.property-selected-prices > div:last-child { border-right: 0; }
.property-selected-prices strong { display: block; color: var(--v19-purple-dark); font-size: clamp(1.55rem,2.2vw,2.25rem); line-height: 1.15; }
.property-selected-prices span { display: block; margin-top: 5px; color: #756a7a; font-size: .72rem; }
.property-selected-gallery .property-showcase { padding: 0; border: 0; background: transparent; box-shadow: none; }
.property-selected-gallery .property-media-stage { aspect-ratio: 16/8.15; max-height: 520px; overflow: hidden; border-radius: 17px; background: #eee; box-shadow: 0 16px 38px rgba(37,17,42,.12); }
.property-selected-gallery .property-photo-main,
.property-selected-gallery .property-photo-main img,
.property-selected-gallery .property-video-poster,
.property-selected-gallery .property-video-poster img { width: 100%; height: 100%; object-fit: cover; }
.property-selected-gallery .property-media-arrow { width: 42px; height: 42px; border-radius: 50%; color: #241b29; background: rgba(255,255,255,.9); border: 0; box-shadow: 0 7px 18px rgba(0,0,0,.14); }
.property-selected-gallery .property-media-prev { left: 14px; }
.property-selected-gallery .property-media-next { right: 14px; }
.property-selected-gallery .property-media-counter { right: 13px; bottom: auto; top: 13px; padding: 7px 9px; border-radius: 7px; background: var(--v19-purple); }
.property-selected-gallery .property-thumbnail-strip { gap: 9px; margin-top: 11px; padding: 0; overflow-x: auto; }
.property-selected-gallery .property-thumbnail { width: 108px; height: 62px; flex: 0 0 108px; border: 2px solid transparent; border-radius: 9px; overflow: hidden; }
.property-selected-gallery .property-thumbnail.active { border-color: var(--v19-purple); box-shadow: 0 0 0 2px rgba(103,24,122,.12); }
.property-selected-gallery .property-status-ribbon { top: 20px; left: -45px; width: 200px; }
.property-selected-facts { display: grid; grid-template-columns: repeat(6,minmax(0,1fr)); gap: 0; margin-top: 4px; padding: 20px 12px; border-top: 1px solid #eee7ef; border-bottom: 1px solid #eee7ef; background: linear-gradient(90deg,#fbf8fc,#f7f0f9); }
.property-selected-facts article { display: flex; align-items: center; justify-content: center; gap: 11px; min-height: 54px; padding: 4px 12px; }
.property-selected-facts svg { width: 27px; height: 27px; fill: none; stroke: var(--v19-purple); stroke-width: 1.7; }
.property-selected-facts article div { display: grid; gap: 3px; }
.property-selected-facts strong { color: var(--v19-purple-dark); font-size: .92rem; }
.property-selected-facts span { color: #756a7b; font-size: .66rem; }
.property-selected-content-grid { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(260px,.86fr) 330px; gap: 30px; padding: 36px 0 38px; }
.property-selected-content-grid h2 { margin: 0 0 13px; color: #241d28; font-size: 1.05rem; }
.property-selected-description { margin-bottom: 24px; }
.property-selected-description p { margin: 0; color: #5f5664; font-size: .78rem; line-height: 1.75; }
.property-selected-specifications > div { display: grid; grid-template-columns: 1fr 1fr; column-gap: 25px; }
.property-selected-specifications p { display: flex; justify-content: space-between; gap: 16px; margin: 0; padding: 8px 0; border-bottom: 1px solid #eee8f0; font-size: .7rem; }
.property-selected-specifications span { color: #716675; }
.property-selected-specifications strong { color: #352c39; text-align: right; font-weight: 650; }
.property-selected-amenities { display: flex; flex-wrap: wrap; gap: 9px; }
.property-selected-amenities > span { display: inline-flex; align-items: center; gap: 7px; padding: 8px 11px; border: 1px solid #e3d7e6; border-radius: 999px; color: #5c4e63; background: #fcfafd; font-size: .68rem; }
.property-selected-amenities svg { width: 14px; height: 14px; fill: none; stroke: var(--v19-purple); stroke-width: 2; }
.property-selected-configurations { margin-top: 25px; }
.property-selected-configurations > div { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px solid #eee7f0; font-size: .71rem; }
.property-selected-configurations > div strong { color: #382e3d; }
.property-selected-configurations > div span { color: var(--v19-purple); font-weight: 700; }
.property-selected-muted { color: #776c7c; font-size: .76rem; }
.property-selected-enquiry { align-self: start; padding: 25px; border: 1px solid #dfd1e3; border-radius: 15px; background: linear-gradient(180deg,#fcf9fd,#f2e9f5); box-shadow: 0 15px 34px rgba(49,20,57,.08); }
.property-selected-enquiry h2 { margin-bottom: 7px; }
.property-selected-enquiry > p { margin: 0; color: #6f6375; font-size: .73rem; line-height: 1.55; }
.property-selected-whatsapp-number { display: flex; align-items: center; gap: 8px; margin-top: 17px; color: var(--v19-purple); font-size: 1rem; font-weight: 800; }
.property-selected-whatsapp-number span { color: var(--v19-green); }
.property-selected-message { margin: 13px 0; padding: 13px; border: 1px solid #ded1e2; border-radius: 9px; color: #756b7a; background: #fff; font-size: .69rem; line-height: 1.5; }
.property-selected-enquiry > a { min-height: 42px; display: flex; align-items: center; justify-content: center; border-radius: 8px; color: #fff; background: var(--v19-purple); font-size: .75rem; font-weight: 800; }
.property-selected-enquiry > a:hover { color: #fff; background: var(--v19-purple-dark); }
.property-selected-enquiry small { display: block; margin-top: 10px; color: #918596; font-size: .61rem; text-align: center; }
.property-selected-trust-strip { padding: 20px 0; color: #fff; background: linear-gradient(90deg,#1d1024,#3a1745 56%,#1d1024); }
.property-selected-trust-strip .container { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); }
.property-selected-trust-strip article { display: flex; align-items: center; justify-content: center; gap: 13px; padding: 4px 20px; border-right: 1px solid rgba(255,255,255,.22); }
.property-selected-trust-strip article:last-child { border-right: 0; }
.property-selected-trust-strip svg { width: 29px; height: 29px; fill: none; stroke: rgba(255,255,255,.72); stroke-width: 1.6; }
.property-selected-trust-strip article div { display: grid; gap: 3px; }
.property-selected-trust-strip strong { color: #fff; font-size: .78rem; }
.property-selected-trust-strip span { color: rgba(255,255,255,.58); font-size: .62rem; line-height: 1.4; }
.property-selected-similar { margin: 42px 0 60px; }
.property-selected-mobile-bar { display: none; }

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .requirements-selected-list-head,
  .requirements-selected-row { grid-template-columns: minmax(250px,1.3fr) minmax(105px,.65fr) minmax(120px,.72fr) minmax(150px,.85fr) 120px; gap: 12px; }
  .partner-selected-hero-grid { grid-template-columns: 1fr .8fr; gap: 30px; }
  .property-selected-hero-grid { grid-template-columns: minmax(280px,.72fr) minmax(0,1.2fr); gap: 24px; }
  .property-selected-content-grid { grid-template-columns: 1fr 1fr; }
  .property-selected-enquiry { grid-column: 1/-1; display: grid; grid-template-columns: minmax(0,1fr) 240px; column-gap: 20px; align-items: center; }
  .property-selected-enquiry > a { grid-column: 2; grid-row: 1/5; }
  .property-selected-enquiry small { text-align: left; }
}

@media (max-width: 900px) {
  .requirements-selected-summary { grid-template-columns: 1fr 1fr; }
  .requirements-summary-item:nth-child(2) { border-right: 0; }
  .requirements-summary-item:nth-child(-n+2) { border-bottom: 1px solid #eee5f0; }
  .requirements-selected-list-head { display: none; }
  .requirements-selected-list-card { border: 0; background: transparent; box-shadow: none; }
  .requirements-selected-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .requirements-selected-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; min-height: 0; padding: 18px; border: 1px solid #e6dbe8; border-radius: 16px; background: #fff; box-shadow: 0 8px 24px rgba(43,18,49,.05); }
  .requirements-selected-main-cell { grid-column: 1/-1; }
  .requirements-selected-preference { grid-column: 1/-1; }
  .requirements-selected-data::before { content: attr(data-label); color: #9a8ea0; font-size: .58rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
  .requirements-selected-action { grid-column: 1/-1; }
  .partner-selected-hero-grid { grid-template-columns: 1fr; text-align: center; }
  .partner-selected-copy > p { margin-left: auto; margin-right: auto; }
  .partner-selected-illustration { min-height: 260px; }
  .partner-selected-illustration svg { max-width: 560px; }
  .partner-selected-paths { grid-template-columns: 1fr; }
  .partner-selected-process { gap: 20px; }
  .partner-selected-process article:not(:last-child)::after { display: none; }
  .partner-selected-benefit-grid { grid-template-columns: 1fr; gap: 16px; }
  .partner-selected-benefit-grid article { border-right: 0; padding: 0; }
  .partner-selected-cta { grid-template-columns: 60px 1fr; }
  .partner-selected-cta a { grid-column: 1/-1; }
  .property-selected-hero-grid { grid-template-columns: 1fr; }
  .property-selected-summary { padding-top: 0; }
  .property-selected-summary h1 { max-width: 700px; }
  .property-selected-prices { max-width: 560px; }
  .property-selected-gallery { grid-row: 2; }
  .property-selected-facts { grid-template-columns: repeat(3,1fr); }
  .property-selected-content-grid { grid-template-columns: 1fr; }
  .property-selected-enquiry { grid-column: auto; display: block; }
  .property-selected-enquiry > a { grid-column: auto; grid-row: auto; }
  .property-selected-enquiry small { text-align: center; }
  .property-selected-trust-strip .container { grid-template-columns: 1fr 1fr; }
  .property-selected-trust-strip article:nth-child(2) { border-right: 0; }
  .property-selected-trust-strip article:nth-child(-n+2) { padding-bottom: 15px; margin-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,.14); }
}

@media (max-width: 640px) {
  .requirements-selected-hero { padding: calc(var(--header-height-mobile) + 34px) 0 76px; }
  .requirements-selected-hero h1 { font-size: 2rem; }
  .requirements-selected-hero p { font-size: .82rem; }
  .requirements-selected-summary-wrap { margin-top: -47px; }
  .requirements-selected-summary { padding: 10px; border-radius: 16px; }
  .requirements-summary-item { min-height: 64px; padding: 8px 9px; gap: 8px; }
  .requirements-summary-icon { width: 34px; height: 34px; border-radius: 10px; }
  .requirements-summary-item strong { font-size: 1rem; }
  .requirements-summary-item span:last-child { font-size: .58rem; }
  .requirements-selected-board { padding: 30px 0 50px; }
  .requirements-selected-filterbar { align-items: stretch; flex-direction: column; gap: 12px; }
  .requirements-selected-chips { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; }
  .requirement-filter-chip { flex: 0 0 auto; }
  .requirements-location-filter select { width: 100%; }
  .requirements-selected-list { grid-template-columns: 1fr; }
  .requirements-selected-row { grid-template-columns: 1fr 1fr; padding: 16px; }
  .requirements-selected-footer-row { align-items: stretch; flex-direction: column; }
  .requirements-selected-share { align-items: stretch; flex-direction: column; }
  .requirements-selected-share strong { text-align: center; }

  .partner-selected-hero { padding: calc(var(--header-height-mobile) + 32px) 0 28px; }
  .partner-selected-copy { text-align: left; }
  .partner-selected-copy h1 { font-size: 2.35rem; }
  .partner-selected-copy > p { font-size: .87rem; }
  .partner-selected-whatsapp { width: 100%; justify-content: center; }
  .partner-selected-copy small { text-align: center; }
  .partner-selected-illustration { min-height: 190px; margin-top: 4px; }
  .partner-selected-section,
  .partner-selected-process-section { padding: 28px 0; }
  .partner-selected-paths article { grid-template-columns: 52px 1fr; padding: 18px; }
  .partner-selected-icon { width: 52px; height: 52px; }
  .partner-selected-process { grid-template-columns: 1fr; }
  .partner-selected-process article { display: grid; grid-template-columns: 44px 1fr; column-gap: 14px; text-align: left; }
  .partner-selected-process article > span { grid-row: 1/3; width: 44px; height: 44px; margin: 0; }
  .partner-selected-process p { max-width: none; margin: 0; }
  .partner-selected-benefits { padding: 20px; }
  .partner-selected-cta { grid-template-columns: 1fr; padding: 22px; text-align: center; }
  .partner-selected-cta-icon { margin: 0 auto; }

  .property-selected-breadcrumbs { padding-top: calc(var(--header-height-mobile) + 14px); }
  .property-selected-hero-grid { gap: 20px; padding-bottom: 18px; }
  .property-selected-topline { margin-bottom: 11px; }
  .property-selected-summary h1 { font-size: 1.75rem; }
  .property-selected-location { margin-top: 10px; font-size: .78rem; }
  .property-selected-transaction-tabs { margin-top: 18px; overflow-x: auto; }
  .property-selected-transaction-tabs span { min-width: 105px; flex: 0 0 auto; }
  .property-selected-prices { padding: 15px 0; }
  .property-selected-prices > div { padding: 0 14px; }
  .property-selected-prices strong { font-size: 1.35rem; }
  .property-selected-gallery .property-media-stage { aspect-ratio: 16/10.5; border-radius: 13px; }
  .property-selected-gallery .property-thumbnail { width: 78px; height: 51px; flex-basis: 78px; }
  .property-selected-facts { grid-template-columns: 1fr 1fr; padding: 14px 4px; }
  .property-selected-facts article { justify-content: flex-start; padding: 10px 14px; }
  .property-selected-content-grid { gap: 28px; padding: 28px 0; }
  .property-selected-specifications > div { grid-template-columns: 1fr; }
  .property-selected-trust-strip { padding-bottom: 76px; }
  .property-selected-trust-strip .container { grid-template-columns: 1fr; }
  .property-selected-trust-strip article { justify-content: flex-start; border-right: 0; padding: 12px 4px; margin: 0 !important; border-bottom: 1px solid rgba(255,255,255,.14); }
  .property-selected-trust-strip article:last-child { border-bottom: 0; }
  .property-selected-mobile-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 100; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 10px; padding: 10px 14px max(10px,env(safe-area-inset-bottom)); border-top: 1px solid #e5d9e8; background: rgba(255,255,255,.97); box-shadow: 0 -10px 25px rgba(40,16,46,.1); }
  .property-selected-mobile-bar span { color: var(--v19-purple); font-size: .74rem; font-weight: 800; }
  .property-selected-mobile-bar a { padding: 11px 14px; border-radius: 9px; color: #fff; background: var(--v19-purple); font-size: .72rem; font-weight: 800; }
}


/* ===== fixes-v20.css ===== */
/* =========================================================
   AVESH REALTY — PHASE 1.10 TARGETED UI FIXES
   ========================================================= */

:root {
  --fix-purple: #67187a;
  --fix-purple-dark: #4b0f5a;
  --fix-purple-soft: #f7f0f9;
  --fix-border: #e8ddea;
  --fix-ink: #211b25;
  --fix-muted: #716777;
  --fix-green: #20bf5b;
}

/* Properties page header: keep it light and readable */
.page-header {
  padding-top: calc(var(--header-height) + 34px) !important;
  padding-bottom: 28px !important;
  background:
    radial-gradient(circle at 86% 18%, rgba(103,24,122,.10), transparent 25%),
    linear-gradient(180deg, #fbf8fc 0%, #ffffff 100%) !important;
  border-bottom: 1px solid #eee6f0 !important;
}
.page-header::before { opacity: .14; }
.page-header h1,
.page-header .heading-2 {
  color: var(--fix-ink) !important;
  text-shadow: none !important;
}
.page-header p {
  color: #5f5565 !important;
  text-shadow: none !important;
}

/* Property page typography and information density */
.property-selected-content-grid {
  grid-template-columns: minmax(0,1.2fr) minmax(300px,.9fr) 350px !important;
  gap: 34px !important;
  padding: 42px 0 !important;
}
.property-selected-content-grid h2 {
  margin-bottom: 17px !important;
  font-size: 1.28rem !important;
  line-height: 1.25 !important;
}
.property-selected-description {
  margin-bottom: 32px !important;
}
.property-selected-description p {
  color: #625966 !important;
  font-size: .96rem !important;
  line-height: 1.75 !important;
}
.property-selected-specifications > div {
  column-gap: 30px !important;
}
.property-selected-specifications p {
  min-height: 48px;
  align-items: flex-start;
  padding: 12px 0 !important;
  font-size: .86rem !important;
  line-height: 1.45 !important;
}
.property-selected-specifications span {
  color: #7b7080 !important;
  flex: 0 0 42%;
}
.property-selected-specifications strong {
  color: #3b323f !important;
  max-width: 58%;
  text-align: right;
  line-height: 1.45;
  overflow-wrap: anywhere;
}
.property-selected-amenities {
  gap: 11px !important;
}
.property-selected-amenities > span {
  min-height: 42px;
  padding: 10px 15px !important;
  border-radius: 999px;
  font-size: .86rem !important;
  line-height: 1.25;
  background: #fdfbfe !important;
}
.property-selected-amenities svg {
  width: 16px !important;
  height: 16px !important;
}
.property-selected-configurations > div {
  min-height: 47px;
  padding: 11px 0 !important;
}
.property-selected-configurations strong,
.property-selected-configurations span {
  font-size: .86rem !important;
}

/* Property code remains in specs/breadcrumbs, not as a prominent tag */
.property-selected-topline {
  min-height: 28px;
  margin-bottom: 14px !important;
}
.property-selected-featured,
.property-selected-topline .badge {
  font-size: .75rem !important;
}

/* Sale/rent/lease are information labels, not fake buttons */
.property-selected-availability {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 24px;
}
.property-selected-availability span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #5e5264;
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.35;
}
.property-selected-availability i {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--fix-purple);
  box-shadow: 0 0 0 4px rgba(103,24,122,.10);
}
.property-selected-prices {
  margin-top: 18px !important;
  padding: 19px 0 !important;
  border: 1px solid #eadfec;
  background: linear-gradient(90deg,#fcf9fd,#f6eff8) !important;
}
.property-selected-prices strong {
  font-size: clamp(1.65rem, 2.15vw, 2.3rem) !important;
}
.property-selected-prices span {
  font-size: .8rem !important;
}

/* WhatsApp enquiry card: no confusing prefilled-message preview */
.property-selected-enquiry {
  padding: 30px !important;
  border-radius: 22px !important;
  background: linear-gradient(180deg,#fcf9fd 0%, #f6eff8 100%) !important;
}
.property-selected-enquiry h2 {
  font-size: 1.35rem !important;
}
.property-selected-enquiry > p {
  color: #746a79 !important;
  font-size: .92rem !important;
  line-height: 1.58 !important;
}
.property-selected-whatsapp-number {
  margin: 25px 0 21px !important;
  color: var(--fix-purple) !important;
  font-size: 1.2rem !important;
  font-weight: 800 !important;
}
.property-selected-whatsapp-number span {
  color: var(--fix-green) !important;
}
.property-selected-enquiry > a {
  min-height: 53px !important;
  margin-top: 0 !important;
  border-radius: 13px !important;
  background: var(--fix-purple) !important;
  font-size: .92rem !important;
  box-shadow: 0 12px 24px rgba(103,24,122,.17);
}
.property-selected-enquiry > a:hover {
  background: var(--fix-purple-dark) !important;
}
.property-selected-enquiry small {
  margin-top: 13px !important;
  font-size: .75rem !important;
}

/* Partner page: clean opportunity-flow diagram */
.partner-selected-visual {
  padding: 26px;
  border: 1px solid var(--fix-border);
  border-radius: 26px;
  background:
    radial-gradient(circle at 100% 0%, rgba(103,24,122,.11), transparent 35%),
    linear-gradient(180deg,#ffffff 0%, #faf6fb 100%);
  box-shadow: 0 24px 60px rgba(49,20,57,.09);
}
.partner-visual-head {
  display: grid;
  gap: 7px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee5f0;
}
.partner-visual-head span {
  color: var(--fix-purple);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.partner-visual-head strong {
  color: var(--fix-ink);
  font-size: 1.25rem;
  line-height: 1.35;
}
.partner-visual-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 12px;
  padding: 24px 0 20px;
}
.partner-visual-flow article {
  position: relative;
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 225px;
  padding: 18px;
  border: 1px solid #eadfec;
  border-radius: 18px;
  background: #fff;
}
.partner-visual-step {
  position: absolute;
  top: 13px;
  right: 13px;
  color: #ad9bb3;
  font-size: .67rem;
  font-weight: 800;
}
.partner-visual-icon {
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--fix-purple);
  background: var(--fix-purple-soft);
}
.partner-visual-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.partner-visual-icon > span {
  font-size: 1.25rem;
  font-weight: 900;
}
.partner-visual-flow article strong {
  display: block;
  color: #2c2430;
  font-size: .92rem;
  line-height: 1.35;
}
.partner-visual-flow article p {
  margin: 7px 0 0;
  color: #746a79;
  font-size: .77rem;
  line-height: 1.55;
}
.partner-visual-arrow {
  display: grid;
  place-items: center;
  color: #a786b0;
  font-size: 1.35rem;
  font-weight: 800;
}
.partner-visual-earn {
  color: #fff;
  border-color: var(--fix-purple) !important;
  background: linear-gradient(145deg,#35103f,#721d85) !important;
}
.partner-visual-earn .partner-visual-step,
.partner-visual-earn strong,
.partner-visual-earn p {
  color: #fff !important;
}
.partner-visual-earn p { opacity: .74; }
.partner-visual-earn .partner-visual-icon {
  color: #fff;
  background: rgba(255,255,255,.13);
}
.partner-visual-types {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid #eee5f0;
}
.partner-visual-types span {
  padding: 7px 10px;
  border-radius: 999px;
  color: #67586e;
  background: #f5eef7;
  font-size: .7rem;
  font-weight: 700;
}

/* Home/list hero logo removal leaves spacing clean */
.hero-content .container > .hero-title:first-of-type {
  margin-top: 0;
}
.owner-clean-copy > .owner-kicker:first-child {
  margin-top: 0;
}

/* List-property preview and 1/2/3 steps must be readable */
.owner-clean-preview {
  color: var(--fix-ink) !important;
  background: rgba(255,255,255,.96) !important;
}
.owner-preview-header,
.owner-preview-header span,
.owner-preview-header b {
  color: #2e2432 !important;
}
.owner-preview-property div small {
  color: var(--fix-purple) !important;
}
.owner-preview-property div strong {
  color: #251e29 !important;
}
.owner-preview-steps div {
  border: 1px solid #e9deeb !important;
  background: #f8f3f9 !important;
}
.owner-preview-steps span {
  display: inline-grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  color: #fff !important;
  background: var(--fix-purple) !important;
  font-size: .7rem !important;
}
.owner-preview-steps p {
  color: #463b4a !important;
  font-size: .78rem !important;
  font-weight: 700;
}
.owner-step-number {
  color: #fff !important;
  background: var(--fix-purple) !important;
  border-color: var(--fix-purple) !important;
  box-shadow: 0 8px 20px rgba(103,24,122,.16);
}
.owner-clean-step h3 { color: #2a222e !important; }
.owner-clean-step p { color: #716777 !important; }

/* Footer call icon/link is now a proper tel action */
.footer-social a[aria-label="Call Avesh Realty"] {
  color: var(--fix-purple) !important;
}

@media (max-width: 1180px) {
  .property-selected-content-grid {
    grid-template-columns: 1fr 1fr !important;
  }
  .property-selected-enquiry {
    grid-column: 1 / -1;
  }
  .partner-visual-flow {
    grid-template-columns: 1fr;
  }
  .partner-visual-arrow {
    transform: rotate(90deg);
    min-height: 18px;
  }
  .partner-visual-flow article {
    min-height: 0;
  }
}

@media (max-width: 767px) {
  .page-header {
    padding-top: calc(var(--header-height-mobile) + 24px) !important;
    padding-bottom: 22px !important;
  }
  .page-header h1,
  .page-header .heading-2 {
    font-size: 2.2rem !important;
  }
  .page-header p {
    font-size: .92rem !important;
    line-height: 1.55;
  }
  .property-selected-content-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    padding: 30px 0 !important;
  }
  .property-selected-content-grid h2 {
    font-size: 1.15rem !important;
  }
  .property-selected-description p {
    font-size: .9rem !important;
  }
  .property-selected-specifications > div {
    grid-template-columns: 1fr !important;
  }
  .property-selected-specifications p {
    font-size: .82rem !important;
  }
  .property-selected-amenities > span {
    font-size: .8rem !important;
  }
  .property-selected-availability {
    gap: 9px 14px;
  }
  .property-selected-availability span {
    font-size: .76rem;
  }
  .property-selected-prices {
    grid-template-columns: 1fr !important;
    gap: 0;
    padding: 0 !important;
    overflow: hidden;
  }
  .property-selected-prices > div {
    padding: 16px !important;
    border-right: 0 !important;
    border-bottom: 1px solid #e3d7e6;
  }
  .property-selected-prices > div:last-child {
    border-bottom: 0;
  }
  .property-selected-enquiry {
    padding: 22px !important;
  }
  .property-selected-whatsapp-number {
    font-size: 1.05rem !important;
  }
  .partner-selected-visual {
    padding: 18px;
    border-radius: 20px;
  }
  .partner-visual-flow {
    padding: 18px 0;
  }
  .partner-visual-flow article {
    padding: 16px;
  }
  .partner-visual-head strong {
    font-size: 1.05rem;
  }
  .owner-preview-steps {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 1180px) {
  .property-selected-enquiry { display: block !important; }
  .property-selected-enquiry > a { grid-column: auto !important; grid-row: auto !important; }
}


/* ===== phase-v21.css ===== */
/* =========================================================
   AVESH REALTY — PHASE 1.11
   Search-first properties page + refined partner program
   + uniform 1:1 property media
   ========================================================= */

/* ---------- universal square property imagery ---------- */
.property-card-image-wrapper,
.property-detail-v3 .property-showcase .property-media-stage,
.property-selected-gallery .property-media-stage,
.property-showcase .property-media-stage,
.property-photo-main,
.property-video-poster,
.property-video-play-surface,
.owner-preview-property img,
.search-property-item .search-item-image {
  aspect-ratio: 1 / 1 !important;
}

.property-card-image,
.property-photo-main img,
.property-video-poster img,
.owner-preview-property img,
.search-property-item .search-item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-thumbnail-strip .property-thumbnail,
.property-detail-v3 .property-thumbnail,
.property-selected-page .property-thumbnail {
  aspect-ratio: 1 / 1 !important;
  width: 78px !important;
  height: auto !important;
  flex: 0 0 78px !important;
}

/* ---------- properties page: search-first layout ---------- */
.properties-search-first-page {
  min-height: 100vh;
  padding: calc(var(--header-height) + 30px) 0 72px;
  background:
    radial-gradient(circle at 12% 0%, rgba(103,24,122,.075), transparent 28%),
    linear-gradient(180deg, #FCFAFD 0%, #FFFFFF 42%);
}

.properties-search-first-container {
  max-width: 1380px;
}

.properties-search-first-panel {
  padding: 24px;
  border: 1px solid #E9E0EC;
  border-radius: 26px;
  background:
    radial-gradient(circle at 88% 12%, rgba(150,83,165,.12), transparent 30%),
    linear-gradient(135deg, #FAF6FB 0%, #F4EDF7 100%);
  box-shadow: 0 20px 50px rgba(48,20,55,.07);
}

.properties-search-first-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid #DDD0E1;
  border-radius: 18px;
  background: #FFF;
  box-shadow: 0 12px 32px rgba(40,17,47,.08);
}

.properties-search-first-input-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 0 20px;
}

.properties-search-first-input-wrap svg,
.properties-search-first-submit svg,
.property-quick-filter svg,
.properties-view-toggle svg,
.properties-search-first-trust svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.properties-search-first-input-wrap svg {
  width: 21px;
  height: 21px;
  color: #8B7D91;
  flex: 0 0 auto;
}

.properties-search-first-input-wrap input {
  width: 100%;
  min-width: 0;
  min-height: 60px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #241C28;
  font: inherit;
  font-size: .98rem;
}

.properties-search-first-input-wrap input::placeholder {
  color: #968A9B;
}

.properties-search-first-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 144px;
  padding: 0 24px;
  border: 0;
  background: linear-gradient(135deg, #5A146A 0%, #7D238F 100%);
  color: #FFF;
  font-weight: 750;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.properties-search-first-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(103,24,122,.25);
}

.properties-search-first-submit svg {
  width: 18px;
  height: 18px;
}

.properties-search-first-quickbar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.property-quick-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 17px;
  border: 1px solid #E0D5E4;
  border-radius: 14px;
  background: rgba(255,255,255,.9);
  color: #574C5D;
  font-weight: 700;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}

.property-quick-filter:hover {
  transform: translateY(-1px);
  border-color: #C7A9CF;
  color: var(--brand-primary);
}

.property-quick-filter.is-active {
  border-color: var(--brand-primary);
  background: var(--brand-primary);
  color: #FFF;
  box-shadow: 0 10px 22px rgba(103,24,122,.18);
}

.property-quick-filter svg {
  width: 18px;
  height: 18px;
}

.property-more-filters {
  background: #FFF;
}

.properties-search-first-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 26px 0 14px;
}

.properties-search-first-meta .results-count {
  margin: 0;
  color: #332B38;
  font-size: 1.03rem;
  font-weight: 750;
}

.properties-search-first-controls {
  display: flex;
  align-items: center;
  gap: 14px;
}

.properties-view-toggle {
  display: flex;
  align-items: center;
  padding: 4px;
  border: 1px solid #E1D6E5;
  border-radius: 13px;
  background: #FFF;
}

.properties-view-toggle button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 12px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #766A7C;
  font-weight: 700;
  cursor: pointer;
}

.properties-view-toggle button.is-active {
  background: #F0E7F3;
  color: var(--brand-primary);
}

.properties-view-toggle svg {
  width: 17px;
  height: 17px;
}

.properties-sort-control {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 8px 0 14px;
  border: 1px solid #E1D6E5;
  border-radius: 13px;
  background: #FFF;
  color: #746878;
  white-space: nowrap;
}

.properties-sort-control span {
  font-size: .82rem;
  font-weight: 650;
}

.properties-sort-control .form-select {
  width: auto;
  min-width: 150px;
  border: 0;
  background-color: transparent;
  font-weight: 700;
}

.properties-search-first-active {
  margin-bottom: 18px;
}

.properties-search-first-active .active-filters-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.properties-search-first-active .active-filter-tag {
  border-color: transparent;
  background: #F1E8F4;
  color: #632070;
}

.search-first-results-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

/* Option B card language */
.properties-search-first-page .property-card {
  overflow: hidden;
  border: 1px solid #E8DFEA;
  border-radius: 20px !important;
  background: #FFF;
  box-shadow: 0 10px 24px rgba(38,16,44,.055) !important;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.properties-search-first-page .property-card:hover {
  transform: translateY(-5px);
  border-color: #D9C5DE;
  box-shadow: 0 20px 38px rgba(38,16,44,.11) !important;
}

.properties-search-first-page .property-card-image-wrapper {
  aspect-ratio: 1 / 1 !important;
  border-radius: 0;
}

.properties-search-first-page .property-card-body {
  padding: 14px 15px 12px !important;
}

.properties-search-first-page .property-card-title {
  font-size: .98rem !important;
  line-height: 1.35;
}

.properties-search-first-page .property-card-location {
  font-size: .76rem !important;
  margin-bottom: 8px;
}

.properties-search-first-page .property-card-specs {
  gap: 6px;
}

.properties-search-first-page .property-card-spec {
  padding: 5px 8px;
  border-radius: 8px;
  font-size: .7rem !important;
}

.properties-search-first-page .property-card-price .price {
  font-size: 1.15rem;
}

.properties-search-first-page .property-card-actions {
  min-height: 54px;
  padding: 9px 13px 13px !important;
}

.properties-search-first-page .property-card-primary-action {
  min-height: 38px;
  border: 0;
  border-radius: 10px;
  background: #21B95A !important;
  color: #FFF !important;
  box-shadow: 0 8px 18px rgba(33,185,90,.2);
}

.properties-search-first-page .property-card-primary-action:hover {
  background: #169E49 !important;
}

.properties-search-first-page .property-card-icon-actions button:last-child {
  display: none;
}

.properties-search-first-page .property-card-icon-actions .btn {
  width: 38px;
  min-width: 38px;
  height: 38px;
  border: 1px solid #E3D9E6;
  background: #FFF;
}

.properties-search-first-page .property-card-badges .badge,
.properties-search-first-page .property-card-transactions span {
  font-size: .65rem;
}

/* list view */
.search-first-results-grid.is-list-view {
  grid-template-columns: 1fr;
}

.search-first-results-grid.is-list-view .property-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
}

.search-first-results-grid.is-list-view .property-card-link {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
}

.search-first-results-grid.is-list-view .property-card-image-wrapper {
  height: 100%;
  min-height: 230px;
}

.search-first-results-grid.is-list-view .property-card-actions {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  border-top: 0;
  border-left: 1px solid #EFE8F0;
}

.search-first-results-grid.is-list-view .property-card-icon-actions {
  justify-content: center;
}

.properties-search-first-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid #E7DCE9;
  border-radius: 20px;
  background: linear-gradient(180deg, #FBF8FC 0%, #F5EEF7 100%);
}

.properties-search-first-trust article {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 88px;
  padding: 18px 22px;
  border-right: 1px solid #E3D8E6;
}

.properties-search-first-trust article:last-child {
  border-right: 0;
}

.properties-search-first-trust article > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 13px;
  background: #FFF;
  color: var(--brand-primary);
  box-shadow: 0 8px 18px rgba(57,25,65,.07);
}

.properties-search-first-trust article > span.is-whatsapp {
  background: #24C861;
  color: #FFF;
}

.properties-search-first-trust svg {
  width: 22px;
  height: 22px;
}

.properties-search-first-trust strong,
.properties-search-first-trust small {
  display: block;
}

.properties-search-first-trust strong {
  color: #2C2431;
  font-size: .86rem;
}

.properties-search-first-trust small {
  margin-top: 2px;
  color: #7D7182;
  font-size: .72rem;
}

/* filter drawer */
.property-filter-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  background: rgba(20,12,24,.46);
  backdrop-filter: blur(3px);
  transition: opacity .25s ease, visibility .25s ease;
}

.property-filter-backdrop.is-active {
  visibility: visible;
  opacity: 1;
}

.search-first-filter-drawer {
  position: fixed !important;
  top: 0 !important;
  right: 0;
  left: auto !important;
  z-index: 1001;
  display: flex !important;
  flex-direction: column;
  width: min(430px, 100vw);
  height: 100dvh;
  margin: 0 !important;
  padding: 0;
  border: 0;
  border-radius: 0 !important;
  background: #FFF;
  box-shadow: -20px 0 50px rgba(30,12,36,.18);
  transform: translateX(105%);
  transition: transform .28s ease;
}

.search-first-filter-drawer.mobile-active {
  transform: translateX(0);
}

.search-first-filter-drawer .filters-header {
  flex: 0 0 auto;
  padding: 22px;
  border-bottom: 1px solid #EEE6F0;
}

.search-first-filter-drawer .filters-header span {
  display: block;
  color: var(--brand-primary);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.search-first-filter-drawer .filters-header h3 {
  margin-top: 5px;
}

.search-first-filter-drawer .mobile-filter-close {
  display: grid !important;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid #E4DAE7;
  border-radius: 11px;
  background: #FFF;
  color: #3E3344;
  font-size: 1.5rem;
}

.search-first-filter-drawer .filters-content {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 20px 22px 120px;
}

.search-first-filter-drawer .mobile-filter-footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: grid !important;
  grid-template-columns: 1fr 1.4fr;
  gap: 10px;
  padding: 14px 18px calc(14px + env(safe-area-inset-bottom));
  border-top: 1px solid #E9E0EB;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
}

/* ---------- partner page: refined handshake layout ---------- */
.partner-selected-page {
  background: #FFF;
}

.partner-selected-hero {
  padding: calc(var(--header-height) + 48px) 0 38px !important;
  background:
    radial-gradient(circle at 80% 20%, rgba(165,102,179,.1), transparent 32%),
    #FFF !important;
}

.partner-selected-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(440px, .95fr) !important;
  align-items: center;
  gap: 44px !important;
}

.partner-selected-copy h1 {
  max-width: 720px;
  margin-top: 10px;
  color: #18131C;
  font-size: clamp(2.7rem, 5vw, 5.2rem) !important;
  line-height: 1.02 !important;
  letter-spacing: -.055em;
}

.partner-selected-copy h1 em {
  color: var(--brand-primary);
  font-style: normal;
}

.partner-selected-copy > p {
  max-width: 670px;
  margin-top: 20px;
  color: #6C6270;
  font-size: 1.02rem;
  line-height: 1.75;
}

.partner-selected-whatsapp {
  min-height: 52px;
  margin-top: 26px;
  padding: 0 20px;
  border-radius: 13px;
  box-shadow: 0 12px 28px rgba(33,185,90,.22);
}

.partner-handshake-visual {
  display: grid;
  place-items: center;
  min-height: 420px;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.partner-handshake-visual img {
  width: min(100%, 660px);
  height: auto;
  filter: drop-shadow(0 22px 35px rgba(103,24,122,.1));
}

.partner-selected-section,
.partner-selected-process-section,
.partner-selected-benefits-section {
  padding-top: 44px !important;
  padding-bottom: 44px !important;
}

.partner-selected-heading h2 {
  font-size: 1.55rem !important;
}

.partner-selected-paths {
  gap: 18px !important;
}

.partner-selected-paths article {
  align-items: flex-start;
  padding: 24px !important;
  border: 1px solid #E8DEE9;
  border-radius: 19px !important;
  background: #FFF;
  box-shadow: 0 8px 24px rgba(42,18,48,.045);
}

.partner-selected-icon,
.partner-benefit-icon,
.partner-selected-cta-icon {
  display: grid !important;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid #E4D7E8;
  border-radius: 50% !important;
  background: linear-gradient(180deg, #FBF7FC, #F1E7F4) !important;
  color: var(--brand-primary) !important;
}

.partner-selected-icon {
  width: 58px !important;
  height: 58px !important;
}

.partner-selected-icon svg,
.partner-benefit-icon svg,
.partner-selected-cta-icon svg {
  width: 27px;
  height: 27px;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.7 !important;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.partner-selected-paths h3 {
  font-size: 1.03rem !important;
}

.partner-selected-paths p {
  margin-top: 9px;
  font-size: .88rem !important;
  line-height: 1.65;
}

.partner-selected-process {
  max-width: 1040px;
  margin-right: auto;
  margin-left: auto;
}

.partner-selected-process article > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(180deg, #F3E7F6, #E7D5EC);
  color: var(--brand-primary);
  font-size: 1rem;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px #DCCAE1;
}

.partner-selected-benefits {
  border-radius: 22px !important;
}

.partner-selected-benefit-grid article {
  align-items: flex-start;
}

.partner-benefit-icon {
  width: 52px !important;
  height: 52px !important;
}

.partner-selected-cta {
  border-radius: 22px !important;
}

.partner-selected-cta-icon {
  width: 64px !important;
  height: 64px !important;
  border-color: rgba(255,255,255,.28) !important;
  background: rgba(255,255,255,.08) !important;
  color: #FFF !important;
}

/* ---------- mobile ---------- */
@media (max-width: 1180px) {
  .search-first-results-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .properties-search-first-trust {
    grid-template-columns: repeat(2, 1fr);
  }
  .properties-search-first-trust article:nth-child(2) { border-right: 0; }
  .properties-search-first-trust article:nth-child(-n+2) { border-bottom: 1px solid #E3D8E6; }
  .partner-selected-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, .8fr) !important;
  }
}

@media (max-width: 900px) {
  .search-first-results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .properties-view-toggle { display: none; }
  .partner-selected-hero-grid {
    grid-template-columns: 1fr !important;
  }
  .partner-selected-copy { text-align: center; }
  .partner-selected-copy h1,
  .partner-selected-copy > p { margin-right: auto; margin-left: auto; }
  .partner-selected-whatsapp { margin-right: auto; margin-left: auto; }
  .partner-selected-copy > small { text-align: center; }
  .partner-handshake-visual { min-height: 300px; }
  .partner-handshake-visual img { max-width: 580px; }
}

@media (max-width: 767px) {
  .properties-search-first-page {
    padding: calc(var(--header-height-mobile) + 16px) 0 34px;
  }
  .properties-search-first-panel {
    margin: 0 -4px;
    padding: 14px;
    border-radius: 20px;
  }
  .properties-search-first-form {
    grid-template-columns: minmax(0, 1fr) 52px;
    border-radius: 14px;
  }
  .properties-search-first-input-wrap {
    padding: 0 13px;
  }
  .properties-search-first-input-wrap input {
    min-height: 52px;
    font-size: .84rem;
  }
  .properties-search-first-submit {
    min-width: 52px;
    padding: 0;
  }
  .properties-search-first-submit span { display: none; }
  .properties-search-first-quickbar {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-right: -14px;
    margin-left: -14px;
    padding: 0 14px 4px;
    scrollbar-width: none;
  }
  .properties-search-first-quickbar::-webkit-scrollbar { display: none; }
  .property-quick-filter {
    min-height: 42px;
    padding: 0 13px;
    white-space: nowrap;
    font-size: .78rem;
  }
  .properties-search-first-meta {
    align-items: flex-start;
    margin-top: 18px;
  }
  .properties-search-first-controls { width: auto; }
  .properties-sort-control {
    min-height: 42px;
    padding-left: 10px;
  }
  .properties-sort-control > span { display: none; }
  .properties-sort-control .form-select {
    min-width: 118px;
    font-size: .77rem;
  }
  .search-first-results-grid,
  .search-first-results-grid.is-list-view {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .properties-search-first-page .property-card,
  .search-first-results-grid.is-list-view .property-card {
    display: block;
    border-radius: 16px !important;
  }
  .properties-search-first-page .property-card-link,
  .search-first-results-grid.is-list-view .property-card-link {
    display: grid;
    grid-template-columns: 126px minmax(0, 1fr);
  }
  .properties-search-first-page .property-card-image-wrapper,
  .search-first-results-grid.is-list-view .property-card-image-wrapper {
    aspect-ratio: 1 / 1 !important;
    min-height: 126px;
    height: auto;
  }
  .properties-search-first-page .property-card-body {
    min-width: 0;
    padding: 11px 12px 8px !important;
  }
  .properties-search-first-page .property-card-title {
    margin-bottom: 5px;
    font-size: .91rem !important;
  }
  .properties-search-first-page .property-card-location {
    margin-bottom: 6px;
    font-size: .68rem !important;
  }
  .properties-search-first-page .property-card-specs {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 2px;
  }
  .properties-search-first-page .property-card-spec {
    flex: 0 0 auto;
    font-size: .62rem !important;
  }
  .properties-search-first-page .property-card-price .price {
    font-size: .98rem;
  }
  .properties-search-first-page .property-card-possession {
    display: none;
  }
  .properties-search-first-page .property-card-actions,
  .search-first-results-grid.is-list-view .property-card-actions {
    min-height: 46px;
    flex-direction: row;
    align-items: center;
    padding: 7px 10px 10px !important;
    border-top: 1px solid #EFE8F0;
    border-left: 0;
  }
  .properties-search-first-page .property-card-primary-action {
    min-height: 36px;
    font-size: .72rem;
  }
  .properties-search-first-page .property-card-badges {
    top: 8px;
    left: 8px;
  }
  .properties-search-first-page .property-card-transactions {
    top: 8px;
    right: 8px;
  }
  .properties-search-first-page .property-card-badges .badge,
  .properties-search-first-page .property-card-transactions span {
    padding: 4px 6px;
    font-size: .56rem;
  }
  .properties-search-first-trust {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }
  .properties-search-first-trust article,
  .properties-search-first-trust article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid #E3D8E6;
  }
  .properties-search-first-trust article:last-child { border-bottom: 0; }
  .properties-search-first-trust article { min-height: 74px; padding: 14px 16px; }
  .search-first-filter-drawer { width: 100vw; }

  .partner-selected-hero {
    padding: calc(var(--header-height-mobile) + 30px) 0 20px !important;
  }
  .partner-selected-copy { text-align: left; }
  .partner-selected-copy h1 {
    margin: 8px 0 0;
    font-size: clamp(2.2rem, 12vw, 3.35rem) !important;
  }
  .partner-selected-copy > p {
    margin-top: 16px;
    font-size: .94rem;
  }
  .partner-selected-whatsapp {
    width: 100%;
    margin-top: 20px;
  }
  .partner-selected-copy > small { text-align: left; }
  .partner-handshake-visual {
    min-height: 230px;
    margin-top: 6px;
  }
  .partner-handshake-visual img {
    width: 100%;
    max-width: 420px;
  }
  .partner-selected-section,
  .partner-selected-process-section,
  .partner-selected-benefits-section {
    padding-top: 34px !important;
    padding-bottom: 34px !important;
  }
  .partner-selected-paths {
    gap: 12px !important;
  }
  .partner-selected-paths article {
    padding: 18px !important;
  }
  .partner-selected-icon {
    width: 50px !important;
    height: 50px !important;
  }
  .partner-selected-process {
    gap: 18px !important;
  }
  .partner-selected-process article {
    text-align: left;
    display: grid;
    grid-template-columns: 44px 1fr;
    column-gap: 12px;
    align-items: start;
  }
  .partner-selected-process article > span {
    grid-row: 1 / 3;
    width: 42px;
    height: 42px;
    margin: 0;
  }
  .partner-selected-process h3,
  .partner-selected-process p {
    text-align: left;
  }
  .partner-selected-benefit-grid {
    gap: 12px !important;
  }
  .partner-selected-benefit-grid article {
    padding: 16px 0 !important;
  }
  .partner-selected-cta {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    text-align: center;
  }
  .partner-selected-cta-icon {
    margin: 0 auto;
  }
  .partner-selected-cta a {
    width: 100%;
  }

  /* square detail media and thumbnails on phones */
  .property-selected-gallery .property-media-stage,
  .property-detail-v3 .property-showcase .property-media-stage {
    aspect-ratio: 1 / 1 !important;
    max-height: none !important;
  }
  .property-thumbnail-strip .property-thumbnail,
  .property-selected-page .property-thumbnail {
    width: 64px !important;
    flex-basis: 64px !important;
  }
}

/* ---------- phase 1.12 targeted fixes ---------- */
.partner-handshake-visual {
  min-height: 360px;
}
.partner-handshake-visual img {
  width: min(100%, 620px);
  filter: drop-shadow(0 20px 34px rgba(103,24,122,.10));
}
.partner-selected-icon,
.partner-benefit-icon,
.partner-selected-cta-icon {
  box-shadow: 0 10px 22px rgba(84,31,98,.06);
}
.partner-selected-icon {
  width: 64px !important;
  height: 64px !important;
}
.partner-selected-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.9 !important;
}
.partner-benefit-icon {
  width: 56px !important;
  height: 56px !important;
}
.partner-benefit-icon svg,
.partner-selected-cta-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.9 !important;
}
.partner-selected-paths article,
.partner-selected-benefit-grid article {
  gap: 18px;
}
.partner-selected-cta-icon {
  width: 68px !important;
  height: 68px !important;
}

/* property detail summary tightening */
.property-selected-hero-grid {
  align-items: start;
}
.property-selected-summary {
  display: grid;
  align-content: start;
  gap: 0;
}
.property-selected-availability {
  margin-bottom: 4px;
}
.property-selected-prices {
  margin-bottom: 18px !important;
}
.property-selected-summary-facts {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 12px;
  margin-top: 4px;
  padding-top: 4px;
}
.property-selected-summary-facts article {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 74px;
  padding: 14px 14px;
  border: 1px solid #EADFED;
  border-radius: 16px;
  background: linear-gradient(180deg,#FFF 0%, #FBF7FC 100%);
}
.property-selected-summary-facts svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--v19-purple);
  stroke-width: 1.8;
}
.property-selected-summary-facts div {
  display: grid;
  gap: 3px;
}
.property-selected-summary-facts strong {
  color: var(--v19-purple-dark);
  font-size: 1rem;
  line-height: 1.15;
}
.property-selected-summary-facts span {
  color: #7A6D80;
  font-size: .74rem;
  line-height: 1.25;
}
.property-selected-facts {
  margin-top: 12px;
  grid-template-columns: repeat(3,minmax(0,1fr));
}
.property-selected-facts article {
  justify-content: flex-start;
}
@media (max-width: 1180px) {
  .property-selected-summary-facts {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .partner-handshake-visual {
    min-height: 250px;
  }
  .property-selected-summary-facts {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .property-selected-summary-facts article {
    min-height: 64px;
    padding: 12px 13px;
  }
  .property-selected-facts {
    grid-template-columns: 1fr 1fr;
  }
}

.property-selected-hero-grid {
  grid-template-columns: minmax(360px,.9fr) minmax(0,1.06fr);
  gap: 28px;
}
.property-selected-gallery .property-media-stage {
  max-width: 680px;
  margin-left: auto;
}
@media (max-width: 1180px) {
  .property-selected-hero-grid {
    grid-template-columns: 1fr !important;
  }
  .property-selected-gallery .property-media-stage {
    max-width: none;
    margin-left: 0;
  }
}

/* ---------- phase 1.13 partner hero graphics + list-property step polish ---------- */
.partner-hero-graphic {
  position: relative;
  min-height: 390px;
  padding: 22px;
  border: 1px solid #E7DFEB;
  border-radius: 32px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(103,24,122,.09), transparent 24%),
    radial-gradient(circle at 82% 82%, rgba(140,56,160,.10), transparent 26%),
    linear-gradient(180deg,#FFFFFF 0%, #FBF8FC 100%);
  box-shadow: 0 28px 65px rgba(34,18,40,.08);
}
.partner-graphic-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(8px);
}
.partner-graphic-glow-one {
  width: 190px;
  height: 190px;
  right: -40px;
  top: -50px;
  background: rgba(181,111,197,.18);
}
.partner-graphic-glow-two {
  width: 170px;
  height: 170px;
  left: -45px;
  bottom: -65px;
  background: rgba(133,74,186,.12);
}
.partner-graphic-card {
  position: absolute;
  border: 1px solid #E6DEEA;
  border-radius: 24px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 44px rgba(46,21,56,.09);
  backdrop-filter: blur(8px);
}
.partner-graphic-card-main {
  left: 28px;
  top: 95px;
  width: min(100%, 360px);
  padding: 28px;
  z-index: 2;
}
.partner-graphic-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  color: #67187A;
  background: #F4ECF7;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.partner-graphic-card-main h3 {
  margin: 16px 0 10px;
  color: #1B1422;
  font-size: 1.75rem;
  line-height: 1.1;
  letter-spacing: -.035em;
}
.partner-graphic-card-main p {
  margin: 0;
  color: #6B6071;
  font-size: .96rem;
  line-height: 1.65;
}
.partner-graphic-metrics {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 10px;
  margin-top: 22px;
}
.partner-graphic-metrics div {
  padding: 13px 12px;
  border-radius: 18px;
  background: linear-gradient(180deg,#FCF8FD 0%, #F6EEF9 100%);
  border: 1px solid #EEE3F1;
}
.partner-graphic-metrics strong {
  display: block;
  color: #3D2347;
  font-size: .96rem;
  line-height: 1.2;
}
.partner-graphic-metrics span {
  display: block;
  margin-top: 5px;
  color: #7B6F80;
  font-size: .72rem;
  line-height: 1.3;
}
.partner-graphic-card-top,
.partner-graphic-card-bottom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 18px;
  color: #3E2846;
  font-size: .88rem;
  font-weight: 700;
  z-index: 3;
}
.partner-graphic-card-top {
  top: 48px;
  right: 58px;
}
.partner-graphic-card-bottom {
  right: 18px;
  bottom: 54px;
}
.partner-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7C3AED;
  box-shadow: 0 0 0 6px rgba(124,58,237,.12);
}
.partner-dot.success {
  background: #22C55E;
  box-shadow: 0 0 0 6px rgba(34,197,94,.12);
}
.partner-graphic-skyline {
  position: absolute;
  right: 48px;
  bottom: 78px;
  display: flex;
  align-items: end;
  gap: 16px;
  width: 285px;
  height: 180px;
  z-index: 1;
}
.partner-graphic-skyline span {
  flex: 1 1 0;
  border: 2px solid #A363B5;
  border-bottom-width: 4px;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(180deg,#FAF3FC 0%, #F0E1F5 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.4);
}
.partner-graphic-skyline span:nth-child(1) { height: 78px; }
.partner-graphic-skyline span:nth-child(2) { height: 115px; }
.partner-graphic-skyline span:nth-child(3) { height: 148px; }
.partner-graphic-skyline span:nth-child(4) { height: 104px; }
.partner-graphic-skyline span:nth-child(5) { height: 86px; }
.partner-graphic-skyline span::before {
  content: "";
  display: block;
  width: 18px;
  height: 56%;
  margin: 16px auto 0;
  border-radius: 10px;
  background: repeating-linear-gradient(180deg, rgba(163,99,181,.95) 0 3px, transparent 3px 16px);
  opacity: .7;
}
.partner-graphic-connection {
  position: absolute;
  left: 255px;
  right: 40px;
  bottom: 40px;
  height: 160px;
  z-index: 0;
}
.partner-graphic-connection svg {
  width: 100%;
  height: 100%;
}
.partner-graphic-connection path {
  fill: none;
  stroke: rgba(132,63,151,.32);
  stroke-width: 4;
  stroke-linecap: round;
}
.partner-graphic-node {
  position: absolute;
  bottom: 24px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #FFF;
  border: 4px solid #A156B2;
  box-shadow: 0 8px 20px rgba(84,31,98,.12);
}
.partner-graphic-node.node-left { left: 24px; bottom: 48px; }
.partner-graphic-node.node-center { left: 48%; bottom: 72px; }
.partner-graphic-node.node-right { right: 14px; bottom: 92px; }

/* list your property: cleaner number treatment */
.owner-preview-steps div {
  display: grid;
  gap: 6px;
  padding: 14px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
}
.owner-preview-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #5B1A6A;
  background: rgba(255,255,255,.9);
  font-size: 10px;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(103,24,122,.08);
}
.owner-preview-steps p {
  margin: 0;
  color: rgba(255,255,255,.88);
  font-size: 11px;
  line-height: 1.35;
}
.owner-clean-step {
  padding: 26px 26px 24px;
}
.owner-step-number {
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #EADFED;
  border-radius: 50%;
  color: #7B5A86;
  background: linear-gradient(180deg,#FFFFFF 0%, #FBF7FC 100%);
  box-shadow: 0 8px 22px rgba(42,25,68,.06);
  font-size: .82rem;
  font-weight: 800;
}
.owner-step-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  border-radius: 15px;
  color: var(--brand-primary);
  background: linear-gradient(180deg,#FAF3FC 0%, #F3E7F8 100%);
  border: 1px solid #EADFED;
}
.owner-clean-step h3 {
  margin-right: 54px;
}

@media (max-width: 1180px) {
  .partner-hero-graphic {
    min-height: 360px;
  }
  .partner-graphic-card-main {
    width: 320px;
  }
  .partner-graphic-skyline {
    right: 22px;
    width: 238px;
    gap: 12px;
  }
}
@media (max-width: 900px) {
  .partner-hero-graphic {
    min-height: 420px;
  }
  .partner-graphic-card-main {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: none;
  }
  .partner-graphic-card-top {
    top: 24px;
    right: 24px;
  }
  .partner-graphic-card-bottom {
    left: 24px;
    right: auto;
    bottom: 24px;
  }
  .partner-graphic-skyline {
    right: 24px;
    bottom: 104px;
  }
  .partner-graphic-connection {
    left: 24px;
    right: 24px;
    bottom: 26px;
  }
}
@media (max-width: 767px) {
  .partner-hero-graphic {
    min-height: auto;
    padding: 18px;
    border-radius: 24px;
  }
  .partner-graphic-card-main {
    padding: 22px;
  }
  .partner-graphic-card-main h3 {
    font-size: 1.45rem;
  }
  .partner-graphic-metrics {
    grid-template-columns: 1fr;
  }
  .partner-graphic-card-top,
  .partner-graphic-card-bottom {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    margin-top: 12px;
    justify-content: flex-start;
  }
  .partner-graphic-skyline {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 128px;
    margin-top: 18px;
  }
  .partner-graphic-connection {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    height: 92px;
    margin-top: 8px;
  }
  .partner-graphic-node.node-left { left: 10px; bottom: 20px; }
  .partner-graphic-node.node-center { left: 48%; bottom: 40px; }
  .partner-graphic-node.node-right { right: 6px; bottom: 14px; }
  .owner-clean-step-grid {
    gap: 14px;
  }
}


/* ===== phase-v24.css ===== */
/* =========================================================
   AVESH REALTY — PHASE 1.14
   Clean filters, grid-only listings, simplified partner hero,
   SEO/mobile accessibility polish
   ========================================================= */

:root {
  --v24-purple: #67187A;
  --v24-purple-dark: #42104F;
  --v24-purple-soft: #F6EFF8;
  --v24-border: #E8DEE9;
  --v24-ink: #1D1721;
  --v24-muted: #6F6474;
  --v24-green: #25D366;
  --v24-shadow: 0 18px 45px rgba(46, 21, 54, .08);
}

html {
  overflow-x: hidden;
  scroll-padding-top: calc(var(--header-height) + 18px);
}
body {
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img, video, iframe, svg { max-width: 100%; }
button, input, select, textarea { font: inherit; }
:focus-visible {
  outline: 3px solid rgba(103,24,122,.28);
  outline-offset: 3px;
}

/* ---------- partner hero: simple and uncluttered ---------- */
.partner-selected-hero {
  padding: calc(var(--header-height) + 52px) 0 54px !important;
  background: linear-gradient(180deg, #FFFFFF 0%, #FCF9FD 100%) !important;
}
.partner-selected-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(420px, .88fr) !important;
  gap: 54px !important;
  align-items: center !important;
}
.partner-selected-copy h1 {
  max-width: 710px;
  font-size: clamp(2.7rem, 4.8vw, 4.9rem) !important;
  line-height: 1.02 !important;
}
.partner-selected-copy > p {
  max-width: 640px;
  font-size: 1rem !important;
}
.partner-simple-visual {
  display: grid;
  place-items: center;
}
.partner-simple-canvas {
  position: relative;
  width: 100%;
  max-width: 640px;
  padding: 12px;
}
.partner-simple-art {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 22px 34px rgba(75, 28, 86, .08));
}
.partner-simple-message {
  position: absolute;
  left: 50%;
  bottom: 32px;
  display: grid;
  gap: 3px;
  min-width: 260px;
  padding: 14px 18px;
  transform: translateX(-50%);
  border: 1px solid #DDEFE3;
  border-radius: 18px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 14px 32px rgba(31, 94, 55, .10);
  text-align: center;
}
.partner-simple-message span {
  color: #6B606F;
  font-size: .76rem;
}
.partner-simple-message strong {
  color: #168445;
  font-size: 1.1rem;
}

/* ---------- properties page: clean in-page filters ---------- */
.properties-search-first-page {
  padding-top: calc(var(--header-height) + 32px) !important;
  background: linear-gradient(180deg, #FCFAFD 0%, #FFFFFF 35%) !important;
}
.properties-page-intro {
  max-width: 850px;
  margin: 0 auto 26px;
  text-align: center;
}
.properties-page-intro > span {
  color: var(--v24-purple);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.properties-page-intro h1 {
  margin: 9px 0 10px;
  color: var(--v24-ink);
  font-size: clamp(2.05rem, 4vw, 3.65rem);
  line-height: 1.07;
  letter-spacing: -.045em;
}
.properties-page-intro p {
  margin: 0;
  color: var(--v24-muted);
  font-size: 1rem;
  line-height: 1.65;
}
.properties-search-first-panel {
  padding: 20px !important;
  border-radius: 26px !important;
  background: linear-gradient(180deg, #F8F3FA 0%, #F4EDF7 100%) !important;
}
.properties-search-first-form {
  max-width: 1060px !important;
  min-height: 62px;
  border-radius: 17px !important;
}
.properties-search-first-input-wrap input {
  min-width: 0;
  width: 100%;
  font-size: .96rem;
}
.properties-search-first-submit {
  min-width: 126px;
}
.properties-search-first-quickbar {
  justify-content: center;
  margin-top: 14px;
}
.property-quick-filter {
  min-height: 44px;
  border-radius: 13px !important;
}
.property-more-filters {
  border-color: rgba(103,24,122,.26) !important;
  color: var(--v24-purple) !important;
  background: #FFF !important;
}

.properties-filter-panel {
  margin-top: 18px;
  padding: 22px;
  border: 1px solid var(--v24-border);
  border-radius: 22px;
  background: #FFF;
  box-shadow: 0 12px 30px rgba(44,20,51,.05);
}
.properties-filter-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #F0EAF2;
}
.properties-filter-panel-head span {
  color: var(--v24-purple);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.properties-filter-panel-head h2 {
  margin: 4px 0 0;
  color: var(--v24-ink);
  font-size: 1.25rem;
}
.properties-filter-close {
  display: none;
  width: 38px;
  height: 38px;
  border: 1px solid var(--v24-border);
  border-radius: 12px;
  background: #FFF;
  color: var(--v24-muted);
  font-size: 1.35rem;
}
.properties-filter-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.properties-filter-grid .filter-group {
  min-width: 0;
  margin: 0;
  padding: 16px;
  border: 1px solid #EEE6F0;
  border-radius: 16px;
  background: #FCFAFD;
}
.properties-filter-grid .filter-title {
  margin: 0 0 12px;
  color: #342B38;
  font-size: .82rem;
  font-weight: 800;
}
.properties-filter-grid .filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.properties-filter-grid .form-check {
  margin: 0;
}
.properties-filter-grid .form-check span,
.properties-filter-grid .filter-chip span {
  font-size: .78rem;
}
.properties-filter-grid .form-select,
.properties-filter-grid .form-input {
  width: 100%;
  min-height: 44px;
  border-radius: 12px;
  background: #FFF;
}
.properties-filter-grid .filter-range {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
}
.properties-filter-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #F0EAF2;
}
.properties-filter-actions .btn {
  min-width: 132px;
}

/* old floating drawer and list view removed */
.property-filter-backdrop,
.search-first-filter-drawer,
.properties-view-toggle { display: none !important; }
.search-first-results-grid,
.search-first-results-grid.is-grid-view,
.search-first-results-grid.is-list-view {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 22px !important;
}
.search-first-results-grid .property-card {
  display: flex !important;
  flex-direction: column !important;
  min-width: 0;
}
.search-first-results-grid .property-card-link {
  display: flex !important;
  flex-direction: column !important;
}
.search-first-results-grid .property-card-image-wrapper {
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
}
.search-first-results-grid .property-card-body {
  width: 100% !important;
}
.search-first-results-grid .property-card-actions {
  width: 100% !important;
}
.properties-search-first-meta {
  align-items: center;
  margin-top: 24px !important;
}
.properties-sort-control {
  display: flex;
  align-items: center;
  gap: 10px;
}
.properties-sort-control .form-select {
  min-width: 190px;
  min-height: 44px;
  border-radius: 12px;
}

/* ---------- global mobile system ---------- */
@media (max-width: 1180px) {
  .search-first-results-grid,
  .search-first-results-grid.is-grid-view,
  .search-first-results-grid.is-list-view {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  .properties-filter-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .partner-selected-hero-grid {
    grid-template-columns: minmax(0,1fr) minmax(360px,.8fr) !important;
  }
}

@media (max-width: 1024px) {
  .container {
    width: min(100%, 100%) !important;
    padding-left: 22px !important;
    padding-right: 22px !important;
  }
  .section {
    padding-top: 54px !important;
    padding-bottom: 54px !important;
  }
  .section-header { margin-bottom: 28px !important; }
  .features-grid,
  .locations-grid,
  .type-grid,
  .contact-cards { gap: 16px !important; }
  .search-first-results-grid,
  .search-first-results-grid.is-grid-view,
  .search-first-results-grid.is-list-view {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .properties-filter-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .partner-selected-hero-grid { grid-template-columns: 1fr !important; }
  .partner-selected-copy { text-align: center; }
  .partner-selected-copy h1,
  .partner-selected-copy > p { margin-left: auto; margin-right: auto; }
  .partner-selected-whatsapp { margin-left: auto; margin-right: auto; }
  .partner-selected-copy > small { text-align: center; }
  .partner-simple-canvas { max-width: 600px; }
}

@media (max-width: 767px) {
  :root { --header-height-mobile: 66px; }
  html { scroll-padding-top: 78px; }
  body { font-size: 15px; }
  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .section {
    padding-top: 38px !important;
    padding-bottom: 38px !important;
  }
  .section-header {
    margin-bottom: 22px !important;
    text-align: left !important;
  }
  .section-header h2,
  .heading-3 { font-size: clamp(1.65rem, 8vw, 2.2rem) !important; }
  .section-header p { font-size: .92rem !important; line-height: 1.55; }

  /* header and navigation */
  .site-header,
  .header { min-height: 66px !important; }
  .header-inner { min-height: 66px !important; padding-top: 7px; padding-bottom: 7px; }
  .brand-logo-image { width: 148px !important; max-height: 48px !important; }
  .mobile-toggle { width: 42px; height: 42px; border-radius: 12px; }
  .mobile-nav { padding-bottom: max(22px, env(safe-area-inset-bottom)); overflow-y: auto; }
  .mobile-nav-link { min-height: 46px; font-size: .94rem; }

  /* homepage hero */
  .hero {
    min-height: auto !important;
    padding: calc(var(--header-height-mobile) + 42px) 0 34px !important;
  }
  .hero-content { position: relative !important; inset: auto !important; }
  .hero-title {
    max-width: 100% !important;
    font-size: clamp(2rem, 10.2vw, 2.9rem) !important;
    line-height: 1.04 !important;
    text-align: left !important;
  }
  .hero-subtitle {
    max-width: 100% !important;
    margin-top: 14px !important;
    font-size: .98rem !important;
    line-height: 1.6 !important;
    text-align: left !important;
  }
  .search-box {
    margin-top: 22px !important;
    border-radius: 20px !important;
  }
  .search-form {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    padding: 8px !important;
  }
  .search-field {
    width: 100% !important;
    min-height: 68px !important;
    padding: 12px 14px !important;
    border-bottom: 1px solid #EDE5EF;
  }
  .search-divider { display: none !important; }
  .search-button {
    width: 100% !important;
    min-height: 50px !important;
    margin-top: 8px;
    border-radius: 14px !important;
  }
  .search-results {
    left: 0 !important;
    right: 0 !important;
    top: calc(100% + 8px) !important;
    max-height: 62vh !important;
    border-radius: 16px !important;
  }
  .hero-stats {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 8px !important;
    margin-top: 22px !important;
  }
  .hero-stat-divider { display: none !important; }
  .hero-stat {
    min-width: 0;
    padding: 10px 6px;
    border-radius: 13px;
    background: rgba(255,255,255,.08);
  }
  .hero-stat-number { font-size: 1.05rem !important; }
  .hero-stat-label { font-size: .64rem !important; line-height: 1.25; }

  /* horizontal discovery rows */
  .category-grid,
  .type-grid {
    display: flex !important;
    gap: 12px !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    padding: 2px 2px 12px !important;
    margin-right: -16px;
    scrollbar-width: none;
  }
  .category-grid::-webkit-scrollbar,
  .type-grid::-webkit-scrollbar { display: none; }
  .category-card,
  .type-card {
    flex: 0 0 78% !important;
    min-width: 240px !important;
    scroll-snap-align: start;
  }
  .features-grid,
  .contact-cards,
  .locations-grid,
  .opportunity-grid,
  .owner-clean-step-grid,
  .partner-selected-paths,
  .partner-selected-process,
  .partner-selected-benefit-grid {
    grid-template-columns: 1fr !important;
  }
  .feature-card,
  .contact-card,
  .opportunity-card,
  .owner-clean-step { padding: 20px !important; }
  .cta-card,
  .owner-clean-included-card,
  .owner-clean-cta,
  .partner-selected-cta,
  .requirements-final-v3-card {
    padding: 24px 20px !important;
    border-radius: 22px !important;
  }
  .cta-actions,
  .owner-clean-actions,
  .partner-v3-actions,
  .requirements-v3-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
  .cta-actions .btn,
  .owner-clean-actions .btn,
  .owner-text-link,
  .partner-v3-actions .btn,
  .requirements-v3-actions .btn { width: 100% !important; }

  /* properties page */
  .properties-search-first-page {
    padding-top: calc(var(--header-height-mobile) + 24px) !important;
    padding-bottom: 54px !important;
  }
  .properties-page-intro {
    margin-bottom: 20px;
    text-align: left;
  }
  .properties-page-intro h1 {
    font-size: clamp(1.9rem, 9vw, 2.55rem);
  }
  .properties-page-intro p { font-size: .92rem; }
  .properties-search-first-panel {
    padding: 12px !important;
    border-radius: 20px !important;
  }
  .properties-search-first-form {
    grid-template-columns: 1fr !important;
    min-height: 0;
    overflow: visible !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }
  .properties-search-first-input-wrap {
    min-height: 52px;
    padding: 0 14px !important;
    border: 1px solid #DDD0E1;
    border-radius: 14px;
    background: #FFF;
  }
  .properties-search-first-submit {
    width: 100%;
    min-height: 48px;
    margin-top: 8px;
    border-radius: 14px !important;
  }
  .properties-search-first-quickbar {
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
    scrollbar-width: none;
  }
  .properties-search-first-quickbar::-webkit-scrollbar { display: none; }
  .property-quick-filter {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
  .properties-filter-panel {
    display: none;
    margin-top: 12px;
    padding: 16px;
    border-radius: 18px;
  }
  .properties-filter-panel.is-open { display: block; }
  .properties-filter-panel-head { margin-bottom: 14px; }
  .properties-filter-close { display: grid; place-items: center; }
  .properties-filter-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }
  .properties-filter-grid .filter-group { padding: 14px; }
  .properties-filter-actions {
    position: sticky;
    bottom: 0;
    z-index: 4;
    margin: 16px -16px -16px;
    padding: 12px 16px max(12px, env(safe-area-inset-bottom));
    background: rgba(255,255,255,.97);
    box-shadow: 0 -8px 22px rgba(47,20,54,.08);
  }
  .properties-filter-actions .btn {
    min-width: 0;
    flex: 1;
  }
  .properties-search-first-meta {
    align-items: stretch !important;
    flex-direction: column !important;
    gap: 10px;
    margin-top: 18px !important;
  }
  .results-count { font-size: .92rem; }
  .properties-sort-control {
    width: 100%;
    justify-content: space-between;
  }
  .properties-sort-control .form-select {
    flex: 1;
    min-width: 0;
  }
  .active-filters-list {
    flex-wrap: nowrap !important;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
  }
  .active-filters-list::-webkit-scrollbar { display: none; }
  .active-filter-tag { flex: 0 0 auto; }
  .search-first-results-grid,
  .search-first-results-grid.is-grid-view,
  .search-first-results-grid.is-list-view {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .property-card {
    border-radius: 20px !important;
  }
  .property-card-actions {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    gap: 8px !important;
  }
  .property-card-primary-action {
    min-width: 0;
    white-space: normal !important;
  }
  .properties-search-first-trust {
    grid-template-columns: 1fr !important;
    padding: 10px 0 !important;
  }
  .properties-search-first-trust article {
    border-right: 0 !important;
    border-bottom: 1px solid #E7DCE9;
    padding: 14px 8px !important;
  }
  .properties-search-first-trust article:last-child { border-bottom: 0; }

  /* property detail */
  .property-selected-breadcrumbs,
  .property-v3-breadcrumbs { overflow-x: auto; white-space: nowrap; }
  .property-selected-hero-grid,
  .property-v3-top-grid,
  .property-v3-content-grid { grid-template-columns: 1fr !important; }
  .property-selected-gallery { grid-row: auto !important; }
  .property-selected-summary h1,
  .property-v3-header h1 { font-size: clamp(1.75rem, 8vw, 2.35rem) !important; }
  .property-selected-prices,
  .property-v3-price-options { grid-template-columns: 1fr !important; }
  .property-selected-facts,
  .property-v3-facts { grid-template-columns: 1fr 1fr !important; }
  .property-selected-content-grid { grid-template-columns: 1fr !important; gap: 22px !important; }
  .property-selected-specifications > div,
  .property-v3-detail-grid { grid-template-columns: 1fr !important; }
  .property-selected-enquiry,
  .property-v3-enquiry-card,
  .property-v3-section,
  .property-v3-side-card { padding: 20px !important; }
  .property-thumbnail-strip { overflow-x: auto; }

  /* requirements */
  .requirements-selected-hero,
  .requirements-hero-v3 { padding-top: calc(var(--header-height-mobile) + 28px) !important; padding-bottom: 34px !important; }
  .requirements-selected-table,
  .requirements-table { display: block; overflow-x: auto; }
  .requirement-card-v3,
  .requirement-selected-card { border-radius: 18px !important; }

  /* partner */
  .partner-selected-hero {
    padding-top: calc(var(--header-height-mobile) + 28px) !important;
    padding-bottom: 34px !important;
  }
  .partner-selected-copy { text-align: left !important; }
  .partner-selected-copy h1 { font-size: clamp(2rem, 10vw, 2.8rem) !important; }
  .partner-selected-whatsapp { width: 100%; justify-content: center; }
  .partner-selected-copy > small { text-align: left !important; }
  .partner-simple-canvas { padding: 0; }
  .partner-simple-message {
    position: relative;
    left: auto;
    bottom: auto;
    min-width: 0;
    width: calc(100% - 28px);
    margin: -38px auto 0;
    transform: none;
  }
  .partner-selected-section,
  .partner-selected-process-section,
  .partner-selected-benefits-section { padding-top: 38px !important; padding-bottom: 38px !important; }
  .partner-selected-paths article,
  .partner-selected-benefit-grid article { padding: 20px !important; }
  .partner-selected-process article { text-align: left !important; }

  /* list property */
  .owner-clean-hero {
    padding-top: calc(var(--header-height-mobile) + 30px) !important;
    padding-bottom: 36px !important;
  }
  .owner-clean-copy h1 { font-size: clamp(2rem, 10vw, 2.85rem) !important; }
  .owner-clean-copy > p { font-size: .96rem !important; }
  .owner-clean-preview { width: 100%; }
  .owner-preview-steps { grid-template-columns: 1fr !important; }
  .owner-preview-steps div { grid-template-columns: auto 1fr; align-items: center; }
  .owner-clean-included-card { grid-template-columns: 1fr !important; gap: 22px !important; }
  .owner-clean-benefits { grid-template-columns: 1fr !important; }

  /* footer */
  .footer { padding-top: 40px !important; }
  .footer-grid,
  .footer-grid-compact { grid-template-columns: 1fr !important; gap: 24px !important; }
  .footer-brand-logo { width: 170px !important; }
  .footer-title { margin-bottom: 10px !important; }
  .footer-links { gap: 8px !important; }
  .footer-bottom {
    align-items: flex-start !important;
    flex-direction: column !important;
    gap: 10px !important;
  }
}

@media (max-width: 380px) {
  .container { padding-left: 13px !important; padding-right: 13px !important; }
  .hero-title { font-size: 1.95rem !important; }
  .property-card-actions { grid-template-columns: 1fr !important; }
  .property-card-icon-actions { justify-content: flex-end; }
  .property-selected-facts,
  .property-v3-facts { grid-template-columns: 1fr !important; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@media (min-width: 768px) {
  .property-more-filters { display: none !important; }
  .properties-filter-panel { display: block !important; }
}

/* Static property shell shown before JavaScript finishes loading */
.seo-property-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: calc(var(--header-height) + 34px) 22px 52px;
  color: var(--v24-ink);
}
.seo-property-shell nav {
  margin-bottom: 18px;
  color: var(--v24-muted);
  font-size: .82rem;
}
.seo-property-shell h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08;
}
.seo-property-shell > p {
  max-width: 760px;
  margin: 16px 0 24px;
  color: var(--v24-muted);
  line-height: 1.7;
}
.seo-property-shell dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  margin: 0;
}
.seo-property-shell dl > div {
  padding: 16px;
  border: 1px solid var(--v24-border);
  border-radius: 16px;
  background: #FCFAFD;
}
.seo-property-shell dt {
  color: var(--v24-muted);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
}
.seo-property-shell dd {
  margin: 7px 0 0;
  font-weight: 750;
}
@media (max-width: 767px) {
  .seo-property-shell {
    padding: calc(var(--header-height-mobile) + 24px) 16px 38px;
  }
  .seo-property-shell dl { grid-template-columns: 1fr; }
}


/* =========================================================
   AVESH REALTY — PHASE 1.15
   Normal left-side filters + clean text-free partner graphic
   ========================================================= */

/* Partner hero: clean, simple, no text inside the graphic */
.partner-selected-hero {
  padding: calc(var(--header-height) + 46px) 0 46px !important;
  background: linear-gradient(180deg, #FFFFFF 0%, #FCFAFD 100%) !important;
}
.partner-selected-hero-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, .72fr) !important;
  gap: 42px !important;
}
.partner-clean-visual {
  display: grid;
  place-items: center;
  min-height: 340px;
}
.partner-clean-art {
  position: relative;
  width: min(100%, 540px);
  aspect-ratio: 1.35 / 1;
  border: 1px solid #ECE2EF;
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 22%, rgba(103,24,122,.08), transparent 26%),
    radial-gradient(circle at 78% 78%, rgba(37,211,102,.08), transparent 26%),
    linear-gradient(180deg, #FFFFFF 0%, #FBF8FC 100%);
  box-shadow: 0 24px 58px rgba(43,20,50,.07);
}
.partner-clean-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(103,24,122,.12);
}
.partner-clean-ring.ring-one {
  width: 230px;
  height: 230px;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
.partner-clean-ring.ring-two {
  width: 330px;
  height: 330px;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  opacity: .65;
}
.partner-clean-card {
  position: absolute;
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border: 1px solid #E4D8E8;
  border-radius: 24px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 36px rgba(53,24,61,.09);
  z-index: 2;
}
.partner-clean-card svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: #67187A;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.partner-clean-card.card-left {
  left: 54px;
  top: 50%;
  transform: translateY(-50%);
}
.partner-clean-card.card-center {
  left: 50%;
  top: 48%;
  width: 104px;
  height: 104px;
  border-color: rgba(103,24,122,.22);
  transform: translate(-50%,-50%);
  background: linear-gradient(180deg, #FFFFFF 0%, #F7EEF9 100%);
}
.partner-clean-card.card-center svg {
  width: 46px;
  height: 46px;
  stroke: #67187A;
}
.partner-clean-card.card-right {
  right: 54px;
  top: 50%;
  transform: translateY(-50%);
}
.partner-clean-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.partner-clean-lines path {
  fill: none;
  stroke: rgba(103,24,122,.24);
  stroke-width: 4;
  stroke-linecap: round;
}
.partner-simple-message,
.partner-simple-art {
  display: none !important;
}

/* Properties page: normal left sidebar filters */
.properties-search-first-container {
  max-width: 1420px !important;
}
.properties-search-compact {
  margin-bottom: 22px;
}
.properties-search-compact .properties-search-first-form {
  max-width: 980px !important;
}
.properties-content-shell {
  display: grid;
  grid-template-columns: 286px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.properties-filter-sidebar {
  min-width: 0;
}
.properties-filter-sidebar .properties-filter-panel {
  position: sticky;
  top: calc(var(--header-height) + 18px);
  display: block !important;
  margin: 0 !important;
  padding: 18px !important;
  border-radius: 20px !important;
  box-shadow: 0 14px 36px rgba(44,20,51,.055) !important;
}
.properties-filter-sidebar .properties-filter-panel-head {
  margin-bottom: 14px !important;
  padding-bottom: 12px !important;
}
.properties-filter-sidebar .properties-filter-panel-head h2 {
  font-size: 1.05rem !important;
}
.properties-filter-sidebar .properties-filter-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 12px !important;
}
.properties-filter-sidebar .filter-group {
  padding: 13px !important;
  border-radius: 14px !important;
  background: #FCFAFD !important;
}
.properties-filter-sidebar .filter-title {
  margin-bottom: 10px !important;
  font-size: .78rem !important;
}
.properties-filter-sidebar .filter-options {
  gap: 7px !important;
}
.properties-filter-sidebar .form-check span,
.properties-filter-sidebar .filter-chip span {
  font-size: .74rem !important;
}
.properties-filter-sidebar .form-select,
.properties-filter-sidebar .form-input {
  min-height: 40px !important;
  border-radius: 10px !important;
  font-size: .82rem !important;
}
.properties-filter-sidebar .filter-range {
  grid-template-columns: 1fr !important;
  gap: 8px !important;
}
.properties-filter-sidebar .filter-range span {
  display: none;
}
.properties-filter-sidebar .properties-filter-actions {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 9px !important;
  margin-top: 14px !important;
  padding-top: 14px !important;
}
.properties-filter-sidebar .properties-filter-actions .btn {
  width: 100%;
  min-width: 0 !important;
  min-height: 42px;
  border-radius: 12px;
}
.properties-results-main {
  min-width: 0;
}
.properties-results-main .properties-search-first-meta {
  margin-top: 0 !important;
  padding: 14px 16px;
  border: 1px solid #EEE5F0;
  border-radius: 18px;
  background: #FFF;
}
.properties-results-main .properties-search-first-active {
  margin-top: 12px;
}
.properties-results-main .search-first-results-grid,
.properties-results-main .search-first-results-grid.is-grid-view,
.properties-results-main .search-first-results-grid.is-list-view {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 20px !important;
}
.properties-view-toggle {
  display: none !important;
}

/* Clean mobile/tablet behaviour */
@media (max-width: 1180px) {
  .properties-content-shell {
    grid-template-columns: 252px minmax(0, 1fr);
    gap: 18px;
  }
  .properties-results-main .search-first-results-grid,
  .properties-results-main .search-first-results-grid.is-grid-view,
  .properties-results-main .search-first-results-grid.is-list-view {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 900px) {
  .partner-selected-hero-grid {
    grid-template-columns: 1fr !important;
  }
  .partner-clean-visual {
    min-height: auto;
  }
  .partner-clean-art {
    max-width: 520px;
  }
  .properties-content-shell {
    grid-template-columns: 1fr;
  }
  .properties-filter-sidebar .properties-filter-panel {
    position: static;
    display: none !important;
    top: auto;
  }
  .properties-filter-sidebar .properties-filter-panel.is-open {
    display: block !important;
  }
  .properties-filter-sidebar {
    order: -1;
  }
  .properties-filter-sidebar .properties-filter-close {
    display: grid !important;
    place-items: center;
  }
  .properties-filter-sidebar .filter-range {
    grid-template-columns: 1fr auto 1fr !important;
  }
  .properties-filter-sidebar .filter-range span {
    display: inline;
  }
  .properties-filter-sidebar .properties-filter-actions {
    position: static !important;
    grid-template-columns: 1fr 1fr !important;
    margin: 14px 0 0 !important;
    padding: 14px 0 0 !important;
    box-shadow: none !important;
  }
}

@media (max-width: 767px) {
  .partner-selected-copy h1 {
    font-size: clamp(2.05rem, 9vw, 2.75rem) !important;
    line-height: 1.04 !important;
  }
  .partner-clean-art {
    width: 100%;
    border-radius: 22px;
  }
  .partner-clean-card {
    width: 70px;
    height: 70px;
    border-radius: 19px;
  }
  .partner-clean-card svg {
    width: 31px;
    height: 31px;
  }
  .partner-clean-card.card-left { left: 22px; }
  .partner-clean-card.card-right { right: 22px; }
  .partner-clean-card.card-center {
    width: 82px;
    height: 82px;
  }
  .partner-clean-card.card-center svg {
    width: 38px;
    height: 38px;
  }

  .properties-search-first-page {
    padding-top: calc(var(--header-height-mobile) + 22px) !important;
  }
  .properties-search-compact {
    margin-bottom: 14px;
  }
  .property-more-filters {
    display: inline-flex !important;
  }
  .properties-filter-sidebar .properties-filter-panel {
    max-height: none !important;
    overflow: visible !important;
    border-radius: 18px !important;
  }
  .properties-filter-sidebar .properties-filter-panel-head {
    position: static;
  }
  .properties-results-main .properties-search-first-meta {
    padding: 12px;
    border-radius: 16px;
  }
  .properties-results-main .search-first-results-grid,
  .properties-results-main .search-first-results-grid.is-grid-view,
  .properties-results-main .search-first-results-grid.is-list-view {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }
  .properties-search-first-trust {
    margin-top: 22px;
  }
}

/* Extra readable mobile spacing across main pages */
@media (max-width: 767px) {
  .home-hero, .hero, .requirements-selected-hero, .owner-clean-hero, .partner-selected-hero {
    overflow: hidden;
  }
  .property-card-title,
  .requirement-selected-card h3,
  .owner-clean-step h3,
  .partner-selected-paths h3 {
    line-height: 1.3 !important;
  }
  .btn, button, a {
    -webkit-tap-highlight-color: rgba(103,24,122,.12);
  }
}

@media (max-width: 900px) {
  .property-more-filters { display: inline-flex !important; }
}

/* =========================================================
   AVESH REALTY — FINAL UI PATCH
   Partner hero, requirements search/filter, final cleanup
   ========================================================= */
.partner-final-hero { padding: calc(var(--header-height) + 54px) 0 54px !important; background: radial-gradient(circle at 8% 10%, rgba(103,24,122,.055), transparent 26%), linear-gradient(180deg, #FFFFFF 0%, #FCFAFD 100%) !important; }
.partner-final-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .76fr); gap: 54px; align-items: center; }
.partner-final-copy h1 { max-width: 710px; color: #17111D; font-size: clamp(2.65rem, 5vw, 5rem) !important; line-height: 1.02 !important; letter-spacing: -.055em; }
.partner-final-copy h1 em { color: var(--brand-primary); font-style: normal; }
.partner-final-copy > p { max-width: 650px; color: #6B6071; font-size: 1.02rem !important; line-height: 1.72; }
.partner-final-graphic { display: grid; place-items: center; min-width: 0; }
.partner-final-graphic svg { display: block; width: min(100%, 610px); height: auto; filter: drop-shadow(0 26px 42px rgba(52,22,60,.10)); }
.partner-simple-message, .partner-simple-art, .partner-clean-art { display: none !important; }
.partner-selected-paths article, .partner-selected-benefit-grid article { transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.partner-selected-paths article:hover, .partner-selected-benefit-grid article:hover { transform: translateY(-2px); border-color: #DDCBE3; box-shadow: 0 16px 38px rgba(44,19,50,.07); }
.partner-selected-icon, .partner-benefit-icon { background: linear-gradient(180deg,#FFFFFF,#F8F1FA) !important; border-color: #E4D5E8 !important; }
.partner-selected-icon svg, .partner-benefit-icon svg { stroke-width: 1.85 !important; }

.requirements-selected-summary { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; gap: 16px !important; }
.requirements-summary-item { align-items: center !important; gap: 15px !important; min-height: 96px; padding: 20px !important; border-radius: 20px !important; }
.requirements-summary-icon { display: grid !important; place-items: center; width: 48px !important; height: 48px !important; flex: 0 0 48px; border-radius: 16px !important; background: linear-gradient(180deg,#FFFFFF,#F6ECF8) !important; border: 1px solid #E3D4E8; color: #67187A !important; font-size: 0 !important; }
.requirements-summary-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.85; stroke-linecap: round; stroke-linejoin: round; }
.requirements-search-panel { display: grid !important; gap: 14px !important; padding: 16px !important; border: 1px solid #E8DEE9; border-radius: 22px !important; background: linear-gradient(180deg,#FFFFFF,#FCFAFD) !important; box-shadow: 0 12px 30px rgba(44,20,51,.045); }
.requirements-search-box { display: flex; align-items: center; gap: 12px; min-height: 56px; padding: 0 16px; border: 1px solid #E1D5E5; border-radius: 16px; background: #FFFFFF; }
.requirements-search-box svg { width: 21px; height: 21px; fill: none; stroke: #67187A; stroke-width: 2; stroke-linecap: round; }
.requirements-search-box input { width: 100%; min-width: 0; border: 0; outline: 0; background: transparent; color: #241B29; font-size: .95rem; }
.requirements-search-box input::placeholder { color: #96879D; }
.requirements-filter-row { display: grid; grid-template-columns: minmax(0, 1fr) 240px; gap: 14px; align-items: center; }
.requirements-selected-chips { gap: 9px !important; }
.requirement-filter-chip { min-height: 40px; padding: 0 15px !important; border: 1px solid #E4D8E7 !important; border-radius: 999px !important; background: #FFFFFF !important; color: #5B4F60 !important; font-size: .8rem !important; font-weight: 750 !important; }
.requirement-filter-chip.active { border-color: #67187A !important; background: #67187A !important; color: #FFFFFF !important; box-shadow: 0 10px 22px rgba(103,24,122,.16); }
.requirements-location-filter select { min-height: 44px !important; border-radius: 13px !important; border: 1px solid #DED1E4 !important; background: #FFFFFF !important; }
.requirements-selected-row-icon { background: linear-gradient(180deg,#FFFFFF,#F8F1FA) !important; border: 1px solid #E3D4E8 !important; color: #67187A !important; }
.requirements-selected-row-icon svg { fill: none !important; stroke: currentColor !important; stroke-width: 1.85 !important; stroke-linecap: round; stroke-linejoin: round; }

@media (max-width: 900px) {
  .partner-final-hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .partner-final-copy { text-align: left !important; }
  .partner-final-copy h1, .partner-final-copy > p { margin-left: 0 !important; margin-right: 0 !important; }
  .partner-final-copy .partner-selected-whatsapp { margin-left: 0 !important; margin-right: 0 !important; }
  .requirements-selected-summary { grid-template-columns: 1fr !important; }
  .requirements-filter-row { grid-template-columns: 1fr; }
  .requirements-selected-chips { flex-wrap: nowrap !important; overflow-x: auto; padding-bottom: 6px; scrollbar-width: none; }
  .requirements-selected-chips::-webkit-scrollbar { display: none; }
  .requirement-filter-chip { flex: 0 0 auto; }
}
@media (max-width: 767px) {
  .partner-final-hero { padding-top: calc(var(--header-height-mobile) + 30px) !important; padding-bottom: 34px !important; }
  .partner-final-copy h1 { font-size: clamp(2rem, 10vw, 2.85rem) !important; }
  .partner-final-graphic svg { width: 100%; }
  .requirements-search-panel { padding: 12px !important; border-radius: 18px !important; }
  .requirements-search-box { min-height: 52px; border-radius: 14px; }
}




/* =========================================================
   PARTNER PROGRAM — Reference-style premium redesign
   ========================================================= */
.partner-reference-page {
  background: #fff;
  color: #17121D;
}
.partner-ref-hero {
  position: relative;
  min-height: 520px;
  padding: calc(var(--header-height) + 44px) 0 0;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 18% 22%, rgba(126, 45, 152, .45), transparent 38%),
    linear-gradient(135deg, #0D0714 0%, #1E0B31 52%, #321044 100%);
}
.partner-ref-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.96));
  pointer-events: none;
}
.partner-ref-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 36%, rgba(255,255,255,.13), transparent 18%),
    linear-gradient(90deg, rgba(0,0,0,.12), transparent 58%);
  opacity: .92;
}
.partner-ref-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(360px, .86fr);
  gap: 48px;
  align-items: end;
  min-height: 420px;
}
.partner-ref-copy {
  align-self: center;
  max-width: 650px;
  padding: 34px 0 82px;
}
.partner-ref-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  color: #D9B6E4;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.partner-ref-copy h1 {
  margin: 0;
  color: #fff;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.8rem, 5.2vw, 5.3rem);
  line-height: .98;
  letter-spacing: -.045em;
}
.partner-ref-copy h1 em {
  display: block;
  margin-top: 14px;
  color: #F6ECFA;
  font-size: clamp(1.55rem, 2.65vw, 2.85rem);
  font-style: normal;
  font-weight: 500;
  letter-spacing: -.025em;
}
.partner-ref-copy p {
  max-width: 460px;
  margin: 24px 0 28px;
  color: rgba(255,255,255,.86);
  font-size: 1.02rem;
  line-height: 1.72;
}
.partner-ref-whatsapp,
.partner-ref-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 11px;
  color: #fff;
  background: linear-gradient(135deg, #8B2BB0 0%, #61147B 100%);
  font-weight: 800;
  box-shadow: 0 18px 35px rgba(74,13,95,.28);
}
.partner-ref-whatsapp svg,
.partner-ref-cta a svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}
.partner-ref-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  margin-left: 245px;
  color: rgba(255,255,255,.55);
  font-family: "Brush Script MT", cursive;
  font-size: 1.35rem;
  transform: rotate(-5deg);
}
.partner-ref-note span {
  width: 68px;
  height: 28px;
  border-top: 2px solid rgba(226,187,238,.6);
  border-radius: 50%;
}
.partner-ref-note p { margin: 0; font-size: inherit; line-height: 1.1; color: inherit; }
.partner-ref-building {
  align-self: stretch;
  display: flex;
  align-items: end;
  justify-content: center;
  min-height: 360px;
  margin-right: -20px;
}
.partner-ref-building img {
  display: block;
  width: min(100%, 640px);
  height: 400px;
  object-fit: cover;
  object-position: center;
  border-radius: 24px 24px 0 0;
  filter: saturate(1.05) contrast(1.08);
  box-shadow: 0 28px 70px rgba(0,0,0,.42);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 78%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 78%, transparent 100%);
}

.partner-ref-section {
  padding: 56px 0;
}
.partner-ref-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}
.partner-ref-heading span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #7A238F;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.partner-ref-heading span::before,
.partner-ref-heading span::after {
  content: "";
  width: 42px;
  height: 1px;
  background: #D7C4DE;
}
.partner-ref-heading h2 {
  margin: 10px 0 0;
  color: #17121D;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -.025em;
}

.partner-ref-steps {
  background: linear-gradient(180deg, #fff 0%, #FBF8FC 100%);
}
.partner-ref-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 26px;
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
}
.partner-ref-timeline::before {
  content: "";
  position: absolute;
  left: 11%;
  right: 11%;
  top: 48px;
  border-top: 1px dashed #D4C2DB;
}
.partner-ref-timeline article {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 14px;
}
.partner-ref-step-icon {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin: 0 auto 9px;
  border: 1px solid #DCCCE2;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 12px 30px rgba(59,26,68,.06);
}
.partner-ref-step-icon svg {
  width: 33px;
  height: 33px;
  fill: none;
  stroke: #67187A;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.partner-ref-timeline article > span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin: 0 auto 15px;
  border-radius: 50%;
  color: #67187A;
  background: #EBDCF1;
  font-size: .78rem;
  font-weight: 850;
}
.partner-ref-timeline h3 {
  margin: 0 0 8px;
  color: #231728;
  font-size: .98rem;
  font-weight: 800;
}
.partner-ref-timeline p {
  max-width: 210px;
  margin: 0 auto;
  color: #716476;
  font-size: .78rem;
  line-height: 1.55;
}

.partner-ref-bring {
  background: linear-gradient(180deg, #FBF7FD 0%, #F8F2FA 100%);
}
.partner-ref-audience-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 18px;
}
.partner-ref-audience-grid article {
  text-align: center;
  padding: 16px 12px;
}
.partner-ref-audience-grid svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: #67187A;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.partner-ref-audience-grid h3 {
  margin: 12px 0 6px;
  color: #211427;
  font-size: .98rem;
}
.partner-ref-audience-grid p {
  max-width: 150px;
  margin: 0 auto;
  color: #6E6273;
  font-size: .78rem;
  line-height: 1.45;
}

.partner-ref-earn {
  background: #fff;
}
.partner-ref-earn-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
}
.partner-ref-earn-grid article {
  display: flex;
  gap: 16px;
  align-items: center;
  min-height: 116px;
  padding: 20px;
  border: 1px solid #E4D9E8;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(44,20,51,.04);
}
.partner-ref-earn-grid article > span {
  display: grid;
  place-items: center;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  border-radius: 17px;
  color: #67187A;
  background: #F4E8F8;
  font-size: 1.35rem;
  font-weight: 850;
}
.partner-ref-earn-grid h3 {
  margin: 0 0 6px;
  color: #5A176A;
  font-size: .95rem;
}
.partner-ref-earn-grid p {
  margin: 0;
  color: #6C6071;
  font-size: .78rem;
  line-height: 1.5;
}

.partner-ref-cta {
  padding: 0 0 64px;
  background: #fff;
}
.partner-ref-cta-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 42px 54px;
  border-radius: 0;
  color: #fff;
  background:
    radial-gradient(circle at 80% 60%, rgba(151,65,173,.45), transparent 26%),
    linear-gradient(135deg, #15081F 0%, #4D0E66 100%);
}
.partner-ref-cta h2 {
  margin: 0;
  color: #fff;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
}
.partner-ref-cta p {
  margin: 8px 0 0;
  color: rgba(255,255,255,.78);
}
.partner-ref-cta a {
  color: #3E0D50;
  background: #fff;
  box-shadow: 0 16px 34px rgba(0,0,0,.18);
}

/* Property page optional extra details */
.property-extra-details-section {
  margin: 0 0 34px;
  padding: 30px;
  border: 1px solid #E8DEE9;
  border-radius: 24px;
  background: linear-gradient(180deg, #FFFFFF 0%, #FCF8FD 100%);
  box-shadow: 0 14px 36px rgba(44,20,51,.045);
}
.property-extra-details-heading {
  max-width: 760px;
  margin-bottom: 22px;
}
.property-extra-details-heading span {
  display: inline-flex;
  margin-bottom: 8px;
  color: #67187A;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.property-extra-details-heading h2 {
  margin: 0;
  color: #201625;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  letter-spacing: -.025em;
}
.property-extra-details-heading p {
  margin: 8px 0 0;
  color: #756A79;
  line-height: 1.6;
}
.property-extra-details-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.property-extra-details-grid article {
  padding: 18px;
  border: 1px solid #EEE5F0;
  border-radius: 18px;
  background: #FFFFFF;
}
.property-extra-details-grid strong {
  display: block;
  margin-bottom: 7px;
  color: #67187A;
  font-size: .88rem;
}
.property-extra-details-grid p {
  margin: 0;
  color: #5D5363;
  font-size: .9rem;
  line-height: 1.58;
}

@media (max-width: 1024px) {
  .partner-ref-hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .partner-ref-copy {
    padding-bottom: 30px;
  }
  .partner-ref-building {
    min-height: 260px;
    margin: 0;
  }
  .partner-ref-building img {
    width: min(100%, 620px);
    height: 280px;
  }
  .partner-ref-timeline,
  .partner-ref-earn-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
  .partner-ref-timeline::before { display: none; }
  .partner-ref-audience-grid {
    grid-template-columns: repeat(3, minmax(0,1fr));
  }
  .property-extra-details-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .partner-ref-hero {
    min-height: auto;
    padding-top: calc(var(--header-height-mobile) + 26px);
  }
  .partner-ref-copy {
    padding: 20px 0 20px;
  }
  .partner-ref-copy h1 {
    font-size: clamp(2.35rem, 11vw, 3.25rem);
  }
  .partner-ref-copy h1 em {
    font-size: clamp(1.35rem, 6vw, 1.9rem);
  }
  .partner-ref-copy p {
    font-size: .92rem;
  }
  .partner-ref-whatsapp {
    width: 100%;
  }
  .partner-ref-note {
    display: none;
  }
  .partner-ref-building {
    min-height: 180px;
  }
  .partner-ref-building img {
    width: 100%;
    height: 205px;
    border-radius: 20px 20px 0 0;
  }
  .partner-ref-section {
    padding: 42px 0;
  }
  .partner-ref-heading {
    text-align: center;
    margin-bottom: 24px;
  }
  .partner-ref-heading span::before,
  .partner-ref-heading span::after {
    width: 26px;
  }
  .partner-ref-heading h2 {
    font-size: clamp(1.7rem, 8vw, 2.15rem);
  }
  .partner-ref-timeline,
  .partner-ref-audience-grid,
  .partner-ref-earn-grid {
    grid-template-columns: 1fr;
  }
  .partner-ref-timeline article {
    display: grid;
    grid-template-columns: 58px 26px 1fr;
    column-gap: 12px;
    text-align: left;
    padding: 0;
  }
  .partner-ref-step-icon {
    grid-row: span 2;
    width: 54px;
    height: 54px;
    margin: 0;
  }
  .partner-ref-step-icon svg {
    width: 25px;
    height: 25px;
  }
  .partner-ref-timeline article > span {
    margin: 13px 0 0;
  }
  .partner-ref-timeline h3 {
    margin-top: 4px;
  }
  .partner-ref-timeline p {
    grid-column: 3;
    max-width: none;
    margin: -14px 0 0;
  }
  .partner-ref-audience-grid article {
    display: grid;
    grid-template-columns: 46px 1fr;
    column-gap: 14px;
    text-align: left;
  }
  .partner-ref-audience-grid svg {
    grid-row: span 2;
  }
  .partner-ref-audience-grid h3 {
    margin: 0 0 4px;
  }
  .partner-ref-audience-grid p {
    max-width: none;
    margin: 0;
  }
  .partner-ref-earn-grid article {
    min-height: 0;
  }
  .partner-ref-cta-card {
    grid-template-columns: 1fr;
    padding: 30px 22px;
    text-align: center;
    border-radius: 0;
  }
  .property-extra-details-section {
    padding: 22px;
    border-radius: 20px;
  }
  .property-extra-details-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   FINAL PARTNER PAGE REBUILD — ISOLATED PPX SYSTEM
   This block intentionally overrides all previous partner styling.
   ========================================================= */
body[data-page="partner-program"] { background: #fff !important; overflow-x: hidden !important; }
body[data-page="partner-program"] .ppx-page,
body[data-page="partner-program"] .ppx-page * { box-sizing: border-box; }
body[data-page="partner-program"] .ppx-page {
  --ppx-purple:#67187A; --ppx-purple-2:#8C2BB0; --ppx-dark:#0F0717; --ppx-ink:#17121D; --ppx-muted:#6E6373; --ppx-border:#E7D9EC; --ppx-soft:#F8F1FA;
  background:#fff !important; color:var(--ppx-ink) !important; font-family:Inter, Arial, sans-serif !important;
}
body[data-page="partner-program"] .ppx-wrap { width:min(100% - 48px,1280px) !important; margin:0 auto !important; }
body[data-page="partner-program"] .ppx-hero {
  position:relative !important; min-height:560px !important; padding:calc(var(--header-height,82px) + 42px) 0 0 !important; overflow:hidden !important; color:#fff !important;
  background:radial-gradient(circle at 16% 22%,rgba(126,45,152,.55),transparent 36%),radial-gradient(circle at 88% 30%,rgba(91,30,112,.55),transparent 30%),linear-gradient(135deg,#0B0611 0%,#1B0A2B 53%,#321043 100%) !important;
}
body[data-page="partner-program"] .ppx-hero::after { content:"" !important; position:absolute !important; left:0 !important; right:0 !important; bottom:0 !important; height:118px !important; background:linear-gradient(180deg,transparent 0%,rgba(255,255,255,.96) 100%) !important; pointer-events:none !important; z-index:1 !important; }
body[data-page="partner-program"] .ppx-hero-grid { position:relative !important; z-index:2 !important; display:grid !important; grid-template-columns:minmax(0,.9fr) minmax(360px,.86fr) !important; gap:42px !important; align-items:end !important; min-height:445px !important; }
body[data-page="partner-program"] .ppx-hero-copy { align-self:center !important; max-width:650px !important; padding:34px 0 94px !important; }
body[data-page="partner-program"] .ppx-eyebrow { display:inline-flex !important; margin-bottom:18px !important; color:#D7AEE3 !important; font-size:.74rem !important; font-weight:850 !important; letter-spacing:.15em !important; text-transform:uppercase !important; }
body[data-page="partner-program"] .ppx-hero h1 { margin:0 !important; color:#fff !important; font-family:Georgia,"Times New Roman",serif !important; font-size:clamp(2.9rem,5.35vw,5.35rem) !important; line-height:.98 !important; letter-spacing:-.05em !important; font-weight:700 !important; }
body[data-page="partner-program"] .ppx-hero h1 em { display:block !important; margin-top:14px !important; color:#F7ECFB !important; font-size:clamp(1.45rem,2.65vw,2.85rem) !important; font-style:normal !important; font-weight:500 !important; letter-spacing:-.025em !important; }
body[data-page="partner-program"] .ppx-hero p { max-width:490px !important; margin:24px 0 28px !important; color:rgba(255,255,255,.86) !important; font-size:1.02rem !important; line-height:1.72 !important; }
body[data-page="partner-program"] .ppx-wa,
body[data-page="partner-program"] .ppx-final-card a { display:inline-flex !important; align-items:center !important; justify-content:center !important; gap:10px !important; min-height:54px !important; padding:0 25px !important; border:0 !important; border-radius:11px !important; color:#fff !important; background:linear-gradient(135deg,#8A2BB0 0%,#64147F 100%) !important; text-decoration:none !important; font-size:.94rem !important; font-weight:850 !important; box-shadow:0 18px 34px rgba(72,13,93,.32) !important; }
body[data-page="partner-program"] .ppx-wa svg,
body[data-page="partner-program"] .ppx-final-card a svg { width:21px !important; height:21px !important; fill:currentColor !important; }
body[data-page="partner-program"] .ppx-hand-note { display:flex !important; align-items:center !important; gap:14px !important; margin-top:18px !important; margin-left:245px !important; color:rgba(255,255,255,.58) !important; transform:rotate(-5deg) !important; }
body[data-page="partner-program"] .ppx-hand-note span { width:68px !important; height:28px !important; border-top:2px solid rgba(215,174,227,.65) !important; border-radius:50% !important; }
body[data-page="partner-program"] .ppx-hand-note small { font-family:"Brush Script MT",cursive !important; font-size:1.35rem !important; line-height:1.1 !important; color:inherit !important; }
body[data-page="partner-program"] .ppx-hero-art { align-self:stretch !important; display:flex !important; align-items:end !important; justify-content:center !important; min-height:400px !important; margin-right:-14px !important; overflow:visible !important; }
body[data-page="partner-program"] .ppx-hero-art svg { display:block !important; width:min(100%,660px) !important; height:auto !important; filter:drop-shadow(0 32px 56px rgba(0,0,0,.45)) !important; transform:translateY(36px) !important; }
body[data-page="partner-program"] .ppx-section { padding:56px 0 !important; }
body[data-page="partner-program"] .ppx-section-head { max-width:760px !important; margin:0 auto 34px !important; text-align:center !important; }
body[data-page="partner-program"] .ppx-section-head span { display:inline-flex !important; align-items:center !important; justify-content:center !important; gap:14px !important; color:var(--ppx-purple) !important; font-size:.72rem !important; font-weight:850 !important; letter-spacing:.12em !important; text-transform:uppercase !important; }
body[data-page="partner-program"] .ppx-section-head span::before,
body[data-page="partner-program"] .ppx-section-head span::after { content:"" !important; width:42px !important; height:1px !important; background:#D6C2DD !important; }
body[data-page="partner-program"] .ppx-section-head h2 { margin:10px 0 0 !important; color:var(--ppx-ink) !important; font-family:Georgia,"Times New Roman",serif !important; font-size:clamp(2rem,3vw,2.75rem) !important; line-height:1.1 !important; letter-spacing:-.025em !important; font-weight:650 !important; }
body[data-page="partner-program"] .ppx-steps { background:linear-gradient(180deg,#fff 0%,#FBF7FC 100%) !important; }
body[data-page="partner-program"] .ppx-step-grid { position:relative !important; display:grid !important; grid-template-columns:repeat(4,minmax(0,1fr)) !important; gap:28px !important; max-width:1080px !important; margin:0 auto !important; }
body[data-page="partner-program"] .ppx-step-grid::before { content:"" !important; position:absolute !important; top:46px !important; left:11% !important; right:11% !important; border-top:1px dashed #D2BEDB !important; }
body[data-page="partner-program"] .ppx-step-grid article { position:relative !important; z-index:1 !important; text-align:center !important; padding:0 12px !important; background:transparent !important; border:0 !important; box-shadow:none !important; }
body[data-page="partner-program"] .ppx-step-grid i { display:grid !important; place-items:center !important; width:78px !important; height:78px !important; margin:0 auto 9px !important; border:1px solid #DCCCE2 !important; border-radius:50% !important; background:#fff !important; box-shadow:0 12px 30px rgba(59,26,68,.06) !important; }
body[data-page="partner-program"] .ppx-step-grid svg,
body[data-page="partner-program"] .ppx-audience-grid svg { width:34px !important; height:34px !important; fill:none !important; stroke:var(--ppx-purple) !important; stroke-width:1.7 !important; stroke-linecap:round !important; stroke-linejoin:round !important; }
body[data-page="partner-program"] .ppx-step-grid b { display:grid !important; place-items:center !important; width:28px !important; height:28px !important; margin:0 auto 15px !important; border-radius:50% !important; color:var(--ppx-purple) !important; background:#EAD9F1 !important; font-size:.78rem !important; font-weight:850 !important; }
body[data-page="partner-program"] .ppx-step-grid h3,
body[data-page="partner-program"] .ppx-audience-grid h3,
body[data-page="partner-program"] .ppx-earn-grid h3 { margin:0 0 8px !important; color:#211427 !important; font-size:.98rem !important; line-height:1.25 !important; font-weight:850 !important; }
body[data-page="partner-program"] .ppx-step-grid p { max-width:210px !important; margin:0 auto !important; color:var(--ppx-muted) !important; font-size:.78rem !important; line-height:1.55 !important; }
body[data-page="partner-program"] .ppx-bring { background:linear-gradient(180deg,#FBF7FD 0%,#F7F0FA 100%) !important; }
body[data-page="partner-program"] .ppx-audience-grid { display:grid !important; grid-template-columns:repeat(5,minmax(0,1fr)) !important; gap:18px !important; }
body[data-page="partner-program"] .ppx-audience-grid article { text-align:center !important; padding:18px 12px !important; background:transparent !important; border:0 !important; box-shadow:none !important; }
body[data-page="partner-program"] .ppx-audience-grid p { max-width:155px !important; margin:0 auto !important; color:var(--ppx-muted) !important; font-size:.78rem !important; line-height:1.45 !important; }
body[data-page="partner-program"] .ppx-earn { background:#fff !important; }
body[data-page="partner-program"] .ppx-earn-grid { display:grid !important; grid-template-columns:repeat(4,minmax(0,1fr)) !important; gap:18px !important; }
body[data-page="partner-program"] .ppx-earn-grid article { display:flex !important; align-items:center !important; gap:16px !important; min-height:112px !important; padding:20px !important; border:1px solid #E4D9E8 !important; border-radius:18px !important; background:#fff !important; box-shadow:0 10px 28px rgba(44,20,51,.04) !important; }
body[data-page="partner-program"] .ppx-earn-grid article > span { display:grid !important; place-items:center !important; flex:0 0 54px !important; width:54px !important; height:54px !important; border-radius:17px !important; color:var(--ppx-purple) !important; background:#F4E8F8 !important; font-size:1.35rem !important; font-weight:850 !important; }
body[data-page="partner-program"] .ppx-earn-grid p { margin:0 !important; color:var(--ppx-muted) !important; font-size:.78rem !important; line-height:1.5 !important; }
body[data-page="partner-program"] .ppx-final { padding:0 0 64px !important; background:#fff !important; }
body[data-page="partner-program"] .ppx-final-card { display:grid !important; grid-template-columns:1fr auto !important; align-items:center !important; gap:28px !important; padding:44px 56px !important; color:#fff !important; background:radial-gradient(circle at 80% 60%,rgba(151,65,173,.45),transparent 28%),linear-gradient(135deg,#13071C 0%,#4D0E66 100%) !important; border-radius:0 !important; }
body[data-page="partner-program"] .ppx-final h2 { margin:0 !important; color:#fff !important; font-family:Georgia,"Times New Roman",serif !important; font-size:clamp(1.9rem,3vw,2.7rem) !important; line-height:1.1 !important; }
body[data-page="partner-program"] .ppx-final p { margin:8px 0 0 !important; color:rgba(255,255,255,.78) !important; }
body[data-page="partner-program"] .ppx-final-card a { color:#3E0D50 !important; background:#fff !important; box-shadow:0 16px 34px rgba(0,0,0,.18) !important; }

/* FINAL MOBILE OPTIMIZATION LAYER — SITE-WIDE */
html, body { max-width:100% !important; overflow-x:hidden !important; }
*,*::before,*::after { box-sizing:border-box; }
img, svg, video, iframe { max-width:100%; }
@media (max-width:1024px) {
  .container, body[data-page="partner-program"] .ppx-wrap { width:100% !important; max-width:100% !important; padding-left:22px !important; padding-right:22px !important; }
  .properties-content-shell,.property-selected-hero-grid,.property-selected-content-grid,.owner-clean-hero-grid,.owner-clean-included-card,.contact-grid,.about-grid { grid-template-columns:1fr !important; }
  .properties-filter-sidebar .properties-filter-panel { position:static !important; }
  .search-first-results-grid,.properties-grid { grid-template-columns:repeat(2,minmax(0,1fr)) !important; }
}
@media (max-width:900px) {
  body[data-page="partner-program"] .ppx-hero { min-height:auto !important; padding-top:calc(var(--header-height-mobile,66px) + 28px) !important; }
  body[data-page="partner-program"] .ppx-hero-grid { grid-template-columns:1fr !important; gap:0 !important; min-height:auto !important; }
  body[data-page="partner-program"] .ppx-hero-copy { padding:24px 0 18px !important; }
  body[data-page="partner-program"] .ppx-hero-art { min-height:260px !important; margin:0 !important; }
  body[data-page="partner-program"] .ppx-hero-art svg { width:min(100%,590px) !important; transform:translateY(20px) !important; }
  body[data-page="partner-program"] .ppx-step-grid, body[data-page="partner-program"] .ppx-earn-grid { grid-template-columns:repeat(2,minmax(0,1fr)) !important; }
  body[data-page="partner-program"] .ppx-step-grid::before { display:none !important; }
  body[data-page="partner-program"] .ppx-audience-grid { grid-template-columns:repeat(3,minmax(0,1fr)) !important; }
}
@media (max-width:767px) {
  .container, body[data-page="partner-program"] .ppx-wrap { padding-left:16px !important; padding-right:16px !important; }
  .section { padding-top:38px !important; padding-bottom:38px !important; }
  h1,h2,h3,p { overflow-wrap:break-word; }
  .header-inner { min-height:66px !important; }
  .brand-logo-image { width:148px !important; max-height:48px !important; }
  body[data-page="partner-program"] .ppx-hero-copy { padding:18px 0 8px !important; }
  body[data-page="partner-program"] .ppx-eyebrow { margin-bottom:14px !important; font-size:.68rem !important; }
  body[data-page="partner-program"] .ppx-hero h1 { font-size:clamp(2.35rem,11vw,3.25rem) !important; line-height:1 !important; }
  body[data-page="partner-program"] .ppx-hero h1 em { margin-top:10px !important; font-size:clamp(1.3rem,6vw,1.9rem) !important; }
  body[data-page="partner-program"] .ppx-hero p { margin:18px 0 18px !important; font-size:.94rem !important; line-height:1.58 !important; }
  body[data-page="partner-program"] .ppx-wa { width:100% !important; min-height:50px !important; }
  body[data-page="partner-program"] .ppx-hand-note { display:none !important; }
  body[data-page="partner-program"] .ppx-hero-art { min-height:185px !important; }
  body[data-page="partner-program"] .ppx-hero-art svg { width:112% !important; max-width:112% !important; transform:translate(-6%,18px) !important; }
  body[data-page="partner-program"] .ppx-section { padding:38px 0 !important; }
  body[data-page="partner-program"] .ppx-section-head { margin-bottom:24px !important; }
  body[data-page="partner-program"] .ppx-section-head span { font-size:.64rem !important; gap:8px !important; }
  body[data-page="partner-program"] .ppx-section-head span::before, body[data-page="partner-program"] .ppx-section-head span::after { width:24px !important; }
  body[data-page="partner-program"] .ppx-section-head h2 { font-size:clamp(1.7rem,8vw,2.15rem) !important; }
  body[data-page="partner-program"] .ppx-step-grid, body[data-page="partner-program"] .ppx-audience-grid, body[data-page="partner-program"] .ppx-earn-grid { grid-template-columns:1fr !important; gap:16px !important; }
  body[data-page="partner-program"] .ppx-step-grid article { display:grid !important; grid-template-columns:56px 28px 1fr !important; column-gap:12px !important; text-align:left !important; padding:0 !important; }
  body[data-page="partner-program"] .ppx-step-grid i { grid-row:span 2 !important; width:54px !important; height:54px !important; margin:0 !important; }
  body[data-page="partner-program"] .ppx-step-grid i svg { width:25px !important; height:25px !important; }
  body[data-page="partner-program"] .ppx-step-grid b { margin:13px 0 0 !important; }
  body[data-page="partner-program"] .ppx-step-grid h3 { margin-top:4px !important; }
  body[data-page="partner-program"] .ppx-step-grid p { grid-column:3 !important; max-width:none !important; margin:-14px 0 0 !important; }
  body[data-page="partner-program"] .ppx-audience-grid article { display:grid !important; grid-template-columns:46px 1fr !important; column-gap:14px !important; text-align:left !important; padding:4px 0 !important; }
  body[data-page="partner-program"] .ppx-audience-grid svg { grid-row:span 2 !important; }
  body[data-page="partner-program"] .ppx-audience-grid h3 { margin:0 0 4px !important; }
  body[data-page="partner-program"] .ppx-audience-grid p { max-width:none !important; margin:0 !important; }
  body[data-page="partner-program"] .ppx-earn-grid article { min-height:0 !important; padding:16px !important; }
  body[data-page="partner-program"] .ppx-final { padding-bottom:40px !important; }
  body[data-page="partner-program"] .ppx-final-card { grid-template-columns:1fr !important; gap:18px !important; padding:30px 22px !important; text-align:center !important; }
  body[data-page="partner-program"] .ppx-final-card a { width:100% !important; }
  .hero,.owner-clean-hero,.requirements-selected-hero,.properties-search-first-page { padding-top:calc(var(--header-height-mobile,66px) + 26px) !important; }
  .hero-title,.owner-clean-copy h1,.requirements-selected-hero h1,.properties-page-intro h1,.property-selected-summary h1 { font-size:clamp(2rem,10vw,2.8rem) !important; line-height:1.05 !important; }
  .search-form,.properties-search-first-form,.requirements-filter-row,.property-selected-content-grid,.owner-clean-step-grid,.owner-clean-benefits,.footer-grid,.footer-grid-compact { grid-template-columns:1fr !important; }
  .search-first-results-grid,.properties-grid,.property-extra-details-grid,.requirements-selected-summary,.partner-selected-paths,.partner-selected-process,.partner-selected-benefit-grid { grid-template-columns:1fr !important; }
  .property-card,.requirement-selected-card,.requirements-selected-row,.owner-clean-step,.property-selected-enquiry,.property-extra-details-section { border-radius:18px !important; }
  .property-selected-facts,.property-selected-summary-facts { grid-template-columns:1fr !important; }
  .properties-filter-sidebar .properties-filter-panel,.properties-filter-panel { max-height:none !important; overflow:visible !important; }
  .property-more-filters { display:inline-flex !important; }
  .footer-bottom { flex-direction:column !important; align-items:flex-start !important; gap:10px !important; }
}
@media (max-width:380px) {
  .container, body[data-page="partner-program"] .ppx-wrap { padding-left:13px !important; padding-right:13px !important; }
  body[data-page="partner-program"] .ppx-hero h1 { font-size:2.15rem !important; }
  .property-card-actions { grid-template-columns:1fr !important; }
}
