:root {
  --navy: #08142e;
  --navy-2: #0f172a;
  --gold: #d4af37;
  --gold-2: #e2a629;
  --white: #ffffff;
  --muted: #64748b;
  --line: #e7ebf2;
  --shadow: 0 20px 55px rgba(8, 20, 46, 0.13);
  --radius: 25px;
}

@media (max-width: 640px) {
  .system-reset-summary {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .app-install-banner {
    right: 12px;
    bottom: 12px;
    grid-template-columns: 44px minmax(0, 1fr) 38px;
    width: calc(100% - 24px);
    gap: 10px;
    padding: 12px;
    border-radius: 18px;
  }

  .app-install-banner img {
    width: 44px;
    height: 44px;
  }

  .app-install-banner h2 {
    font-size: 13px;
  }

  .app-install-banner p {
    font-size: 11px;
  }

  .app-install-action {
    grid-column: 1 / -1;
    width: 100%;
  }

  .app-install-close {
    width: 38px;
    height: 38px;
  }

  .notification-link {
    width: 48px;
    height: 48px;
    border-radius: 15px;
  }

  .user-notification-item {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    padding: 16px;
  }

  .notification-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  .user-notification-item header {
    display: grid;
    gap: 6px;
  }

  .user-notification-item h2 {
    font-size: 15px;
  }

  .user-notification-item time {
    white-space: normal;
  }

  .notification-actions .btn {
    width: 100%;
  }

  .settings-grid {
    grid-template-columns: 1fr;
  }

  .settings-actions {
    justify-content: stretch;
  }

  .settings-actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 24px, 520px);
  }

  .hero h1 {
    font-size: 26px;
    word-break: break-word;
  }

  .hero-text {
    font-size: 13px;
    line-height: 1.6;
  }

  .btn {
    min-height: 50px !important;
    font-size: 13px !important;
  }

  .mobile-nav {
    grid-template-columns: 1fr;
  }

  .mobile-menu-actions {
    grid-template-columns: 82px 1fr;
  }

  .mobile-call span {
    display: block;
    font-size: 10px;
  }

  .mobile-call strong {
    font-size: 14px;
  }

  .type-grid,
  .trust-grid,
  .property-grid {
    gap: 12px;
  }

  .type-card img {
    height: 92px;
  }

  .property-media img {
    height: 88px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  padding-top: 112px;
  margin: 0;
  color: var(--navy);
  background: #fff;
  font-family: "Poppins", Arial, sans-serif;
  overflow-x: hidden;
  opacity: 1;
}

html.is-loading {
  cursor: progress;
}

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

img {
  display: block;
  width: 100%;
}

button,
input,
select {
  font: inherit;
}

.container {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 32px rgba(8, 20, 46, 0.08);
  backdrop-filter: blur(16px);
}

.page-loader {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  visibility: visible;
  background: rgba(212, 175, 55, 0.16);
  transition: opacity 0.16s ease;
}

.page-loader.is-visible {
  opacity: 1;
}

.app-install-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto 40px;
  align-items: center;
  width: min(620px, calc(100% - 44px));
  gap: 14px;
  padding: 14px;
  color: var(--white);
  background: linear-gradient(135deg, #08142e 0%, #0f172a 100%);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(8, 20, 46, 0.24);
}

.app-install-banner[hidden] {
  display: none;
}

.app-install-banner img {
  width: 54px;
  height: 54px;
  border-radius: 0;
}

.app-install-banner h2 {
  margin: 0 0 3px;
  font-size: 15px;
  line-height: 1.2;
}

.app-install-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  line-height: 1.45;
}

.app-install-action,
.app-install-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
}

.app-install-action {
  min-height: 44px;
  gap: 8px;
  padding: 0 16px;
  color: var(--navy);
  background: var(--gold);
  border-radius: 14px;
  font-size: 13px;
  font-weight: 800;
}

.app-install-close {
  width: 40px;
  height: 40px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 13px;
}

@media (max-width: 480px) {
  .app-install-banner {
    right: 12px;
    bottom: 12px;
    grid-template-columns: 44px minmax(0, 1fr) 38px;
    width: calc(100% - 24px);
    gap: 10px;
    padding: 12px;
    border-radius: 18px;
  }

  .app-install-banner img {
    width: 44px;
    height: 44px;
  }

  .app-install-banner h2 {
    font-size: 13px;
  }

  .app-install-banner p {
    font-size: 11px;
  }

  .app-install-action {
    grid-column: 1 / -1;
    width: 100%;
  }

  .app-install-close {
    width: 38px;
    height: 38px;
  }
}

.loader-card {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.loader-mark {
  display: none;
}

.loader-mark img {
  display: none;
}

.loader-line {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: transparent;
  border-radius: 0;
}

.loader-line::after {
  position: absolute;
  inset: 0;
  width: 42%;
  content: "";
  background: linear-gradient(90deg, var(--navy), var(--gold), var(--navy));
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.42);
  animation: loader-slide 0.85s ease-in-out infinite;
}

@keyframes loader-slide {
  0% {
    transform: translateX(-110%);
  }

  100% {
    transform: translateX(250%);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  body {
    opacity: 1;
  }
}

.nav-wrap,
.brand,
.main-nav,
.header-actions,
.call-card,
.hero-actions,
.hero-bottom,
.agent-panel,
.tabs,
.property-meta,
.section-head,
.cta-strip,
.cta-actions,
.footer-bottom {
  display: flex;
  align-items: center;
}

.nav-wrap {
  justify-content: space-between;
  gap: 28px;
}

@media (min-width: 1025px) {
  .site-header .container {
    width: min(100% - 44px, 1480px);
  }

  .nav-wrap {
    gap: clamp(18px, 1.8vw, 34px);
  }

  .brand {
    flex: 0 0 auto;
  }

  .brand-logo {
    width: clamp(188px, 15vw, 232px);
  }

  .main-nav {
    flex: 1 1 auto;
    justify-content: center;
    min-width: 0;
    gap: clamp(18px, 1.75vw, 30px);
    font-size: clamp(13px, 0.92vw, 15px);
  }

  .main-nav a {
    white-space: nowrap;
    line-height: 1.15;
  }

  .header-actions {
    flex: 0 0 auto;
    gap: 12px;
  }

  .language-menu summary {
    min-width: 94px;
    padding-inline: 13px;
  }

  .call-card {
    min-width: 190px;
    padding: 12px 18px;
  }
}

@media (min-width: 1025px) and (max-width: 1280px) {
  .site-header .container {
    width: min(100% - 28px, 1240px);
  }

  .brand-logo {
    width: 190px;
  }

  .main-nav {
    gap: 16px;
    font-size: 13px;
  }

  .call-card {
    min-width: 176px;
    padding-inline: 16px;
  }

  .call-card strong {
    font-size: 15px;
  }
}

.nav-toggle,
.nav-toggler,
.mobile-menu {
  display: none;
}

.brand {
  gap: 12px;
  min-width: max-content;
  line-height: 1;
}

.brand-logo {
  display: block;
  width: clamp(180px, 16vw, 238px);
  height: auto;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--gold);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong {
  display: block;
  color: var(--navy);
  font-size: 21px;
  line-height: 1;
  font-weight: 800;
}

.brand small {
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 600;
}

.main-nav {
  gap: 28px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 500;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
}

.main-nav .active,
.main-nav a:hover {
  color: var(--gold-2);
}

.main-nav .active::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold-2);
}

.header-actions {
  gap: 12px;
  min-width: max-content;
}

.language-menu {
  position: relative;
}

.language-menu summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  gap: 9px;
  padding: 0 14px;
  color: var(--navy);
  list-style: none;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(8, 20, 46, 0.1);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(8, 20, 46, 0.1);
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.language-menu summary::-webkit-details-marker {
  display: none;
}

.language-menu summary:hover,
.language-menu[open] summary {
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 16px 34px rgba(8, 20, 46, 0.14);
  transform: translateY(-1px);
}

.language-menu summary:focus-visible {
  outline: 3px solid rgba(212, 175, 55, 0.35);
  outline-offset: 3px;
}

.language-menu summary i:first-child {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--gold-2);
  background: rgba(212, 175, 55, 0.12);
  border-radius: 50%;
  font-size: 14px;
}

.language-menu summary i:last-child {
  color: var(--muted);
  font-size: 11px;
  transition: transform 0.2s ease;
}

.language-menu[open] summary i:last-child {
  transform: rotate(180deg);
}

.language-menu summary span {
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.language-options {
  position: absolute;
  z-index: 30;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  width: 190px;
  max-height: min(420px, calc(100vh - 120px));
  overflow-y: auto;
  padding: 8px;
  background: var(--white);
  border: 1px solid rgba(8, 20, 46, 0.1);
  border-radius: 16px;
  box-shadow: 0 24px 50px rgba(8, 20, 46, 0.18);
}

.language-options a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 0 12px;
  color: var(--navy);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
}

.language-options a:hover,
.language-options .selected {
  color: var(--navy);
  background: rgba(212, 175, 55, 0.12);
}

.language-options strong {
  color: var(--gold-2);
  font-size: 12px;
}

.call-card {
  gap: 12px;
  min-width: 205px;
  padding: 14px 20px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.call-card i {
  color: var(--gold-2);
  font-size: 22px;
}

.call-card span {
  font-size: 12px;
}

.call-card strong {
  display: block;
  font-size: 17px;
}

.hero {
  position: relative;
  min-height: 590px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 33%, rgba(255, 255, 255, 0.2) 58%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(0deg, rgba(8, 20, 46, 0.28), rgba(8, 20, 46, 0.02)),
    url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1800&q=85") center right / cover no-repeat;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  min-height: 590px;
  padding-top: 132px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px;
  color: var(--navy);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
}

.eyebrow::before,
.section-title::after {
  display: block;
  width: 28px;
  height: 2px;
  content: "";
  background: var(--gold-2);
}

.hero h1 {
  margin: 0;
  max-width: 520px;
  color: var(--navy);
  font-size: clamp(36px, 4.4vw, 50px);
  line-height: 1.08;
  letter-spacing: 0;
}

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

.hero-text {
  max-width: 420px;
  margin: 18px 0;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.75;
  font-weight: 500;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 18px;
}

.hero-bottom {
  align-self: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 84px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  gap: 12px;
  padding: 0 26px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 14px 30px rgba(8, 20, 46, 0.22);
}

.btn-gold {
  color: var(--white);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 14px 30px rgba(212, 175, 55, 0.25);
}

.agent-panel {
  flex: 0 1 635px;
  min-height: 92px;
  padding: 18px 22px;
  color: var(--white);
  background: var(--navy);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.agent-panel article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  flex: 1;
  padding: 0 18px;
}

.agent-panel article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.agent-panel i {
  color: var(--white);
  font-size: 32px;
}

.agent-panel h3 {
  margin: 0 0 5px;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.2;
}

.agent-panel article:nth-child(2) h3 {
  color: var(--gold);
}

.agent-panel p {
  margin: 0;
  font-size: 11px;
  line-height: 1.55;
}

.search-section {
  position: relative;
  z-index: 2;
  margin-top: -70px;
}

.home-promo-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin: 0 auto 18px;
  padding: 24px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(8, 20, 46, 0.98), rgba(15, 23, 42, 0.92)),
    url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1400&q=80") center / cover no-repeat;
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: 24px;
  box-shadow: 0 22px 48px rgba(8, 20, 46, 0.18);
}

