/* =============================================
   BALAN PLUS — Dashboard & Inner Pages CSS
   ============================================= */

/* ---- Dashboard Layout ---- */
.dashboard-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: calc(100vh - var(--nav-h));
}

.sidebar {
  background: var(--bg-card);
  border-right: 1px solid var(--border);
  padding: var(--sp-6) 0;
  position: sticky;
  top: var(--nav-h);
  height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}

.sidebar-section {
  padding: 0 var(--sp-4);
  margin-bottom: var(--sp-4);
}

.sidebar-section-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: var(--sp-2) var(--sp-3);
  margin-bottom: var(--sp-1);
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-3);
  border-radius: var(--r);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all var(--tr-fast);
  position: relative;
}

.sidebar-link:hover {
  background: var(--bg-secondary);
  color: var(--text);
}

.sidebar-link.active {
  background: rgba(10, 110, 189, 0.1);
  color: var(--primary);
  font-weight: 600;
}

.sidebar-link.active::before {
  content: '';
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 18px;
  background: var(--primary);
  border-radius: 0 2px 2px 0;
}

.sidebar-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.sidebar-badge {
  margin-left: auto;
  background: var(--primary);
  color: #fff;
  font-size: 0.68rem;
  padding: 2px 7px;
  border-radius: var(--r-full);
  font-weight: 700;
}

.sidebar-divider {
  height: 1px;
  background: var(--border);
  margin: var(--sp-4) var(--sp-4);
}

/* ---- Dashboard Main ---- */
.dashboard-main {
  padding: var(--sp-8);
  overflow-y: auto;
}

.dashboard-header {
  margin-bottom: var(--sp-8);
}

.dashboard-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
}

.dashboard-subtitle {
  color: var(--text-secondary);
  margin-top: var(--sp-1);
}

/* Stat Cards */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
  margin-bottom: var(--sp-8);
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-6);
  position: relative;
  overflow: hidden;
}

.stat-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

.stat-card-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-4);
  font-size: 1.2rem;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.stat-change {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: var(--sp-2);
}

.stat-change.up { color: var(--success); }
.stat-change.down { color: var(--danger); }

/* Data Table */
.table-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.table-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-5) var(--sp-6);
  border-bottom: 1px solid var(--border);
}

.table-title {
  font-weight: 700;
  font-size: 1rem;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th {
  text-align: left;
  padding: var(--sp-3) var(--sp-5);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg-secondary);
}

.data-table td {
  padding: var(--sp-4) var(--sp-5);
  font-size: 0.88rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  vertical-align: middle;
}

.data-table tr:last-child td {
  border-bottom: none;
}

.data-table tr:hover td {
  background: var(--bg-secondary);
}

.data-table td strong {
  color: var(--text);
  font-weight: 600;
}

/* Status chips */
.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: var(--r-full);
  font-size: 0.72rem;
  font-weight: 700;
}

.status-chip::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.status-active { background: rgba(34,197,94,0.1); color: var(--success); }
.status-pending { background: rgba(245,158,11,0.1); color: var(--warning); }
.status-cancelled { background: rgba(239,68,68,0.1); color: var(--danger); }
.status-completed { background: rgba(59,130,246,0.1); color: var(--info); }

/* ---- Auth Pages ---- */
.auth-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.auth-visual {
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-12);
  position: relative;
  overflow: hidden;
}

.auth-visual-content {
  color: #fff;
  max-width: 400px;
  position: relative;
  z-index: 1;
}

.auth-visual-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--sp-4);
  line-height: 1.2;
}

.auth-visual-text {
  opacity: 0.85;
  line-height: 1.7;
  font-size: 1rem;
}

.auth-visual-features {
  margin-top: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.auth-visual-feature {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 0.9rem;
  opacity: 0.9;
}

.auth-visual-feature-icon {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.auth-form-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-12) var(--sp-10);
  background: var(--bg);
}

.auth-form-inner {
  width: 100%;
  max-width: 440px;
}

.auth-form-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: var(--sp-2);
}

.auth-form-subtitle {
  color: var(--text-secondary);
  margin-bottom: var(--sp-8);
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin: var(--sp-6) 0;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.auth-social-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  padding: 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  background: var(--bg);
  cursor: pointer;
  transition: all var(--tr-fast);
  margin-bottom: var(--sp-3);
  font-family: var(--font-body);
}

.auth-social-btn:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-sm);
}

/* OTP Input */
.otp-inputs {
  display: flex;
  gap: var(--sp-3);
  justify-content: center;
  margin: var(--sp-6) 0;
}

