/* ==========================================================================
   IMOBILIÁRIA TESTE ZONA LESTE - COMPLETE MASTER DESIGN SYSTEM & INNER PAGES
   BARRA CÁPSULA (16% VERMELHO TRANSLÚCIDO) + EXPANDIR FERRAMENTAS + CRM INNER PAGES
   ========================================================================== */

:root {
  --color-brand: #111111;           /* Pitch Black / Deep Charcoal for Headings */
  --color-coral: #B91C1C;           /* Light Red / Soft Coral Red Accents */
  --color-coral-hover: #991B1B;     /* Hover State for Red Buttons */
  --color-coral-tint: rgba(185, 28, 28, 0.08); /* Soft Light Red Background Tint */
  --color-bg-site: #FFFFFF;         /* Predominant White Site Background */
  --color-surface: #FFFFFF;        /* Pure White Cards & Panels */
  --color-surface-tint: #FFF8F8;   /* Light Tinted Background */
  --color-text-dark: #1A1A1A;       /* High Legibility Dark Typography */
  --color-text-muted: #666666;      /* Secondary Gray Text */
  --color-line: #EAEAEA;           /* Light Border Line */
  --color-line-red: #F5E6E6;       /* Soft Red Border Line */
  
  --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 16px 36px rgba(0, 0, 0, 0.12);
  --radius-pill: 40px;
  --radius-card: 14px;
  --container: 1180px;
  
  --font-serif: "Playfair Display", "EB Garamond", Georgia, serif;
  --font-sans: "Red Hat Display", "Montserrat", system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--color-bg-site);
  color: var(--color-text-dark);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button, input, select, textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(92%, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: #111;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  z-index: 9999;
}
.skip-link:focus {
  top: 16px;
}

/* FLOATING CAPSULE HEADER BAR (16% Red Translucent Glassmorphism) */
.site-header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: min(94%, 1200px);
  background: rgba(185, 28, 28, 0.16) !important;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.25);
  padding: 10px 24px;
  transition: all 0.3s ease;
}

.site-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  height: 30px;
  max-height: 34px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
}

.footer-logo img {
  height: 28px;
  max-height: 32px;
  width: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav a {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  padding: 4px 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  transition: color 0.2s ease, opacity 0.2s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: #FFE6E6;
  opacity: 1;
}

/* BUTTON SYSTEM */
.btn-pill,
.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-coral);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(185, 28, 28, 0.35);
  cursor: pointer;
  text-align: center;
}

.btn-pill:hover,
.header-cta:hover,
.btn:hover {
  background: var(--color-coral-hover);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(185, 28, 28, 0.45);
}

.btn--primary {
  background: var(--color-coral);
  color: #FFFFFF;
  border-radius: 10px;
}

.btn--secondary {
  background: #111111;
  color: #FFFFFF;
  border-radius: 10px;
}

.btn--soft {
  background: var(--color-surface-tint);
  color: var(--color-coral);
  border: 1px solid var(--color-line-red);
  border-radius: 10px;
}

.btn--outline {
  background: transparent;
  color: var(--color-coral);
  border: 1.5px solid var(--color-coral);
  border-radius: 10px;
}

.btn--outline-dark {
  background: transparent;
  color: var(--color-brand);
  border: 1.5px solid var(--color-brand);
  border-radius: 10px;
}

.btn--danger {
  background: #E53E3E;
  color: #FFFFFF;
  border-radius: 10px;
}

.btn--sm {
  padding: 6px 14px;
  font-size: 12px;
  border-radius: 8px;
}

/* EXPANDIR FERRAMENTAS WIDGET */
.tools-widget {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
  display: flex;
  align-items: center;
}

.tools-widget__tab {
  background: #333333;
  color: #FFFFFF;
  border-radius: 0 14px 14px 0;
  padding: 20px 10px;
  cursor: pointer;
  box-shadow: 4px 0 18px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  user-select: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-left: none;
}

.tools-widget__tab:hover {
  background: #111111;
  padding-right: 14px;
}

.tools-widget__text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.tools-widget__icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tools-widget__panel {
  display: none;
  background: #333333;
  color: #FFFFFF;
  border-radius: 0 18px 18px 0;
  padding: 16px;
  box-shadow: 6px 0 24px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-left: none;
  flex-direction: column;
  gap: 14px;
  animation: slideInLeft 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  min-width: 190px;
}