.home-promo-banner span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 12px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-promo-banner h2 {
  margin: 10px 0 8px;
  color: #fff;
  font-size: 26px;
  line-height: 1.18;
}

.home-promo-banner p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.home-promo-banner .btn {
  flex: 0 0 auto;
}

.search-box {
  overflow: hidden;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  gap: 12px;
  min-width: 0;
  color: var(--navy);
  background: var(--white);
  border: 0;
  border-right: 1px solid var(--line);
  cursor: pointer;
  font-weight: 500;
  text-align: center;
}

.tab i {
  display: inline-grid;
  width: 24px;
  height: 24px;
  margin-right: 0;
  place-items: center;
  color: var(--navy);
  font-size: 19px;
  line-height: 1;
  flex: 0 0 24px;
}

.tab span {
  display: block;
  min-width: 0;
  line-height: 1.2;
}

.tab.active {
  color: var(--gold-2);
  border-bottom: 2px solid var(--gold-2);
}

.tab.active i {
  color: var(--gold-2);
}

.search-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 18px;
  padding: 30px;
}

.field {
  display: flex;
  align-items: center;
  min-height: 54px;
  gap: 12px;
  padding: 0 16px;
  color: var(--muted);
  border: 1px solid #d9dfeb;
  border-radius: 6px;
}

.field input,
.field select {
  width: 100%;
  color: var(--muted);
  background: transparent;
  border: 0;
  outline: 0;
}

.search-btn {
  width: 100%;
}

.section {
  padding: 34px 0;
}

.ad-section {
  padding: 28px 0 10px;
}

.ad-section-bottom {
  padding: 0 0 34px;
}

.ad-slot {
  display: grid;
  place-items: center;
  min-height: 90px;
  padding: 18px;
  color: rgba(8, 20, 46, 0.56);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(8, 20, 46, 0.04)),
    #fbfcff;
  border: 1px dashed rgba(8, 20, 46, 0.2);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(8, 20, 46, 0.06);
}

.ad-slot span {
  color: var(--gold-2);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
}

.ad-slot strong {
  margin-top: 2px;
  color: var(--navy);
  font-size: 20px;
}

.ad-slot small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.ad-slot-internal {
  display: block;
  padding: 0;
  overflow: hidden;
  text-decoration: none;
}

.ad-slot-internal img,
.ad-slot-internal video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.ad-leaderboard {
  min-height: 104px;
}

.ad-wide {
  min-height: 180px;
}

.ad-inline {
  min-height: 100%;
  border-radius: 8px;
}

.ad-native-row {
  min-height: 92px;
  margin-top: 26px;
  border-radius: 14px;
}

.section-title {
  display: grid;
  place-items: center;
  gap: 12px;
  margin-bottom: 28px;
  text-align: center;
}

.section-title h2 {
  margin: 0;
  color: var(--navy);
  font-size: 28px;
  line-height: 1.2;
}

.type-grid,
.property-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.type-card,
.property-card,
.trust-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(8, 20, 46, 0.06);
}

.type-card {
  display: block;
  position: relative;
  overflow: hidden;
  padding-bottom: 26px;
  text-align: center;
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.type-card:hover,
.type-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.42);
  box-shadow: 0 22px 46px rgba(8, 20, 46, 0.1);
}

.type-card:focus-visible {
  outline: 3px solid rgba(212, 175, 55, 0.34);
  outline-offset: 4px;
}

.type-card img {
  height: 112px;
  object-fit: cover;
}

.floating-icon {
  display: grid;
  width: 55px;
  height: 55px;
  margin: -28px auto 12px;
  place-items: center;
  position: relative;
  color: var(--navy);
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(8, 20, 46, 0.16);
}

.type-card h3,
.trust-item h3,
.property-body h3 {
  margin: 0;
  font-size: 16px;
}

.type-card p {
  min-height: 48px;
  margin: 12px auto 22px;
  max-width: 210px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.type-card-link,
.see-all {
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 700;
}

.type-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.workflow-section {
  background: linear-gradient(180deg, #fff, #f8fafc);
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.workflow-card {
  position: relative;
  min-height: 260px;
  padding: 28px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(8, 20, 46, 0.08);
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(8, 20, 46, 0.08);
}

.workflow-number {
  position: absolute;
  top: 18px;
  right: 22px;
  color: rgba(8, 20, 46, 0.08);
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}

.workflow-card i {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 22px;
  color: var(--gold);
  background: var(--navy);
  border-radius: 18px;
  font-size: 24px;
  box-shadow: 0 14px 28px rgba(8, 20, 46, 0.18);
}

.workflow-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 19px;
}

.workflow-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.workflow-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  padding: 26px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #111c36);
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(8, 20, 46, 0.14);
}

.workflow-cta h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 24px;
}

.workflow-cta p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.location-section {
  background: #fff;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.location-card {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 112px;
  padding: 20px;
  color: var(--navy);
  text-decoration: none;
  background: var(--white);
  border: 1px solid rgba(8, 20, 46, 0.08);
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(8, 20, 46, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.location-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 18px 42px rgba(8, 20, 46, 0.1);
  transform: translateY(-3px);
}

.location-card > span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--gold);
  background: var(--navy);
  border-radius: 16px;
}

.location-card h3 {
  margin: 0 0 4px;
  color: var(--navy);
  font-size: 18px;
}

.location-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.location-card strong {
  padding: 8px 10px;
  color: var(--gold-2);
  background: #fff7df;
  border-radius: 999px;
  font-size: 12px;
  white-space: nowrap;
}

.trust-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.trust-item {
  padding: 22px 14px;
  text-align: center;
  border: 0;
  box-shadow: none;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
  border-radius: 0;
}

.trust-item span {
  display: grid;
  width: 54px;
  height: 54px;
  margin: 0 auto 18px;
  place-items: center;
  color: var(--gold);
  background: var(--navy);
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(8, 20, 46, 0.18);
}

.trust-item p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.section-head {
  justify-content: space-between;
  gap: 24px;
}

.section-head .section-title {
  margin: 0 auto 24px;
}

.property-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.property-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.property-media {
  position: relative;
}

.property-media img {
  height: 112px;
  object-fit: cover;
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  color: var(--white);
  background: var(--navy);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
}

.heart {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--white);
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  cursor: pointer;
  font-size: 19px;
  z-index: 4;
}

.favorite-form {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  margin: 0;
}

.favorite-form .heart {
  position: static;
}

.favorite-toggle {
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.favorite-toggle:hover,
.favorite-toggle.is-active {
  color: #fff;
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-1px);
}

.favorite-card .property-card-link {
  height: 100%;
}

.compare-form {
  margin: 0;
}

.property-card > .compare-form {
  padding: 0 18px 16px;
}

.compare-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 38px;
  padding: 9px 12px;
  color: var(--navy);
  background: rgba(8, 20, 46, 0.04);
  border: 1px solid rgba(8, 20, 46, 0.1);
  border-radius: 12px;
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
}

.compare-toggle:hover,
.compare-toggle.is-active {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.compare-detail-card {
  display: grid;
  gap: 12px;
}

.compare-detail-card .compare-toggle {
  width: 100%;
}

.favorite-detail-card {
  position: relative;
  padding-right: 76px;
}

.favorite-detail-card .favorite-form,
.favorite-detail-card > .heart {
  top: 20px;
  right: 20px;
}

.property-body {
  padding: 18px;
}

.location {
  margin: 10px 0 14px;
  color: var(--muted);
  font-size: 12px;
}

.location i {
  color: var(--navy);
  margin-right: 7px;
}

.property-meta {
  flex-wrap: wrap;
  gap: 13px;
  color: var(--muted);
  font-size: 12px;
}

.property-meta strong {
  margin-left: auto;
  color: var(--gold-2);
  font-size: 14px;
}

.cta-strip {
  justify-content: space-between;
  gap: 28px;
  margin-top: 34px;
  padding: 28px 64px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cta-strip h2,
.cta-strip p {
  margin: 0;
}

.cta-strip h2 {
  font-size: 22px;
}

.cta-strip p {
  margin-top: 6px;
  font-size: 14px;
}

.btn-outline {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: transparent;
}

.auth-page {
  min-height: 100vh;
  padding: 150px 0 70px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.76)),
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1800&q=85") center / cover no-repeat;
}

.auth-shell {
  display: grid;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  grid-template-columns: 0.92fr 1fr;
  gap: 34px;
  align-items: stretch;
}

.auth-visual,
.auth-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.auth-visual {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 44px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(8, 20, 46, 0.28), rgba(8, 20, 46, 0.92)),
    url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1200&q=85") center / cover no-repeat;
}

.auth-kicker {
  width: max-content;
  margin-bottom: 16px;
  padding: 8px 12px;
  color: var(--gold);
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.auth-visual h1 {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
}

.auth-visual p {
  max-width: 520px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}

.auth-card {
  padding: 38px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(8, 20, 46, 0.08);
}

.auth-card-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: 30px;
}

.auth-card-head p {
  margin: 8px 0 24px;
  color: var(--muted);
}

.auth-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.phone-grid {
  grid-template-columns: 0.45fr 1fr;
}

.login-phone-grid {
  align-items: end;
}

