/*
Theme Name: LandVista
Author: Anil
Version: 1.0
Description: LandVista Real Estate Theme (Black/Gold)
*/

:root{
  --bg: #0d0d10;
  --bg2:#121217;
  --card:#15151b;
  --gold:#c9a24d;
  --gold2:#f2d27a;
  --text:#f5f5f5;
  --muted: rgba(255,255,255,0.70);
  --border: rgba(255,255,255,0.10);
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 50% 0%, rgba(201,162,77,0.07), transparent 60%), var(--bg);
  color: var(--text);
}

a{ text-decoration:none; }
.container-xl{ max-width: 1200px; }

/* ===== Header ===== */
.lv-nav{
  background: rgba(10,10,12,0.78);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.lv-brand{
  color: var(--gold) !important;
  font-weight: 800;
  letter-spacing: .5px;
  font-size: 26px;
}

.lv-nav .nav-link{
  color: rgba(255,255,255,0.80) !important;
  font-weight: 500;
  padding: 10px 14px !important;
  transition: .25s ease;
}

.lv-nav .nav-link:hover{
  color: var(--gold2) !important;
}

.lv-nav .nav-link.active{
  color: var(--gold2) !important;
  border-bottom: 2px solid var(--gold);
}

/* ===== Buttons ===== */
.btn-gold{
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  border:none;
  color:#141414;
  font-weight: 800;
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: 0 10px 30px rgba(201,162,77,0.20);
}

.btn-darkglass{
  background: rgba(0,0,0,0.50);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 700;
}

.btn-pill{
  border-radius: 999px !important;
}

/* ===== HERO ===== */
.lv-hero{
  position: relative;
}

.lv-hero .carousel-item{
  min-height: 76vh;
  background-position: center;
  background-size: cover;
  position: relative;
}

.lv-hero .carousel-item::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.55));
}

.lv-hero .carousel-item::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,0.70), rgba(0,0,0,0.18), rgba(0,0,0,0.70));
}

.lv-hero-content{
  position: relative;
  z-index: 2;
  padding: 90px 0 35px 0;
  text-align: center;
}

.lv-hero h1{
  font-family: Georgia, "Times New Roman", serif;
  font-size: 54px;
  font-weight: 800;
  line-height: 1.15;
  text-shadow: 0 12px 30px rgba(0,0,0,0.55);
}

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

.lv-hero p{
  max-width: 720px;
  margin: 12px auto 0 auto;
  color: rgba(255,255,255,0.75);
  font-size: 16px;
}

/* ===== Search Bar ===== */
.lv-searchbar{
  position: relative;
  z-index: 3;
  margin-top: -30px;
}

.lv-searchwrap{
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 14px;
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 60px rgba(0,0,0,0.60);
}

.lv-searchwrap .form-control,
.lv-searchwrap .form-select{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  border-radius: 12px;
  height: 46px;
}

.lv-searchwrap option{
  color:#111;
}

/* ===== Section ===== */
.lv-section{
  padding: 70px 0;
}

/* Featured title like screenshot */
.lv-divider-title{
  text-align: center;
  margin-bottom: 20px;
}

.lv-divider-title h2{
  font-size: 24px;
  font-weight: 800;
  color: var(--gold2);
  margin:0;
  letter-spacing: 0.2px;
}

.lv-divider-line{
  width: 240px;
  height: 1px;
  background: rgba(201,162,77,0.45);
  margin: 14px auto 0 auto;
}

/* tabs */
.lv-tabs{
  justify-content: center;
  margin: 18px 0 26px 0;
  gap: 10px;
}

.lv-tabs .nav-link{
  border-radius: 10px !important;
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.70);
  background: rgba(0,0,0,0.20);
  font-weight: 700;
  padding: 8px 16px;
}

.lv-tabs .nav-link.active{
  background: rgba(201,162,77,0.20);
  border-color: rgba(201,162,77,0.55);
  color: var(--gold2);
}