.tools-widget.is-expanded .tools-widget__tab {
  display: none;
}

.tools-widget.is-expanded .tools-widget__panel {
  display: flex;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.tools-widget__group {
  background: #4A4A4A;
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.tools-widget__btn-link {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 9px 12px;
  background: #222222;
  color: #FFFFFF;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  white-space: nowrap;
}

.tools-widget__btn-link:hover {
  background: #B91C1C;
  color: #FFFFFF;
  transform: translateX(2px);
}

.tools-widget__btn-link svg {
  width: 16px;
  height: 16px;
}

.tools-widget__icons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  justify-items: center;
  align-items: center;
  width: 100%;
}

.tools-widget__icon-btn {
  width: 34px;
  height: 34px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, color 0.2s ease;
}

.tools-widget__icon-btn:hover {
  transform: scale(1.18);
  color: #B91C1C;
}

.tools-widget__icon-btn svg {
  width: 22px;
  height: 22px;
}

.tools-widget__close-btn {
  background: transparent;
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  transition: transform 0.2s ease;
}

.tools-widget__close-btn:hover {
  transform: translateX(-3px);
  color: #B91C1C;
}

/* FULLSCREEN HERO (100vh) */
.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  background-color: #111111;
}

.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/hero.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
  transition: transform 10s ease;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.45) 0%, rgba(17, 17, 17, 0.75) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  color: #FFFFFF;
  max-width: 860px;
  padding: 0 0 80px 0;
}

.hero .welcome-tag {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-coral);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 14px;
  color: #FFFFFF;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.5);
}

.hero .hero-subtitle {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-coral);
  margin: 0 0 14px;
  line-height: 1.3;
}

.hero p:not(.hero-subtitle):not(.welcome-tag) {
  font-size: 17px;
  font-weight: 400;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.92);
  max-width: 720px;
}

/* INNER PAGE HERO (For properties, lead, sell, financing, appointment, etc.) */
.form-hero,
.property-hero,
.page-hero {
  background: linear-gradient(180deg, #111111 0%, #1A1A1A 100%);
  color: #FFFFFF;
  padding: 130px 0 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-hero .eyebrow,
.property-hero .eyebrow,
.page-hero .eyebrow {
  color: var(--color-coral);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.form-hero h1,
.property-hero h1,
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 700;
  margin: 0 0 12px;
  color: #FFFFFF;
}

.form-hero p,
.page-hero p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0;
}

/* SECTION SYSTEM */
.section {
  padding: 80px 0;
}

.section--light {
  background: var(--color-surface-tint);
}

.section-title {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--color-brand);
  margin: 0 0 44px;
}

/* PROPERTY CARDS GRID */
.property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
}

.property-card {
  background: var(--color-surface);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

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

.property-card__image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  display: block;
}

.property-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.property-card:hover .property-card__image img {
  transform: scale(1.07);
}

.property-card__image span {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-coral);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}

.property-card__favorite {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-coral);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  border: none;
  transition: all 0.2s ease;
}

.property-card__favorite:hover {
  background: #FFFFFF;
  color: #991B1B;
  transform: scale(1.1);
}

.property-card__body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.property-card__place {
  color: var(--color-coral);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.property-card__title,
.property-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-brand);
  margin: 0 0 10px;
  line-height: 1.3;
}

.property-card__price,
.property-card__bottom strong {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-coral);
  margin-bottom: 12px;
}

.property-card__specs,
.property-card__features {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--color-line);
}

.property-card__features div {
  display: flex;
  flex-direction: column;
}
.property-card__features dt {
  font-size: 11px;
  text-transform: uppercase;
  color: #888;
}
.property-card__features dd {
  margin: 0;
  font-weight: 700;
  color: var(--color-brand);
}

.property-card__specs span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.property-card__btn {
  margin-top: auto;
  width: 100%;
  padding: 10px 0;
  font-size: 14px;
}

.property-card__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.property-card__actions a {
  text-align: center;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid var(--color-line-red);
  color: var(--color-coral);
  background: var(--color-surface-tint);
  transition: all 0.2s ease;
}

.property-card__actions a:hover {
  background: var(--color-coral);
  color: #FFFFFF;
}