.auth-field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.auth-field span {
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.auth-field input,
.auth-field select {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  color: var(--navy);
  background: #fff;
  border: 1px solid #d9dfeb;
  border-radius: 14px;
  outline: 0;
}

.auth-field input:focus,
.auth-field select:focus {
  border-color: rgba(212, 175, 55, 0.8);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.13);
}

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

.auth-switch {
  margin: 18px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 14px;
}

.auth-switch a {
  color: var(--gold-2);
  font-weight: 800;
}

.flash-message {
  margin-bottom: 18px;
  padding: 13px 15px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 700;
}

.flash-error {
  color: #8a1f1f;
  background: #fff1f1;
  border: 1px solid #ffd2d2;
}

.flash-success {
  color: #17603a;
  background: #effcf4;
  border: 1px solid #ccefd8;
}

body:has(.admin-page) {
  padding-top: 0;
  background: #f5f7fb;
}

body:has(.admin-page) .site-header,
body:has(.admin-page) .site-footer {
  display: none;
}

.admin-page {
  display: grid;
  min-height: 100vh;
  grid-template-columns: 280px 1fr;
  color: var(--navy);
  background: #f5f7fb;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 28px 20px;
  color: var(--white);
  background: var(--navy);
}

.admin-brand {
  display: block;
  margin-bottom: 28px;
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
}

.admin-sidebar nav {
  display: grid;
  gap: 8px;
}

.admin-sidebar a {
  display: flex;
  align-items: center;
  min-height: 46px;
  gap: 12px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.78);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
}

.admin-sidebar a:hover,
.admin-sidebar a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.admin-sidebar i {
  color: var(--gold);
}

.admin-content {
  padding: 34px;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.admin-kicker {
  color: var(--gold-2);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
}

.admin-topbar h1 {
  margin: 4px 0 0;
  font-size: 34px;
}

.admin-stats,
.admin-grid {
  display: grid;
  gap: 18px;
}

.admin-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 20px;
}

.admin-stats article,
.admin-card {
  background: var(--white);
  border: 1px solid rgba(8, 20, 46, 0.08);
  border-radius: 20px;
  box-shadow: 0 16px 36px rgba(8, 20, 46, 0.07);
}

.admin-stats article {
  padding: 22px;
}

.admin-stats span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.admin-stats strong {
  display: block;
  margin-top: 10px;
  font-size: 34px;
}

.admin-grid {
  grid-template-columns: 1fr 1fr;
}

.admin-card-wide {
  grid-column: 1 / -1;
}

.admin-card {
  padding: 22px;
}

.admin-card h2 {
  margin: 0 0 18px;
  font-size: 20px;
}

.team-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.4fr);
  gap: 18px;
  margin-bottom: 18px;
}

.team-member-form,
.team-inline-form {
  display: grid;
  gap: 14px;
}

.team-inline-form {
  grid-template-columns: minmax(150px, 1fr) minmax(120px, 0.7fr) auto;
  align-items: center;
}

.team-inline-form select {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 12px;
  background: #fff;
  color: var(--navy);
  font-weight: 700;
}

.team-inline-form button:disabled,
.team-inline-form select:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-danger {
  background: #b91c1c;
  color: #fff;
  border-color: #b91c1c;
}

.btn-danger:hover {
  background: #991b1b;
  border-color: #991b1b;
  color: #fff;
}

.system-danger-card {
  border-color: rgba(185, 28, 28, 0.2);
  background: linear-gradient(180deg, #fff, #fff7f7);
}

.system-reset-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 22px 0;
}

.system-reset-summary section {
  border: 1px solid rgba(8, 20, 46, 0.08);
  border-radius: 18px;
  background: #fff;
  padding: 18px;
}

.system-reset-summary h3 {
  margin: 0 0 12px;
  font-size: 16px;
}

.system-reset-summary ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-weight: 600;
}

.system-reset-summary small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.6;
}

.system-reset-form {
  display: grid;
  gap: 16px;
  max-width: 620px;
}

.danger-switch strong {
  color: #991b1b;
}

.market-hero {
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background:
    linear-gradient(120deg, rgba(8, 20, 46, 0.92), rgba(8, 20, 46, 0.72)),
    url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: #fff;
}

.market-hero h1,
.market-hero p {
  color: #fff;
}

.market-category-pill {
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin-bottom: 10px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.14);
  color: var(--gold-2);
  padding: 6px 11px;
  font-size: 12px;
  font-weight: 800;
}

.market-card .property-body {
  min-height: 176px;
}

.team-role-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.team-role-card {
  border: 1px solid rgba(8, 20, 46, 0.08);
  border-radius: 18px;
  padding: 18px;
  background: linear-gradient(180deg, #fff, #f8fafc);
}

.team-role-card h3 {
  margin: 0 0 12px;
  font-size: 16px;
  color: var(--navy);
}

.permission-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.permission-chip-list span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.13);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}

.card-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.card-title-row h2 {
  margin-bottom: 0;
}

.professional-revenue-card {
  display: grid;
  gap: 18px;
}

.professional-revenue-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.8fr);
  gap: 18px;
}

.finance-summary-card {
  display: grid;
  gap: 18px;
}

.finance-summary-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.finance-summary-layout h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 17px;
}

.finance-export-card {
  display: grid;
  gap: 16px;
}

.finance-export-form {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr)) auto;
  gap: 12px;
  align-items: end;
}

.review-section {
  display: grid;
  gap: 18px;
}

.review-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.review-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(8, 20, 46, 0.08);
  border-radius: 18px;
  background: #fff;
}

.review-card strong {
  color: var(--gold-2);
  letter-spacing: 2px;
}

.review-card h3,
.review-card p {
  margin: 0;
}

.review-card small {
  color: var(--muted);
  font-weight: 700;
}

.review-form {
  display: grid;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.report-card,
.report-form {
  display: grid;
  gap: 12px;
}

.mini-report-form {
  margin-top: 6px;
}

.mini-report-form button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.mini-report-form button:hover {
  color: #9f1d1d;
}

.messages-page {
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.08), transparent 34rem),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 42%);
  padding: 8.5rem 0 4rem;
}

.messages-shell {
  display: grid;
  gap: 1.5rem;
}

.messages-layout {
  display: grid;
  grid-template-columns: minmax(17rem, 0.38fr) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.messages-inbox,
.messages-thread {
  border-radius: 1.5rem;
}

.messages-inbox h2,
.messages-thread h2 {
  margin: 0 0 1rem;
  color: var(--night);
}

.conversation-list {
  display: grid;
  gap: 0.7rem;
}

.conversation-item {
  display: flex;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 0.9rem;
  border: 1px solid rgba(8, 20, 46, 0.08);
  border-radius: 1rem;
  color: var(--night);
  text-decoration: none;
  background: #fff;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.conversation-item:hover,
.conversation-item.active {
  transform: translateY(-1px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 1rem 2.4rem rgba(8, 20, 46, 0.08);
}

.conversation-item span {
  min-width: 0;
  display: grid;
  gap: 0.18rem;
}

.conversation-item strong,
.conversation-item em,
.conversation-item small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.conversation-item em {
  color: var(--gold);
  font-style: normal;
  font-weight: 700;
  font-size: 0.82rem;
}

.conversation-item small {
  color: var(--muted);
}

.conversation-item b {
  min-width: 1.55rem;
  height: 1.55rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--gold);
  color: var(--night);
  font-size: 0.75rem;
}

.messages-thread-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(8, 20, 46, 0.08);
}

.messages-thread-head p {
  margin: 0;
  color: var(--muted);
}

.message-bubbles {
  display: grid;
  gap: 0.85rem;
  max-height: 34rem;
  overflow: auto;
  padding: 1.25rem 0;
}

.message-bubble {
  width: min(34rem, 82%);
  padding: 0.9rem 1rem;
  border-radius: 1.2rem 1.2rem 1.2rem 0.35rem;
  background: #f3f6fb;
  color: var(--night);
}

.message-bubble.is-mine {
  justify-self: end;
  border-radius: 1.2rem 1.2rem 0.35rem 1.2rem;
  background: var(--night);
  color: #fff;
}

.message-bubble p {
  margin: 0;
  line-height: 1.65;
}

.message-bubble time {
  display: block;
  margin-top: 0.45rem;
  color: inherit;
  opacity: 0.62;
  font-size: 0.75rem;
}

.message-compose,
.message-start-form {
  display: grid;
  gap: 0.9rem;
}

.message-compose {
  padding-top: 1rem;
  border-top: 1px solid rgba(8, 20, 46, 0.08);
}

.messages-empty-state,
.messages-empty-mini {
  display: grid;
  place-items: center;
  text-align: center;
  gap: 0.8rem;
  min-height: 18rem;
  color: var(--muted);
}

.messages-empty-state i,
.messages-empty-mini i {
  width: 4.5rem;
  height: 4.5rem;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.14);
  color: var(--gold);
  font-size: 1.7rem;
}

.message-start-card {
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.message-start-card textarea,
.message-compose textarea {
  min-height: 8rem;
  resize: vertical;
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(17rem, 0.34fr) minmax(0, 1fr) minmax(18rem, 0.36fr);
  gap: 1.25rem;
  align-items: start;
}

.admin-support-layout {
  grid-template-columns: minmax(18rem, 0.35fr) minmax(0, 1fr);
}

.support-list-card,
.support-thread-card,
.support-create-card {
  border-radius: 1.5rem;
}

.support-form,
.support-status-form {
  display: grid;
  gap: 0.8rem;
}

.support-status-form {
  grid-template-columns: minmax(9rem, 1fr) minmax(9rem, 1fr) auto;
  margin: 1rem 0 0;
  padding: 0.9rem;
  border: 1px solid rgba(8, 20, 46, 0.08);
  border-radius: 1rem;
  background: #f8fafc;
}

.member-profile-page {
  padding: 8.5rem 0 4rem;
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.1), transparent 32rem),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 42%);
}

.member-profile-shell {
  display: grid;
  gap: 1.35rem;
}

.member-profile-hero {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 1.25rem;
  align-items: center;
  padding: 1.5rem;
  border-radius: 1.7rem;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(8, 20, 46, 0.98), rgba(15, 23, 42, 0.92)),
    url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1400&q=80") center / cover no-repeat;
  box-shadow: 0 1.8rem 4rem rgba(8, 20, 46, 0.18);
}

.member-avatar {
  width: 6rem;
  height: 6rem;
  display: grid;
  place-items: center;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--gold);
  font-size: 2.3rem;
}