/* ===== Cards (Rounded) ===== */
.lv-prop-card{
  background: rgba(20,20,26,0.85);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 45px rgba(0,0,0,0.55);
  transition: all .35s ease;
  height: 100%;
}

.lv-prop-card:hover{
  transform: translateY(-10px);
  box-shadow: 0 24px 70px rgba(0,0,0,0.65);
}

.lv-prop-img{
  height: 210px;
  width: 100%;
  object-fit: cover;
}

.lv-prop-body{
  padding: 16px;
}

.lv-prop-title{
  font-weight: 800;
  margin-bottom: 6px;
  font-size: 16px;
}

.lv-prop-price{
  color: var(--gold2);
  font-weight: 800;
  margin-bottom: 14px;
}

/* ===== How We Work ===== */
.lv-work-wrap{
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.lv-work-step{
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 18px;
  height: 100%;
  overflow: hidden;
}

.lv-work-step::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(380px 140px at 20% 0%, rgba(201,162,77,0.14), transparent 70%);
  opacity: 0.9;
  pointer-events:none;
}

.lv-work-icon{
  height: 54px;
  width: 54px;
  border-radius: 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(201,162,77,0.15);
  border: 1px solid rgba(201,162,77,0.35);
  font-size: 22px;
  color: var(--gold2);
}

.lv-work-title{
  font-weight: 800;
  margin-top: 12px;
}

.lv-work-desc{
  color: rgba(255,255,255,0.70);
  font-size: 13px;
  margin-top: 6px;
}

/* arrows row (desktop) */
.lv-arrow{
  display:flex;
  align-items:center;
  justify-content:center;
  color: rgba(201,162,77,0.75);
  font-size: 26px;
}

/* ===== Video ===== */
.lv-video{
  background: rgba(20,20,26,0.85);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  overflow:hidden;
  box-shadow: 0 14px 45px rgba(0,0,0,0.55);
}

/* ===== Testimonials ===== */
.lv-testimonial{
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 18px;
  height: 100%;
}

.lv-stars{
  color: var(--gold2);
  letter-spacing: 2px;
}

/* ===== Footer ===== */
.lv-footer{
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 50px 0;
  color: rgba(255,255,255,0.70);
}

.lv-footer a{
  color: rgba(255,255,255,0.70);
}

.lv-footer a:hover{
  color: var(--gold2);
}

.lv-footer-box{
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 18px;
}

/* ===== CTA ===== */
.lv-cta-center{
  text-align:center;
  padding-top: 30px;
}

/* ===== Fade Smooth Animation ===== */
.lv-animate{
  opacity:0;
  transform: translateY(16px);
  transition: all .8s ease;
}
.lv-animate.show{
  opacity:1;
  transform: translateY(0);
}

@media(max-width: 768px){
  .lv-hero h1{ font-size: 34px; }
  .lv-searchbar{ margin-top: -20px; }
  .lv-arrow{ display:none; }
}


/* ===== Newsletter ===== */
.lv-newsletter{
  display:flex;
  gap:10px;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 10px;
  border-radius: 14px;
}

.lv-news-input{
  flex:1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color:#fff;
  height: 44px;
  border-radius: 12px;
  padding: 0 12px;
  outline: none;
}

.lv-news-input::placeholder{
  color: rgba(255,255,255,0.55);
}

.lv-news-btn{
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  border:none;
  color:#111;
  font-weight:800;
  border-radius: 12px;
  padding: 0 14px;
  height: 44px;
  white-space: nowrap;
}

/* ===== Mini Map ===== */
.lv-map-wrap{
  border-radius: 16px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 14px 45px rgba(0,0,0,0.45);
}

.lv-map-wrap iframe{
  width:100%;
  height: 160px;
  display:block;
}

