/* ============================================
   RENTOSURE — Multi-Page Static Website
   Brand: Primary #C52029 | Secondary #020101 | Accent #97999B
   ============================================ */

@font-face {
  font-family: "Poppins Fallback";
  src: local("Arial");
  size-adjust: 112%;
  ascent-override: 105%;
  descent-override: 35%;
  line-gap-override: 10%;
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("vendor/fonts/poppins-400.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-display: optional;
  src: url("vendor/fonts/poppins-500.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: optional;
  src: url("vendor/fonts/poppins-600.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("vendor/fonts/poppins-700.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("vendor/fonts/poppins-800.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --primary: #C52029;
  --primary-dark: #A01A21;
  --primary-soft: rgba(197, 32, 41, 0.08);
  --secondary: #020101;
  --accent: #97999B;
  --white: #FFFFFF;
  --light: #F8F9FA;
  --border: rgba(151, 153, 155, 0.25);
  --shadow-sm: 0 4px 20px rgba(2, 1, 1, 0.06);
  --shadow-md: 0 12px 40px rgba(2, 1, 1, 0.1);
  --shadow-lg: 0 24px 60px rgba(2, 1, 1, 0.14);
  --radius: 16px;
  --radius-sm: 12px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font: "Poppins", "Poppins Fallback", sans-serif;
  --nav-height: 80px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--secondary);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--secondary);
}

p {
  color: var(--accent);
}

section {
  position: relative;
}

/* ---------- Page Loader ---------- */
#page-loader {
  position: fixed;
  inset: 0;
  width: 100vw;
  width: 100dvw;
  height: 100vh;
  height: 100dvh;
  z-index: 9999;
  background: var(--white);
  display: grid;
  place-items: center;
  place-content: center;
  margin: 0;
  padding: max(1rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right)) max(1rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
  box-sizing: border-box;
  overflow: hidden;
  text-align: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  width: max-content;
  max-width: 90vw;
  margin: 0 auto;
  text-align: center;
}

.loader-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}

.loader-logo-img {
  display: block;
  height: 72px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  margin-left: auto;
  margin-right: auto;
  animation: pulse-logo 1.2s ease-in-out infinite;
}

.loader-bar {
  width: 160px;
  max-width: 100%;
  height: 3px;
  background: var(--border);
  border-radius: 99px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  flex-shrink: 0;
}

.loader-bar span {
  display: block;
  height: 100%;
  width: 40%;
  background: var(--primary);
  border-radius: 99px;
  animation: loader-slide 1s ease-in-out infinite;
}

@keyframes pulse-logo {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

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

/* Mobile */
@media (max-width: 575.98px) {
  .loader-inner {
    gap: 1.15rem;
  }

  .loader-logo-img {
    height: 56px;
    max-width: 180px;
  }

  .loader-bar {
    width: 140px;
  }
}

/* Tablet */
@media (min-width: 576px) and (max-width: 991.98px) {
  .loader-inner {
    gap: 1.35rem;
  }

  .loader-logo-img {
    height: 64px;
    max-width: 210px;
  }

  .loader-bar {
    width: 150px;
  }
}

/* Laptop / desktop */
@media (min-width: 992px) {
  .loader-inner {
    gap: 1.5rem;
  }

  .loader-logo-img {
    height: 72px;
    max-width: 240px;
  }

  .loader-bar {
    width: 160px;
  }
}

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font);
  font-weight: 600;
  border-radius: 12px;
  padding: 0.75rem 1.6rem;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(197, 32, 41, 0.35);
}

.btn-outline-dark {
  background: transparent;
  border-color: var(--secondary);
  color: var(--secondary);
}

.btn-outline-dark:hover,
.btn-outline-dark:focus {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
  transform: translateY(-2px);
}

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

.btn-outline-light:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--secondary);
}

.btn-lg {
  padding: 0.9rem 2rem;
  font-size: 1rem;
}

.btn-nav {
  padding: 0.55rem 1.35rem;
  font-size: 0.9rem;
  white-space: nowrap;
}

.btn-whatsapp {
  background: #25D366;
  border-color: #25D366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #1ebe57;
  border-color: #1ebe57;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

/* ---------- Section Commons ---------- */
.section {
  padding: 100px 0;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--accent);
  max-width: 540px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 3.5rem;
}