.otp-input {
  width: 52px;
  height: 60px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  border: 2px solid var(--border);
  border-radius: var(--r);
  background: var(--bg);
  color: var(--text);
  outline: none;
  transition: border-color var(--tr-fast);
}

.otp-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10,110,189,0.12);
}

/* ---- Search/Filter Page ---- */
.search-page-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--sp-8);
  padding: var(--sp-8) 0;
}

.filter-panel {
  position: sticky;
  top: calc(var(--nav-h) + var(--sp-4));
  height: fit-content;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
}

.filter-section {
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid var(--border);
}

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

.filter-section-title {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: var(--sp-4);
}

/* Range slider */
.range-slider {
  width: 100%;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(10,110,189,0.2);
}

.filter-checkbox {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-2) 0;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.filter-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  accent-color: var(--primary);
  cursor: pointer;
}

.results-area { min-width: 0; }

.results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-6);
  flex-wrap: wrap;
  gap: var(--sp-3);
}

.results-count {
  font-weight: 600;
  font-size: 0.9rem;
}

.results-count span { color: var(--primary); }

.sort-select {
  padding: 8px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  background: var(--bg);
  color: var(--text);
  font-size: 0.85rem;
  outline: none;
  font-family: var(--font-body);
  cursor: pointer;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
}

/* ---- Property Details Page ---- */
.property-hero {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 300px 200px;
  gap: var(--sp-3);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: var(--sp-8);
}

.property-hero-main {
  grid-row: 1 / -1;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.property-hero-thumb {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.property-details-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--sp-8);
}

.property-booking-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  position: sticky;
  top: calc(var(--nav-h) + var(--sp-4));
  box-shadow: var(--shadow);
}

.property-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
}

.property-price span {
  font-size: 1rem;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-weight: 400;
}

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

.amenity-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.88rem;
  color: var(--text-secondary);
}

/* ---- About Page ---- */
.about-hero {
  padding: var(--sp-20) 0;
  background: linear-gradient(160deg, var(--bg) 0%, var(--bg-secondary) 100%);
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-align: center;
  transition: all var(--tr);
}

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

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: var(--sp-6) auto var(--sp-4);
}

.team-name {
  font-weight: 700;
  margin-bottom: 3px;
}

.team-role {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: var(--sp-4);
}

.team-card-body {
  padding: 0 var(--sp-4) var(--sp-5);
}

/* ---- Contact Page ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-10);
  align-items: start;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}

.contact-info-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--r);
  background: rgba(10,110,189,0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-info-title {
  font-weight: 700;
  margin-bottom: 3px;
}

.contact-info-value {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow);
}

.map-placeholder {
  height: 300px;
  background: var(--bg-secondary);
  border-radius: var(--r-lg);
  margin-top: var(--sp-8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

/* ---- Grooming / Service Pages ---- */
.service-profile {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: var(--sp-8);
  align-items: start;
}

.service-profile-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  text-align: center;
  position: sticky;
  top: calc(var(--nav-h) + var(--sp-4));
}

.service-avatar {
  width: 90px;
  height: 90px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto var(--sp-4);
}

.pricing-table {
  width: 100%;
}

.pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.pricing-row:last-child { border-bottom: none; }
.pricing-name { color: var(--text-secondary); }
.pricing-price { font-weight: 700; color: var(--primary); }

/* ---- Notification Bell ---- */
.notification-bell {
  position: relative;
}

.notification-dot {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 8px;
  height: 8px;
  background: var(--danger);
  border-radius: 50%;
  border: 2px solid var(--bg);
}

/* ---- Chatbot Widget ---- */
.chatbot-trigger {
  position: fixed;
  bottom: var(--sp-6);
  left: var(--sp-6);
  width: 52px;
  height: 52px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(10,110,189,0.4);
  cursor: pointer;
  font-size: 1.3rem;
  z-index: var(--z-dropdown);
  border: none;
  transition: all var(--tr);
}

.chatbot-trigger:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(10,110,189,0.5);
}

.chatbot-window {
  position: fixed;
  bottom: calc(var(--sp-6) + 64px);
  left: var(--sp-6);
  width: 320px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  z-index: var(--z-dropdown);
  overflow: hidden;
  display: none;
}

.chatbot-window.open { display: flex; flex-direction: column; }

