/* ==========================================================================
   LandVeda - Land Real Estate Listing Platform
   Global stylesheet (Bootstrap 5 overrides + custom components)
   ========================================================================== */

:root {
  --lv-green: #14532d;
  --lv-green-dark: #0e3d21;
  --lv-green-light: #1f7a45;
  --lv-gold: #c08a2e;
  --lv-gold-light: #e0a94a;
  --lv-cream: #f6f5ee;
  --lv-cream-dark: #eceade;
  --lv-ink: #1d2b22;
  --lv-muted: #6b7b70;
  --lv-border: #e2e0d4;
  --lv-radius: 12px;
  --lv-shadow: 0 4px 20px rgba(20, 83, 45, .07), 0 1px 3px rgba(0,0,0,.04);
  --lv-shadow-hover: 0 20px 40px rgba(20, 83, 45, .14), 0 4px 12px rgba(0,0,0,.06);
  --lv-transition: .3s cubic-bezier(.4,0,.2,1);
}

/* ---------- base ---------- */
body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--lv-ink);
  background: #fff;
  font-size: 15px;
  line-height: 1.65;
}

h1, h2, h3, h4, h5, .font-serif {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  color: var(--lv-green);
  font-weight: 700;
}

a { color: var(--lv-green); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--lv-gold); }

.text-gold { color: var(--lv-gold) !important; }
.text-green { color: var(--lv-green) !important; }
.text-muted-2 { color: var(--lv-muted) !important; }
.bg-cream { background-color: var(--lv-cream) !important; }
.bg-green { background-color: var(--lv-green) !important; }
.bg-green-dark { background-color: var(--lv-green-dark) !important; }
.fw-medium { font-weight: 500; }
.small-caps { letter-spacing: .12em; text-transform: uppercase; font-size: .72rem; font-weight: 600; }

.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }

.section-title {
  font-size: clamp(1.6rem, 2.6vw, 2.15rem);
  margin-bottom: 4px;
}
.section-sub { color: var(--lv-muted); margin-bottom: 0; }

/* ---------- buttons ---------- */
.btn {
  border-radius: 8px; font-weight: 600; padding: .6rem 1.25rem; font-size: .9rem;
  transition: all var(--lv-transition);
  letter-spacing: .01em;
}
.btn-lv {
  background: linear-gradient(135deg, var(--lv-green) 0%, var(--lv-green-light) 100%);
  border: 1px solid var(--lv-green);
  color: #fff;
  box-shadow: 0 2px 8px rgba(20, 83, 45, .2);
}
.btn-lv:hover, .btn-lv:focus {
  background: linear-gradient(135deg, var(--lv-green-dark) 0%, var(--lv-green) 100%);
  border-color: var(--lv-green-dark); color: #fff;
  box-shadow: 0 4px 16px rgba(20, 83, 45, .3);
  transform: translateY(-1px);
}