/* CATALOG FILTER PANEL */
.search-panel {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-line);
  margin-bottom: 32px;
}

.search-panel__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.search-panel__head h2 {
  font-family: var(--font-serif);
  font-size: 24px;
  margin: 0;
  color: var(--color-brand);
}

.search-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.search-grid label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-dark);
}

.search-grid input,
.search-grid select,
.system-form input,
.system-form select,
.system-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: #FFFFFF;
  font-size: 14px;
  color: var(--color-text-dark);
  transition: border-color 0.2s ease;
}

.search-grid input:focus,
.search-grid select:focus,
.system-form input:focus,
.system-form select:focus,
.system-form textarea:focus {
  outline: none;
  border-color: var(--color-coral);
  box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.12);
}

.search-panel__submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-coral);
  color: #FFFFFF;
  padding: 12px 28px;
  border-radius: 40px;
  border: none;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.search-panel__submit:hover {
  background: var(--color-coral-hover);
}

.results-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  font-size: 15px;
}

/* FORM SHELL & INNER FORMS */
.form-shell {
  max-width: 860px;
  margin-inline: auto;
}

.system-form,
.content-panel {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 36px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-line);
  margin-bottom: 32px;
}

.system-form h2,
.content-panel h2 {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--color-brand);
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-line);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-dark);
}

/* PROPERTY DETAIL VIEW */
.property-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.property-hero__media img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.property-hero__price {
  font-size: 32px;
  color: var(--color-coral);
  display: block;
  margin: 16px 0;
}

.property-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  background: rgba(255, 255, 255, 0.08);
  padding: 18px;
  border-radius: 12px;
  margin-bottom: 24px;
}

.property-summary dt {
  font-size: 11px;
  text-transform: uppercase;
  opacity: 0.7;
}

.property-summary dd {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.property-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.feature-tags li {
  background: var(--color-surface-tint);
  border: 1px solid var(--color-line-red);
  color: var(--color-brand);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.property-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.property-gallery img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 12px;
}

/* AUTH & CLIENT DASHBOARD */
.auth-shell {
  max-width: 440px;
  margin: 60px auto;
}

.auth-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 36px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-line);
}

/* LOGIN ACCESS & CARDS DESIGN SYSTEM */
.login-access {
  position: relative;
  min-height: 85vh;
  padding: 130px 0 80px;
  background: linear-gradient(135deg, #111111 0%, #1A1A1A 50%, #2A1A1A 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
}

.login-access__shade {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(185, 28, 28, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.login-access__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}

.login-access__copy h1 {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 700;
  margin: 0 0 16px;
  color: #FFFFFF;
  line-height: 1.2;
}

.login-access__copy p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
}

.login-access__badges {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.login-access__badges span {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.06);
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: fit-content;
}

.login-access__badges i,
.login-access__badges svg {
  color: var(--color-coral);
  width: 20px;
  height: 20px;
}

.login-card {
  background: #FFFFFF;
  color: var(--color-text-dark);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.login-card__logo {
  max-height: 38px;
  width: auto;
  margin-bottom: 18px;
  display: block;
}

.login-card .eyebrow {
  color: var(--color-coral);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 4px;
}

.login-card h2 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--color-brand);
  margin: 0 0 6px;
}

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

.login-card label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}

.login-field {
  position: relative;
  display: flex;
  align-items: center;
}

.login-field svg,
.login-field i {
  position: absolute;
  left: 14px;
  width: 18px;
  height: 18px;
  color: #888888;
  pointer-events: none;
}

.login-field input {
  width: 100%;
  padding: 12px 14px 12px 42px;
  border: 1px solid var(--color-line);
  border-radius: 10px;
  font-size: 14px;
  background: #FFFFFF;
  transition: all 0.2s ease;
}

.login-field input:focus {
  outline: none;
  border-color: var(--color-coral);
  box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.15);
}

.login-card__submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-coral);
  color: #FFFFFF;
  padding: 13px;
  border-radius: 10px;
  border: none;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.login-card__submit:hover {
  background: var(--color-coral-hover);
  transform: translateY(-2px);
}

.login-card__links {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--color-line);
  font-size: 13px;
}

.login-card__links a {
  color: var(--color-coral);
  font-weight: 600;
  transition: color 0.2s ease;
}