/* ---------- Page Hero Banner ---------- */
.page-hero {
  position: relative;
  padding-top: calc(var(--nav-height) + 70px);
  padding-bottom: 80px;
  min-height: 340px;
  display: flex;
  align-items: center;
  text-align: center;
  background-color: var(--secondary);
  background-image: url("images/hero-building.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(2, 1, 1, 0.78) 0%,
    rgba(2, 1, 1, 0.55) 55%,
    rgba(197, 32, 41, 0.45) 100%
  );
  z-index: 0;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero .section-label {
  color: #ffb3b8;
}

.page-hero .section-title {
  margin-bottom: 0.85rem;
  color: var(--white);
}

.page-hero .section-subtitle {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
}

.page-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.page-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}

.page-breadcrumb a:hover {
  color: var(--white);
}

.page-breadcrumb i {
  font-size: 0.7rem;
}

.page-breadcrumb span {
  color: var(--white);
  font-weight: 500;
  max-width: min(70vw, 420px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Per-page banner images */
.page-hero--how { background-image: url("images/hero-building.webp"); }
.page-hero--benefits { background-image: url("images/property-interior.webp"); }
.page-hero--properties { background-image: url("images/1.webp"); }
.page-hero--why { background-image: url("images/property-parth-gardenia.webp"); }
.page-hero--faq { background-image: url("images/about-team.webp"); }
.page-hero--about { background-image: url("images/property-amenities.webp"); }
.page-hero--contact { background-image: url("images/property-amenities.webp"); }
.page-hero--privacy { background-image: url("images/about-team.webp"); }

@media (max-width: 575.98px) {
  .page-hero {
    min-height: 280px;
    padding-top: calc(var(--nav-height) + 48px);
    padding-bottom: 56px;
  }
}

/* ---------- Navbar ---------- */
#mainNavbar {
  padding: 1rem 0;
  background: transparent;
  transition: all var(--transition);
  z-index: 1030;
}

#mainNavbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  padding: 0.65rem 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-top: 0;
  padding-bottom: 0;
}

.loader-brand picture,
.navbar-brand picture,
.footer-brand picture {
  display: contents;
}

.brand-logo {
  height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
  transition: all var(--transition);
}

/* Keep logo readable on dark banners */
#mainNavbar:not(.scrolled) .brand-logo {
  background: var(--white);
  border-radius: 10px;
  padding: 0.35rem 0.6rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.brand-logo-footer {
  height: 56px;
  max-width: 200px;
  background: var(--white);
  border-radius: 10px;
  padding: 0.4rem 0.65rem;
}

.navbar-nav .nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--secondary);
  padding: 0.5rem 0.5rem !important;
  position: relative;
  opacity: 0.75;
  transition: opacity var(--transition), color var(--transition);
  white-space: nowrap;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  opacity: 1;
  color: var(--primary);
}

/* Light menu text over dark banners (desktop) */
@media (min-width: 992px) {
  #mainNavbar > .container {
    flex-wrap: nowrap;
  }

  .navbar-nav {
    flex-wrap: nowrap;
  }

  #mainNavbar:not(.scrolled) .nav-link {
    color: rgba(255, 255, 255, 0.92);
    opacity: 1;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
  }

  #mainNavbar:not(.scrolled) .nav-link:hover,
  #mainNavbar:not(.scrolled) .nav-link.active {
    color: #ffffff;
    opacity: 1;
  }

  #mainNavbar:not(.scrolled) .btn-nav {
    box-shadow: 0 4px 16px rgba(197, 32, 41, 0.45);
  }
}

.navbar-toggler {
  border: none;
  padding: 0.35rem;
  box-shadow: none !important;
  background: var(--white);
  border-radius: 10px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23020101' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 1199.98px) {
  .navbar-nav .nav-link {
    font-size: 0.75rem;
    padding: 0.45rem 0.4rem !important;
  }
}

@media (min-width: 992px) and (max-width: 1399.98px) {
  .navbar-nav .nav-link {
    font-size: 0.72rem;
    padding: 0.45rem 0.32rem !important;
  }
}

@media (max-width: 991.98px) {
  #mainNavbar .navbar-collapse {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.25rem;
    margin-top: 0.75rem;
    box-shadow: var(--shadow-md);
  }

  #mainNavbar .navbar-collapse .nav-link {
    color: var(--secondary);
    opacity: 0.85;
  }

  #mainNavbar .navbar-collapse .nav-link:hover,
  #mainNavbar .navbar-collapse .nav-link.active {
    color: var(--primary);
    opacity: 1;
  }

  #mainNavbar .btn-nav {
    display: block;
    text-align: center;
    margin-top: 0.75rem;
  }
}

/* ---------- Home Hero Banner ---------- */
.hero-section {
  position: relative;
  padding-top: calc(var(--nav-height) + 90px);
  padding-bottom: 110px;
  min-height: 92vh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  background-color: var(--secondary);
}