.btn-lv-gold {
  background: linear-gradient(135deg, var(--lv-gold) 0%, var(--lv-gold-light) 100%);
  border: 1px solid var(--lv-gold); color: #fff;
  box-shadow: 0 2px 8px rgba(192, 138, 46, .25);
}
.btn-lv-gold:hover, .btn-lv-gold:focus {
  background: linear-gradient(135deg, #a9761f 0%, var(--lv-gold) 100%);
  border-color: #a9761f; color: #fff;
  box-shadow: 0 4px 16px rgba(192, 138, 46, .35);
  transform: translateY(-1px);
}

.btn-lv-outline {
  background: #fff; border: 1.5px solid var(--lv-border); color: var(--lv-green);
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.btn-lv-outline:hover {
  border-color: var(--lv-green); background: var(--lv-cream); color: var(--lv-green);
  box-shadow: 0 2px 8px rgba(20, 83, 45, .1);
}

.btn-lv-ghost { border: 1.5px solid rgba(255,255,255,.55); color: #fff; background: transparent; }
.btn-lv-ghost:hover { background: #fff; color: var(--lv-green); transform: translateY(-1px); }

/* ---------- header ---------- */
.lv-navbar {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226,224,212,.6);
  padding: .55rem 0;
  transition: box-shadow .3s ease;
}
.lv-navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.06); }
.lv-navbar .navbar-brand img { height: 50px; border-radius: 6px; }
.lv-navbar .nav-link {
  color: var(--lv-ink);
  font-weight: 500;
  font-size: .9rem;
  padding: .5rem .85rem !important;
  position: relative;
  transition: color var(--lv-transition);
}
.lv-navbar .nav-link:hover { color: var(--lv-green); }
.lv-navbar .nav-link.active { color: var(--lv-green); font-weight: 600; }
/* Underline for active non-dropdown nav links only */
.lv-navbar .nav-item:not(.dropdown) > .nav-link.active::after {
  content: "";
  position: absolute;
  left: .85rem; right: .85rem; bottom: .1rem;
  height: 2.5px;
  background: linear-gradient(90deg, var(--lv-green), var(--lv-green-light));
  border-radius: 2px;
}
/* For dropdown toggle: underline sits inside the toggle, not below dropdown */
.lv-navbar .nav-item.dropdown > .nav-link.active::after {
  content: "";
  position: absolute;
  left: .85rem; right: 1.6rem; bottom: .1rem;
  height: 2.5px;
  background: linear-gradient(90deg, var(--lv-green), var(--lv-green-light));
  border-radius: 2px;
}
/* Dropdown: eliminate gap between toggle and menu */
.lv-navbar .nav-item.dropdown { position: relative; }
.lv-navbar .dropdown-menu {
  margin-top: 0 !important;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.dropdown-menu {
  border: 1px solid var(--lv-border);
  box-shadow: 0 8px 30px rgba(0,0,0,.1);
  font-size: .9rem;
  border-radius: 10px;
  padding: .4rem 0;
  animation: dropIn .2s ease;
}
@keyframes dropIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.dropdown-item { padding: .5rem 1rem; border-radius: 0; margin: 0; transition: all .15s ease; }
.dropdown-item:hover { background: var(--lv-cream); color: var(--lv-green); }
.dropdown-item:active { background: var(--lv-green); color: #fff; }
.dropdown-item:first-child { border-radius: 0 0 0 0; }
.dropdown-item:last-child { border-radius: 0; }

/* ---------- hero ---------- */
.lv-hero {
  position: relative;
  background: linear-gradient(165deg, #fbfaf5 0%, #f0efdf 40%, #e8eed6 100%);
  overflow: hidden;
}
.lv-hero-inner { position: relative; z-index: 2; padding: 80px 0 36px; }
.lv-hero h1 {
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -.01em;
}
.lv-hero p.lead { color: #46574c; font-size: 1.05rem; max-width: 480px; line-height: 1.6; }
.lv-hero-media {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 62%;
  background: url("../img/hero-land.jpg") center/cover no-repeat;
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
}
.lv-hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, #f6f5ee 0%, rgba(246,245,238,.55) 22%, rgba(246,245,238,0) 55%);
}
.lv-plot-marker {
  position: absolute; z-index: 3;
  width: 26px; height: 26px;
  color: #fff;
}
@media (max-width: 991.98px) {
  .lv-hero-media { position: relative; width: 100%; height: 260px; clip-path: none; margin-top: 20px; }
  .lv-hero-inner { padding-bottom: 0; padding-left: 10px; padding-right: 10px; }
}

/* ---------- search bar ---------- */
.lv-searchbar {
  background: #fff;
  border: 1px solid rgba(226,224,212,.5);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(20, 83, 45, .08), 0 2px 6px rgba(0,0,0,.03);
  padding: 16px 18px;
}
.lv-searchbar .field { border-right: 1px solid var(--lv-border); padding: 0 14px; }
.lv-searchbar .field:first-child { padding-left: 4px; }
.lv-searchbar .field-label {
  font-size: .72rem;
  color: var(--lv-muted);
  font-weight: 600;
  margin-bottom: 2px;
  display: block;
}
.lv-searchbar .form-control,
.lv-searchbar .form-select {
  border: 0; padding: 0; height: auto;
  font-size: .9rem; box-shadow: none; background: transparent;
  color: var(--lv-ink);
}
.lv-searchbar .form-control::placeholder { color: #9aa79e; }
@media (max-width: 991.98px) { .lv-searchbar .field { border-right: 0; border-bottom: 1px solid var(--lv-border); padding: 8px 4px; } }

.popular-chip {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--lv-border);
  border-radius: 999px;
  padding: .28rem .8rem;
  font-size: .8rem;
  color: #40534a;
  margin: 0 6px 6px 0;
}
.popular-chip:hover { border-color: var(--lv-green); color: var(--lv-green); background: var(--lv-cream); }
.popular-chip.active { border-color: var(--lv-green); color: #fff; background: var(--lv-green); font-weight: 600; }
.popular-chip.active:hover { background: var(--lv-green-dark); border-color: var(--lv-green-dark); }

/* ---------- trust strip ---------- */
.lv-trust {
  background: var(--lv-cream);
  border: 1px solid var(--lv-border);
  border-radius: var(--lv-radius);
  padding: 22px 10px;
}
.lv-trust .item { padding: 6px 18px; }
.lv-trust .item + .item { border-left: 1px solid var(--lv-border); }
.lv-trust h6 { font-family: "Inter", sans-serif; font-weight: 700; font-size: .92rem; color: var(--lv-ink); margin-bottom: 2px; }
.lv-trust p { font-size: .8rem; color: var(--lv-muted); margin: 0; line-height: 1.45; }
.lv-icon-circle {
  width: 48px; height: 48px; flex: 0 0 48px;
  background: linear-gradient(135deg, rgba(20,83,45,.06), rgba(20,83,45,.12));
  border: 1.5px solid rgba(20,83,45,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--lv-green);
  transition: all var(--lv-transition);
}
.lv-icon-circle:hover, .lv-trust .item:hover .lv-icon-circle {
  background: linear-gradient(135deg, var(--lv-green), var(--lv-green-light));
  color: #fff;
  border-color: var(--lv-green);
  transform: scale(1.08);
}
@media (max-width: 767.98px) { .lv-trust .item + .item { border-left: 0; } }

/* ---------- property card ---------- */
.lv-card {
  background: #fff;
  border: 1px solid rgba(226,224,212,.6);
  border-radius: var(--lv-radius);
  overflow: hidden;
  height: 100%;
  transition: all var(--lv-transition);
}
.lv-card:hover {
  box-shadow: var(--lv-shadow-hover);
  transform: translateY(-5px);
  border-color: rgba(20, 83, 45, .12);
}
.lv-card-media { position: relative; height: 180px; overflow: hidden; background: var(--lv-cream-dark); }
.lv-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.lv-card:hover .lv-card-media img { transform: scale(1.08); }
.lv-card-media::after {
  content: "";
  position: absolute; bottom: 0; left: 0; right: 0; height: 40%;
  background: linear-gradient(to top, rgba(0,0,0,.12), transparent);
  pointer-events: none;
}
.lv-badge {
  position: absolute; top: 10px; left: 10px;
  background: linear-gradient(135deg, var(--lv-green), var(--lv-green-light));
  color: #fff;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .05em;
  padding: .24rem .6rem;
  border-radius: 6px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.lv-badge.new { background: linear-gradient(135deg, #1f7a45, #28a745); }
.lv-badge.sold { background: linear-gradient(135deg, #8a2f2f, #c0392b); }

.lv-card-body { padding: 14px 16px 16px; }
.lv-card-loc { font-size: .78rem; color: var(--lv-muted); display: flex; align-items: center; gap: 4px; }
.lv-card-title {
  font-size: 1.02rem; margin: 6px 0 10px; font-weight: 700; line-height: 1.35;
  transition: color .2s ease;
}
.lv-card-title a { color: var(--lv-ink); text-decoration: none; }
.lv-card:hover .lv-card-title,
.lv-card:hover .lv-card-title a { color: var(--lv-gold); }
.lv-meta { display: flex; align-items: center; gap: 14px; font-size: .78rem; color: var(--lv-muted); flex-wrap: wrap; }
.lv-meta .price { color: var(--lv-green); font-weight: 700; font-size: .88rem; margin-left: auto; }
.lv-card-footer { border-top: 1px solid var(--lv-border); }
.lv-card-footer a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 16px; font-size: .84rem; font-weight: 600; color: var(--lv-green);
  transition: all .2s ease;
}
.lv-card-footer a:hover { background: var(--lv-cream); padding-left: 20px; }
.lv-card-footer a i { transition: transform .2s ease; }
.lv-card-footer a:hover i { transform: translateX(3px); }

/* ---------- how it works ---------- */
.lv-steps {
  background: linear-gradient(135deg, var(--lv-cream) 0%, #eef0e6 100%);
  border: 1px solid rgba(226,224,212,.5);
  border-radius: 16px;
  padding: 44px 24px 38px;
  box-shadow: 0 2px 12px rgba(0,0,0,.03);
}
.lv-step { position: relative; text-align: center; padding: 0 8px; }
.lv-step .circle {
  width: 66px; height: 66px; margin: 0 auto 12px;
  border: 2px solid var(--lv-gold);
  border-radius: 50%;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  color: var(--lv-green);
  position: relative; z-index: 2;
  transition: all var(--lv-transition);
  box-shadow: 0 3px 12px rgba(192, 138, 46, .12);
}
.lv-step:hover .circle {
  background: linear-gradient(135deg, var(--lv-gold), var(--lv-gold-light));
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(192, 138, 46, .25);
}
.lv-step h6 { font-family: "Inter", sans-serif; font-weight: 700; font-size: .92rem; margin-bottom: 4px; }
.lv-step p { font-size: .8rem; color: var(--lv-muted); margin: 0; }
.lv-step .num { color: var(--lv-gold); font-weight: 700; font-size: .8rem; }
.lv-steps-line { position: relative; }
.lv-steps-line::before {
  content: ""; position: absolute; top: 35%; left: 12%; right: 12%;
  border-top: 2px dashed rgba(192, 138, 46, .35); z-index: 1;
}
@media (max-width: 767.98px) { .lv-steps-line::before { display: none; } }

/* ---------- cta banner (about / other pages) ---------- */
.lv-cta {
  position: relative;
  border-radius: 0px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.92) 50%, rgba(255,255,255,.85) 100%),
              url("../img/page-hero.jpg") center/cover no-repeat;
  color: #000;
  padding: 40px 42px;
}
.lv-cta h3 { color: #000; font-size: 1.55rem; margin-bottom: 8px; }
.lv-cta p { color: rgba(0,0,0,.88); margin: 0; font-size: .94rem; }

/* ---------- cta sell-land banner ---------- */
.lv-cta-sell {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(14,61,33,.88) 0%, rgba(20,83,45,.78) 40%, rgba(31,122,69,.65) 100%),
    url("../img/plot-farm.jpg") center 40%/cover no-repeat;
  color: #fff;
  padding: 52px 48px;
  box-shadow: 0 12px 40px rgba(14,61,33,.22);
  transition: transform var(--lv-transition);
}
.lv-cta-sell:hover { transform: translateY(-3px); }
.lv-cta-sell-content { position: relative; z-index: 2; max-width: 560px; }
.lv-cta-sell h3 { font-size: 1.85rem; font-weight: 800; margin-bottom: 10px; line-height: 1.25; }
.lv-cta-gold { color: var(--lv-gold-light); }
.lv-cta-sell p { color: rgba(255,255,255,.85); margin: 0; font-size: 1rem; line-height: 1.6; }
.lv-cta-tree {
  position: absolute;
  right: -10px;
  bottom: -20px;
  width: 220px;
  height: auto;
  opacity: .85;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 767.98px) {
  .lv-cta-sell { padding: 36px 28px; }
  .lv-cta-sell h3 { font-size: 1.45rem; }
  .lv-cta-tree { width: 140px; right: -15px; bottom: -15px; opacity: .5; }
}

/* ---------- testimonials grid ---------- */
.lv-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.lv-testimonial-card {
  background: #fff;
  border: 1px solid var(--lv-border);
  border-radius: 16px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.lv-testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lv-shadow-hover);
}
.lv-testimonial-stars { font-size: .85rem; color: #d4d4d4; }
.lv-testimonial-stars .text-gold { color: var(--lv-gold) !important; }
.lv-testimonial-text {
  flex: 1;
  font-size: .92rem;
  line-height: 1.65;
  color: #3d4d43;
  margin-bottom: 20px;
  font-style: italic;
}
.lv-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--lv-border);
  padding-top: 16px;
}
.lv-testimonial-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.lv-testimonial-avatar-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--lv-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--lv-muted);
  font-size: 1.1rem;
}
.lv-testimonial-author h6 { font-size: .88rem; font-weight: 600; }
.lv-testimonial-author small { font-size: .78rem; }

/* Tablet: 2 columns */
@media (max-width: 991.98px) {
  .lv-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile: hide grid, show carousel */
@media (max-width: 575.98px) {
  .lv-testimonials-grid { display: none !important; }
}
/* Desktop: hide carousel */
.lv-testimonials-carousel { display: none; }
@media (max-width: 575.98px) {
  .lv-testimonials-carousel { display: block; }
  .lv-testimonials-carousel .carousel-indicators { bottom: -12px; }
  .lv-testimonials-carousel .carousel-indicators [data-bs-target] {
    width: 8px; height: 8px; border-radius: 50%;
    background-color: var(--lv-green); opacity: .3;
  }
  .lv-testimonials-carousel .carousel-indicators .active { opacity: 1; }
  .lv-testimonials-carousel .carousel-item { padding: 0 4px; }
}

/* ---------- page hero (sub pages) ---------- */
.lv-page-hero {
  background: linear-gradient(135deg, rgba(14,61,33,.92), rgba(20,83,45,.65)),
              url("../img/page-hero.jpg") center 35%/cover no-repeat;
  color: #fff;
  padding: 68px 0 60px;
}
.lv-page-hero h1 { color: #fff; font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-bottom: 8px; }
.lv-page-hero p { color: rgba(255,255,255,.85); margin: 0; }
.lv-page-hero .breadcrumb { margin: 0; }
.lv-page-hero .breadcrumb a { color: rgba(255,255,255,.85); }
.lv-page-hero .breadcrumb a:hover { color: #fff; }
.lv-page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.6); }
.lv-page-hero .breadcrumb-item.active { color: var(--lv-gold-light); }

/* ---------- filters sidebar ---------- */
.lv-panel {
  background: #fff;
  border: 1px solid rgba(226,224,212,.6);
  border-radius: var(--lv-radius);
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,.03);
}
.lv-panel h6 {
  font-family: "Inter", sans-serif; font-weight: 700; font-size: .9rem;
  color: var(--lv-ink); margin-bottom: 10px;
}
.lv-panel + .lv-panel { margin-top: 18px; }
.lv-filter-group { border-top: 1px solid var(--lv-border); padding-top: 14px; margin-top: 14px; }
.form-label { font-size: .8rem; font-weight: 600; color: #40534a; margin-bottom: 4px; }
.form-control, .form-select { font-size: .88rem; border-color: var(--lv-border); }
.form-control:focus, .form-select:focus {
  border-color: var(--lv-green-light);
  box-shadow: 0 0 0 .18rem rgba(31,122,69,.12);
}
.form-check-label { font-size: .85rem; }
.form-check-input:checked { background-color: var(--lv-green); border-color: var(--lv-green); }

/* ---------- property details ---------- */
.lv-gallery-main {
  border-radius: var(--lv-radius);
  overflow: hidden;
  height: 380px;
  background: var(--lv-cream-dark);
}
.lv-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.lv-thumb { border-radius: 8px; overflow: hidden; height: 84px; cursor: pointer; border: 2px solid transparent; }
.lv-thumb.active { border-color: var(--lv-gold); }
.lv-thumb img { width: 100%; height: 100%; object-fit: cover; }
.lv-spec {
  border: 1px solid var(--lv-border);
  border-radius: 8px;
  padding: 12px 14px;
  background: #fff;
  height: 100%;
}
.lv-spec .k { font-size: .74rem; color: var(--lv-muted); }
.lv-spec .v { font-weight: 600; font-size: .9rem; }
.lv-check-list { list-style: none; padding: 0; margin: 0; }
.lv-check-list li { position: relative; padding-left: 24px; margin-bottom: 8px; font-size: .9rem; }
.lv-check-list li::before {
  content: "✓";
  position: absolute; left: 0; top: -1px;
  color: var(--lv-green-light); font-weight: 700;
}
.lv-price-tag { font-size: 1.6rem; font-family: "Playfair Display", serif; color: var(--lv-green); font-weight: 700; }
.lv-map { border: 0; width: 100%; height: 260px; border-radius: 8px; }

/* ---------- blog ---------- */
.lv-blog-card {
  background: #fff; border: 1px solid rgba(226,224,212,.6); border-radius: var(--lv-radius);
  overflow: hidden; height: 100%; display: flex; flex-direction: column;
  transition: all var(--lv-transition);
}
.lv-blog-card:hover { box-shadow: var(--lv-shadow-hover); transform: translateY(-4px); }
.lv-blog-card-media { height: 200px; overflow: hidden; position: relative; }
.lv-blog-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.lv-blog-card:hover .lv-blog-card-media img { transform: scale(1.06); }
.lv-blog-cat {
  position: absolute; top: 12px; left: 12px;
  background: var(--lv-green); color: #fff;
  font-size: .72rem; font-weight: 600; padding: 4px 12px;
  border-radius: 999px; letter-spacing: .02em;
}
.lv-blog-card-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.lv-blog-date { font-size: .78rem; color: var(--lv-muted); margin-bottom: 8px; }
.lv-blog-card-title { font-size: 1.1rem; font-weight: 700; margin: 0 0 8px; line-height: 1.35; }
.lv-blog-card-title a { color: var(--lv-ink); text-decoration: none; }
.lv-blog-card-title a:hover { color: var(--lv-green); }
.lv-blog-excerpt { font-size: .88rem; color: var(--lv-muted); margin-bottom: 14px; line-height: 1.55; flex: 1; }
.lv-read-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .85rem; font-weight: 600; color: var(--lv-green);
  text-decoration: none; margin-top: auto;
  transition: gap .2s ease, color .2s ease;
}
.lv-read-more:hover { color: var(--lv-green-dark); gap: 10px; }
.lv-tag {
  display: inline-block; background: var(--lv-cream); color: var(--lv-green);
  border: 1px solid var(--lv-border); border-radius: 999px;
  font-size: .72rem; font-weight: 600; padding: .15rem .6rem;
}
.lv-blog-meta { font-size: .76rem; color: var(--lv-muted); }
.lv-article-body p { color: #3d4d43; }
.lv-article-body h3 { font-size: 1.25rem; margin: 26px 0 10px; }
.lv-article-body blockquote {
  border-left: 3px solid var(--lv-gold);
  padding: 6px 0 6px 16px;
  color: #40534a;
  font-style: italic;
  margin: 20px 0;
}

/* ---------- stats ---------- */
.lv-stat { text-align: center; padding: 18px 10px; }
.lv-stat .num { font-family: "Playfair Display", serif; font-size: 2rem; font-weight: 700; color: var(--lv-green); line-height: 1; }
.lv-stat .lbl { font-size: .82rem; color: var(--lv-muted); }

/* ---------- about page ---------- */
.ls-wide { letter-spacing: 1.5px; }

.lv-about-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.lv-about-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: cover;
}
.lv-about-img-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--lv-green);
  color: #fff;
  padding: 14px 20px;
  border-radius: 12px;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 4px 20px rgba(20,83,45,.35);
}
.lv-about-badge-number {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
}
.lv-about-badge-text {
  display: block;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: .9;
}
.lv-about-check {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  background: var(--lv-green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  margin-top: 1px;
}

/* stats banner */
.lv-about-stats {
  background: linear-gradient(135deg, var(--lv-green), #166534);
  color: #fff;
  padding: 40px 0;
}
.lv-about-stats h3 { color: var(--lv-gold-light); }
.lv-about-stats p { color: rgba(255,255,255,.8); }

/* mission/vision cards */
.lv-about-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.lv-about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,.08);
}
.lv-about-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(20,83,45,.08), rgba(20,83,45,.15));
  color: var(--lv-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

/* why choose features */
.lv-about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.lv-about-feature-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(20,83,45,.08), rgba(20,83,45,.15));
  color: var(--lv-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* process steps */
.lv-about-step {
  padding: 28px 20px;
}
.lv-about-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lv-green), #166534);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

/* ---------- footer ---------- */
.lv-footer {
  position: relative;
  background: url('../img/plot-farm.jpg') center/cover no-repeat fixed;
  color: rgba(255,255,255,.9);
  font-size: .88rem;
}

.lv-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,46,22,.92) 0%, rgba(14,61,33,.88) 50%, rgba(8,35,16,.95) 100%);
  z-index: 0;
}