/* ===== Floating WhatsApp Button ===== */
.lv-float-whatsapp{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  height: 56px;
  width: 56px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(135deg, #25D366, #1db954);
  color: white;
  font-size: 22px;
  box-shadow: 0 14px 45px rgba(0,0,0,0.55);
  transition: all .25s ease;
}

.lv-float-whatsapp:hover{
  transform: translateY(-4px);
}

/* ===== Scroll To Top Button ===== */
.lv-scroll-top{
  position: fixed;
  right: 18px;
  bottom: 86px; /* WhatsApp button के ऊपर */
  z-index: 9999;
  height: 52px;
  width: 52px;
  border-radius: 999px;
  border: 1px solid rgba(201,162,77,0.55);
  background: rgba(0,0,0,0.55);
  color: var(--gold2);
  font-size: 18px;
  font-weight: 900;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 14px 45px rgba(0,0,0,0.45);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all .25s ease;
}

.lv-scroll-top.show{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lv-scroll-top:hover{
  background: rgba(201,162,77,0.12);
}
/* =========================================
   ✅ NEW Testimonials (Centered Pro Design)
========================================= */

.lv-review-wrap{
  position: relative;
  overflow: hidden;
}

.lv-review-wrap::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(700px 260px at 50% 0%, rgba(201,162,77,0.18), transparent 55%),
    radial-gradient(650px 260px at 80% 60%, rgba(201,162,77,0.12), transparent 55%);
  opacity: 0.9;
  pointer-events:none;
}

.lv-review-carousel .carousel-item{
  padding: 12px 0;
}

.lv-review-card{
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 22px;
  padding: 22px 18px;
  height: 100%;
  min-height: 320px;

  display:flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align:center;
  overflow:hidden;

  box-shadow: 0 18px 60px rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
  transition: all .35s ease;
}

.lv-review-card:hover{
  transform: translateY(-10px);
  border-color: rgba(201,162,77,0.30);
  box-shadow: 0 28px 80px rgba(0,0,0,0.65);
}

.lv-review-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(520px 200px at 50% 0%, rgba(201,162,77,0.16), transparent 70%);
  opacity: 0.9;
  pointer-events:none;
}

/* Center image */
.lv-review-avatar{
  height: 72px;
  width: 72px;
  border-radius: 999px;
  overflow:hidden;
  border: 2px solid rgba(201,162,77,0.40);
  box-shadow: 0 14px 35px rgba(201,162,77,0.18);
  background: rgba(201,162,77,0.08);
  position: relative;
  z-index: 2;
}

.lv-review-avatar img{
  width:100%;
  height:100%;
  object-fit: cover;
}

/* Name + location */
.lv-review-name{
  margin-top: 14px;
  font-weight: 800;
  font-size: 16px;
  position: relative;
  z-index: 2;
}

.lv-review-loc{
  margin-top: 4px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  position: relative;
  z-index: 2;
}

/* Stars center */
.lv-review-stars{
  margin-top: 10px;
  color: var(--gold2);
  letter-spacing: 2px;
  font-size: 14px;
  position: relative;
  z-index: 2;
}

/* Review text center */
.lv-review-text{
  margin-top: 14px;
  color: rgba(255,255,255,0.78);
  font-size: 16px;
  line-height: 1.85;
  max-width: 85%;
  position: relative;
  z-index: 2;
}

/* Badge */
.lv-review-badge{
  margin-top: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(201,162,77,0.25);
  background: rgba(201,162,77,0.10);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  position: relative;
  z-index: 2;
}

/* Quote watermark */
.lv-review-quote{
  position:absolute;
  bottom: 12px;
  right: 14px;
  font-size: 46px;
  color: rgba(201,162,77,0.10);
  transform: rotate(6deg);
}

/* Carousel controls */
.lv-review-carousel .carousel-control-prev,
.lv-review-carousel .carousel-control-next{
  width: 52px;
}

.lv-review-carousel .carousel-control-prev-icon,
.lv-review-carousel .carousel-control-next-icon{
  filter: brightness(2);
  opacity: 0.65;
}

/* Indicators */
.lv-review-carousel .carousel-indicators [data-bs-target]{
  height: 8px;
  width: 8px;
  border-radius: 999px;
  background: rgba(201,162,77,0.55);
}