.hero-lcp-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(2, 1, 1, 0.72) 0%,
    rgba(2, 1, 1, 0.45) 48%,
    rgba(197, 32, 41, 0.28) 100%
  );
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-banner-content {
  max-width: 640px;
  text-align: left;
}

.hero-section .hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(197, 32, 41, 0.9);
  padding: 0.45rem 1rem;
  border-radius: 8px;
  margin-bottom: 1.35rem;
}

.hero-section .hero-title {
  font-size: clamp(2.35rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin-bottom: 1.15rem;
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
  min-height: calc(2.24 * clamp(2.35rem, 5vw, 3.6rem));
}

.hero-section .hero-title span {
  color: #ff8a90;
}

.hero-section .hero-desc {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 520px;
  margin: 0 0 1.75rem;
  line-height: 1.75;
}

.hero-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.hero-section .hero-highlights {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2.15rem;
}

.hero-highlights li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--secondary);
}

.hero-section .hero-highlights li {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
  font-weight: 500;
}

.hero-highlights i {
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  font-size: 1.1rem;
  line-height: 1;
  flex-shrink: 0;
}

.hero-section .hero-highlights i {
  color: #ff8a90;
  font-size: 1rem;
}

.hero-highlights i::before {
  vertical-align: 0;
  line-height: 1;
}

.hero-highlights span {
  line-height: 1.25;
}

.hero-cta {
  gap: 0.85rem !important;
}

.hero-cta .btn {
  min-width: 170px;
  min-height: 3.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.btn-hero-secondary:hover,
.btn-hero-secondary:focus {
  background: var(--white);
  border-color: var(--white);
  color: var(--secondary);
  transform: translateY(-2px);
}

.trust-section {
  padding-top: 40px;
  padding-bottom: 40px;
  background: var(--white);
}

.trust-section .trust-bar {
  margin-top: 0;
}

/* ---------- Trust Bar ---------- */
.trust-bar {
  margin-top: 3rem;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 2.25rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.trust-bar-header {
  text-align: center;
}

.trust-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.trust-title {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--secondary);
  margin: 0;
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px solid var(--border);
  transition: all var(--transition);
  height: 100%;
}

.trust-item:hover {
  border-color: rgba(197, 32, 41, 0.35);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.trust-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: var(--primary);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
}

.trust-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.trust-text strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--secondary);
}

.trust-text span {
  font-size: 0.78rem;
  color: var(--accent);
  line-height: 1.45;
}

.trust-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--secondary);
}

.trust-badge i {
  color: var(--primary);
}

@media (max-width: 991.98px) {
  .trust-items { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575.98px) {
  .trust-items { grid-template-columns: 1fr; }
}

/* ---------- Cards: Steps / Benefits ---------- */
.how-section,
.faq-section,
.properties-section {
  background: var(--light);
}

.step-card,
.benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.25rem 1.75rem;
  height: 100%;
  border: 1px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.benefit-card {
  background: var(--light);
  box-shadow: none;
}

.why-choose-section .benefit-card,
.benefits-section .benefit-card {
  background: var(--light);
}

.how-section .step-card {
  background: var(--white);
}

.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.step-card:hover,
.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--border);
  background: var(--white);
}

.step-card:hover::before {
  transform: scaleX(1);
}

.step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.step-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.18;
  line-height: 1;
}

.step-icon,
.benefit-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  transition: all var(--transition);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  font-size: 1.4rem;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.25rem;
}

.step-card:hover .step-icon,
.benefit-card:hover .benefit-icon {
  background: var(--primary);
  color: var(--white);
}

.step-card h3,
.benefit-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.step-card p,
.benefit-card p {
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.65;
}

/* ---------- Properties ---------- */
.property-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  border: 1px solid transparent;
}

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

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

.property-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.property-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.property-body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.85rem;
}

.property-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-bottom: 1.15rem;
  padding: 0.85rem;
  background: var(--light);
  border-radius: var(--radius-sm);
}

.property-meta span {
  display: block;
  font-size: 0.68rem;
  color: var(--accent);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.15rem;
}

.property-meta strong {
  font-size: 0.82rem;
  color: var(--secondary);
  font-weight: 700;
  line-height: 1.35;
}

.property-meta strong i {
  color: var(--primary);
  margin-right: 0.25rem;
}

.property-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: auto;
}

.property-actions .btn {
  width: 100%;
  padding: 0.55rem 0.5rem;
  font-size: 0.78rem;
  white-space: nowrap;
}