.lv-footer .container { position: relative; z-index: 1; }

.footer-heading {
  color: var(--lv-gold);
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.footer-desc { color: rgba(255,255,255,.7); line-height: 1.6; }

.footer-link {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  transition: color .2s ease, padding-left .2s ease;
}
.footer-link:hover { color: var(--lv-gold-light); padding-left: 3px; }

.footer-contact { color: rgba(255,255,255,.7); }
.footer-contact i { color: var(--lv-gold); }

.footer-social {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.8);
  font-size: 1rem;
  transition: all .2s ease;
}
.footer-social:hover {
  background: var(--lv-gold);
  border-color: var(--lv-gold);
  color: #fff;
  transform: translateY(-2px);
}

.lv-footer ul { list-style: none; padding: 0; margin: 0; }
.lv-footer ul li { margin-bottom: 8px; }

.lv-newsletter .form-control { border-radius: 6px 0 0 6px; border: 0; font-size: .85rem; }
.lv-newsletter .btn { border-radius: 0 6px 6px 0; }
.lv-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14);
  margin-top: 38px; padding: 16px 0;
  font-size: .82rem;
}

/* ---------- agent card ---------- */
.lv-agent-card {
  background: #fff;
  border: 1px solid rgba(226,224,212,.6);
  border-radius: var(--lv-radius);
  padding: 28px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  transition: all var(--lv-transition);
}
.lv-agent-card:hover { box-shadow: var(--lv-shadow); }
.lv-agent-card img {
  width: 84px; height: 84px; border-radius: 50%; object-fit: cover;
  border: 3px solid var(--lv-cream-dark);
  margin-bottom: 14px;
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
}
.lv-agent-card h6 { margin-bottom: 2px; }
.lv-agent-card .role { font-size: .78rem; color: var(--lv-muted); margin-bottom: 14px; }
.lv-agent-card .contact-link {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 8px 12px; margin-bottom: 6px; font-size: .88rem; color: var(--lv-ink);
  border-radius: 8px; transition: background .2s;
}
.lv-agent-card .contact-link:hover { background: var(--lv-cream); color: var(--lv-green); }
.lv-agent-card .contact-link i { font-size: 1.1rem; color: var(--lv-green); }