/* Mobile cleanup */
@media(max-width: 768px){
  .lv-review-card{
    min-height: 340px;
    padding: 22px 16px;
  }

  .lv-review-text{
    font-size: 15px;
    max-width: 95%;
  }

  .lv-review-carousel .carousel-control-prev,
  .lv-review-carousel .carousel-control-next{
    display:none;
  }
}


/* =========================================
   WHY INVEST IN JAIPUR – LANDVISTA SECTION
========================================= */

.lv-why-jaipur{
  position: relative;
  background:
    radial-gradient(900px 300px at 20% 0%, rgba(201,162,77,0.14), transparent 55%),
    radial-gradient(900px 300px at 80% 60%, rgba(201,162,77,0.10), transparent 55%),
    rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.lv-why-grid{
  margin-top: 40px;
}

.lv-why-card{
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 22px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 18px 60px rgba(0,0,0,0.55);
  transition: all .35s ease;
}

.lv-why-card:hover{
  transform: translateY(-10px);
  border-color: rgba(201,162,77,0.35);
}

.lv-why-img{
  height: 220px;
  width: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
}

.lv-why-content{
  padding: 20px;
}

.lv-why-title{
  font-size: 18px;
  font-weight: 800;
  color: var(--gold2);
  margin-bottom: 8px;
}

.lv-why-text{
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255,255,255,0.75);
}

.lv-why-point{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin-top: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.70);
}

.lv-why-icon{
  color: var(--gold2);
  font-size: 14px;
  line-height: 1.6;
}

@media(max-width:768px){
  .lv-why-img{
    height: 190px;
  }
}


/* =========================================
   ANIMATED STATS – LANDVISTA
========================================= */

.lv-stats{
  position: relative;
  background:
    radial-gradient(900px 260px at 20% 0%, rgba(201,162,77,0.16), transparent 55%),
    radial-gradient(900px 260px at 80% 60%, rgba(201,162,77,0.12), transparent 55%),
    rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.lv-stat-box{
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 22px;
  padding: 28px 20px;
  text-align: center;
  height: 100%;
  box-shadow: 0 18px 60px rgba(0,0,0,0.55);
  transition: all .35s ease;
}

.lv-stat-box:hover{
  transform: translateY(-10px);
  border-color: rgba(201,162,77,0.35);
}

.lv-stat-icon{
  font-size: 28px;
  margin-bottom: 10px;
  color: var(--gold2);
}

.lv-stat-number{
  font-size: 38px;
  font-weight: 900;
  color: var(--gold2);
  line-height: 1;
}

.lv-stat-suffix{
  font-size: 18px;
  font-weight: 700;
  color: var(--gold2);
}

.lv-stat-label{
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
}

@media(max-width:768px){
  .lv-stat-number{
    font-size: 34px;
  }
}
/* ===============================
   LIGHTBOX
================================ */

.lv-lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}

.lv-lightbox.active{
  opacity: 1;
  pointer-events: all;
}

.lv-lightbox img{
  max-width: 92%;
  max-height: 90vh;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,.8);
  transform: scale(.9);
  transition: transform .35s ease;
}

.lv-lightbox.active img{
  transform: scale(1);
}

.lv-lightbox-close{
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
  opacity: .8;
}

.lv-lightbox-close:hover{
  opacity: 1;
}

/* ===============================
   SCROLL ANIMATIONS
================================ */

.lv-animate{
  opacity: 0;
  transform: translateY(40px);
  transition: all .7s ease;
}

.lv-animate.show{
  opacity: 1;
  transform: translateY(0);
}

.lv-left{
  transform: translateX(-60px);
}
.lv-right{
  transform: translateX(60px);
}
.lv-zoom{
  transform: scale(.9);
}

.lv-left.show,
.lv-right.show{
  transform: translateX(0);
}

.lv-zoom.show{
  transform: scale(1);
}
/* ===== SINGLE PROPERTY FIX ===== */

.lv-prop-main{
  position: relative;
  background: transparent;

}

.lv-prop-hero{
  height: 80vh;
    background-size: cover;
}

.lv-prop-overlay{
  padding: 40px 20px;
}