.member-profile-hero h1 {
  margin: 0.2rem 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.member-profile-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.member-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.9rem;
}

.member-badges span,
.seller-profile-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.member-badges span {
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.16);
  color: #fff;
  font-weight: 800;
  font-size: 0.8rem;
}

.member-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.member-stats-grid article {
  padding: 1.15rem;
  border-radius: 1.3rem;
  background: #fff;
  border: 1px solid rgba(8, 20, 46, 0.08);
  box-shadow: 0 1rem 2.3rem rgba(8, 20, 46, 0.06);
}

.member-stats-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.member-stats-grid strong {
  display: block;
  margin-top: 0.35rem;
  color: var(--night);
  font-size: 1.8rem;
}

.member-profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.34fr);
  gap: 1rem;
}

.seller-profile-link {
  color: var(--gold);
  font-weight: 900;
  text-decoration: none;
}

.transaction-close-form {
  display: grid;
  grid-template-columns: minmax(7rem, 1fr) auto;
  gap: 0.55rem;
  align-items: center;
}

.compact-money-input {
  min-height: 2.4rem;
  width: 100%;
  padding: 0 0.7rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  font: inherit;
  font-weight: 800;
}

.expiring-list {
  padding-top: 16px;
  border-top: 1px solid rgba(8, 20, 46, 0.08);
}

.expiring-list h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 18px;
}

.admin-list {
  display: grid;
  gap: 10px;
}

.admin-list div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.admin-list strong {
  color: var(--gold-2);
}

.featured-admin-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  margin-left: 8px;
  padding: 5px 8px;
  color: var(--navy);
  background: #fff7df;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.stat-alert {
  border-color: rgba(180, 35, 24, 0.24) !important;
  background: #fff7ed !important;
}

.country-alert-card {
  grid-column: 1 / -1;
  display: grid;
  gap: 12px;
  border-color: rgba(212, 175, 55, 0.32);
}

.country-alert-card p {
  margin: 0;
  color: var(--muted);
}

.country-alert-card .btn {
  width: fit-content;
}

.promo-status-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-color: rgba(8, 20, 46, 0.08);
  background: linear-gradient(135deg, #fff, #f8fafc);
}

.promo-status-card.is-active {
  border-color: rgba(212, 175, 55, 0.36);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), #fff 58%, rgba(8, 20, 46, 0.04));
}

.promo-status-card h2 {
  margin: 10px 0 8px;
}

.promo-status-card p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.settings-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.settings-card {
  display: grid;
  gap: 16px;
}

.settings-card h2 {
  margin-bottom: 0;
}

.settings-help {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.promo-admin-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  background: #f8fafc;
  border: 1px solid rgba(8, 20, 46, 0.08);
  border-radius: 18px;
}

.promo-admin-panel.is-active {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.16), #fff);
  border-color: rgba(212, 175, 55, 0.34);
}

.promo-admin-panel h3 {
  margin: 10px 0 6px;
  color: var(--navy);
  font-size: 18px;
}

.promo-admin-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.switch-field {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 230px;
  cursor: pointer;
  user-select: none;
}

.switch-field input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.switch-field span {
  position: relative;
  display: inline-block;
  flex: 0 0 54px;
  width: 54px;
  height: 30px;
  background: #cbd5e1;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.switch-field span::after {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 22px;
  height: 22px;
  content: "";
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 5px 14px rgba(8, 20, 46, 0.22);
  transition: transform 0.2s ease;
}

.switch-field input:checked + span {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
}

.switch-field input:checked + span::after {
  transform: translateX(24px);
}

.switch-field strong {
  color: var(--navy);
  font-size: 13px;
}

.settings-actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
}

.backup-info-card {
  border-color: rgba(212, 175, 55, 0.28);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), #fff);
}

.backup-info-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.legal-card {
  display: grid;
  gap: 24px;
}

.legal-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 16px;
  background: rgba(212, 175, 55, 0.08);
}

.legal-summary strong,
.legal-summary span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.legal-summary strong {
  color: var(--navy);
}

.legal-summary span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.legal-summary i {
  color: var(--gold-2);
}

.legal-sections {
  display: grid;
  gap: 22px;
}

.legal-sections section {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.legal-sections section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-sections h2 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 20px;
}

.legal-sections p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.audit-list div {
  align-items: flex-start;
}

.audit-list span,
.audit-list strong {
  display: grid;
  gap: 4px;
}

.audit-list small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.audit-list em {
  max-width: 680px;
  color: #7a271a;
  font-size: 12px;
  font-style: normal;
  line-height: 1.45;
}

.notification-list div {
  align-items: flex-start;
}

.notification-list span,
.notification-list strong {
  display: grid;
  gap: 4px;
}

.notification-list a {
  color: var(--navy);
  text-decoration: none;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 820px;
}

.admin-table th,
.admin-table td {
  padding: 14px 12px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.admin-table th {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 11px;
}

.admin-badge {
  display: inline-flex;
  padding: 5px 9px;
  color: #17603a;
  background: #effcf4;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.dashboard-page {
  min-height: 100vh;
  padding: 150px 0 70px;
  background: #f5f7fb;
}

.dashboard-shell {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.dashboard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 24px;
}

.dashboard-head h1 {
  margin: 4px 0 8px;
  font-size: 34px;
}

.notification-link {
  position: relative;
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(8, 20, 46, 0.1);
  border-radius: 16px;
  background: var(--white);
  color: var(--navy);
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(8, 20, 46, 0.07);
}

.notification-link.active,
.notification-link:hover {
  border-color: rgba(212, 175, 55, 0.42);
  color: var(--gold-2);
}

.notification-link span {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  padding: 0 6px;
  border: 2px solid var(--white);
  border-radius: 999px;
  background: #b42318;
  color: var(--white);
  font-size: 10px;
  font-weight: 900;
}

.notifications-card {
  padding: 0;
  overflow: hidden;
}

.user-notification-list {
  display: grid;
}

.user-notification-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.user-notification-item:last-child {
  border-bottom: 0;
}

.user-notification-item.is-unread {
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.11), rgba(255, 255, 255, 0));
}

.notification-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  background: rgba(8, 20, 46, 0.06);
  color: var(--navy);
}

.user-notification-item.is-unread .notification-icon {
  background: var(--navy);
  color: var(--gold-2);
}

.user-notification-item header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.user-notification-item h2 {
  margin: 0;
  color: var(--navy);
  font-size: 17px;
}

.user-notification-item time {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.user-notification-item p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.notification-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.dashboard-head p {
  margin: 0;
  color: var(--muted);
}

.property-form textarea {
  width: 100%;
  padding: 16px;
  color: var(--navy);
  background: #fff;
  border: 1px solid #d9dfeb;
  border-radius: 14px;
  outline: 0;
  resize: vertical;
}

.property-form textarea:focus {
  border-color: rgba(212, 175, 55, 0.8);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.13);
}

.property-admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.property-admin-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.property-admin-card h2 {
  margin-top: 12px;
}

.property-admin-card p {
  margin: 6px 0 0;
  color: var(--muted);
}

.admin-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-actions a,
.admin-actions button {
  padding: 0;
  color: var(--gold-2);
  background: transparent;
  border: 0;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
}

.admin-actions .danger,
.admin-actions button.danger {
  color: #b42318;
}

.reject-reason-field {
  width: 170px;
  min-height: 34px;
  padding: 8px 10px;
  color: var(--navy);
  background: #fff;
  border: 1px solid rgba(8, 20, 46, 0.16);
  border-radius: 10px;
  font: inherit;
  font-size: 12px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.reject-reason-field:focus {
  border-color: var(--gold-2);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.14);
}

.reject-reason-area {
  width: 100%;
  min-height: 72px;
  resize: vertical;
}

.rejection-note {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin: 10px 0 0;
  padding: 10px 12px;
  color: #7a271a;
  background: #fff4ed;
  border: 1px solid #ffd6ae;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.5;
}

.rejection-note i {
  margin-top: 3px;
  color: #b42318;
}

.admin-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
  align-items: start;
}

.admin-detail-side {
  display: grid;
  gap: 18px;
}

.detail-facts-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-dark-outline {
  color: var(--navy);
  border-color: rgba(8, 20, 46, 0.22);
}

.payment-link {
  color: var(--gold-2);
  font-weight: 800;
}

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

.property-tracking-card {
  align-items: stretch;
  border-radius: 22px;
}

.property-card-main {
  min-width: 0;
  flex: 1;
}

.property-status-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.status-pill,
.listing-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.status-pill.is-warning {
  color: #8a5a00;
  background: #fff7df;
}

.status-pill.is-info {
  color: #16437e;
  background: #eaf2ff;
}

.status-pill.is-success {
  color: #17603a;
  background: #eafaf2;
}

.status-pill.is-danger {
  color: #9f1d1d;
  background: #fff0f0;
}

.status-pill.is-muted {
  color: var(--muted);
  background: #f3f5f9;
}

.listing-chip {
  color: var(--navy);
  background: #f7f8fb;
  border: 1px solid rgba(8, 20, 46, 0.08);
}

.property-tracking-card h2 {
  margin: 14px 0 8px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.25;
}

.property-status-hint {
  max-width: 620px;
}

.property-meta-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
}

.property-meta-list span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.property-meta-list i {
  color: var(--gold-2);
}

.property-card-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  min-width: 210px;
}

.property-card-side strong {
  color: var(--gold-2);
  font-size: 18px;
  white-space: nowrap;
}

.property-card-actions {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.property-card-actions form {
  margin: 0;
}

.btn-compact {
  min-height: 42px;
  padding: 0 14px;
  border-radius: 13px;
  font-size: 13px;
}

.btn-soft-danger {
  color: #9f1d1d;
  background: #fff1f1;
}

.empty-state-card {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 36px 22px;
  text-align: center;
}

.empty-state-card h2 {
  margin: 0;
}

.empty-state-card p {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
}

.empty-state-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.empty-state-icon {
  display: inline-grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--gold-2);
  background: #fff7df;
  border-radius: 18px;
  font-size: 24px;
}

.catalog-empty {
  display: grid;
  gap: 18px;
}

.catalog-empty-hero {
  display: grid;
  justify-items: center;
  gap: 14px;
  min-height: 360px;
  padding: 46px 28px;
  text-align: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 20, 46, 0.96), rgba(15, 23, 42, 0.9)),
    url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1400&q=80") center/cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.catalog-empty-hero .admin-kicker {
  color: var(--gold);
}