/* ---------- documents ---------- */
.lv-doc-list { list-style: none; padding: 0; margin: 0; }
.lv-doc-list li {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px; border: 1px solid var(--lv-border); border-radius: 8px;
  margin-bottom: 8px; transition: background .2s;
}
.lv-doc-list li:hover { background: var(--lv-cream); }
.lv-doc-list .doc-icon { font-size: 1.5rem; flex: 0 0 auto; }
.lv-doc-list .doc-info { flex: 1; }
.lv-doc-list .doc-title { font-weight: 600; font-size: .88rem; }
.lv-doc-list .doc-meta { font-size: .76rem; color: var(--lv-muted); }
.lv-doc-list .doc-download {
  font-size: .82rem; font-weight: 600; color: var(--lv-green);
  display: flex; align-items: center; gap: 4px;
}
.lv-doc-list .doc-download:hover { color: var(--lv-gold); }

/* ---------- inquiry form ---------- */
.lv-inquiry {
  background: #fff;
  border: 1px solid rgba(226,224,212,.6);
  border-radius: var(--lv-radius);
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.lv-inquiry h5 { font-size: 1.1rem; margin-bottom: 18px; }

/* ---------- contact page ---------- */
.lv-contact-info {
  background: var(--lv-cream);
  border: 1px solid var(--lv-border);
  border-radius: var(--lv-radius);
  padding: 24px;
}
.lv-contact-info h5 { font-size: 1.05rem; margin-bottom: 16px; }
.lv-contact-info .info-item {
  display: flex; gap: 12px; margin-bottom: 14px;
}
.lv-contact-info .info-item i { font-size: 1.2rem; color: var(--lv-green); flex: 0 0 auto; margin-top: 2px; }

/* ---------- sell land page ---------- */
.lv-process-step {
  text-align: center;
  padding: 24px 12px;
  transition: transform var(--lv-transition);
}
.lv-process-step:hover { transform: translateY(-3px); }
.lv-process-step .step-num {
  width: 50px; height: 50px; margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lv-green), var(--lv-green-light));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .95rem;
  box-shadow: 0 4px 14px rgba(20, 83, 45, .2);
  transition: all var(--lv-transition);
}
.lv-process-step:hover .step-num {
  box-shadow: 0 6px 20px rgba(20, 83, 45, .3);
  transform: scale(1.08);
}
.lv-process-step h6 { font-family: "Inter", sans-serif; font-weight: 700; font-size: .9rem; }
.lv-process-step p { font-size: .82rem; color: var(--lv-muted); margin: 0; }