.lv-text{
  max-width: 900px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255,255,255,0.85);
}

/* Gallery grid */
.lv-gallery-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 20px;
}

/* Ensure sections never overlap hero */
.lv-section{
  position: relative;
  z-index: 2;
}
/* ===============================
   GALLERY SLIDER
================================ */
.lv-gallery{
  position: relative;
}

.lv-gallery-slider{
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 40px;
}

.lv-gallery-slide{
  flex: 0 0 280px;
}

.lv-gallery-img{
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
  cursor: pointer;
  transition: transform .4s ease;
}

.lv-gallery-img:hover{
  transform: scale(1.05);
}

/* arrows */
.lv-gal-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.6);
  border: none;
  color: #fff;
  font-size: 26px;
  padding: 8px 14px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
}
.lv-gal-arrow.left{ left: 10px; }
.lv-gal-arrow.right{ right: 10px; }

/* ===============================
   LIGHTBOX
================================ */
.lv-lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 9999;
}

.lv-lightbox.active{
  opacity: 1;
  pointer-events: all;
}

.lv-lightbox img{
  max-width: 92%;
  max-height: 90vh;
  border-radius: 16px;
}

.lv-lightbox-close{
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
}

.lv-lightbox-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.15);
  border: none;
  color: #fff;
  font-size: 34px;
  padding: 10px 16px;
  cursor: pointer;
}
.lv-lightbox-nav.left{ left: 30px; }
.lv-lightbox-nav.right{ right: 30px; }

@media(max-width:768px){
  .lv-gallery-slide{ flex: 0 0 220px; }
  .lv-gallery-img{ height: 150px; }
}
/* smoother infinite feel */
.lv-gallery-slider{
  scrollbar-width: none;
}
.lv-gallery-slider::-webkit-scrollbar{
  display:none;
}
/* ==============================
   HERO CENTER CONTENT
============================== */

.lv-prop-hero{
  position: relative;
  height: 78vh;
  background-size: cover;
  background-position: center;
}

.lv-prop-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    rgba(0,0,0,0.45),
    rgba(0,0,0,0.75)
  );
}

.lv-prop-overlay-center{
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

/* TITLE */
.lv-hero-title{
  font-size: 80px;
  font-weight: 800;
  color: #fff;
  letter-spacing :10px;
  max-width: 1100px;
  line-height: 1.2;
  margin-bottom: 10px;
}
.lv-hero-subtitle{font-size: 20px;
    font-weight: 900;}
/* PRICE */
.lv-hero-price{
  font-size: 22px;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 20px;
}

/* LOGOS */
.lv-hero-approvals{
  display: flex;
  gap: 24px;
  margin: 10px 0 16px;
}

.lv-hero-approvals img{
  height: 78px;
  width: auto;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.6));
}

/* RERA NUMBER */
.lv-hero-rera{
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: rgba(0,0,0,0.45);
  padding: 8px 18px;
  border-radius: 30px;
  border: 1px solid rgba(212,175,55,0.6);
}

.lv-hero-rera span{
  color: #d4af37;
  font-weight: 800;
}

/* MOBILE */
@media(max-width:768px){
  .lv-hero-approvals img{
    height: 58px;
  }
}
/* ==============================
   ANIMATED APPROVAL BADGE
============================== */

.lv-approval-badge{

  animation: floatBadge 6s ease-in-out infinite;
}

/* glowing ring */
.lv-badge-ring{

  animation: pulseGlow 2.8s infinite;

}

.lv-approval-badge img{
  height: 250px;
  width: auto;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.7));
 
}

/* rotate opposite for second badge */
.lv-approval-badge img:last-child{
  animation-direction: reverse;
}

/* FLOAT */
@keyframes floatBadge{
  0%{ transform: translateY(0); }
  50%{ transform: translateY(-8px); }
  100%{ transform: translateY(0); }
}

/* GLOW */
@keyframes pulseGlow{
  0%{
    opacity: .3;
    transform: scale(1);
  }
  50%{
    opacity: .7;
    transform: scale(1.08);
  }
  100%{
    opacity: .3;
    transform: scale(1);
  }
}