/* ---------- About ---------- */
.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-lead {
  font-size: 1.1rem;
  color: #222;
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.brand-legal {
  color: var(--primary);
  font-weight: 700;
}

.about-text {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.highlight-card {
  background: var(--light);
  border-radius: var(--radius-sm);
  padding: 1.35rem 1.1rem;
  height: 100%;
  text-align: center;
  transition: all var(--transition);
  border: 1px solid transparent;
}

.highlight-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-color: var(--border);
  transform: translateY(-4px);
}

.highlight-card i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
  display: block;
}

.highlight-card h4 {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.highlight-card p {
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.5;
}

/* ---------- FAQ ---------- */
.accordion-item {
  background: var(--white);
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  margin-bottom: 0.85rem;
  overflow: hidden;
}

.accordion-button {
  font-family: var(--font);
  font-weight: 600;
  font-size: 1rem;
  color: var(--secondary);
  background: var(--white);
  box-shadow: none !important;
  padding: 1.15rem 1.4rem;
}

.accordion-button:not(.collapsed) {
  color: var(--primary);
  background: var(--white);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23C52029'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  font-size: 0.95rem;
  color: var(--accent);
  padding: 0 1.4rem 1.25rem;
  line-height: 1.7;
}

/* ---------- Contact ---------- */
.contact-section {
  background: var(--light);
}

.contact-panel {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.contact-form-wrap {
  padding: 2.5rem;
  height: 100%;
}

.contact-panel-title {
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.contact-panel-sub {
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
  max-width: 420px;
}

.contact-form {
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}

.form-label {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--secondary);
  margin-bottom: 0.4rem;
}

.form-control {
  font-family: var(--font);
  border-radius: 12px;
  border: 1.5px solid var(--border);
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  transition: all var(--transition);
  background: var(--light);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(197, 32, 41, 0.12);
  background: var(--white);
}

.was-validated .contact-form .form-control:invalid {
  border-color: #dc3545;
  background: var(--white);
}

.was-validated .contact-form .form-control:invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
}

.was-validated .contact-form .form-control:valid {
  border-color: #198754;
}

.was-validated .contact-form .form-control:valid:focus {
  border-color: #198754;
  box-shadow: 0 0 0 3px rgba(25, 135, 84, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  background: rgba(25, 135, 84, 0.08);
  color: #198754;
  border-radius: 12px;
  font-weight: 500;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-error {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  background: rgba(197, 32, 41, 0.08);
  color: var(--primary);
  border-radius: 12px;
  font-weight: 500;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-side {
  height: 100%;
  padding: 2.5rem 2rem;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(197, 32, 41, 0.35), transparent 55%),
    linear-gradient(165deg, #1a1212 0%, #020101 100%);
  color: var(--white);
  display: flex;
  flex-direction: column;
}

.contact-side-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffb3b8;
  margin-bottom: 0.65rem;
}

.contact-side-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.contact-tiles {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.contact-tile {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: inherit;
  transition: all var(--transition);
  text-decoration: none;
}

.contact-tile:hover,
a.contact-tile:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateX(4px);
  color: inherit;
}

.contact-tile-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 10px;
  background: var(--primary);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 1.05rem;
}

.contact-tile-icon.whatsapp {
  background: #25D366;
}

.contact-tile strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.15rem;
}

.contact-tile span {
  display: block;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
}

.contact-map {
  margin-top: 1.5rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  min-height: 200px;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 200px;
  border: 0;
}

.map-section {
  background: var(--white);
  padding-top: 40px;
  padding-bottom: 0;
}

.map-section .section-header {
  margin-bottom: 2rem;
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  background: var(--light);
}

.map-embed-full {
  width: 100%;
  max-width: 100%;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  box-shadow: none;
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.map-embed-full iframe {
  height: 480px;
}

@media (max-width: 575.98px) {
  .map-embed iframe,
  .map-embed-full iframe {
    height: 300px;
  }
}

.contact-side-social {
  margin-top: 1.75rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-side-social p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.85rem;
  font-weight: 500;
}

.contact-social {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.contact-social a {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all var(--transition);
}

.contact-social a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  border-color: var(--primary);
}

.contact-social a.whatsapp-social {
  background: #25D366;
  border-color: #25D366;
  color: var(--white);
}

.contact-social a.whatsapp-social:hover {
  background: #1ebe57;
  border-color: #1ebe57;
}

@media (max-width: 991.98px) {
  .contact-form-wrap,
  .contact-side {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .contact-form-wrap,
  .contact-side {
    padding: 1.5rem 1.25rem;
  }

  .contact-form .btn {
    width: 100%;
  }
}

/* ---------- Comparison Table ---------- */
.compare-section {
  background: var(--light);
}

.compare-wrap {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  overflow: hidden;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}

.compare-table thead th {
  padding: 1.5rem 1.5rem 1.35rem;
  vertical-align: bottom;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.compare-feature {
  width: 32%;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.compare-trad,
.compare-rent {
  width: 34%;
  text-align: left;
}

.compare-col-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.compare-trad .compare-col-label { color: var(--accent); }
.compare-rent .compare-col-label { color: var(--primary); }

.compare-trad strong,
.compare-rent strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--secondary);
}

.compare-rent {
  background: linear-gradient(180deg, rgba(197, 32, 41, 0.06) 0%, rgba(197, 32, 41, 0.02) 100%);
  position: relative;
}

.compare-rent::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
}

.compare-table tbody td {
  padding: 1.15rem 1.5rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  font-size: 0.92rem;
}

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

.compare-table tbody td.compare-rent {
  background: rgba(197, 32, 41, 0.03);
}

.compare-point {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
  color: var(--secondary);
}

.compare-point i {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 8px;
  background: var(--light);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.compare-neg,
.compare-pos {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 500;
  line-height: 1.4;
}

.compare-neg { color: var(--accent); }
.compare-neg i { color: #b42318; font-size: 0.8rem; flex-shrink: 0; }

.compare-pos {
  color: var(--secondary);
  font-weight: 600;
}

.compare-pos i {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.compare-cta { margin-top: 2rem; }

.compare-disclaimer {
  margin: 1.5rem auto 0;
  max-width: 720px;
  font-size: 0.8rem;
  color: var(--accent);
  line-height: 1.55;
}

@media (max-width: 767.98px) {
  .compare-wrap {
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
  }

  .compare-table,
  .compare-table thead,
  .compare-table tbody,
  .compare-table tr,
  .compare-table th,
  .compare-table td {
    display: block;
    width: 100%;
  }

  .compare-table thead { display: none; }

  .compare-table tbody tr {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    padding: 1rem 1.15rem;
    box-shadow: var(--shadow-sm);
  }

  .compare-table tbody td {
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--border);
  }

  .compare-table tbody td:last-child { border-bottom: none; }

  .compare-table tbody td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.35rem;
  }

  .compare-table tbody td.compare-rent {
    background: rgba(197, 32, 41, 0.04);
    margin: 0.5rem -0.35rem -0.15rem;
    padding: 0.85rem 0.75rem;
    border-radius: var(--radius-sm);
  }
}

/* ---------- Investment Calculator ---------- */
.calculator-section {
  background: var(--white);
}

.calculator-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  max-width: 1100px;
  margin: 0 auto;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0.75rem 0.5rem;
  align-items: end;
}

.calc-field {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.calculator-form .form-label {
  margin-bottom: 0.55rem;
  min-height: 1.35rem;
  line-height: 1.35;
}

.calc-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.calc-prefix,
.calc-suffix {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  z-index: 1;
  pointer-events: none;
}

.calc-prefix { left: 1rem; }
.calc-suffix { right: 1rem; }

.calc-input-wrap .form-control {
  width: 100%;
  height: 52px;
  padding: 0.8rem 1rem 0.8rem 2.15rem;
  line-height: 1.2;
}

.calc-input-wrap.has-suffix .form-control {
  padding-left: 1rem;
  padding-right: 2.25rem;
}

.calc-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  color: var(--primary);
  opacity: 0.55;
  font-size: 1.1rem;
  align-self: end;
}

.calc-result {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 0 1rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--secondary);
  height: 52px;
  display: flex;
  align-items: center;
  width: 100%;
}

.calc-result-primary {
  border-color: rgba(197, 32, 41, 0.35);
  background: rgba(197, 32, 41, 0.05);
  color: var(--primary);
}

.calculator-actions {
  margin-top: 2rem;
  text-align: center;
}

.calculator-actions .btn { min-width: 220px; }

.calc-note {
  margin: 1rem auto 0;
  max-width: 560px;
  font-size: 0.8rem;
  color: var(--accent);
  line-height: 1.5;
}

@media (max-width: 991.98px) {
  .calc-grid {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .calc-divider {
    height: auto;
    transform: rotate(90deg);
    justify-self: center;
  }
}

@media (max-width: 575.98px) {
  .calculator-card { padding: 1.5rem 1.25rem; }
  .calculator-actions .btn { width: 100%; }
}

/* ---------- Testimonials (new UI) ---------- */
.testimonials-section {
  background: var(--white);
}

.testimonial-card-v2 {
  position: relative;
  height: 100%;
  padding: 1.85rem 1.65rem;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  overflow: hidden;
}

.testimonial-card-v2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--transition);
}

