@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #959387;
  --primary-dark: #585857;
  --secondary: #ad7e5e;
  --light-bg: #eceae4;
  --text: #585857;
  --muted: #7c7c7c;
  --white: #ffffff;
  --cream: #f3f0e5;
  --beige: #dedacf;
  --dark: #222221;
  --border: #dedacf;
  --shadow: 0 16px 38px rgba(34, 34, 33, 0.08);
  --radius: 12px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  font-weight: 300;
}

img {
  max-width: 100%;
  display: block;
}

section,
header,
footer {
  overflow-x: clip;
}

a {
  text-decoration: none;
}

/* NAVBAR */
.navbar-custom {
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(222, 218, 207, 0.8);
  box-shadow: none;
  transition: all 0.3s ease;
}

.navbar-custom.scrolled {
  padding: 10px 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.navbar-brand span {
  color: var(--secondary);
}

.brand-icon {
  width: 44px;
  height: 44px;
  background: var(--light-bg);
  color: var(--secondary) !important;
  border: 1px solid var(--border);
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
}

.nav-link {
  color: var(--primary-dark);
  font-weight: 400;
  margin: 0 6px;
  position: relative;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: "";
  width: 0;
  height: 2px;
  background: var(--secondary);
  position: absolute;
  left: 8px;
  bottom: 0;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 45%;
}

.btn-navbar {
  background: var(--secondary);
  color: var(--white);
  border-radius: 4px;
  padding: 10px 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.btn-navbar:hover {
  background: var(--primary-dark);
  color: var(--white);
}

/* HERO */
.hero-section {
  min-height: 100svh;
  position: relative;
  background: 
    linear-gradient(90deg, rgba(34, 34, 33, 0.76), rgba(88, 88, 87, 0.28)),
    url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1800&q=80');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding-top: 110px;
  padding-bottom: 80px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.38);
  padding: 10px 16px;
  border-radius: 0;
  margin-bottom: 24px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.hero-section h1 {
  font-family: 'Poppins', sans-serif;
  color: var(--white);
  font-size: clamp(2.35rem, 5.2vw, 5rem);
  font-weight: 300;
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}

.hero-section p {
  color: rgba(255, 250, 241, 0.88);
  max-width: 690px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

.btn-main {
  background: var(--secondary);
  color: var(--white);
  border: none;
  border-radius: 4px;
  padding: 13px 26px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
  white-space: normal;
}

.btn-main:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(88, 88, 87, 0.2);
}

.btn-outline-main {
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: var(--white);
  border-radius: 4px;
  padding: 13px 26px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: normal;
}

.btn-outline-main:hover {
  background: var(--white);
  color: var(--primary-dark);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 45px;
}

.hero-stats div {
  min-width: 135px;
}

.hero-stats strong {
  display: block;
  color: var(--secondary);
  font-size: 2rem;
  font-weight: 700;
}

.hero-stats span {
  color: rgba(255, 250, 241, 0.82);
  font-size: 0.9rem;
}

.search-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(222, 218, 207, 0.9);
  max-width: 470px;
  margin-left: auto;
}

.search-card h4 {
  color: var(--primary-dark);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.search-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.form-label,
.contact-form label,
.quick-filter label {
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.form-control,
.form-select {
  border-radius: 4px;
  padding: 13px 15px;
  border: 1px solid var(--border);
  background-color: var(--white);
}

.form-control:focus,
.form-select:focus {
  box-shadow: 0 0 0 4px rgba(173, 126, 94, 0.18);
  border-color: var(--secondary);
}

.btn-search,
.btn-filter {
  background: var(--primary-dark);
  color: var(--white);
  border-radius: 4px;
  padding: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  min-height: 52px;
}

.btn-search:hover,
.btn-filter:hover {
  background: var(--secondary);
  color: var(--white);
}

/* QUICK FILTER */
.quick-filter {
  margin-top: -55px;
  position: relative;
  z-index: 5;
}

.filter-box {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  border: 1px solid var(--border);
}

/* GENERAL */
.section-padding {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 55px;
}

.section-title span,
.mini-title {
  color: var(--secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.section-title h2,
.owner-section h2,
.sell-section h2,
.finance-section h2,
.contact-section h2 {
  font-family: 'Poppins', sans-serif;
  color: var(--primary-dark);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.18;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-top: 12px;
  margin-bottom: 18px;
}

.section-title p,
.owner-section p,
.sell-section p,
.finance-section p,
.contact-section p {
  color: var(--muted);
  line-height: 1.8;
}

/* PROPERTY CARDS */
.property-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 10px 28px rgba(34, 34, 33, 0.06);
  transition: all 0.35s ease;
  height: 100%;
}

.property-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(34, 34, 33, 0.12);
}

.property-img {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.property-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.property-card:hover .property-img img {
  transform: scale(1.08);
}

.property-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--secondary);
  color: var(--white);
  padding: 8px 15px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.property-tag.sale {
  background: var(--primary);
  color: var(--white);
}

.property-body {
  padding: 25px;
}

.property-body h4 {
  font-weight: 500;
  color: var(--primary-dark);
  font-size: 1.15rem;
  line-height: 1.45;
}

.location {
  color: var(--muted);
  margin: 12px 0 18px;
}

.location i {
  color: var(--secondary);
}

.property-description {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
  margin: 0 0 18px;
}

.property-info {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 20px;
}

.property-info span {
  background: var(--light-bg);
  padding: 8px 10px;
  border-radius: 4px;
}

.property-footer {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.property-footer strong {
  color: var(--secondary);
  font-size: 1.25rem;
}

.property-footer a {
  color: var(--secondary);
  font-weight: 700;
}

.property-gallery-count {
  position: absolute;
  right: 18px;
  bottom: 18px;
  background: rgba(34, 34, 33, 0.76);
  color: var(--white);
  border-radius: 4px;
  padding: 7px 11px;
  font-size: 0.82rem;
  font-weight: 600;
}

.empty-properties {
  margin-top: 24px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--light-bg);
  color: var(--primary-dark);
  text-align: center;
  font-weight: 500;
}

/* OWNER */
.owner-section {
  padding: 100px 0;
  background: var(--light-bg);
}

.owner-img {
  border-radius: var(--radius);
  box-shadow: none;
  height: 520px;
  object-fit: cover;
  width: 100%;
}

.owner-list {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.owner-list div {
  background: var(--white);
  padding: 16px 18px;
  border-radius: 4px;
  border: 1px solid var(--border);
  box-shadow: none;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.owner-list i {
  color: var(--secondary);
  margin-top: 3px;
  flex: 0 0 auto;
}

/* BENEFITS */
.benefits-section {
  background: var(--white);
}

.benefit-card {
  height: 100%;
  background: var(--white);
  padding: 34px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  background: var(--light-bg);
  transform: translateY(-5px);
}

.benefit-card i {
  width: 60px;
  height: 60px;
  background: var(--light-bg);
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 1.7rem;
  margin-bottom: 24px;
}

.benefit-card h4 {
  color: var(--primary-dark);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.benefit-card p {
  color: var(--muted);
  line-height: 1.7;
}

.benefit-card:hover h4,
.benefit-card:hover p {
  color: var(--primary-dark);
}

/* SELL SECTION */
.sell-section {
  padding: 100px 0;
  background: var(--white);
}

.steps {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

.step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.step span {
  min-width: 52px;
  height: 52px;
  border-radius: 4px;
  background: var(--light-bg);
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.step h5 {
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 5px;
}

.step p {
  margin-bottom: 0;
}

.sell-image-box {
  position: relative;
}

.sell-image-box img {
  border-radius: var(--radius);
  height: 520px;
  object-fit: cover;
  width: 100%;
  box-shadow: none;
}

.floating-card {
  position: absolute;
  left: -25px;
  bottom: 35px;
  background: var(--white);
  border-radius: 4px;
  padding: 24px;
  width: 220px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.floating-card strong {
  display: block;
  font-size: 2rem;
  color: var(--secondary);
}

.floating-card span {
  color: var(--primary-dark);
  font-weight: 600;
}

/* FINANCE */
.finance-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.finance-box {
  background:
    linear-gradient(120deg, rgba(88, 88, 87, 0.92), rgba(173, 126, 94, 0.72)),
    url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  padding: 55px;
  color: var(--white);
}

.finance-box h2,
.finance-box p {
  color: var(--white);
}

.mini-title.light {
  color: var(--secondary);
}

.btn-finance {
  background: var(--secondary);
  color: var(--white);
  border-radius: 4px;
  padding: 14px 28px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.btn-finance:hover {
  background: var(--white);
  color: var(--primary-dark);
}

/* TESTIMONIALS */
.testimonials-section {
  background: var(--light-bg);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 45px;
  text-align: center;
  max-width: 850px;
  margin: auto;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.testimonial-card i {
  font-size: 3rem;
  color: var(--secondary);
}

.testimonial-card p {
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.8;
  margin: 20px 0;
}

.testimonial-card h5 {
  color: var(--primary-dark);
  font-weight: 600;
}

.testimonial-card span {
  color: var(--muted);
}

/* CONTACT */
.contact-section {
  padding: 100px 0;
  background: var(--white);
  color: var(--text);
  border-top: 1px solid var(--border);
}

.contact-section h2,
.contact-section p {
  color: var(--primary-dark);
}

.contact-info {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.contact-info div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-info i {
  width: 45px;
  height: 45px;
  background: var(--secondary);
  color: var(--white);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.contact-form {
  background: var(--light-bg);
  color: var(--text);
  padding: 35px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: none;
}

/* ADMIN */
.dashboard-page {
  min-height: 100vh;
  background: #f6f5f1;
}

.dashboard-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
}

.dashboard-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  background: var(--primary-dark);
  color: var(--white);
  padding: 26px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.dashboard-brand:hover {
  color: var(--white);
}

.dashboard-menu {
  display: grid;
  gap: 8px;
}

.dashboard-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  color: rgba(255, 255, 255, 0.76);
  border-radius: 4px;
  padding: 12px 14px;
  font-weight: 500;
}

.dashboard-menu a:hover,
.dashboard-menu a.active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.dashboard-menu i {
  color: var(--secondary);
  font-size: 1.1rem;
}

.dashboard-content {
  min-width: 0;
  padding: 30px;
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 22px;
}

.dashboard-topbar span {
  display: block;
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.dashboard-topbar h1 {
  color: var(--primary-dark);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 400;
  line-height: 1.15;
  margin: 0;
  text-transform: uppercase;
}

.dashboard-login,
.dashboard-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(34, 34, 33, 0.07);
  padding: 28px;
}

.dashboard-login h2 {
  color: var(--primary-dark);
  font-size: 1.5rem;
  font-weight: 500;
  margin: 8px 0 8px;
  text-transform: uppercase;
}

.dashboard-login p {
  color: var(--muted);
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.dashboard-stats div {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px;
}

.dashboard-stats span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dashboard-stats strong {
  display: block;
  color: var(--primary-dark);
  font-size: 2rem;
  line-height: 1;
  margin-top: 10px;
}

.admin-section {
  padding: 100px 0;
  background: var(--light-bg);
  border-top: 1px solid var(--border);
}

.admin-login,
.admin-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

.admin-message {
  color: var(--secondary);
  font-weight: 600;
  margin: 14px 0 0;
}

.admin-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.admin-toolbar strong {
  display: block;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.admin-toolbar span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.admin-form {
  background: #fbfaf7;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
}

.admin-form label,
.admin-login label {
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.admin-field-hint {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  margin-top: 8px;
}

.btn-outline-admin {
  border: 1px solid var(--secondary);
  color: var(--secondary);
  background: var(--white);
  border-radius: 4px;
  padding: 12px 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.btn-outline-admin:hover {
  background: var(--secondary);
  color: var(--white);
}

.admin-list {
  margin-top: 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.admin-list h4 {
  color: var(--primary-dark);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
}

.admin-list table {
  margin-bottom: 0;
}

.admin-list td,
.admin-list th {
  padding: 16px 18px;
  vertical-align: middle;
}

.admin-list th {
  color: var(--primary-dark);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--light-bg);
  border-bottom: 1px solid var(--border);
}

.admin-thumb {
  width: 82px;
  height: 58px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.admin-property-name {
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 240px;
}

.admin-property-name strong {
  display: block;
  color: var(--primary-dark);
  font-weight: 600;
}

.admin-property-name span,
.admin-muted {
  color: var(--muted);
  font-size: 0.9rem;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 4px;
  padding: 7px 10px;
  background: var(--light-bg);
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.82rem;
}

.status-badge.draft {
  background: #fff3e7;
  color: var(--secondary);
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 220px;
}

.admin-action {
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--primary-dark);
  border-radius: 4px;
  padding: 8px 10px;
  font-weight: 600;
  font-size: 0.84rem;
}

.admin-action:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}

.admin-action.danger {
  color: #9d2f2f;
}

.admin-empty {
  padding: 8px 0;
  color: var(--muted);
  font-weight: 500;
  text-align: center;
}

/* FOOTER */
.footer {
  background: var(--light-bg);
  color: var(--text);
  padding: 70px 0 25px;
}

.footer h4,
.footer h5 {
  color: var(--primary-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.footer a {
  display: block;
  color: var(--text);
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--secondary);
}

.newsletter {
  display: flex;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.newsletter input {
  min-width: 0;
  flex: 1;
  border: none;
  padding: 13px 18px;
  outline: none;
}

.newsletter button {
  width: 52px;
  border: none;
  background: var(--secondary);
  color: var(--white);
}

.footer hr {
  border-color: rgba(88, 88, 87, 0.18);
  margin: 45px 0 20px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

/* WHATSAPP */
.whatsapp-btn {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  z-index: 99;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  color: var(--white);
  transform: scale(1.08);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .dashboard-shell {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    position: static;
    height: auto;
    padding: 18px;
  }

  .dashboard-brand {
    padding-bottom: 16px;
    margin-bottom: 14px;
  }

  .dashboard-menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-content {
    padding: 20px;
  }

  .dashboard-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .dashboard-topbar .btn {
    width: 100%;
  }

  .navbar-custom {
    padding: 12px 0;
  }

  .navbar-brand {
    font-size: 1.15rem;
  }

  .brand-icon {
    width: 38px;
    height: 38px;
    font-size: 1.25rem;
  }

  .navbar-collapse {
    background: var(--white);
    padding: 20px;
    border-radius: 20px;
    margin-top: 15px;
    box-shadow: var(--shadow);
    max-height: calc(100svh - 92px);
    overflow-y: auto;
  }

  .navbar-nav {
    align-items: stretch !important;
    gap: 4px;
  }

  .nav-link {
    margin: 0;
    padding: 11px 4px;
  }

  .nav-link::after {
    left: 4px;
  }

  .btn-navbar {
    display: block;
    width: 100%;
    margin-top: 10px;
    text-align: center;
  }

  .hero-section {
    min-height: auto;
    padding-top: 128px;
    padding-bottom: 76px;
    background-position: 58% center;
  }

  .hero-section p {
    max-width: 100%;
  }

  .search-card {
    max-width: 620px;
    margin: 0;
  }

  .quick-filter {
    margin-top: 0;
    padding-top: 40px;
  }

  .owner-img,
  .sell-image-box img {
    height: clamp(320px, 48vw, 430px);
  }

  .floating-card {
    left: 20px;
    bottom: 22px;
  }

  .finance-box {
    padding: 42px;
  }

  .contact-section .row,
  .footer .row {
    row-gap: 36px;
  }
}

@media (max-width: 576px) {
  :root {
    --radius: 10px;
  }

  .dashboard-sidebar {
    padding: 14px;
  }

  .dashboard-brand {
    gap: 10px;
  }

  .dashboard-menu {
    grid-template-columns: 1fr;
  }

  .dashboard-menu a {
    min-height: 44px;
  }

  .dashboard-content {
    padding: 14px;
  }

  .dashboard-topbar,
  .dashboard-login,
  .dashboard-panel {
    padding: 18px;
  }

  .dashboard-stats {
    grid-template-columns: 1fr;
  }

  .admin-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-toolbar .btn,
  .admin-form .btn {
    width: 100%;
  }

  .admin-form {
    padding: 18px;
  }

  .admin-actions {
    min-width: 180px;
  }

  html {
    scroll-padding-top: 76px;
  }

  .container {
    --bs-gutter-x: 1.5rem;
  }

  .navbar-brand {
    max-width: calc(100vw - 92px);
    font-size: 1rem;
    gap: 8px;
  }

  .brand-icon {
    width: 34px;
    height: 34px;
    font-size: 1.12rem;
  }

  .navbar-toggler {
    padding: 6px 9px;
  }

  .hero-section {
    padding-top: 104px;
    padding-bottom: 56px;
    background-position: 62% center;
  }

  .hero-badge {
    padding: 8px 13px;
    margin-bottom: 18px;
    font-size: 0.78rem;
  }

  .search-card,
  .contact-form,
  .finance-box,
  .filter-box {
    padding: 22px;
  }

  .hero-section h1 {
    font-size: clamp(2.25rem, 12vw, 2.9rem);
    line-height: 1.08;
    margin-bottom: 18px;
  }

  .hero-section p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .hero-buttons {
    display: grid;
    gap: 12px;
    margin-top: 24px;
  }

  .hero-buttons .btn,
  .btn-main,
  .btn-outline-main,
  .btn-finance {
    width: 100%;
    padding: 12px 18px;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 32px;
  }

  .hero-stats div {
    min-width: 0;
  }

  .hero-stats strong {
    font-size: 1.45rem;
  }

  .hero-stats span {
    display: block;
    font-size: 0.76rem;
    line-height: 1.35;
  }

  .section-padding,
  .owner-section,
  .sell-section,
  .contact-section {
    padding: 64px 0;
  }

  .section-title {
    margin-bottom: 34px;
  }

  .section-title span,
  .mini-title {
    letter-spacing: 1px;
  }

  .section-title h2,
  .owner-section h2,
  .sell-section h2,
  .finance-section h2,
  .contact-section h2 {
    font-size: clamp(1.9rem, 10vw, 2.45rem);
  }

  .filter-box {
    box-shadow: 0 12px 32px rgba(34, 34, 33, 0.08);
  }

  .property-img {
    height: 215px;
  }

  .property-body {
    padding: 22px;
  }

  .property-info span {
    border-radius: 12px;
  }

  .owner-img,
  .sell-image-box img {
    height: 300px;
  }

  .step {
    gap: 14px;
  }

  .step span {
    min-width: 44px;
    height: 44px;
    font-size: 0.9rem;
  }

  .floating-card {
    position: static;
    width: auto;
    margin: -52px 18px 0;
    padding: 18px;
    transform: translateZ(0);
  }

  .testimonial-card {
    padding: 30px 22px;
  }

  .testimonial-card p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .finance-box {
    border-radius: var(--radius);
  }

  .finance-section {
    padding: 64px 0;
  }

  .contact-info div {
    align-items: flex-start;
  }

  .footer {
    padding-top: 56px;
  }

  .footer-bottom {
    display: grid;
    gap: 8px;
  }

  .whatsapp-btn {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
    font-size: 1.55rem;
  }
}

@media (max-width: 380px) {
  .navbar-brand {
    font-size: 0.92rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 250, 241, 0.16);
  }

  .property-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .newsletter {
    border-radius: 18px;
  }
}