/* ROTATION */
@keyframes badgeRotate{
  from{ transform: rotate(0deg); }
  to{ transform: rotate(360deg); }
}

/* MOBILE */
@media(max-width:768px){
  .lv-approval-badge{
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 14px;
  }

  .lv-approval-badge img{
    height: 200px;
  }
  .lv-prop-overlay-center {

     padding: 0px; 
}
.lv-hero-title {margin-top: 5rem;font-size: 60px;}
.lv-hero-rera {margin-top: -3rem;}
}
.lv-hero-subtitles{
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.lv-hero-subtitles span{
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(212,175,55,0.5);
}
/* ==================================
   PREMIUM SECTION HEADINGS
================================== */

.lv-section h2{
  position: relative;
  text-align: center;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 60px;
  padding-bottom: 18px;
}

/* gold divider line */
.lv-section h2::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 90px;
  height: 3px;
  background: linear-gradient(
    to right,
    transparent,
    #d4af37,
    transparent
  );
  border-radius: 3px;
}

/* subtle glow */
.lv-section h2::before{
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  width: 160px;
  height: 20px;
  background: radial-gradient(
    ellipse at center,
    rgba(212,175,55,0.35),
    transparent 70%
  );
}

/* optional dark backdrop behind heading */
.lv-section-heading-wrap{
  text-align: center;
  margin-bottom: 40px;
}

.lv-section-heading-wrap span{
  display: inline-block;
  padding: 10px 26px;
  border-radius: 40px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(212,175,55,0.45);
  backdrop-filter: blur(6px);
}
/* ===============================
   LAYOUT & PLOT DOWNLOAD SECTION
================================ */

.lv-download-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 26px;
  margin-top: 40px;
}

.lv-download-card{
  position: relative;
  background: rgba(255,255,255,0.05);

  border-radius: 22px;
  padding: 28px 20px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  overflow: hidden;

  box-shadow: 0 18px 55px rgba(0,0,0,0.65);
  transition: all .6s ease;
}

/* wave glow */
.lv-download-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(
    300px 120px at 50% 0%,
    rgba(212,175,55,0.35),
    transparent 70%
  );
  opacity:.8;
  pointer-events:none;
}

.lv-download-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 35px 90px rgba(0,0,0,0.9);
}

/* ICON */
.lv-download-icon{
  height: 68px;
  width: 68px;
  margin: 0 auto 14px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: radial-gradient(
    circle at center,
    rgba(212,175,55,0.45),
    rgba(212,175,55,0.15)
  );
  box-shadow: 0 0 25px rgba(212,175,55,0.45);
}

.lv-download-icon i{
  font-size: 28px;
  color: #fff;
}

/* TEXT */
.lv-download-card h4{
  font-size: 18px;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 6px;
}

.lv-download-card span{
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

/* Mobile */
@media(max-width:768px){
  .lv-download-card{
    padding: 24px 18px;
  }
}
/* =====================================
   LAYOUT & PLOT DETAILS – PREMIUM
===================================== */

.lv-download-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 30px;
  margin-top: 40px;
}


.lv-download-card:hover{
  transform: translateY(-10px);
  box-shadow: 0 35px 90px rgba(0,0,0,0.9);
}

/* 🌊 WAVE RING */
.lv-download-wave{
  position:absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.35);
  transform: translate(-50%,-50%);
  animation: lvWave 4s linear infinite;
  opacity: .5;
  pointer-events:none;
}

.lv-download-card:hover .lv-download-wave{
  opacity:.9;
}

/* WAVE ANIMATION */
@keyframes lvWave{
  0%{
    transform: translate(-50%,-50%) scale(0.9);
    opacity: .2;
  }
  100%{
    transform: translate(-50%,-50%) scale(1.2);
    opacity: 0;
  }
}