.testimonial-card-v2:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(197, 32, 41, 0.25);
}

.testimonial-card-v2:hover::before {
  transform: scaleY(1);
}

.testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.1rem;
}

.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  color: #f5a524;
  font-size: 0.95rem;
}

.testimonial-mark {
  font-size: 2rem;
  color: var(--primary);
  opacity: 0.2;
  line-height: 1;
}

.testimonial-copy {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--secondary);
  font-weight: 500;
  margin-bottom: 1.5rem;
  flex: 1;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: auto;
  padding-top: 1.15rem;
  border-top: 1px solid var(--border);
}

.testimonial-person img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px rgba(197, 32, 41, 0.2);
}

.testimonial-person strong {
  display: block;
  font-size: 0.95rem;
  color: var(--secondary);
  margin-bottom: 0.1rem;
}

.testimonial-person span {
  display: block;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 500;
}

/* ---------- Preview / CTA Blocks ---------- */
.preview-cta {
  margin-top: 3rem;
  text-align: center;
}

.cta-band {
  background: var(--secondary);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(197, 32, 41, 0.18);
  pointer-events: none;
}

.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.75rem;
  position: relative;
}

.cta-band p {
  color: var(--accent);
  margin-bottom: 1.75rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-band .btn {
  position: relative;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--secondary);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.footer-about {
  font-size: 0.9rem;
  color: var(--accent);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 0.65rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 1rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
}

.site-footer h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--accent);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
}

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