.login-card__links a:hover {
  color: var(--color-coral-hover);
  text-decoration: underline;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.stat-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-card);
}

.stat-card strong {
  font-size: 28px;
  color: var(--color-coral);
  display: block;
}

/* TABLES & BADGES */
.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

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

.table th {
  background: var(--color-surface-tint);
  font-weight: 700;
  color: var(--color-brand);
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.badge--success {
  background: #DEF7EC;
  color: #03543F;
}

.badge--warning {
  background: #FEF08A;
  color: #713F12;
}

.badge--danger {
  background: #FDE8E8;
  color: #9B1C1C;
}

/* FLASH NOTIFICATIONS */
.flash-stack {
  position: fixed;
  top: 90px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.flash {
  padding: 14px 20px;
  border-radius: 10px;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.flash--success {
  background: #25D366;
  color: #fff;
}

.flash--error,
.flash--danger {
  background: #E53E3E;
  color: #fff;
}

/* WHY CHOOSE SECTION */
.why-choose {
  background: var(--color-surface-tint);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  padding: 80px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: #FFFFFF;
  color: var(--color-coral);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 4px 14px rgba(185, 28, 28, 0.15);
  border: 1px solid var(--color-line);
}

.why-icon svg {
  width: 28px;
  height: 28px;
}

.why-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-brand);
  margin: 0 0 8px;
}

.why-item p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
  max-width: 310px;
}

/* DOUBLE SPLIT SECTION */
.split-section {
  padding: 80px 0;
  background: #FFFFFF;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.testimonial-box {
  background: var(--color-surface-tint);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid var(--color-line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-box h3 {
  font-family: var(--font-serif);
  font-size: 25px;
  color: var(--color-brand);
  margin: 0 0 18px;
}

.testimonial-quote {
  font-size: 14px;
  color: var(--color-text-dark);
  line-height: 1.7;
  font-style: italic;
  margin: 0 0 24px;
}

.testimonial-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #DDDDDD;
  cursor: pointer;
  transition: all 0.2s ease;
}

.testimonial-dot.is-active {
  background: var(--color-coral);
  width: 20px;
  border-radius: 10px;
}

.news-box h3 {
  font-family: var(--font-serif);
  font-size: 25px;
  color: var(--color-brand);
  margin: 0 0 18px;
  text-align: center;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news-item {
  display: flex;
  gap: 16px;
  background: #FFFFFF;
  border: 1px solid var(--color-line);
  border-radius: 12px;
  padding: 14px;
  align-items: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease;
}

.news-item:hover {
  transform: translateX(4px);
  border-color: var(--color-coral);
}

.news-item img {
  width: 100px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.news-item__content h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-brand);
  margin: 0 0 4px;
  line-height: 1.35;
}

.news-item__content span {
  font-size: 11px;
  color: var(--color-coral);
  font-weight: 600;
}

/* FOOTER */
.site-footer {
  background: #111111;
  color: rgba(255, 255, 255, 0.75);
  padding: 68px 0 28px;
  font-size: 13px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo img {
  height: 44px;
  margin-bottom: 14px;
}

.site-footer h4 {
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 16px;
}

.site-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 8px;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: var(--color-coral);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  background: #25D366;
  color: #FFFFFF;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
}

/* ADMIN PANEL STYLES - COMPLETE MASTER DESIGN SYSTEM */
.admin-body {
  display: flex;
  min-height: 100vh;
  background: #F4F6F9;
  font-family: var(--font-sans);
  color: var(--color-text-dark);
}

.admin-sidebar {
  width: 270px;
  background: #111111;
  color: #FFFFFF;
  padding: 28px 18px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.08);
  z-index: 100;
}

.admin-brand {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
  padding: 0 6px;
}

.admin-brand img {
  height: 26px;
  max-height: 30px;
  width: auto;
  object-fit: contain;
}

.admin-menu {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  overflow-y: auto;
}

.admin-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.admin-menu a svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.admin-menu a:hover {
  background: rgba(185, 28, 28, 0.15);
  color: #B91C1C;
  transform: translateX(3px);
}

.admin-menu a.is-active {
  background: var(--color-coral);
  color: #FFFFFF;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(185, 28, 28, 0.35);
}

.admin-sidebar__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  margin-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 600;
}

.admin-sidebar__foot a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.admin-sidebar__foot a:hover {
  color: var(--color-coral);
}