.catalog-empty-hero h2 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-size: clamp(24px, 4vw, 38px);
  line-height: 1.15;
}

.catalog-empty-hero p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
}

.catalog-empty-hero .empty-state-icon {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.catalog-empty-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.catalog-empty-grid article {
  min-height: 190px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(8, 20, 46, 0.08);
}

.catalog-empty-grid i {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 14px;
  color: var(--gold-2);
  background: #fff7df;
  border-radius: 15px;
}

.catalog-empty-grid h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 16px;
}

.catalog-empty-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.rich-empty-card {
  align-content: center;
  min-height: 360px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98)),
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1200&q=80") center/cover;
  border-radius: 24px;
}

.rich-empty-card .empty-state-actions .btn {
  min-width: 180px;
}

.media-upload-panel {
  display: grid;
  gap: 18px;
  margin: 22px 0;
  padding: 22px;
  background: #f8fafc;
  border: 1px solid rgba(8, 20, 46, 0.08);
  border-radius: 22px;
}

.media-upload-head h2 {
  margin: 4px 0 8px;
  color: var(--navy);
  font-size: 22px;
}

.media-upload-head p,
.media-field small {
  color: var(--muted);
}

.media-field input[type="file"] {
  min-height: 54px;
  padding: 14px;
  background: var(--white);
}

.media-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.media-preview-placeholder,
.media-preview-card {
  min-height: 150px;
  overflow: hidden;
  background: var(--white);
  border: 1px dashed rgba(8, 20, 46, 0.18);
  border-radius: 18px;
}

.media-preview-placeholder {
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 18px;
  color: var(--muted);
  text-align: center;
}

.media-preview-placeholder i {
  color: var(--gold-2);
  font-size: 26px;
}

.media-preview-card {
  display: grid;
  grid-template-rows: 1fr auto;
}

.media-preview-card strong {
  padding: 10px 12px;
  color: var(--navy);
  font-size: 13px;
}

.watermarked-media {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.watermarked-media img,
.watermarked-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-watermark {
  position: absolute;
  right: 12px;
  bottom: 10px;
  z-index: 2;
  padding: 5px 9px;
  color: var(--white);
  background: rgba(8, 20, 46, 0.68);
  border: 1px solid rgba(212, 175, 55, 0.72);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
}

.property-detail-page {
  min-height: 100vh;
  padding: 138px 0 70px;
  background: #f5f7fb;
}

.property-detail-shell {
  display: grid;
  gap: 24px;
}

.property-detail-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.property-detail-head h1 {
  max-width: 780px;
  margin: 6px 0 8px;
  color: var(--navy);
  font-size: 38px;
  line-height: 1.12;
}

.property-detail-head p {
  margin: 0;
  color: var(--muted);
}

.property-detail-head strong {
  color: var(--gold-2);
  font-size: 26px;
  white-space: nowrap;
}

.property-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
}

.property-detail-main {
  display: grid;
  min-width: 0;
  gap: 22px;
}

.property-gallery {
  display: grid;
  gap: 14px;
}

.gallery-main {
  aspect-ratio: 16 / 10;
  min-height: 460px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(8, 20, 46, 0.06), rgba(212, 175, 55, 0.08));
  border-radius: 24px;
  box-shadow: 0 22px 48px rgba(8, 20, 46, 0.13);
}

.gallery-empty {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: var(--muted);
  font-size: 38px;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.gallery-thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  padding: 0;
  background: transparent;
  border: 3px solid transparent;
  border-radius: 16px;
  cursor: pointer;
}

.gallery-thumb.is-active {
  border-color: var(--gold-2);
}

.property-media-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.property-media-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(8, 20, 46, 0.08);
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(8, 20, 46, 0.06);
}

.property-media-strip i {
  color: var(--gold-2);
}

.property-hero-card,
.property-related-section,
.property-guidance-card {
  border: 1px solid rgba(8, 20, 46, 0.07);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 22px 44px rgba(8, 20, 46, 0.08);
}

.property-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 22px;
  align-items: stretch;
  padding: 24px;
}

.property-hero-card h2,
.property-guidance-card h2,
.property-related-section h2 {
  margin: 6px 0 10px;
  color: var(--navy);
  font-size: 24px;
}

.property-hero-card p,
.property-guidance-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.property-price-panel {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 22px;
  border-radius: 20px;
  background: var(--navy);
  color: #fff;
}

.property-price-panel span,
.property-price-panel small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
}

.property-price-panel strong {
  color: var(--gold-2);
  font-size: 30px;
  line-height: 1;
}

.property-detail-info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.property-info-tile {
  display: grid;
  gap: 8px;
  min-height: 140px;
  padding: 18px;
  border: 1px solid rgba(8, 20, 46, 0.07);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 30px rgba(8, 20, 46, 0.06);
}

.property-info-tile i {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  background: rgba(212, 175, 55, 0.14);
  color: var(--gold-2);
  font-size: 18px;
}

.property-info-tile span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.property-info-tile strong {
  color: var(--navy);
  font-size: 15px;
  line-height: 1.35;
}

.property-guidance-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 18px;
}

.property-guidance-card {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.property-guidance-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.property-guidance-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  line-height: 1.55;
}

.property-guidance-card li i {
  margin-top: 4px;
  color: var(--gold-2);
}

.property-guidance-card.is-dark {
  background: var(--navy);
  color: #fff;
}

.property-guidance-card.is-dark h2 {
  color: #fff;
}

.property-guidance-card.is-dark p {
  color: rgba(255, 255, 255, 0.78);
}

.property-guidance-card.is-dark .btn {
  justify-self: start;
}

.property-related-section {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.property-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.property-related-card {
  position: relative;
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(8, 20, 46, 0.08);
  border-radius: 20px;
  background: #fff;
  color: var(--navy);
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(8, 20, 46, 0.06);
}

.property-related-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.property-related-card span {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.property-related-card h3,
.property-related-card p,
.property-related-card strong {
  margin-right: 14px;
  margin-left: 14px;
}

.property-related-card h3 {
  margin-top: 14px;
  margin-bottom: 6px;
  font-size: 15px;
  line-height: 1.35;
}

.property-related-card p {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
}

.property-related-card strong {
  margin-top: auto;
  margin-bottom: 14px;
  color: var(--gold-2);
}

.detail-summary-card {
  display: grid;
  gap: 16px;
}

.detail-summary-card h2 {
  margin-bottom: 0;
}

.detail-facts {
  display: grid;
  gap: 10px;
}

.detail-facts span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--navy);
  font-weight: 700;
}

.detail-facts i {
  color: var(--gold-2);
}

.detail-summary-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.contact-access-card .btn {
  width: 100%;
  justify-content: center;
}

.share-card {
  overflow: hidden;
}

.share-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.share-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 12px;
  border: 1px solid rgba(8, 20, 46, 0.08);
  border-radius: 14px;
  background: #f8fafc;
  color: var(--navy);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.share-button:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 14px 28px rgba(8, 20, 46, 0.11);
}

.share-button i {
  font-size: 16px;
}

.share-whatsapp i {
  color: #25d366;
}

.share-facebook i {
  color: #1877f2;
}

.share-twitter i {
  color: #050505;
}

.share-linkedin i {
  color: #0a66c2;
}

.share-copy {
  grid-column: 1 / -1;
  background: var(--navy);
  color: var(--white);
}

.share-copy i {
  color: var(--gold-2);
}

.share-feedback {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--navy) !important;
  font-size: 13px;
  font-weight: 700;
}

.subscription-status-card {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.subscription-status-card h2 {
  margin: 0;
  color: var(--navy);
}

.subscription-status-card p {
  margin: 0;
  color: var(--muted);
}

.subscription-status-card .btn {
  justify-self: start;
}

.property-detail-side {
  display: grid;
  gap: 20px;
}

.properties-page {
  min-height: 100vh;
  padding: 36px 0 70px;
  background: #f5f7fb;
}

.professionals-page {
  min-height: 100vh;
  padding: 36px 0 70px;
  background: #f5f7fb;
}

.professionals-shell {
  display: grid;
  gap: 24px;
}

.professionals-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 300px;
  padding: 36px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(8, 20, 46, 0.96), rgba(15, 23, 42, 0.88)),
    url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1600&q=82") center / cover no-repeat;
  border-radius: 26px;
  box-shadow: 0 22px 50px rgba(8, 20, 46, 0.16);
}

.professionals-hero h1 {
  max-width: 760px;
  margin: 8px 0 12px;
  color: #fff;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.08;
}

.professionals-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
}

.professionals-search .search-grid {
  grid-template-columns: 1.6fr 1fr 0.8fr;
}

.professional-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.professional-category-card {
  min-height: 220px;
  padding: 26px;
  background: #fff;
  border: 1px solid rgba(8, 20, 46, 0.08);
  border-radius: 22px;
  box-shadow: 0 16px 38px rgba(8, 20, 46, 0.07);
}

.professional-category-card span {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  margin-bottom: 18px;
  color: var(--gold);
  background: var(--navy);
  border-radius: 18px;
  font-size: 23px;
}

.professional-category-card h2 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 18px;
}

.professional-category-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.professional-empty .catalog-empty-hero {
  min-height: 320px;
}

.professional-request-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: stretch;
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(8, 20, 46, 0.08);
  border-radius: 26px;
  box-shadow: 0 18px 44px rgba(8, 20, 46, 0.08);
}

.professional-request-copy {
  padding: 28px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(8, 20, 46, 0.98), rgba(15, 23, 42, 0.9)),
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1100&q=80") center / cover no-repeat;
  border-radius: 22px;
}

.professional-request-copy h2 {
  margin: 10px 0 12px;
  color: #fff;
  font-size: 30px;
  line-height: 1.15;
}

.professional-request-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