.footer-contact i {
  color: var(--primary);
  font-size: 0.95rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  flex-shrink: 0;
}

.footer-bottom {
  margin-top: 3.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--accent);
  margin: 0;
}

.footer-bottom a {
  color: var(--accent);
  margin-left: 0.35rem;
}

.footer-bottom a:hover {
  color: var(--primary);
}

/* ---------- Legal / Privacy Policy ---------- */
.legal-section {
  background: var(--light);
}

.legal-wrap {
  max-width: 820px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 2.5rem 2.25rem;
}

.legal-updated {
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  color: #222;
}

.legal-wrap > p,
.legal-block p,
.legal-block li {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #222;
}

.legal-block {
  margin-top: 2rem;
}

.legal-block h2 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.legal-block h3 {
  font-size: 1rem;
  margin: 1.25rem 0 0.55rem;
}

.legal-block ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0.75rem 0 1rem;
}

.legal-block ul ul {
  margin: 0.4rem 0 0.6rem;
}

.legal-block li {
  margin-bottom: 0.4rem;
}

.legal-block a {
  color: var(--primary);
  font-weight: 500;
}

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

.legal-note {
  font-size: 0.85rem !important;
  font-style: italic;
  margin-bottom: 1.25rem !important;
}

@media (max-width: 575.98px) {
  .legal-wrap {
    padding: 1.5rem 1.25rem;
  }
}

/* ---------- Float Buttons ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 5.75rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 1.75rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: all var(--transition);
}

.whatsapp-float:hover {
  background: #1ebe57;
  color: var(--white);
  transform: translateY(-3px) scale(1.05);
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary);
  color: var(--white);
  border: none;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(197, 32, 41, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .section { padding: 80px 0; }
  .hero-section {
    min-height: 78vh;
    padding-top: calc(var(--nav-height) + 70px);
    padding-bottom: 80px;
  }
}

@media (max-width: 575.98px) {
  .brand-logo { height: 40px; max-width: 150px; }
  .section { padding: 64px 0; }
  .hero-section {
    padding-bottom: 64px;
  }
  .hero-section .hero-title {
    min-height: calc(3.36 * 2.35rem);
  }
  .hero-banner-content {
    max-width: 100%;
  }
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  .hero-cta .btn {
    width: 100%;
  }
  .hero-section .hero-highlights {
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-band { padding: 2rem 1.35rem; }
  .whatsapp-float {
    bottom: 5.25rem;
    right: 1.25rem;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  .back-to-top {
    right: 1.25rem;
    bottom: 1.25rem;
  }
}

::selection {
  background: var(--primary);
  color: var(--white);
}

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

/* ---------- Property Detail Page ---------- */
body.pd-page #mainNavbar,
body.bd-page #mainNavbar {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
}

body.pd-page #mainNavbar:not(.scrolled) .brand-logo,
body.bd-page #mainNavbar:not(.scrolled) .brand-logo {
  background: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

