/* ============================================================
  WebApp02 ITIL Platform — Enterprise ServiceOps Theme
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600;700;800&display=swap');

/* ── Design tokens ── */
:root {
  --navy:         #0a2f4f;
  --blue:         #145f9c;
  --mid:          #0f7ea8;
  --sky:          #d8ecfa;
  --pale:         #eef6fd;
  --orange:       #ea7a22;
  --orange-hover: #c95e0c;
  --orange-pale:  #fff4ea;
  --gray-50:      #f5f8fc;
  --gray-100:     #e8eef5;
  --gray-300:     #c8d4e4;
  --gray-500:     #5d6f87;
  --gray-700:     #30425a;
  --gray-900:     #0b1627;
  --shadow-sm:    0 4px 12px rgba(11,22,39,0.08);
  --shadow-md:    0 10px 24px rgba(11,22,39,0.12);
  --shadow-lg:    0 18px 34px rgba(11,22,39,0.16);
  --radius:       10px;
  --radius-lg:    14px;
}

/* ── Reset & base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px; line-height: 1.65; color: var(--gray-900);
  background:
    radial-gradient(circle at 5% 0%, #d8e8fa 0%, transparent 40%),
    radial-gradient(circle at 100% 0%, #d6f3ff 0%, transparent 35%),
    var(--gray-50);
}

h1, h2, h3, h4, h5, h6 { font-family: 'Space Grotesk', 'Inter', sans-serif; font-weight: 700; line-height: 1.2; color: var(--gray-900); margin-bottom: 0.75rem; }
h1 { font-size: 2.625rem; } h2 { font-size: 2rem; } h3 { font-size: 1.375rem; }
h4 { font-size: 1.125rem; } h5 { font-size: 1rem; } h6 { font-size: 0.875rem; }
p { margin-bottom: 1rem; color: var(--gray-700); }
a { color: var(--blue); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--mid); text-decoration: underline; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }

/* ── NAVBAR ── */
.navbar {
  background: #fff;
  border-bottom: 1px solid var(--gray-100);
  padding: 0;
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}
.navbar .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 1rem;
}
.navbar-brand {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 1.25rem; font-weight: 800; color: var(--navy);
  text-decoration: none; flex-shrink: 0;
}
.navbar-brand svg { color: var(--orange); }
.navbar-brand span { color: var(--blue); }
.navbar-nav {
  display: flex; align-items: center; gap: 0.25rem; list-style: none;
}
.nav-link {
  color: var(--gray-700); font-weight: 500; font-size: 0.9375rem;
  text-decoration: none; padding: 0.4rem 0.75rem; border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0.75rem; right: 0.75rem;
  height: 2px; background: var(--blue); border-radius: 2px;
  transform: scaleX(0); transition: transform 0.2s;
}
.nav-link:hover { color: var(--blue); background: var(--pale); text-decoration: none; }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--blue); font-weight: 600; }

/* Hamburger (pure CSS) */
.nav-toggle { display: none; }
.nav-toggle-label {
  display: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 8px;
}
.nav-toggle-label span {
  display: block; width: 24px; height: 2px;
  background: var(--gray-700); border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
@media (max-width: 768px) {
  .nav-toggle-label { display: flex; }
  .navbar-nav {
    display: none; position: fixed; inset: 68px 0 0 0;
    background: #fff; flex-direction: column; align-items: flex-start;
    padding: 1.5rem 1.25rem; gap: 0.25rem; overflow-y: auto;
    box-shadow: 0 8px 16px rgba(0,0,0,0.12); z-index: 999;
  }
  .nav-toggle:checked ~ .navbar-nav { display: flex; }
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-link { font-size: 1.0625rem; padding: 0.75rem 1rem; width: 100%; }
  .nav-link::after { display: none; }
}

/* ── HERO ── */
.hero-section {
  background: linear-gradient(135deg, #0a2f4f 0%, #145f9c 58%, #0f7ea8 100%);
  color: #fff; padding: 4.5rem 0 0; margin-bottom: 0;
  position: relative; overflow: hidden;
}
.hero-section::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");
}
.hero-inner { position: relative; z-index: 1; max-width: 640px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.375rem;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.25); border-radius: 100px;
  padding: 0.375rem 0.875rem; font-size: 0.8125rem; font-weight: 600;
  color: #fff; margin-bottom: 1.5rem; letter-spacing: 0.01em;
}
.hero-section h1 { color: #fff; font-size: 3rem; font-weight: 800; line-height: 1.1; margin-bottom: 1rem; }
.hero-section h1 em { font-style: normal; color: #A7F3D0; }
.hero-subtitle { font-size: 1.125rem; color: rgba(255,255,255,0.85); margin-bottom: 2rem; }
.hero-props { list-style: none; margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.5rem; }
.hero-props li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9375rem; color: rgba(255,255,255,0.9); }
.hero-props li::before {
  content: ''; display: block; width: 18px; height: 18px; flex-shrink: 0;
  background: rgba(255,255,255,0.2); border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 00-1.414 0L8 12.586 4.707 9.293a1 1 0 00-1.414 1.414l4 4a1 1 0 001.414 0l8-8a1 1 0 000-1.414z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
}
.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 3rem; }