/* ICON */
.lv-download-icon{
  position: relative;
  z-index: 2;
  height: 72px;
  width: 72px;
  margin: 0 auto 16px;
  border-radius: 50%;

  display:flex;
  align-items:center;
  justify-content:center;

  background: radial-gradient(circle,
    rgba(212,175,55,0.55),
    rgba(212,175,55,0.15)
  );

  box-shadow: 0 0 35px rgba(212,175,55,0.6);
}

.lv-download-icon i{
  font-size: 30px;
  color: #fff;
}

/* TEXT */
.lv-download-card h4{
  font-size: 18px;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 6px;
}

.lv-download-card span{
  font-size: 14px;
  color: rgba(255,255,255,0.82);
}

/* ✅ VERIFIED BADGE */
.lv-verified-badge{
  margin-top: 16px;
  display:inline-flex;
  align-items:center;
  gap:6px;

  padding: 6px 12px;
  border-radius: 999px;

  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.35);

  font-size: 12px;
  font-weight: 600;
  color: #d4af37;
}

.lv-verified-badge i{
  font-size: 13px;
}

/* MOBILE */
@media(max-width:768px){
  .lv-download-card{
    padding: 26px 18px;
  }
}
.lv-image-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap:22px;
}

.lv-img-card{
  border-radius:18px;
  overflow:hidden;
  background:#111;
  box-shadow:0 18px 50px rgba(0,0,0,0.6);
  transition:all .4s ease;
}

.lv-img-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .6s ease;
  cursor: pointer;
}

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

/* animation */
.lv-animate{
  opacity:0;
  transform:translateY(40px);
  animation:lvFade .9s ease forwards;
}

@keyframes lvFade{
  to{
    opacity:1;
    transform:none;
  }
}
/* Lightbox */
#lv-lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.92);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
}

#lv-lightbox img{
  max-width:90%;
  max-height:85vh;
  border-radius:12px;
}

#lv-lightbox .lv-close{
  position:absolute;
  top:20px;
  right:30px;
  font-size:36px;
  color:#fff;
  cursor:pointer;
}

#lv-lightbox .lv-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  font-size:48px;
  color:#d4af37;
  cursor:pointer;
  user-select:none;
}

#lv-lightbox .prev{ left:30px; }
#lv-lightbox .next{ right:30px; }


.lv-empty-state{
  text-align: center;
  padding: 60px 20px;
  border-radius: 20px;
  background: linear-gradient(180deg,#111,#000);
  animation: fadeUp .6s ease;
}

.lv-empty-state span{
  font-size: 48px;
  display: block;
  margin-bottom: 12px;
}

.lv-empty-state h4{
  font-weight: 700;
  margin-bottom: 6px;
}

.lv-empty-state p{
  opacity: .7;
}

@keyframes fadeUp{
  from{opacity:0; transform:translateY(20px)}
  to{opacity:1; transform:none}
}
/* TREE ROOT */
.property-tree {
  list-style: none;
  padding-left: 10px;
  margin-top: 10px;
  position: relative;
}

/* CATEGORY ITEM */
.tree-category {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
}

/* CATEGORY CONNECTOR */
.tree-category::before {
  content: "├";
  position: absolute;
  left: 0;
  color: var(--gold2);
  font-weight: bold;
}

/* CATEGORY NAME */
.tree-label {
  font-weight: 700;
  color: var(--gold2);
  font-size: 14px;
}

/* PROPERTY LIST */
.tree-properties {
  list-style: none;
  margin-top: 6px;
  padding-left: 22px;
  position: relative;
}

/* VERTICAL LINE */
.tree-properties::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255,255,255,0.2);
}

/* PROPERTY ITEM */
.tree-property {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
}

/* PROPERTY CONNECTOR */
.tree-property::before {
  content: "├";
  position: absolute;
  left: 0;
  color: #aaa;
}

/* PROPERTY LINK */
.tree-property a {
  color: #eee;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.tree-property a:hover {
  color: var(--gold2);
}

/* LAST CHILD FIX */
.tree-category:last-child::before {
  content: "└";
}
.tree-property:last-child::before {
  content: "└";
}