@media (min-width: 992px) {
  body.pd-page #mainNavbar:not(.scrolled) .nav-link,
  body.bd-page #mainNavbar:not(.scrolled) .nav-link {
    color: var(--secondary);
    text-shadow: none;
    opacity: 0.75;
  }

  body.pd-page #mainNavbar:not(.scrolled) .nav-link:hover,
  body.pd-page #mainNavbar:not(.scrolled) .nav-link.active,
  body.bd-page #mainNavbar:not(.scrolled) .nav-link:hover,
  body.bd-page #mainNavbar:not(.scrolled) .nav-link.active {
    color: var(--primary);
    opacity: 1;
  }
}

.pd-detail {
  padding-top: calc(var(--nav-height) + 32px);
  padding-bottom: 40px;
  background:
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(197, 32, 41, 0.05), transparent 55%),
    linear-gradient(180deg, var(--light) 0%, var(--white) 70%);
}

.pd-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 2rem;
}

.pd-breadcrumb a:hover { color: var(--primary); }
.pd-breadcrumb i { font-size: 0.7rem; }
.pd-breadcrumb span { color: var(--secondary); font-weight: 500; }

.pd-gallery {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.pd-main-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 11;
  background: var(--light);
}

.pd-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pd-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.pd-thumb {
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  overflow: hidden;
  padding: 0;
  background: none;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  transition: all var(--transition);
}

.pd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pd-thumb:hover,
.pd-thumb.active {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(197, 32, 41, 0.15);
}

.pd-summary {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pd-title {
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.pd-location {
  font-size: 0.95rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.pd-location i {
  color: var(--primary);
  margin-right: 0.25rem;
}

.pd-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.pd-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  background: var(--light);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.pd-stats span {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.pd-stats strong {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--secondary);
}

.pd-highlights { margin-bottom: 1.75rem; }

.pd-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--secondary);
  margin-bottom: 0.55rem;
  font-weight: 500;
}

.pd-highlights i {
  color: var(--primary);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.pd-specs-section {
  padding-top: 0;
  padding-bottom: 40px;
  background: var(--white);
}

.pd-spec-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
  height: 100%;
  border: 1px solid transparent;
  transition: all var(--transition);
}

.pd-spec-card:hover {
  background: var(--white);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.pd-spec-card i {
  font-size: 1.5rem;
  color: var(--primary);
  display: block;
  margin-bottom: 0.75rem;
}

.pd-spec-card span {
  display: block;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.3rem;
}

.pd-spec-card strong {
  font-size: 0.95rem;
  color: var(--secondary);
}

.pd-overview-section { background: var(--white); }

.pd-overview-text {
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.pd-points { padding: 0; }

.pd-points li {
  display: flex;
  gap: 0.55rem;
  font-size: 0.92rem;
  color: var(--secondary);
  font-weight: 500;
  margin-bottom: 0.65rem;
}

.pd-points i { color: var(--primary); }

.pd-amenity-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border);
  height: 100%;
}

.pd-amenity-card h3 {
  font-size: 1.15rem;
  margin-bottom: 1.15rem;
}

.pd-amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.pd-amenity {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--secondary);
}

.pd-amenity i { color: var(--primary); }

@media (max-width: 767.98px) {
  .pd-cta .btn { width: 100%; }
  .pd-thumbs { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Blog ---------- */
.page-hero--blog { background-image: url("images/property-interior.webp"); }

.blog-section { background: var(--light); }

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
  transition: all var(--transition);
}

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

.blog-card-img {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.08);
}

.blog-card-body {
  padding: 1.35rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: var(--accent);
  margin-bottom: 0.7rem;
}

.blog-tag {
  display: inline-block;
  background: rgba(197, 32, 41, 0.08);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
}

.blog-card-body h2 {
  font-size: 1.08rem;
  line-height: 1.4;
  margin-bottom: 0.7rem;
}

.blog-card-body h2 a {
  color: var(--secondary);
}

.blog-card-body h2 a:hover {
  color: var(--primary);
}

.blog-card-body p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #444;
  margin-bottom: 1rem;
  flex: 1;
}

.blog-read {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
}

.blog-read i {
  font-size: 0.8rem;
  margin-left: 0.2rem;
}

.blog-read:hover {
  text-decoration: underline;
}

.blog-detail-section {
  background: var(--light);
  padding-top: calc(var(--nav-height) + 28px);
  padding-bottom: 80px;
}

.bd-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 1.75rem;
}