/* Stats strip at bottom of hero */
.stats-strip {
  background: rgba(0,0,0,0.25); border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0; margin-top: 1rem;
}
.stats-strip .container { display: flex; gap: 0; }
.stat-item {
  flex: 1; text-align: center; padding: 0 1rem;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.stat-item:last-child { border-right: none; }
.stat-value { font-size: 1.625rem; font-weight: 800; color: #fff; line-height: 1; }
.stat-label { font-size: 0.8125rem; color: rgba(255,255,255,0.7); margin-top: 0.25rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.375rem;
  padding: 0.6875rem 1.5rem; border: 2px solid transparent;
  border-radius: 8px; font-family: inherit; font-weight: 600; font-size: 0.9375rem;
  cursor: pointer; transition: all 0.2s ease; text-align: center;
  text-decoration: none; white-space: nowrap; user-select: none; line-height: 1;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-primary:hover { background: var(--mid); border-color: var(--mid); color: #fff; }

.btn-cta { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-cta:hover { background: var(--orange-hover); border-color: var(--orange-hover); color: #fff; box-shadow: 0 4px 14px rgba(245,158,11,0.4); }

.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.8); color: #fff; }

.btn-secondary { background: var(--gray-100); color: var(--gray-700); border-color: var(--gray-300); }
.btn-secondary:hover { background: var(--gray-300); color: var(--gray-900); }

.btn-outline-secondary { background: transparent; color: var(--gray-700); border-color: var(--gray-300); }
.btn-outline-secondary:hover { background: var(--gray-100); color: var(--gray-900); border-color: var(--gray-300); }

.btn-warning { background: #ffc107; color: #212529; border-color: #ffc107; }
.btn-warning:hover { background: #e0aa06; border-color: #e0aa06; }

.btn-outline-primary { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline-primary:hover { background: var(--blue); color: #fff; }

.btn-sm  { padding: 0.4375rem 0.875rem; font-size: 0.8125rem; border-radius: 6px; }
.btn-lg  { padding: 0.875rem 2rem; font-size: 1.0625rem; border-radius: 10px; }
.btn-w-100 { display: flex; width: 100%; margin-bottom: 0.5rem; }

/* ── FORMS ── */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-weight: 600; margin-bottom: 0.375rem; font-size: 0.875rem; color: var(--gray-700); }
.form-control, .form-select {
  width: 100%; padding: 0.6875rem 1rem; border: 1.5px solid var(--gray-300);
  border-radius: 8px; font-size: 0.9375rem; font-family: inherit;
  background: #fff; transition: border-color 0.2s, box-shadow 0.2s; color: var(--gray-900);
}
.form-control:focus, .form-select:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(13,147,115,0.15);
}
.form-select { cursor: pointer; }

/* ── CARDS ── */
.card {
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); overflow: hidden; transition: all 0.25s ease;
  border: 1px solid var(--gray-100);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.card-body { padding: 1.5rem; display: flex; flex-direction: column; }
.card-title { font-size: 1.0625rem; margin: 0 0 0.5rem 0; font-weight: 600; }
.card-text { color: var(--gray-500); font-size: 0.9375rem; margin-bottom: 1rem; flex-grow: 1; }

/* ── BADGES ── */
.badge {
  display: inline-flex; align-items: center;
  padding: 0.25rem 0.625rem; font-size: 0.75rem; font-weight: 600;
  border-radius: 100px; letter-spacing: 0.01em;
}
.badge-success { background: #DCFCE7; color: #166534; }
.badge-danger   { background: #FEE2E2; color: #991B1B; }
.badge-warning  { background: #FEF3C7; color: #92400E; }
.badge-info     { background: var(--pale); color: var(--blue); }
.badge-secondary { background: var(--gray-100); color: var(--gray-700); }
.badge-pending    { background: #FEF3C7; color: #92400E; }
.badge-validated  { background: #DCFCE7; color: #166534; }
.badge-accepted   { background: #D1FAE5; color: #065F46; }
.badge-rejected   { background: #FEE2E2; color: #991B1B; }

/* ── PROPERTY CARDS ── */
.property-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100);
  transition: all 0.25s ease; display: flex; flex-direction: column; height: 100%;
}
.property-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.property-image {
  width: 100%; height: 220px; object-fit: cover; display: block;
  transition: transform 0.35s ease;
}
.property-card:hover .property-image { transform: scale(1.04); }
.property-image-wrapper { overflow: hidden; position: relative; }
.property-image-wrapper .badge {
  position: absolute; top: 0.75rem; left: 0.75rem; font-size: 0.75rem;
}
.property-image-placeholder {
  width: 100%; height: 220px;
  background: linear-gradient(135deg, var(--pale) 0%, #A7F3D0 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--mid); font-size: 2.5rem;
}
.property-price {
  font-size: 1.5rem; font-weight: 800; color: var(--navy); margin: 0.75rem 0 0.375rem;
}
.property-meta { display: flex; gap: 0.375rem; flex-wrap: wrap; margin-bottom: 0.875rem; }
.property-actions { display: flex; gap: 0.5rem; margin-top: auto; padding-top: 0.75rem; }
.property-actions .btn { flex: 1; padding: 0.5rem 0.75rem; font-size: 0.8125rem; }
.highest-bid { margin-bottom: 0.75rem; }
.highest-bid-label { font-size: 0.75rem; font-weight: 600; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.05em; display: block; margin-bottom: 0.125rem; }
.highest-bid-amount { font-size: 0.9375rem; font-weight: 700; color: var(--gray-700); }

/* ── FILTERS ── */
.filters-card {
  background: #fff; border-radius: var(--radius-lg); padding: 1.5rem;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100);
  position: sticky; top: 88px;
}
.filters-card h3 { margin-bottom: 1.25rem; color: var(--navy); font-size: 1rem; text-transform: uppercase; letter-spacing: 0.04em; }

/* ── DETAIL PAGE ── */
.detail-layout { display: grid; grid-template-columns: 1fr 340px; gap: 2rem; align-items: start; margin: 2rem 0; }
.detail-main { min-width: 0; }
.detail-sidebar { position: sticky; top: 88px; }
.detail-price-card {
  background: #fff; border-radius: var(--radius-lg); padding: 1.75rem;
  box-shadow: var(--shadow-md); border: 1px solid var(--gray-100);
  margin-bottom: 1.25rem;
}
.detail-price-card .property-price { font-size: 2rem; margin: 0 0 0.5rem; }
.detail-header { background: #fff; border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); margin-bottom: 1.5rem; }
.detail-title { font-size: 1.875rem; margin-bottom: 0.375rem; color: var(--navy); }
.detail-address { color: var(--gray-500); font-size: 1rem; margin: 0.25rem 0; display: flex; align-items: center; gap: 0.375rem; }
.detail-office  { color: var(--gray-500); font-size: 0.9375rem; margin: 0.25rem 0; }
.detail-price   { font-size: 2rem; font-weight: 800; color: var(--navy); margin: 1.25rem 0 0.5rem; }

/* Availability status */
.availability-status { display: inline-flex; align-items: center; padding: 0.4rem 0.875rem; border-radius: 100px; font-weight: 600; font-size: 0.875rem; }
.status-available    { background: #DCFCE7; color: #166534; }
.status-unavailable  { background: #FEE2E2; color: #991B1B; }
.status-under-offer  { background: #FEF3C7; color: #92400E; }
.status-sold         { background: var(--gray-100); color: var(--gray-700); }

/* Bids table */
.bids-table { width: 100%; border-collapse: collapse; font-size: 0.9375rem; }
.bids-table th { text-align: left; padding: 0.625rem 0.875rem; border-bottom: 2px solid var(--gray-100); font-size: 0.8125rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.04em; }
.bids-table td { padding: 0.75rem 0.875rem; border-bottom: 1px solid var(--gray-100); }
.bid-amount { font-weight: 700; color: var(--gray-900); font-size: 1rem; }
.bid-count-badge { background: var(--pale); color: var(--blue); padding: 0.2rem 0.625rem; border-radius: 100px; font-size: 0.8125rem; font-weight: 600; }

/* Sidebar button group */
.button-group { display: flex; flex-direction: column; gap: 0.625rem; }
.button-group .btn { width: 100%; justify-content: center; }

/* ── GALLERY ── */
.image-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 0.75rem; margin-bottom: 1.5rem; }
.gallery-item { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.2s, box-shadow 0.2s; }
.gallery-item:hover { transform: scale(1.03); box-shadow: var(--shadow-md); }
.gallery-item img { width: 100%; height: 150px; object-fit: cover; display: block; }

/* ── SECTIONS ── */
.section { background: #fff; padding: 2rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); margin-bottom: 1.5rem; }
.section-title { font-size: 1.125rem; margin-bottom: 1.25rem; color: var(--navy); font-weight: 700; display: flex; align-items: center; gap: 0.5rem; }
.section-content { color: var(--gray-700); line-height: 1.8; }

/* ── ALERTS ── */
.alert { padding: 0.875rem 1.125rem; border-radius: 8px; margin-bottom: 1rem; border-left: 4px solid var(--gray-300); font-size: 0.9375rem; }
.alert-danger  { background: #FEF2F2; color: #991B1B; border-left-color: #EF4444; }
.alert-success { background: #F0FDF4; color: #166534; border-left-color: #22C55E; }
.alert-info    { background: var(--pale); color: var(--blue); border-left-color: var(--blue); }
.alert-warning { background: #FFFBEB; color: #92400E; border-left-color: #F59E0B; }

/* ── BACK LINK ── */
.back-link {
  display: inline-flex; align-items: center; gap: 0.375rem;
  margin-bottom: 1.5rem; padding: 0.4375rem 0.875rem;
  color: var(--blue); font-weight: 600; font-size: 0.9375rem;
  transition: all 0.2s; border-radius: 6px;
}
.back-link:hover { color: var(--mid); background: var(--pale); text-decoration: none; }

/* ── OFFICE INFO ── */
.office-header {
  background: linear-gradient(135deg, #064E3B 0%, #0D9373 100%);
  color: #fff; padding: 3rem 0 2.5rem;
}
.office-header h1 { color: #fff; font-size: 2.25rem; margin-bottom: 0.5rem; }
.office-header p  { color: rgba(255,255,255,0.8); font-size: 1.0625rem; margin-bottom: 0; }
.office-stats { display: flex; gap: 2rem; margin-top: 1.5rem; flex-wrap: wrap; }
.office-stat-item .stat-value { font-size: 1.375rem; font-weight: 800; color: #fff; }
.office-stat-item .stat-label { font-size: 0.8125rem; color: rgba(255,255,255,0.7); }

.office-info {
  background: #fff; border-radius: var(--radius-lg); padding: 1.5rem 2rem;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); margin-bottom: 2rem;
}
.office-info h3 { color: var(--navy); margin-bottom: 1rem; }
.office-contact { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.contact-item { font-size: 0.9375rem; }
.contact-item strong { display: block; color: var(--gray-500); font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.25rem; }
.contact-item a { color: var(--blue); font-weight: 500; }

/* ── FOOTER ── */
.footer {
  background: var(--navy); color: rgba(255,255,255,0.75);
  padding: 3.5rem 0 0; margin-top: 4rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding-bottom: 2.5rem;
}
.footer-brand { font-size: 1.25rem; font-weight: 800; color: #fff; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem; }
.footer-brand svg { color: var(--orange); }
.footer-about { font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-heading { font-size: 0.75rem; font-weight: 700; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 0.9375rem; transition: color 0.2s; }
.footer-links a:hover { color: #fff; text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 1.25rem 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.875rem; flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: #fff; }
/* Legacy one-liner footer fallback */
.footer p { margin: 0; }
.footer a { color: var(--orange); }

/* ── LAYOUT ── */
.content-wrapper { display: grid; grid-template-columns: 260px 1fr; gap: 1.75rem; margin: 2rem 0; }
.row { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.col-md-6 { grid-column: span 1; }

/* Login / centered card */
.auth-page { min-height: calc(100vh - 140px); display: flex; align-items: center; justify-content: center; padding: 2rem 1.25rem; }
.auth-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 2.5rem; width: 100%; max-width: 460px; border: 1px solid var(--gray-100); }
.auth-logo { display: flex; align-items: center; justify-content: center; gap: 0.5rem; font-size: 1.375rem; font-weight: 800; color: var(--navy); margin-bottom: 2rem; text-decoration: none; }
.auth-logo svg { color: var(--orange); }
.auth-logo span { color: var(--blue); }
.auth-card h2 { text-align: center; margin-bottom: 0.375rem; color: var(--navy); }
.auth-card .auth-subtitle { text-align: center; color: var(--gray-500); margin-bottom: 2rem; font-size: 0.9375rem; }

/* Offer page property summary */
.property-summary-card {
  background: var(--pale); border-radius: var(--radius-lg); padding: 1.25rem 1.5rem;
  border: 1px solid rgba(13,147,115,0.15); margin-bottom: 2rem;
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.property-summary-card .ps-info { flex: 1; min-width: 0; }
.property-summary-card .ps-title { font-weight: 700; color: var(--navy); font-size: 1.0625rem; margin-bottom: 0.125rem; }
.property-summary-card .ps-address { font-size: 0.875rem; color: var(--gray-500); margin: 0; }
.property-summary-card .ps-price-block { text-align: right; flex-shrink: 0; }
.property-summary-card .ps-label { display: block; font-size: 0.75rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 0.125rem; }
.property-summary-card .ps-price { color: var(--navy); font-weight: 800; font-size: 1.25rem; }

/* ── UTILITIES ── */
.text-muted   { color: var(--gray-500) !important; }
.text-center  { text-align: center; }
.text-navy    { color: var(--navy); }
.text-blue    { color: var(--blue); }
.text-orange  { color: var(--orange); }
.font-bold    { font-weight: 700; }
.mb-1 { margin-bottom: 0.5rem; }  .mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }  .mb-4 { margin-bottom: 2rem; }  .mb-5 { margin-bottom: 3rem; }
.mt-1 { margin-top: 0.5rem; }     .mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }     .mt-4 { margin-top: 2rem; }     .mt-5 { margin-top: 3rem; }
.pt-2 { padding-top: 1rem; }      .pb-2 { padding-bottom: 1rem; }
.d-flex { display: flex; } .align-items-center { align-items: center; } .gap-2 { gap: 0.5rem; } .gap-3 { gap: 0.75rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .detail-layout { grid-template-columns: 1fr; }
  .detail-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.625rem; }
  .hero-section h1 { font-size: 2.125rem; }
  .hero-section { padding: 3rem 0 0; }
  .stats-strip .container { flex-wrap: wrap; }
  .stat-item { flex: 1 1 50%; padding: 0.75rem 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .content-wrapper { grid-template-columns: 1fr; }
  .filters-card { position: static; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
  body { font-size: 15px; }
  h1 { font-size: 1.75rem; }
  .hero-section h1 { font-size: 1.875rem; }
  .container { padding: 0 1rem; }
  .btn { padding: 0.625rem 1.125rem; font-size: 0.875rem; }
  .property-actions { flex-direction: column; }
  .property-actions .btn { width: 100%; }
  .row { grid-template-columns: 1fr; gap: 1rem; }
  .auth-card { padding: 1.75rem 1.25rem; }
  .stat-item { flex: 1 1 100%; }
  .office-stats { gap: 1.25rem; }
}