/* ---------- utilities ---------- */
.hover-lift { transition: all var(--lv-transition); }
.hover-lift:hover { transform: translateY(-4px); box-shadow: var(--lv-shadow-hover); }
.page-link { color: var(--lv-green); font-size: .88rem; border-radius: 6px; transition: all .2s ease; }
.page-link:hover { background: var(--lv-cream); }
.page-item.active .page-link {
  background: linear-gradient(135deg, var(--lv-green), var(--lv-green-light));
  border-color: var(--lv-green);
}
.accordion { --bs-accordion-border-radius: 10px; }
.accordion-item { border-color: var(--lv-border); margin-bottom: 6px; border-radius: 10px !important; overflow: hidden; }
.accordion-button { font-size: .95rem; font-weight: 600; color: var(--lv-green); padding: .9rem 1.1rem; }
.accordion-button:not(.collapsed) { background: var(--lv-cream); color: var(--lv-green); box-shadow: none; }
.accordion-button:focus { box-shadow: none; border-color: var(--lv-border); }
.accordion-body { font-size: .9rem; color: #3d4d43; line-height: 1.7; }

/* ---------- scroll animations ---------- */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ---------- smooth selection ---------- */
::selection { background: rgba(20, 83, 45, .14); color: var(--lv-ink); }

/* ---------- custom scrollbar ---------- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--lv-cream); }
::-webkit-scrollbar-thumb { background: rgba(20, 83, 45, .2); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(20, 83, 45, .35); }

.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 8px 25px rgba(37,211,102,.4);
    transition: all .3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float svg {
    width: 34px;
    height: 34px;
    fill: #fff;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 12px 35px rgba(37,211,102,.55);
}

.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.wa-tooltip {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: #111;
    color: #fff;
    padding: 10px 14px;
    border-radius: 8px;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}

.wa-tooltip:after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 6px solid #111;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37,211,102,.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37,211,102,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
}

@media(max-width:768px){
    .whatsapp-float{
        width:60px;
        height:60px;
        right:10px;
        bottom:10px;
    }

    .wa-tooltip{
        display:none;
    }
}