.admin-shell {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  min-width: 0;
}

.admin-top {
  background: #FFFFFF;
  padding: 20px 36px;
  border-bottom: 1px solid #EAEAEA;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.admin-top .eyebrow {
  color: var(--color-coral);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.admin-top h1 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: #111111;
  margin: 0;
}

.admin-user {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #F9FAFB;
  padding: 8px 16px;
  border-radius: 40px;
  border: 1px solid #EAEAEA;
  font-weight: 700;
  font-size: 13px;
}

.admin-main {
  padding: 32px 36px;
  flex: 1;
  max-width: 1400px;
  width: 100%;
}

/* FLASH NOTIFICATIONS IN ADMIN */
.flash-stack--admin {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.flash {
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.flash--success {
  background: #E6F4EA;
  color: #137333;
  border: 1px solid #CEEAD6;
}

.flash--error {
  background: #FCE8E6;
  color: #C5221F;
  border: 1px solid #FAD2CF;
}

.flash--info {
  background: #E8F0FE;
  color: #1A73E8;
  border: 1px solid #D2E3FC;
}

/* METRICS & STATS CARDS GRID */
.metric-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.metric-card {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 22px;
  border: 1px solid #EAEAEA;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.metric-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: var(--color-coral-tint);
}

.metric-card dt,
.metric-card span {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-muted);
  margin: 0;
}

.metric-card dd,
.metric-card strong {
  font-size: 30px;
  font-weight: 800;
  color: #111111;
  margin: 0;
  line-height: 1.1;
}

/* ADMIN CARDS & CONTAINERS */
.admin-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #EAEAEA;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  margin-bottom: 32px;
}

.admin-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid #F0F0F0;
}

.admin-card__head h2,
.admin-card h2 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: #111111;
  margin: 0;
}

.admin-link {
  color: var(--color-coral);
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.admin-link:hover {
  color: var(--color-coral-hover);
  text-decoration: underline;
}

/* ALERTS SYSTEM LIST */
.alert-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.alert-item {
  background: #FFF8F8;
  border-left: 4px solid var(--color-coral);
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border-top: 1px solid #F5E6E6;
  border-right: 1px solid #F5E6E6;
  border-bottom: 1px solid #F5E6E6;
}

.alert-item p {
  margin: 0;
  font-size: 14px;
  color: #111111;
}

.alert-item strong {
  font-weight: 700;
  color: #111111;
}

/* TABLES SYSTEM */
.table-wrap {
  background: #FFFFFF;
  border-radius: 14px;
  border: 1px solid #EAEAEA;
  overflow-x: auto;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  margin-bottom: 24px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
}

.admin-table th {
  background: #F9FAFB;
  color: #555555;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 18px;
  border-bottom: 1px solid #EAEAEA;
  white-space: nowrap;
}

.admin-table td {
  padding: 14px 18px;
  border-bottom: 1px solid #F3F4F6;
  color: var(--color-text-dark);
  vertical-align: middle;
}

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

.admin-table tr:hover td {
  background: #FFFBFB;
}

.admin-thumb {
  width: 52px;
  height: 38px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid #EAEAEA;
}

.action-links,
.row-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.row-actions--upload {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* CRM / FUNNEL KANBAN BOARD */
.crm-board {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 24px;
  align-items: flex-start;
}

.crm-column {
  background: #F4F5F7;
  border-radius: 16px;
  width: 320px;
  flex-shrink: 0;
  padding: 20px;
  border: 1px solid #E5E7EB;
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 180px);
}

.crm-column header,
.crm-column h3 {
  font-size: 15px;
  font-weight: 700;
  color: #111111;
  margin: 0 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.crm-column header h2 {
  font-size: 15px;
  font-weight: 700;
  color: #111111;
  margin: 0;
}

.crm-column header span {
  background: #E5E7EB;
  color: #374151;
  font-size: 12px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
}

.crm-column__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
  padding-right: 4px;
  min-height: 140px;
}

.crm-card {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  border: 1px solid #EAEAEA;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.crm-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  border-color: #B91C1C;
}

.crm-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.crm-card__top strong,
.crm-card__top h4 {
  font-size: 15px;
  font-weight: 700;
  color: #111111;
  margin: 0;
  line-height: 1.3;
}

.crm-card p {
  margin: 0;
  font-size: 13px;
  color: #4B5563;
  line-height: 1.45;
}

.crm-card small {
  font-size: 12px;
  color: #6B7280;
}

.crm-history {
  background: #F9FAFB;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 12px;
  color: var(--color-text-muted);
  border: 1px solid #F0F0F0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.crm-card__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px dashed #EAEAEA;
}

.crm-card__form select,
.crm-card__form textarea,
.row-actions form select,
.row-actions form textarea {
  width: 100%;
  padding: 9px 12px;
  font-size: 13px;
  border-radius: 8px;
  border: 1px solid #D1D5DB;
  background-color: #F9FAFB;
  color: #1F2937;
  font-family: inherit;
  transition: all 0.2s ease;
}

.crm-card__form select:focus,
.crm-card__form textarea:focus,
.row-actions form select:focus,
.row-actions form textarea:focus {
  outline: none;
  border-color: #B91C1C;
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.12);
}