.professional-request-points {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.professional-request-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.professional-request-points i {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: var(--navy);
  background: var(--gold-2);
  border-radius: 999px;
  font-size: 12px;
}

.professional-request-form {
  display: grid;
  gap: 16px;
}

.professional-profile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.professional-profile-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(8, 20, 46, 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(8, 20, 46, 0.08);
}

.professional-profile-card > a {
  display: block;
}

.professional-profile-card > a img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.professional-profile-card:hover > a img {
  transform: scale(1.035);
}

.professional-profile-card > div:not(.professional-work-strip) {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.professional-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.professional-profile-card h2 {
  margin: 0;
  color: var(--navy);
  font-size: 20px;
}

.professional-profile-card h2 a {
  color: inherit;
}

.professional-profile-card p {
  display: -webkit-box;
  min-height: 64px;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  line-height: 1.6;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.professional-profile-card small {
  color: var(--navy);
  font-weight: 700;
}

.professional-work-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  padding: 0 20px 20px;
}

.professional-work-strip img {
  width: 100%;
  height: 78px;
  object-fit: cover;
  border-radius: 12px;
}

.professional-profile-submit-panel {
  display: grid;
  gap: 22px;
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(8, 20, 46, 0.08);
  border-radius: 26px;
  box-shadow: 0 18px 44px rgba(8, 20, 46, 0.08);
}

.professional-profile-submit-head h2 {
  margin: 8px 0 10px;
  color: var(--navy);
  font-size: 30px;
}

.professional-profile-submit-head p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.professional-plan-picker,
.professional-plan-admin-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.professional-plan-option {
  position: relative;
  display: block;
}

.professional-plan-option input {
  position: absolute;
  inset: 18px auto auto 18px;
  accent-color: var(--gold);
}

.professional-plan-option span,
.professional-plan-admin-card {
  display: grid;
  gap: 10px;
  height: 100%;
  padding: 20px;
  border: 1px solid rgba(8, 20, 46, 0.12);
  border-radius: 22px;
  background: linear-gradient(145deg, #fff, #f8fafc);
  box-shadow: 0 18px 45px rgba(8, 20, 46, 0.08);
}

.professional-plan-option span {
  padding-left: 48px;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.professional-plan-option input:checked + span {
  border-color: rgba(212, 175, 55, 0.75);
  box-shadow: 0 24px 58px rgba(212, 175, 55, 0.16);
  transform: translateY(-2px);
}

.professional-plan-option strong,
.professional-plan-admin-card h3 {
  color: var(--navy);
  font-size: 1.05rem;
}

.professional-plan-option em {
  color: var(--gold-dark);
  font-style: normal;
  font-weight: 800;
}

.professional-plan-option small {
  color: var(--muted);
  line-height: 1.6;
}

.plan-switch-row {
  display: grid;
  gap: 10px;
}

.professional-file-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.professional-upload-field {
  position: relative;
  align-content: start;
  gap: 10px;
  margin-bottom: 0;
}

.professional-upload-field > input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.professional-upload-box {
  display: grid;
  min-height: 142px;
  place-items: center;
  gap: 8px;
  padding: 18px;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
  border: 1px dashed rgba(8, 20, 46, 0.22);
  border-radius: 20px;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.professional-upload-box i {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--gold-2);
  background: rgba(212, 175, 55, 0.13);
  border-radius: 16px;
  font-size: 20px;
}

.professional-upload-box strong {
  color: var(--navy);
  font-size: 14px;
}

.professional-upload-box small {
  max-width: 210px;
  color: var(--muted);
  line-height: 1.45;
}

.professional-upload-field:hover .professional-upload-box,
.professional-upload-field:focus-within .professional-upload-box {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.72);
  box-shadow: 0 18px 34px rgba(8, 20, 46, 0.08);
}

.professional-file-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  min-height: 0;
}

.professional-file-thumb {
  position: relative;
  min-height: 84px;
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid rgba(8, 20, 46, 0.1);
  border-radius: 14px;
}

.professional-file-thumb img,
.professional-file-thumb video {
  display: block;
  width: 100%;
  height: 84px;
  object-fit: cover;
}

.professional-file-thumb.is-file {
  display: grid;
  place-items: center;
  gap: 4px;
  padding: 10px;
  color: var(--navy);
  text-align: center;
}

.professional-file-thumb.is-file i {
  color: var(--gold-2);
  font-size: 22px;
}

.professional-file-thumb span {
  display: block;
  width: 100%;
  overflow: hidden;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(8, 20, 46, 0.12);
}

.btn-small {
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 12px;
}

.professional-detail-page {
  min-height: 100vh;
  padding: 36px 0 70px;
  background: #f5f7fb;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(var(--compare-count), minmax(220px, 1fr));
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.compare-card {
  min-width: 240px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(8, 20, 46, 0.08);
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(8, 20, 46, 0.08);
}

.compare-card > img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.compare-card-body {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.compare-card h2 {
  min-height: 56px;
  margin: 0;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.35;
}

.compare-card strong {
  color: var(--gold-2);
  font-size: 20px;
}

.compare-facts {
  display: grid;
  gap: 10px;
  margin: 0;
}

.compare-facts div {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(8, 20, 46, 0.08);
}

.compare-facts dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.compare-facts dd {
  margin: 0;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  text-align: right;
}

.compare-actions {
  display: grid;
  gap: 10px;
}

.professional-detail-shell {
  display: grid;
  gap: 24px;
}

.professional-detail-hero {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 28px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(8, 20, 46, 0.98), rgba(15, 23, 42, 0.9)),
    url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1400&q=80") center / cover no-repeat;
  border-radius: 28px;
  box-shadow: 0 22px 50px rgba(8, 20, 46, 0.16);
}

.professional-detail-hero > img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 5px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
}

.professional-detail-hero h1 {
  margin: 14px 0 8px;
  color: #fff;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
}

.professional-detail-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.professional-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.professional-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
  gap: 24px;
}

.professional-detail-card h2 {
  margin: 0 0 14px;
  color: var(--navy);
}

.professional-detail-card p {
  color: var(--muted);
  line-height: 1.8;
}

.professional-detail-works {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.professional-detail-works img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
}

.inline-status-form {
  display: flex;
  gap: 8px;
  align-items: center;
}

.inline-status-form select {
  min-width: 130px;
  padding: 10px 12px;
  border: 1px solid rgba(8, 20, 46, 0.12);
  border-radius: 12px;
  background: #fff;
  color: var(--navy);
  font-weight: 700;
}

.inline-status-form input[type="text"] {
  min-width: 150px;
  padding: 10px 12px;
  border: 1px solid rgba(8, 20, 46, 0.12);
  border-radius: 12px;
}

.visit-request-form {
  display: grid;
  gap: 14px;
}

.visit-requests-card {
  margin-bottom: 22px;
}

.properties-shell {
  display: grid;
  gap: 24px;
}

.properties-hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.properties-hero h1 {
  max-width: 760px;
  margin: 6px 0 10px;
  color: var(--navy);
  font-size: 38px;
  line-height: 1.12;
}

.properties-hero p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
}

.properties-filter {
  margin: 0;
}

.properties-filter .search-grid {
  grid-template-columns: 1.35fr repeat(4, minmax(0, 1fr)) auto;
}

.properties-filter .field {
  min-width: 0;
}

.properties-filter .field input,
.properties-filter .field select {
  width: 100%;
}

.properties-filter .search-btn {
  min-width: 9.5rem;
}

.property-body .distance {
  margin: -0.35rem 0 0.65rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
}

.search-empty-banner {
  display: grid;
  grid-template-columns: 62px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 22px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(8, 20, 46, 0.98), rgba(15, 23, 42, 0.92)),
    url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1200&q=80") center / cover no-repeat;
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(8, 20, 46, 0.14);
}

.search-empty-banner > span {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  font-size: 24px;
}

.search-empty-banner h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 24px;
  line-height: 1.2;
}

.search-empty-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.properties-results {
  display: grid;
  gap: 18px;
}

.payment-layout {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 22px;
  align-items: start;
}

.receipt-page {
  min-height: 100vh;
  padding: 130px 20px 60px;
  background: #f6f8fb;
}

.receipt-shell {
  width: min(100%, 920px);
  margin: 0 auto;
}

.receipt-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 18px;
}

.receipt-document {
  padding: 42px;
  border: 1px solid rgba(8, 20, 46, 0.1);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(8, 20, 46, 0.12);
}

.receipt-header,
.receipt-summary,
.receipt-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.receipt-header {
  align-items: flex-start;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.receipt-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.receipt-brand img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.receipt-brand h1,
.receipt-number strong {
  margin: 0;
  color: var(--navy);
}

.receipt-brand p,
.receipt-number span,
.receipt-summary span,
.receipt-summary small,
.receipt-table small,
.receipt-footer p,
.receipt-footer span {
  color: var(--muted);
}

.receipt-number {
  text-align: right;
}

.receipt-number strong {
  display: block;
  margin-top: 6px;
  font-size: 26px;
}

.receipt-summary {
  padding: 28px 0;
}

.receipt-summary div {
  display: grid;
  gap: 6px;
}

.receipt-summary strong {
  color: var(--navy);
  font-size: 18px;
}

.receipt-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.receipt-table th,
.receipt-table td {
  padding: 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.receipt-table th {
  color: var(--navy);
  background: #f8fafc;
}

.receipt-table td small,
.receipt-table td strong {
  display: block;
}

.receipt-footer {
  align-items: flex-end;
  padding-top: 28px;
}

.receipt-footer strong {
  color: #17603a;
}

.receipt-footer div:last-child {
  display: grid;
  gap: 6px;
  text-align: right;
}

.geo-permission-card {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(8, 20, 46, 0.98), rgba(15, 23, 42, 0.94));
  color: #fff;
}

.geo-permission-card h2,
.geo-permission-card p {
  margin: 0;
  color: inherit;
}

.geo-permission-card p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.geo-permission-card .btn {
  width: fit-content;
}

.promo-publication-card {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
  padding: 24px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(8, 20, 46, 0.98), rgba(15, 23, 42, 0.92)),
    url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1200&q=80") center/cover;
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(8, 20, 46, 0.15);
}

.promo-publication-card > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 12px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.promo-publication-card h2 {
  margin: 0;
  color: #fff;
  font-size: 26px;
}