.bd-breadcrumb a:hover { color: var(--primary); }
.bd-breadcrumb i { font-size: 0.7rem; }
.bd-breadcrumb span {
  color: var(--secondary);
  font-weight: 500;
  max-width: min(70vw, 420px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bd-title {
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
  margin-bottom: 0.65rem;
  color: var(--secondary);
}

.bd-meta {
  font-size: 0.9rem;
  color: var(--accent);
  margin-bottom: 1.35rem;
}

.blog-featured {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.75rem;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 9;
  background: var(--white);
}

.blog-featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-article {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.6rem 2rem;
  box-shadow: var(--shadow-sm);
}

.blog-article-body {
  color: #222;
}

.blog-article-body p,
.blog-article-body li {
  font-size: 1rem;
  line-height: 1.8;
  color: #222;
  margin-bottom: 1.1rem;
}

.blog-article-body h2 {
  font-size: 1.25rem;
  margin: 2rem 0 0.85rem;
  scroll-margin-top: calc(var(--nav-height) + 16px);
}

.blog-article-body ul {
  list-style: disc;
  padding-left: 1.2rem;
  margin-bottom: 1.25rem;
}

.blog-article-body li {
  margin-bottom: 0.45rem;
}

.bd-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 16px);
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.bd-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.2rem;
  box-shadow: var(--shadow-sm);
}

.bd-widget h3 {
  font-size: 0.95rem;
  margin-bottom: 0.95rem;
}

.bd-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.bd-cats a,
.bd-cat {
  display: inline-block;
  background: var(--light);
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}

.bd-cats a:hover,
.bd-cats a.active,
.bd-cat:hover,
.bd-cat.active {
  background: rgba(197, 32, 41, 0.1);
  color: var(--primary);
}

.bd-toc {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc;
}

.bd-toc li {
  counter-increment: toc;
  margin-bottom: 0.55rem;
}

.bd-toc a {
  display: flex;
  gap: 0.55rem;
  font-size: 0.86rem;
  line-height: 1.45;
  color: #333;
  font-weight: 500;
}

.bd-toc a::before {
  content: counter(toc, decimal-leading-zero);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  min-width: 1.4rem;
}

.bd-toc a:hover {
  color: var(--primary);
}

.bd-related {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.bd-related-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 0.75rem;
  align-items: center;
}

.bd-related-item img {
  width: 76px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.bd-related-item strong {
  display: block;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--secondary);
  font-weight: 600;
}

.bd-related-item:hover strong {
  color: var(--primary);
}

.bd-related-item span {
  display: block;
  font-size: 0.7rem;
  color: var(--accent);
  margin-top: 0.2rem;
}

.bd-related-section {
  margin-top: 3.5rem;
}

.bd-related-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.75rem 1.5rem 1.85rem;
}

.bd-related-head {
  margin-bottom: 1.5rem;
}

.bd-related-head h2 {
  font-size: 1.4rem;
  margin: 0.3rem 0 0;
  color: var(--secondary);
}

.bd-related-section .blog-card {
  border: 1px solid var(--border);
  box-shadow: none;
}

.bd-related-section .blog-card:hover {
  box-shadow: var(--shadow-md);
}

.bd-related-section .blog-card-body p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bd-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--border);
}

.bd-share > span {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.bd-share-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.bd-share-btns a,
.bd-share-btns button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: var(--light);
  color: var(--secondary);
  font-size: 1rem;
  padding: 0;
  transition: all var(--transition);
}

.bd-share-btns a:hover,
.bd-share-btns button:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.bd-post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.bd-post-nav a {
  display: block;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  min-height: 100%;
}

.bd-post-nav a:hover {
  border-color: var(--primary);
}

.bd-post-nav a.is-next {
  text-align: right;
}

.bd-post-nav span {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.3rem;
}

.bd-post-nav strong {
  display: block;
  font-size: 0.88rem;
  line-height: 1.4;
  color: var(--secondary);
  font-weight: 600;
}

.bd-post-nav .is-empty {
  visibility: hidden;
}

@media (max-width: 575.98px) {
  .bd-post-nav {
    grid-template-columns: 1fr;
  }

  .bd-post-nav a.is-next {
    text-align: left;
  }

  .bd-post-nav .is-empty {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .bd-sidebar { position: static; }
  .blog-article { padding: 1.35rem 1.15rem 1.6rem; }
}

/* ---------- Thank You ---------- */
.thankyou-section {
  min-height: calc(100vh - 280px);
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-height) + 40px);
  padding-bottom: 80px;
  background: var(--light);
}

.thankyou-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
  padding: 3rem 2rem;
}

.thankyou-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: rgba(25, 135, 84, 0.1);
  color: #198754;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
}

.thankyou-card h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 0.85rem;
}

.thankyou-card p {
  color: #222;
  font-size: 1rem;
  max-width: 460px;
  margin: 0 auto 1.75rem;
}

.thankyou-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

@media (max-width: 575.98px) {
  .thankyou-card { padding: 2rem 1.25rem; }
  .thankyou-actions .btn { width: 100%; }
}