.chatbot-header {
  background: var(--primary);
  color: #fff;
  padding: var(--sp-4) var(--sp-5);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.chatbot-avatar {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.2);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.chatbot-messages {
  flex: 1;
  padding: var(--sp-4);
  min-height: 200px;
  max-height: 300px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.chat-bubble {
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-md);
  font-size: 0.85rem;
  max-width: 85%;
}

.chat-bubble-bot {
  background: var(--bg-secondary);
  color: var(--text);
  align-self: flex-start;
}

.chat-bubble-user {
  background: var(--primary);
  color: #fff;
  align-self: flex-end;
}

.chatbot-input-row {
  display: flex;
  gap: var(--sp-2);
  padding: var(--sp-4);
  border-top: 1px solid var(--border);
}

.chatbot-input {
  flex: 1;
  padding: 8px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  font-size: 0.85rem;
  background: var(--bg);
  color: var(--text);
  outline: none;
  font-family: var(--font-body);
}

.chatbot-input:focus { border-color: var(--primary); }

/* ---- Privacy Policy Page ---- */
.policy-page {
  background: var(--bg);
}

.policy-hero {
  background:
    linear-gradient(135deg, rgba(28,100,242,0.12), rgba(13,148,136,0.08)),
    var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  padding: calc(var(--nav-h) + var(--sp-10)) 0 var(--sp-10);
}

.policy-hero-inner {
  max-width: 860px;
}

.policy-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1.05;
  margin: var(--sp-4) 0 var(--sp-4);
  letter-spacing: 0;
}

.policy-hero p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 760px;
}

.policy-meta {
  display: inline-flex;
  align-items: center;
  margin-top: var(--sp-5);
  padding: 8px 13px;
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  background: var(--bg-card);
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 700;
}

.policy-content-section {
  padding: var(--sp-10) 0 var(--sp-14);
}

.policy-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: var(--sp-8);
  align-items: start;
}

.policy-nav {
  position: sticky;
  top: calc(var(--nav-h) + var(--sp-5));
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-4);
  max-height: calc(100vh - var(--nav-h) - var(--sp-8));
  overflow-y: auto;
}

.policy-nav a {
  display: block;
  padding: 9px 11px;
  border-radius: var(--r);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.35;
  transition: all var(--tr-fast);
}

.policy-nav a:hover {
  background: var(--bg-secondary);
  color: var(--primary);
}

.policy-nav a.active {
  background: var(--primary-xlight);
  color: var(--primary);
  font-weight: 800;
  box-shadow: inset 3px 0 0 var(--primary);
}

.policy-article {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(24px, 4vw, 48px);
  box-shadow: var(--shadow-sm);
}

.policy-article section {
  scroll-margin-top: calc(var(--nav-h) + var(--sp-6));
  padding-bottom: var(--sp-8);
  margin-bottom: var(--sp-8);
  border-bottom: 1px solid var(--border);
}

.policy-article section:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.policy-article h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  margin-bottom: var(--sp-4);
  letter-spacing: 0;
}

.policy-article p,
.policy-article li {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.96rem;
}

.policy-article ul {
  display: grid;
  gap: var(--sp-3);
  margin: var(--sp-4) 0 0;
  padding-left: 1.2rem;
}

.policy-contact-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-5);
}

.policy-contact-card div {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: var(--sp-4);
}

.policy-contact-card strong,
.policy-contact-card span {
  display: block;
}

.policy-contact-card strong {
  color: var(--text);
  margin-bottom: 4px;
}

.policy-contact-card span {
  color: var(--text-secondary);
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.legal-inline-note {
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.6;
  margin-top: var(--sp-3);
  text-align: center;
}

.legal-inline-note a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}

.legal-inline-note a:hover {
  text-decoration: underline;
}

/* ---- Responsive Dashboards ---- */
@media (max-width: 1024px) {
  .dashboard-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .search-page-layout { grid-template-columns: 1fr; }
  .filter-panel { position: static; display: none; }
  .results-grid { grid-template-columns: 1fr; }
  .property-details-layout { grid-template-columns: 1fr; }
  .property-booking-card { position: static; }
  .auth-page { grid-template-columns: 1fr; }
  .auth-visual { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .service-profile { grid-template-columns: 1fr; }
  .policy-layout { grid-template-columns: 1fr; }
  .policy-nav { position: static; max-height: none; }
}

@media (max-width: 768px) {
  .dashboard-main { padding: var(--sp-4); }
  .stats-grid { grid-template-columns: 1fr; }
  .property-hero { grid-template-columns: 1fr; grid-template-rows: 240px; }
  .property-hero-thumb { display: none; }
  .team-grid { grid-template-columns: 1fr; }
  .policy-contact-card { grid-template-columns: 1fr; }
  .policy-content-section { padding: var(--sp-6) 0 var(--sp-10); }
}