.promo-publication-card p,
.promo-publication-card small {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.promo-publication-card small {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
}

.phone-prefix-select {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 10px;
}

.flag-icon {
  display: inline-grid;
  place-items: center;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f8fafc;
  font-size: 22px;
  font-weight: 800;
}

.country-settings-table input,
.country-settings-table select {
  width: 100%;
  min-width: 92px;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
}

.country-settings-table td:first-child input {
  min-width: 150px;
  margin-top: 6px;
}

.country-settings-table .is-pending-country,
.admin-table tr.is-pending-country {
  background: #fff7ed;
}

.payment-instructions h2 {
  margin-top: 0;
}

.payment-number {
  display: grid;
  gap: 6px;
  margin: 16px 0;
  padding: 16px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.payment-number span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.payment-number strong {
  color: var(--navy);
  font-size: 24px;
}

.site-footer {
  color: var(--white);
  background: var(--navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.95fr 1.2fr;
  gap: 56px;
  padding: 38px 0 28px;
}

.footer-brand strong {
  color: var(--white);
}

.footer-brand small {
  color: rgba(212, 175, 55, 0.95);
}

.site-footer .footer-brand {
  display: inline-flex;
  width: auto;
  padding: 8px 12px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
}

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

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.75;
}

.site-footer p {
  margin: 0 0 8px;
}

.footer-contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-grid > div:last-child p {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact-line i,
.site-footer p > i {
  display: inline-flex;
  flex: 0 0 18px;
  width: 18px;
  justify-content: center;
  color: rgba(212, 175, 55, 0.98);
  font-size: 15px;
  line-height: 1;
}

.footer-contact-line a {
  display: inline-flex;
  align-items: center;
  line-height: 1.35;
}

.footer-grid > div:last-child p a {
  display: inline-flex;
  align-items: center;
  line-height: 1.35;
}

.site-footer h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 15px;
}

.site-footer a {
  display: block;
}

.socials {
  display: flex;
  gap: 20px;
  margin-top: 18px;
}

.socials a {
  font-size: 18px;
}

.footer-bottom {
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-bottom div {
  display: flex;
  gap: 38px;
}

@media (max-width: 1080px) {
  .main-nav {
    display: none;
  }

  .hero-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 40px;
  }

  .agent-panel {
    flex-basis: auto;
    width: min(635px, 100%);
  }

  .type-grid,
  .property-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .search-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, 520px);
  }

  .site-header {
    position: fixed;
    padding: 16px 0 18px;
    background:
      linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 20px 45px rgba(8, 20, 46, 0.08);
  }

  body {
    padding-top: 88px;
  }

  .nav-wrap,
  .cta-strip,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .nav-wrap {
    gap: 14px;
  }

  .brand {
    width: 100%;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(8, 20, 46, 0.07);
    border-radius: 18px;
    box-shadow: 0 14px 32px rgba(8, 20, 46, 0.08);
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 0;
  }

  .brand strong {
    font-size: 20px;
  }

  .header-actions {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 10px;
    min-width: 0;
    width: 100%;
  }

  .language-menu {
    width: 100%;
  }

  .language-menu summary {
    justify-content: center;
    width: 100%;
    min-height: 58px;
    padding: 0 12px;
    border-radius: 16px;
    background: #ffffff;
  }

  .language-options {
    right: auto;
    left: 0;
    width: min(260px, calc(100vw - 32px));
  }

  .call-card {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    padding: 10px 14px;
    border-radius: 16px;
  }

  .call-card i {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    background: rgba(212, 175, 55, 0.13);
    border-radius: 50%;
    font-size: 17px;
  }

  .site-header > .container > .header-actions .call-card span {
    font-size: 11px;
  }

  .call-card strong {
    font-size: 16px;
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 52%, rgba(255, 255, 255, 0.76) 100%),
      url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1200&q=85") center / cover no-repeat;
  }

  .hero-grid {
    padding: 44px 0 104px;
  }

  .eyebrow {
    gap: 10px;
    margin-bottom: 20px;
    font-size: 11px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 31px;
    line-height: 1.12;
  }

  .hero-text {
    max-width: 100%;
    margin: 18px 0 0;
    font-size: 14px;
    line-height: 1.75;
  }

  .hero-bottom {
    gap: 18px;
    margin-top: 28px;
    margin-bottom: 0;
  }

  .hero-actions {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .hero-actions .btn {
    min-height: 56px;
    padding: 0 12px;
    border-radius: 12px;
    font-size: 14px;
  }

  .home-promo-banner {
    align-items: stretch;
    flex-direction: column;
    padding: 20px;
    border-radius: 22px;
  }

  .home-promo-banner h2 {
    font-size: 22px;
  }

  .home-promo-banner .btn {
    width: 100%;
    justify-content: center;
  }

  .agent-panel,
  .agent-panel article,
  .tabs,
  .search-grid,
  .type-grid,
  .workflow-grid,
  .location-grid,
  .trust-grid,
  .property-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .ad-section {
    padding: 22px 0 8px;
  }

  .ad-leaderboard,
  .ad-wide,
  .ad-inline,
  .ad-native-row {
    min-height: 120px;
  }

  .agent-panel {
    display: grid;
    width: 100%;
    min-height: auto;
    gap: 0;
    padding: 22px;
    margin-bottom: 0;
    border-radius: 22px;
    box-shadow: 0 24px 55px rgba(8, 20, 46, 0.24);
  }

  .agent-panel article {
    grid-template-columns: 36px 1fr;
    gap: 13px;
    padding: 0;
  }

  .agent-panel article + article {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-left: 0;
  }

  .agent-panel i {
    font-size: 27px;
  }

  .agent-panel h3 {
    font-size: 11px;
  }

  .agent-panel p {
    font-size: 10.5px;
    line-height: 1.55;
  }

  .tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 12px;
    border-bottom: 1px solid var(--line);
    scrollbar-width: none;
  }

  .tabs::-webkit-scrollbar {
    display: none;
  }

  .tab {
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    height: 46px;
    gap: 8px;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 13px;
    background: #fff;
  }

  .tab i {
    width: 18px;
    height: 18px;
    margin-right: 0;
    flex-basis: 18px;
    font-size: 15px;
  }

  .tab.active {
    color: var(--white);
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    border-color: transparent;
    box-shadow: 0 12px 24px rgba(212, 175, 55, 0.22);
  }

  .tab.active i {
    color: var(--white);
  }

  .search-section {
    margin-top: -58px;
  }

  .search-box {
    border-radius: 20px;
  }

  .search-grid {
    gap: 12px;
    padding: 16px;
  }

  .field,
  .search-btn {
    min-height: 52px;
    border-radius: 14px;
  }

  .section {
    padding: 30px 0;
  }

  .section-title h2 {
    font-size: 25px;
  }

  .workflow-card {
    min-height: auto;
    padding: 24px;
  }

  .workflow-cta {
    align-items: stretch;
    flex-direction: column;
    padding: 22px;
  }

  .workflow-cta h3 {
    font-size: 21px;
  }

  .workflow-cta .cta-actions,
  .workflow-cta .btn {
    width: 100%;
  }

  .workflow-cta .btn {
    justify-content: center;
  }

  .location-card {
    grid-template-columns: 48px 1fr;
  }

  .location-card strong {
    grid-column: 2;
    width: fit-content;
  }

  .type-card {
    border-radius: 22px;
  }

  .type-card img {
    height: 134px;
  }

  .section-head {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .trust-item + .trust-item {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .cta-strip {
    padding: 28px;
  }

  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .auth-page {
    padding: 112px 0 42px;
  }

  .auth-shell {
    width: min(100% - 32px, 520px);
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .auth-visual {
    min-height: auto;
    padding: 26px;
    border-radius: 22px;
  }

  .auth-visual h1 {
    font-size: 28px;
  }

  .auth-card {
    padding: 24px;
    border-radius: 22px;
  }

  .auth-card-head h2 {
    font-size: 24px;
  }

  .auth-grid,
  .phone-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .admin-page {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    height: auto;
    padding: 18px;
  }

  .admin-sidebar nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-content {
    padding: 20px 14px;
  }

  .admin-topbar {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-stats,
  .admin-grid,
  .system-reset-summary {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .finance-export-form {
    grid-template-columns: 1fr;
  }

  .review-list {
    grid-template-columns: 1fr;
  }

  .dashboard-page {
    padding: 112px 0 42px;
  }

  .dashboard-shell {
    width: min(100% - 32px, 520px);
  }

  .dashboard-head {
    align-items: stretch;
    flex-direction: column;
  }

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

  .property-tracking-card {
    flex-direction: column;
    gap: 18px;
    border-radius: 20px;
  }

  .property-card-side {
    align-items: stretch;
    min-width: 0;
    padding-top: 16px;
    border-top: 1px solid rgba(8, 20, 46, 0.08);
  }

  .property-card-side strong {
    font-size: 17px;
  }

  .property-card-actions,
  .property-card-actions .btn {
    width: 100%;
  }

  .property-card-actions {
    flex-direction: column;
  }

  .admin-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-actions form,
  .reject-reason-field {
    width: 100%;
  }

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

  .promo-status-card,
  .promo-admin-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .promo-status-card .btn,
  .promo-admin-panel .switch-field {
    width: 100%;
  }

  .switch-field {
    justify-content: space-between;
    min-width: 0;
    padding-top: 4px;
  }

  .promo-publication-card {
    padding: 20px;
    border-radius: 20px;
  }

  .promo-publication-card h2 {
    font-size: 22px;
  }

  .media-upload-panel {
    padding: 18px;
    border-radius: 18px;
  }

  .media-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .property-detail-page {
    padding: 112px 0 42px;
  }

  .property-detail-head {
    align-items: stretch;
    flex-direction: column;
  }

  .property-detail-head h1 {
    font-size: 28px;
  }

  .property-detail-head strong {
    font-size: 22px;
  }

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

  .gallery-main {
    min-height: 260px;
    border-radius: 20px;
  }

  .property-hero-card,
  .property-guidance-grid {
    grid-template-columns: 1fr;
  }

  .property-detail-info-grid,
  .property-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .property-hero-card,
  .property-guidance-card,
  .property-related-section {
    padding: 18px;
    border-radius: 20px;
  }

  .property-price-panel {
    padding: 18px;
  }

  .property-price-panel strong {
    font-size: 26px;
  }

  .properties-page {
    padding: 24px 0 42px;
  }

  .professionals-page {
    padding: 24px 0 42px;
  }

  .professionals-hero {
    align-items: stretch;
    flex-direction: column;
    min-height: 360px;
    padding: 26px 20px;
    border-radius: 22px;
  }

  .professionals-hero h1 {
    font-size: 30px;
  }

  .professionals-hero .btn {
    width: 100%;
    justify-content: center;
  }

  .professionals-search .search-grid,
  .professional-category-grid {
    grid-template-columns: 1fr;
  }

  .professional-request-panel {
    grid-template-columns: 1fr;
    padding: 16px;
    border-radius: 22px;
  }

  .professional-profile-grid,
  .professional-plan-picker,
  .professional-plan-admin-grid,
  .professional-file-grid {
    grid-template-columns: 1fr;
  }

  .professional-profile-submit-panel {
    padding: 18px;
    border-radius: 22px;
  }

  .professional-file-preview {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .professional-detail-page {
    padding: 24px 0 42px;
  }

  .professional-detail-hero,
  .professional-detail-layout,
  .professional-detail-works,
  .compare-grid {
    grid-template-columns: 1fr;
  }

  .professional-detail-hero {
    padding: 18px;
    border-radius: 22px;
  }

  .professional-detail-actions,
  .professional-detail-actions .btn {
    width: 100%;
  }

  .professional-detail-actions .btn {
    justify-content: center;
  }

  .professional-request-copy {
    padding: 22px;
  }

  .professional-request-copy h2 {
    font-size: 24px;
  }

  .inline-status-form {
    align-items: stretch;
    flex-direction: column;
  }

  .properties-hero {
    align-items: stretch;
    flex-direction: column;
  }

  .properties-hero h1 {
    font-size: 28px;
  }

  .properties-hero p {
    font-size: 13px;
    line-height: 1.65;
  }

  .properties-filter .search-grid {
    grid-template-columns: 1fr;
  }

  .search-empty-banner {
    grid-template-columns: 1fr;
    padding: 20px;
    text-align: left;
  }

  .search-empty-banner h2 {
    font-size: 21px;
  }

  .search-empty-banner .btn {
    width: 100%;
    justify-content: center;
  }

  .catalog-empty-hero {
    min-height: 420px;
    padding: 30px 18px;
    border-radius: 22px;
  }

  .catalog-empty-hero h2 {
    font-size: 25px;
  }

  .catalog-empty-hero p {
    font-size: 13px;
    line-height: 1.7;
  }

  .catalog-empty-grid {
    grid-template-columns: 1fr;
  }

  .catalog-empty-grid article {
    min-height: 170px;
  }

  .rich-empty-card {
    min-height: 430px;
    padding: 34px 18px;
    border-radius: 22px;
  }

  .empty-state-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .admin-detail-grid,
  .detail-facts-grid {
    grid-template-columns: 1fr;
  }

  .gallery-main {
    aspect-ratio: 4 / 3;
    border-radius: 20px;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .receipt-header,
  .receipt-summary,
  .receipt-footer {
    flex-direction: column;
  }

  .receipt-number,
  .receipt-footer div:last-child {
    text-align: left;
  }

  .receipt-document {
    padding: 24px;
  }

  .messages-page {
    padding: 24px 0 42px;
  }

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

  .support-layout,
  .admin-support-layout,
  .member-profile-layout {
    grid-template-columns: 1fr;
  }

  .member-profile-page {
    padding: 24px 0 42px;
  }

  .member-profile-hero,
  .member-stats-grid {
    grid-template-columns: 1fr;
  }

  .member-profile-hero {
    text-align: left;
  }

  .support-status-form {
    grid-template-columns: 1fr;
  }

  .messages-inbox,
  .messages-thread {
    border-radius: 22px;
  }

  .message-bubbles {
    max-height: none;
  }

  .message-bubble {
    width: min(100%, 30rem);
  }

  .nav-wrap {
    display: grid;
    grid-template-columns: 1fr 52px;
    align-items: center;
    gap: 12px;
  }

  .site-header .brand {
    width: auto;
    min-width: 0;
    justify-content: center;
    padding: 8px 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .site-header .brand-mark {
    width: 42px;
    height: 42px;
  }

  .site-header .brand-logo {
    width: min(250px, calc(100vw - 126px));
    max-height: 64px;
  }

  .site-header .brand strong {
    font-size: 18px;
  }

  .site-header .brand small {
    font-size: 10px;
  }

  .site-header > .container > .header-actions {
    display: none;
  }

  .nav-toggler {
    display: inline-grid;
    width: 52px;
    height: 48px;
    place-items: center;
    padding: 13px;
    background: var(--navy);
    border-radius: 14px;
    box-shadow: 0 16px 30px rgba(8, 20, 46, 0.18);
    cursor: pointer;
  }

  .nav-toggler span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .nav-toggle:checked + .nav-toggler span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle:checked + .nav-toggler span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked + .nav-toggler span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-menu {
    grid-column: 1 / -1;
    display: none;
    max-height: calc(100dvh - 104px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 14px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(8, 20, 46, 0.08);
    border-radius: 22px;
    box-shadow: 0 24px 55px rgba(8, 20, 46, 0.14);
    -webkit-overflow-scrolling: touch;
  }

  .nav-toggle:checked ~ .mobile-menu {
    display: grid;
    gap: 14px;
  }

  .mobile-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .mobile-nav a {
    display: flex;
    align-items: center;
    min-height: 46px;
    gap: 9px;
    padding: 0 12px;
    color: var(--navy);
    background: #f8fafc;
    border: 1px solid rgba(8, 20, 46, 0.07);
    border-radius: 14px;
    font-size: 13px;
    font-weight: 700;
  }

  .mobile-nav a i {
    color: var(--gold-2);
  }

  .mobile-nav a.active {
    color: var(--white);
    background: var(--navy);
  }

  .mobile-nav a.active i {
    color: var(--gold);
  }

  .mobile-menu-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mobile-menu .language-menu {
    position: static;
  }

  .mobile-menu .language-options {
    position: static;
    width: 100%;
    max-height: none;
    margin-top: 8px;
    overflow: visible;
    box-shadow: none;
  }

  .mobile-language summary,
  .mobile-call {
    min-height: 54px;
    border-radius: 16px;
  }

  .mobile-call {
    padding: 10px 13px;
  }

  .mobile-call span {
    display: block;
  }

  .type-grid,
  .trust-grid,
  .property-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .type-card {
    border-radius: 18px;
    padding-bottom: 18px;
  }

  .type-card img {
    height: 96px;
  }

  .floating-icon {
    width: 46px;
    height: 46px;
    margin-top: -23px;
  }

  .type-card h3,
  .trust-item h3,
  .property-body h3 {
    font-size: 13px;
  }

  .type-card p {
    min-height: 0;
    margin: 8px auto 14px;
    padding: 0 10px;
    font-size: 11px;
    line-height: 1.55;
  }

  .type-card-link,
  .see-all {
    font-size: 11px;
  }

  .professional-upload-box {
    min-height: 128px;
  }

  .professional-file-preview {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-item {
    padding: 18px 10px;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 12px 24px rgba(8, 20, 46, 0.05);
  }

  .trust-item + .trust-item {
    border-left: 1px solid var(--line);
    border-top: 1px solid var(--line);
    border-radius: 18px;
  }

  .trust-item span {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
  }

  .trust-item p {
    font-size: 10.5px;
    line-height: 1.5;
  }

  .property-card {
    border-radius: 16px;
  }

  .property-media img {
    height: 98px;
  }

  .property-body {
    padding: 12px;
  }

  .location,
  .property-meta {
    font-size: 10.5px;
  }

  .property-meta {
    gap: 7px;
  }

  .property-meta strong {
    width: 100%;
    margin-left: 0;
    font-size: 12px;
  }

  .site-footer {
    padding-top: 8px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 26px 0 18px;
  }

  .footer-grid > div {
    padding: 16px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
  }

  .footer-grid > div:first-child,
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-brand {
    width: 100%;
    justify-content: center;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .footer-brand-logo {
    width: min(220px, 100%);
  }

  .footer-contact-line {
    justify-content: center;
  }

  .site-footer p,
  .site-footer a {
    font-size: 12px;
  }

  .socials {
    gap: 16px;
  }

  .footer-bottom {
    align-items: center;
    gap: 10px;
    padding-bottom: 18px;
    text-align: center;
  }

  .footer-bottom div {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }
}


/* Ajustements mobiles spécifiques */
@media (max-width: 480px) {
  .brand span:last-child {
    font-size: 0.9em; /* Réduit légèrement la taille du texte pour éviter le débordement */
  }

  .call-card span {
    display: none; /* Cache le texte "Nous contacter" pour gagner de la place */
  }

  .site-header > .container > .header-actions .call-card {
    min-width: 58px; /* Transforme le bouton en bouton icône simple */
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    overflow: visible;
    padding: 12px;
  }

  .tab {
    width: 100%;
    min-width: 0;
    justify-content: center;
    gap: 7px;
    padding: 0 10px;
    white-space: nowrap;
    text-align: center;
    line-height: 1.2;
    font-size: 12px;
  }

  .tab i {
    width: 17px;
    height: 17px;
    flex-basis: 17px;
    font-size: 14px;
  }

  .hero h1 {
    font-size: 26px; /* Taille plus adaptée aux écrans de téléphone */
    word-break: break-word;
  }

  .hero-text {
    font-size: 13px;
    line-height: 1.6;
  }

  .btn {
    font-size: 13px !important;
    min-height: 50px !important;
  }

  .mobile-nav {
    grid-template-columns: 1fr;
  }

  .mobile-menu-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .legacy-unused-type-card img {
    height: 160px; /* Augmente légèrement la hauteur pour un meilleur impact visuel */
  }

  .property-meta span {
    font-size: 11px; /* Compresse légèrement les métadonnées pour rester sur une ligne */
  }

  .dashboard-shell .admin-grid {
    grid-template-columns: 1fr;
  }

  .team-layout,
  .team-role-grid,
  .team-inline-form {
    grid-template-columns: 1fr;
  }

  .admin-card {
    min-width: 0;
  }

  .admin-card a {
    overflow-wrap: anywhere;
  }

  .container {
    width: min(100% - 24px, 520px);
  }
}

@media print {
  .site-header,
  .site-footer,
  .no-print {
    display: none !important;
  }

  .receipt-page {
    padding: 0;
    background: #fff;
  }

  .receipt-document {
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
}

@media (max-width: 480px) {
  .gallery-main {
    min-height: 220px;
  }

  .gallery-thumbs,
  .property-detail-info-grid,
  .property-related-grid {
    grid-template-columns: 1fr;
  }

  .property-media-strip span {
    width: 100%;
    justify-content: center;
  }

  .property-info-tile {
    min-height: auto;
  }
}