.crm-card__form textarea,
.row-actions form textarea {
  resize: vertical;
  min-height: 52px;
}

.crm-card__form button,
.row-actions form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(135deg, #B91C1C 0%, #991B1B 100%);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 3px 10px rgba(185, 28, 28, 0.3);
  margin-top: 2px;
}

.crm-card__form button:hover,
.row-actions form button:hover {
  background: linear-gradient(135deg, #991B1B 0%, #CC2929 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(185, 28, 28, 0.4);
}

/* FILTERS & SEARCH */
.admin-filter,
.admin-filter--crm {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 18px 24px;
  border: 1px solid #EAEAEA;
  box-shadow: 0 4px 16px rgba(0,0,0,0.03);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.admin-filter label,
.admin-filter--crm label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
}

/* CLIENT AVATARS & DETAILS */
.admin-client-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}

.client-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #FFFFFF;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  flex-shrink: 0;
}

.client-avatar--small {
  width: 32px;
  height: 32px;
}

.client-avatar--empty {
  background: #EAEAEA;
  color: #666666;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.client-admin-profile {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
}

.client-admin-summary {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #EAEAEA;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

/* FORMS IN ADMIN */
.system-form--admin {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #EAEAEA;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.system-form--compact {
  padding: 18px;
}

.check-card {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  user-select: none;
}

.check-card input[type="checkbox"],
.check-card input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-coral);
  cursor: pointer;
}

.file-upload,
.file-upload--compact {
  border: 2px dashed #D1D5DB;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  background: #FAFAFA;
  transition: border-color 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.file-upload:hover,
.file-upload--compact:hover {
  border-color: var(--color-coral);
  background: #FFF8F8;
}

/* PHOTO MODAL */
.photo-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.photo-modal[hidden] {
  display: none !important;
}

.photo-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  border: none;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.photo-modal__window {
  position: relative;
  z-index: 2;
  background: #FFFFFF;
  border-radius: 16px;
  padding: 16px;
  max-width: 90vw;
  max-height: 90vh;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-modal__window img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 10px;
  object-fit: contain;
}

.photo-modal__close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #111111;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.2s ease, background 0.2s ease;
}

.photo-modal__close:hover {
  background: var(--color-coral);
  transform: scale(1.1);
}

/* AVAILABILITY & TEMPLATES GRID */
.availability-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.availability-row {
  background: #F9FAFB;
  border-radius: 10px;
  padding: 14px 18px;
  border: 1px solid #EAEAEA;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.template-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

/* PROPERTY PHOTO MANAGER & LEAD FILES */
.property-photo-manager {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 14px;
}

.property-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 14px;
  margin-top: 12px;
}

.property-photo-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #EAEAEA;
  aspect-ratio: 4/3;
  background: #F9FAFB;
}

.property-photo-item img,
.property-photo-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lead-files {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.form-grid--compact {
  gap: 12px;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-help {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 4px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .site-header {
    width: 94%;
  }
  .main-nav {
    display: none;
  }
  .hero h1 {
    font-size: 34px;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .split-grid {
    grid-template-columns: 1fr;
  }
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .admin-body {
    flex-direction: column;
  }
  .admin-sidebar {
    width: 100%;
  }
  .property-hero__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 26px;
  }
  .property-grid {
    grid-template-columns: 1fr;
  }
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}
