:root {
    --primary: #d2ac35d6;
    --primary-dark: #fff;
    --primary-light: #d2ac35d6;
    --accent: #000;
    --text: #fff;
    --text-light: #5a5a5a;
    --border: #e0d5c0;
    --bg: #faf8f4;
    --white: #ffffff;
    --card-shadow: 0 4px 24px rgba(0,0,0,0.08);

    --primary-color: #083E73; /*— header, navigation, main CTA, pricing buttons */
    --highlights-dark: #1d8f0c; /*— active states, Live Chat, highlights */
    --highlights: #56B947; /*— active states, Live Chat, highlights */
    --card-background: #F5FAFF; /*— sections/cards background */
    --badges-borders: #C8A453; /*— only badges, subtle borders, dividers */
    --headings: #0B2452; /*— headings */
    --cards-forms: #FFFFFF; /*— cards/forms */
    --gradient-45: linear-gradient(45deg, var(--highlights), var(--highlights-dark));
    --gradient-90: linear-gradient(90deg, var(--highlights), var(--highlights-dark));
    --gradient-135: linear-gradient(135deg, var(--highlights), var(--highlights-dark));
}



/* ================= HERO SECTION ================= */

.prop-hero {
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
   backdrop-filter: brightness(0.7)!important;
}

/* DARK OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;

  backdrop-filter: brightness(0.7);
}


/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 20px;
}

/* LOGO WRAPPER */
.logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

/* PROJECT LOGO */
.prop-logo {
  width: 200px;
  height: auto;
  object-fit: contain;
}

/* TITLE */
.prop-title {
  font-size: 60px;
  font-weight: 700;
  margin: 5px 0;
  color: #fff;
}

/* LOCATION */
.prop-loc {
  font-size: 20px;
  color: #f1f1f1;
  margin-bottom: 5px;
}

/* PRICE */
.prop-price {
  font-size: 44px;
  color: #D4AF37;
  font-weight: 700;
  margin: 10px 0 15px;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* GOLD BUTTON */
.btn-gold {
  background: #D4AF37;
  color: #000;
  padding: 9px 30px;
  font-size: 14px;
  border-radius: 4px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}

.btn-gold::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: rgba(255,255,255,0.4);
  transform: skewX(-25deg);
  transition: 0.8s;
}

.btn-gold:hover::after {
  left: 160%;
}

/* OUTLINE BUTTON */
.btn-outline {
  padding: 9px 30px;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.9);
  text-decoration: none;
  backdrop-filter: blur(3px);
  position: relative;
  overflow: hidden;
}

.btn-outline::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: rgba(255,255,255,0.35);
  transform: skewX(-25deg);
  transition: 0.7s;
}

.btn-outline:hover::after {
  left: 160%;
}

.btn-outline::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 4px;
  border: 2px solid #D4AF37;
  clip-path: inset(0 100% 0 0);
  transition: 0.5s;
}

.btn-outline:hover::before {
  clip-path: inset(0 0 0 0);
}

/* SCROLL ICON */
.scroll-down {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-down a {
  font-size: 35px;
  color: #fff;
  animation: bounce 1.2s infinite;
  text-decoration: none;
}

@keyframes bounce {
  0% { transform: translateY(0); }
  50% { transform: translateY(8px); }
  100% { transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .prop-title { font-size: 33px; }
  .prop-price { font-size: 28px; }
  .prop-logo { width: 100px!important; }
  .prop-hero { height: 75vh !important; }
  .btn-gold, .btn-outline { padding: 9px 9px; }
}

@media screen and (min-width:567px){
    #mobileClose{
     display: none!important;   
    }
  
}


.header {
    background: #fff;
}
.nav-link {
    color: var(--headings);
}
.nav-link:hover {
    color: var(--highlights);
}
.nav-link:active {
    color: var(--highlights-dark);
}
.action-btn {
    border: 2px solid var(--headings);
    color: var(--headings);
}
.action-btn:hover {
    border: 2px solid var(--white);
    color: var(--white);
}


#centertext{
    text-align: center!important;
}

/* =======================================================
   PROPERTY STICKY NAVBAR (Under Banner)
======================================================= */

html, body{
  overflow-x: visible !important;
}

@media (max-width: 991px){
  .property-nav{
    top: 60px; /* mobile header height */
  }
}

/* ===== PROPERTY NAV (PREMIUM) ===== */



/* shrink effect */
.property-nav.shrink{
  box-shadow: 0 8px 22px rgba(0,0,0,.08);
  backdrop-filter: blur(6px);
}

/* nav list */
.property-nav-list{


  scroll-behavior: smooth;
  position: relative;
}

/* hide scrollbar */
.property-nav-list::-webkit-scrollbar{
  display: none;
}



/* hover */
.property-nav-list a:hover{
  background: rgba(212,175,55,.12);
}

/* active pill */
.property-nav-list a.active{
  background: var(--gradient-90);
  color: #fff;
 
}

/* animated underline */


/* mobile */
@media(max-width:768px){
  .property-nav{
    top: 60px;
  }
  .property-nav-list a{
    font-size: 14px;
    padding: 8px 14px;
  }
}


.property-nav {
    width: 100%;
    background: #ffffff;
    margin-bottom: 11px;
  
     position: -webkit-sticky; /* iOS support */
  position: sticky;
 
  z-index: 999;
}

/* NAV LIST */
.property-nav-list {
    max-width: 100%;
    margin: auto;
height: 62px;
    display: flex;
    gap: 9px;
        justify-content: space-between;
border-radius: 0px 0px 8px 8px;
    box-shadow: 0 0px 10px 0px rgba(0, 0, 0, 0.1);
    align-items: center;
    overflow-x: auto;
}

/* REMOVE BULLET */
.property-nav-list li {
    list-style: none;
}

/* LINK BASE */
.property-nav-list a {
    font-size: 16px;
    font-weight: bolder;
    color: var(--headings);
    letter-spacing: 0.5px;
    padding: 22px 11px;
    border-radius: 0px;
    position: relative;
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* GOLD ACTIVE BG */
.property-nav-list a.active {
    background: var(--highlights);
    color: #ffffff;
}

/* GOLD UNDERLINE */
/*.property-nav-list a::after {
    
    position: absolute;
    left: 18px;
    bottom: 4px;
    width: 0;
    height: 3px;
    background: #ffffff;
    border-radius: 4px;
    transition: width 0.3s ease;
}*/

/* ACTIVE + HOVER UNDERLINE */
.property-nav-list a.active::after,
.property-nav-list a:hover::after {
    width: calc(100% - 36px);
}

/* HOVER EFFECT */
.property-nav-list a:hover {
    background: var(--highlights-dark);
    color: #fff;
}

/* MOBILE SCROLL */
@media (max-width: 768px) {
   

    .property-nav-list a {
        font-size: 14px;
      
    }
    
    
}










/* ==========================================
   MOBILE HEADING FIX â€“ NO OVERFLOW
========================================== */

@media (max-width: 768px){

    /* padding inside white box sections */
    .pd-section-box{
        padding: 16px 14px !important;
    }

    /* remove side overflow problem */
    .pd-section,
    body,
    html{
        overflow-x:hidden !important;
    }
}

/* ==========================================
   RIGHT ENQUIRY FORM STICKY DESKTOP
========================================== */

@media (min-width: 992px){

    .prop-right{
        position: sticky;
        top: 110px;     /* adjust if header height changes */
        height: fit-content;
    }
}



/*section css*/
/* ======================================================
   PD = PROPERTY DETAILS LAYOUT
====================================================== */

.pd-layout {
    max-width: 100%;
    margin: 40px 40px;
    padding: 0 5px;
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 15px;
}


@media screen and (max-width:567px){
  .pd-layout{
    grid-template-columns: 100%;
    margin: 13px 5px;
  }

  .pd-section-title h2{
    font-size: 20px!important;
  }
  .pd-left .pd-section{
    padding: 25px 14px!important;
  }
  
  .pd-pay-step{
      width:300px!important;
  }

}

#contentp{
  font-size: 15px;
  word-spacing: 1px;
  letter-spacing: 0.6px;
  text-align: justify;
}

/* LEFT SIDE */
.pd-left .pd-section {
    background: #fff;
    border-radius: 8px;
    padding: 30px 30px;
    margin-bottom: 35px;
    border: 1px solid #e7e7e7;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}


/* WRAPPER */
.pd-section-title {
    display: flex;
    align-items: center; /* heading ke center me line align */
    width: 100%;
    margin-bottom: 25px;
}

/* HEADING */
.pd-section-title h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--headings);
    white-space: normal; /* heading wrap na ho */
    margin: 0;
    margin-bottom: 10px;
    padding-right: 15px;

}
.Extra-detail h2, .Extra-detail h3 {
    font-size: 25px;
    font-weight: 700;
    color: #111;
    white-space: normal; /* heading wrap na ho */
    margin: 0;
    margin-top: 20px;
    margin-bottom: 10px;
    padding-right: 15px;

}

/* LINE */
.pd-section-title::after {
    content: "";
    flex-grow: 1; /* jitni jagah bachegi utna line */
    height: 2px;
    background: var(--gradient-90);
    border-radius: 2px;
    opacity: 0.8;
}

.pd-right{
  flex: 0 0 360px;
}
/* RIGHT FORM STICKY */



html{
  scroll-behavior: smooth;
}

.hamburger span {
    background: var(--headings);
}
.pd-form-card{
  position: sticky;
  top: 100px;
  z-index: 50;

  /* ðŸ”¥ smooth movement */
  transition: transform 0.35s ease-out;
  will-change: transform;
}


/* Sticky disable state */
.pd-form-card.unstick{
  position: relative;
  top: auto;
}
/* FORM CARD */
.pd-form-card {
    background: linear-gradient(165deg, #ffffff, #f6f6f6);
    padding: 30px 20px!important;
    border-radius: 18px;
    border: 1px solid #e6e6e6;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* AGENT SECTION */
.pd-agent {
    text-align: center;
    margin-bottom: 22px;
}

.pd-agent-photo {
     width: 90px;
    height: 90px;
    padding: 8px!important;
    padding: 5px;
    background: var(--headings);
    border-radius: 50%;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    font-weight: 700;
}

.pd-agent-sub {
    color: #777;
    font-size: 14px;
    margin-bottom: 12px;
}

.pd-agent-tags {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.pd-agent-tags span {
    background: #f3f3f3;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
}

/* FORM FIELDS */
.pd-form input,
.pd-form textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #ccc;
    margin-bottom: 12px;
    font-size: 15px;
}

/* MAIN BUTTON */
.pd-btn {
    width: 100%;
    padding: 14px;
    background: var(--gradient-90);
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    margin-top: 6px;
    cursor: pointer;
}

/* CALL + CHAT */
.pd-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 18px;
}

.pd-actions a {
    flex: 1;
    padding: 12px;
    margin: 0 4px;
    background: #f1f1f1;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
}

/* 3D TOUR */
.pd-3d-tour {
    background: linear-gradient(180deg, #ffffff, #eef0ff);
    padding: 20px;
    border-radius: 14px;
    text-align: center;
    margin-top: 22px;
}

.pd-tour-btn {
    background: #6a4bc3;
    color: #fff;
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 600;
    margin-top: 10px;
}

/* ================================================
   HIGHLIGHTS â€” NEW LUXURY STYLE
================================================ */
/* ========================================================
   HIGHLIGHTS WRAPPER FIXED & PREMIUM VERSION
======================================================== */


/* LEFT LIST */
/* Smooth single-column layout */
.pd-hl-items ul {
    display: flex;
    flex-direction: column;
    gap: 10px; /* slightly increased for spacing */
}

/* PERFECT LIST BOX STYLE */
.pd-hl-items ul li {
    list-style: none;
    background: #fafafa;
    padding: 9px 5px 9px 7px; /* EVEN padding for uniform height */
  border-radius: 10px;
    font-size: 14.5px;
    font-weight: 500;
    color: #222;

    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;

    border-left: 3px solid var(--highlights);
    transition: all 0.3s ease;

    /* Smoother elevation */
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* Hover premium effect */
.pd-hl-items ul li:hover {
    transform: translateX(6px);
    background: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    border-left-color: var(--highlights-dark);
}

/* Subtle border glow */
.pd-hl-items ul li::after {
    content: "";
    position: absolute;
    inset: 0;

    border: 1px solid transparent;
    transition: 0.3s ease;
}

.pd-hl-items ul li:hover::after {
    border-color: rgba(212,175,55,0.45);
}

/* ========================================================
   RIGHT IMAGE FIXED (AUTO HEIGHT + PERFECT FIT)
======================================================== */
.pd-hl-wrapper {
    display: grid;
    grid-template-columns: 48% 52%;
    gap: 15px;
    margin-top: 25px;

    align-items: stretch; /* ðŸ”¥ MOST IMPORTANT */
}

/* LEFT LIST SAME AS BEFORE */
.pd-hl-items ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ================================
   RIGHT IMAGE â€“ AUTO HEIGHT MATCH
================================ */

.pd-hl-right {
    display: flex;
}

.pd-hl-img-wrap {
    width: 100%;
    height: 100%; /* ðŸ”¥ takes full height of left column */
}

.pd-hl-img-wrap img {
    width: 100%;
    height: 100%;        /* ðŸ”¥ AUTO MATCH LEFT HEIGHT */
    object-fit: cover;  /* fills without distortion */
    border-radius: 10px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
    transition: transform 0.3s ease;
}

.pd-hl-img-wrap img:hover {
    transform: scale(1.02);
}

/* ================================
   MOBILE (STACK NATURALLY)
================================ */
@media (max-width: 768px) {
    .pd-hl-wrapper {
        grid-template-columns: 1fr;
    }

    .pd-hl-img-wrap {
        height: auto;
    }

    .pd-hl-img-wrap img {
        height: auto;
    }
   
}


/* ============================
   UNIVERSAL SECTION HOVER BOX
============================ */

.pd-hover-section {
    background: #ffffff;
    padding: 35px;
    border-radius: 16px;
    border: 1px solid #eaeaea;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Zoom effect on hover */
.pd-hover-section:hover {
    transform: scale(1.015);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

/* GOLD TRACING BORDER */
.pd-hover-section::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 2px solid transparent;
    box-sizing: border-box;
    pointer-events: none;

    /* MASK FOR TRACING ANIMATION */
    border-image: var(--gradient-90); 1;
    border-image-slice: 1;

    /* Animation start: invisible */
    clip-path: polygon(
        0% 0%, 0% 0%, 
        0% 0%, 0% 0%
    );
    transition: clip-path 0.8s ease-out;
}

.pd-hover-section:hover::before {
    /* Animate corner-to-corner trace */
    clip-path: polygon(
        0% 0%, 100% 0%,
        100% 100%, 0% 100%
    );
}


/* 4x4 GRID */
.pd-am-4x4-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px 22px;
}

/* ITEM */
.pd-am-4x4-item{
  background:#fff;
  padding:10px;
  border-radius:10px 0px 0px 10px;
  border:2px solid #e7e7e7;
  border-left:3px solid var(--highlights);

  display:flex;
  align-items:center;
  gap:12px;

  font-size:14.5px;
  font-weight:500;
  color:#1a1a1a;

  position:relative;
  transition:all .35s ease;
  box-shadow:0 3px 10px rgba(0,0,0,.06);
}

/* ICON */
.pd-am-4x4-item i{
  color:var(--headings);
  font-size:15px;
  flex-shrink:0;
}

/* HOVER */
.pd-am-4x4-item:hover{
  transform:translateY(-3px);
  border-left-color:var(--highlights-dark);
  box-shadow:0 14px 28px rgba(0,0,0,.14);
}
.pd-am-4x4-item:hover i {
    color: var(--highlights-dark);
}

/* GOLD OUTLINE */
.pd-am-4x4-item::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:5px 0px 0px 5px;
  border:1px solid rgba(212,175,55,0);
  transition:.35s ease;
}
.pd-am-4x4-item:hover::after{
  border-color:var(--highlights-dark);
}

/* RESPONSIVE */
@media(max-width:1100px){
  .pd-am-4x4-grid{grid-template-columns:repeat(3,1fr);}
}
@media(max-width:600px){
  .pd-am-4x4-grid{grid-template-columns:repeat(2,1fr);gap: 15px 10px;}
  .pd-am-4x4-item{
    padding: 10px 7px;
    font-size: 13px;
  }
}


/* GRID */
.pd-price-grid.premium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 30px;
}

/* CARD BASE */
.pd-price-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px 18px 30px;
  text-align: center;
  position: relative;
  border: 1px solid #eaeaea;
  transition: all 0.35s ease;
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
}

/* TOP GOLD LINE */
.pd-top-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 55px;
  height: 4px;
  background: var(--gradient-90);
  border-radius: 0 0 6px 6px;
  transform: translateX(-50%);
}

/* TITLES */
.pd-price-card h3 {
  font-size: 21px;
  font-weight: 700;
  color: var(--headings);
  margin-top: 18px;
}

.pd-size {
  font-size: 17px;
    color: #000000b3;
    margin: 12px 0 15px;
    font-weight: 600;
}

/* PRICE */
.pd-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--badges-borders);
  margin-bottom: 22px;
}

.pd-price.highlight {
  color: #b8921b;
}

/* BUTTON */
.pd-btn {
  display: inline-block;
  padding: 11px 22px;
  background: var(--headings);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.pd-btn:hover {
    background: var(--highlights);
    color: #fff;
    transform: translateY(-2px);
}

/* PREMIUM PENTHOUSE */
.premium-card {
  border: 2px solid var(--headings);
  box-shadow: 0 14px 32px rgba(212,175,55,0.18);
}

.pd-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #d4af37;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}

/* GOLD BUTTON */
.pd-btn.gold {
  background: var(--gradient-90);
  color: #fff;
}

.pd-btn.gold:hover {
  background: #000;
  color: #fff;
}

/* HOVER */
.pd-price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(0,0,0,0.14);
  border: 2px solid var(--highlights);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .pd-price-grid.premium {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .pd-price-grid.premium {
    grid-template-columns: 1fr;
  }
}


/* GRID */
.pd-floor-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
  margin-top:30px;
}

/* CARD */
.pd-floor-card{
  background:#fff;
  cursor:pointer;
  border-radius:18px;
  border:1px solid #eaeaea;
  overflow:hidden;
  transition:all .35s ease;
  box-shadow:0 8px 22px rgba(0,0,0,.06);
  position:relative;
}

/* PREMIUM TAG */
.pd-floor-tag{
  position:absolute;
  top:14px;
  right:14px;
  background:#d4af37;
  color:#fff;
  font-size:12px;
  font-weight:700;
  padding:4px 10px;
  border-radius:20px;
  z-index:2;
}

/* IMAGE */
.pd-floor-img img{
  width:100%;
  height:240px;
  object-fit:cover;
  transition:.35s ease;
}

/* INFO */
.pd-floor-info{
  padding:18px 20px 22px;
  text-align:center;
}

.pd-floor-info h3{
  font-size:17px;
  font-weight:700;
  margin-bottom:4px;
  color:#111;
}

.pd-floor-info p{
  font-size:14px;
  color:#777;
  margin-bottom:16px;
}

/* ACTIONS */
.pd-floor-actions{
  display:flex;
  gap:10px;
  justify-content:center;
}

/* BUTTONS */
.pd-floor-btn{
  padding:9px 16px;
  font-size:13px;
  font-weight:600;
  border-radius:8px;
  background:#000;
  color:#fff;
  cursor:pointer;
  transition:.3s ease;
}

.pd-floor-btn:hover{
  background:#d4af37;
  color:#000;
}

.pd-floor-btn.outline{
  background:#fff;
  color:#000;
  border:1px solid #ccc;
}

.pd-floor-btn.outline:hover{
  border-color:#d4af37;
  color:#d4af37;
}

/* GOLD BUTTON */
.pd-floor-btn.gold{
  background:var(--gradient-90);
  color:#fff;
}

/* HOVER */
.pd-floor-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 38px rgba(0,0,0,.14);
}

.pd-floor-card:hover img{
  transform:scale(1.05);
}

/* MODAL */
.pd-floor-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.8);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:99999;
}

.pd-floor-modal img{
    max-width:90%;
    max-height:90%;
    background:#fff;
    border-radius:12px;
}

.pd-floor-close{
    position:absolute;
    top:30px;
    right:40px;
    font-size:36px;
    color:#fff;
    cursor:pointer;
}

/* RESPONSIVE */
@media(max-width:1000px){
  .pd-floor-grid{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:600px){
  .pd-floor-grid{grid-template-columns:1fr;}
}


/* LAYOUT */
.pd-gallery-layout{
    display:grid;
    grid-template-columns: 70% 30%;
    gap:22px;
    margin-top:25px;
}

/* MAIN IMAGE */
.pd-gallery-main img{
    width:100%;
    height:420px;
    object-fit:cover;
    border-radius:18px;
    cursor:pointer;
    box-shadow:0 10px 26px rgba(0,0,0,0.12);
}


/* THUMB ACTIVE */
.pd-thumb{
  cursor:pointer;
  opacity:0.6;
  border-radius:8px;
  transition:0.3s ease;
}
.pd-thumb.active,
.pd-thumb:hover{
  opacity:1;
  outline:2px solid #d4af37;
}

/* MODAL */
.pd-gallery-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.85);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
}
.pd-gallery-modal.active{
  display:flex;
}
.pd-gallery-modal img{
  max-width:90%;
  max-height:90%;
  border-radius:12px;
}
.pd-gallery-close{
  position:absolute;
  top:20px;
  right:30px;
  font-size:40px;
  color:#fff;
  cursor:pointer;
}



/* THUMBS */
.pd-gallery-thumbs{
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    gap:14px;
}

.pd-thumb{
    width:100%;
    height:120px;
    object-fit:cover;
    border-radius:12px;
    cursor:pointer;
    border:2px solid transparent;
    transition:0.3s ease;
}

.pd-thumb:hover,
.pd-thumb.active{
    border-color:#d4af37;
    transform:scale(1.04);
}

/* MODAL */
.pd-gallery-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.85);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:99999;
}

.pd-gallery-modal img{
    max-width:90%;
    max-height:90%;
    border-radius:14px;
    background:#fff;
}

.pd-gallery-close{
    position:absolute;
    top:30px;
    right:40px;
    font-size:36px;
    color:#fff;
    cursor:pointer;
}

/* RESPONSIVE */
@media(max-width:900px){
    .pd-gallery-layout{
        grid-template-columns:1fr;
    }
    .pd-gallery-main img{
        height:300px;
    }
    .pd-gallery-thumbs{
        grid-template-columns: repeat(3, 1fr);
    }
}
@media(max-width:480px){
    .pd-gallery-thumbs{
        grid-template-columns: repeat(2, 1fr);
    }
}
/* LOCATION LAYOUT */
/* ================================
 /* ================================
   LOCATION GRID
================================ */
.pd-location-wrap{
    display:grid;
    grid-template-columns: 50% 50%;
    gap:10px;
    margin-top:25px;
    align-items:stretch; /* ðŸ”¥ KEY */
}

/* ================================
   LEFT SIDE
================================ */
.pd-location-left{
    display:flex;
}

.pd-location-list ul{
    display:flex;
    flex-direction:column;
    gap:14px;
    width:100%;
}

.pd-location-list ul li{
     list-style: none;
    background: #fafafa;
    padding: 9px 5px 9px 7px;
    border-radius: 10px;
    font-size: 14.5px;
    font-weight: 500;
    color: #222;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    border-left: 3px solid var(--highlights);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.pd-location-list ul li:hover{
    transform:translateX(6px);
    background:#fff;
    border-left-color:var(--highlights-dark);
    box-shadow:0 8px 18px rgba(0,0,0,.14);
}

/* ================================
   RIGHT SIDE (MAP + BUTTONS)
================================ */
.pd-location-right{
    display:flex;
    flex-direction:column;
    justify-content:space-between; /* ðŸ”¥ MATCH LEFT END */
}

/* MAP BOX */
.pd-map-box{
    display:none;
}

#pdImageMap{
    display:block; /* default */
}

/* MAP */
.pd-map-box img,
.pd-map-box iframe{
    width:100%;
    height:100%;
    min-height:540px;
    border-radius:16px;
    border:0;
    object-fit:cover;
    box-shadow:0 10px 26px rgba(0,0,0,.12);
}

/* ================================
   SWITCH BUTTONS (BOTTOM FIXED)
================================ */
.pd-map-switch{
    display:flex;
    gap:12px;
    margin-top:20px;
}

.pd-map-btn{
    flex:1;
    padding:12px 0;
    font-size:14px;
    font-weight:600;
    background:#fff;
    border:1px solid #ddd;
    border-radius:10px;
    cursor:pointer;
    transition:.3s ease;
}

.pd-map-btn.active{
    background:#d4af37;
    border-color:#d4af37;
    color:#fff;
}

.pd-map-btn:hover{
    border-color:#d4af37;
}

/* ================================
   MOBILE
================================ */
@media(max-width:900px){
    .pd-location-wrap{
        grid-template-columns:1fr;
    }

    .pd-location-right{
        gap:15px;
    }

    .pd-map-box img,
    .pd-map-box iframe{
        min-height:260px;
    }
}

/* ================================
   PAYMENT FLOW WRAPPER
================================ */
.pd-pay-flow{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
    margin-top:40px;
}

/* STEP */
.pd-pay-step{
    background:#fff;
    padding:26px 13px;
    border-radius:16px;
    text-align:center;
    flex:1;
    border:1px solid #eaeaea;
    box-shadow:0 6px 18px rgba(0,0,0,.06);
    transition:.35s ease;
}



/* TITLE */
.pd-pay-step h4{
    font-size:16px;
    font-weight:700;
    color:#111;
    margin-bottom:6px;
}

/* DESC */
.pd-pay-step p{
    font-size:14px;
    color:#666;
    line-height:1.5;
}

/* CONNECTOR LINE */
.pd-pay-line{
    width:60px;
    height:2px;
    background:var(--gradient-90);
    opacity:.6;
}

/* HOVER */
.pd-pay-step:hover{
    transform:translateY(-6px);
    box-shadow:0 14px 30px rgba(0,0,0,.14);
}

/* ================================
   MOBILE
================================ */
@media(max-width:900px){
    .pd-pay-flow{
        flex-direction:column;
    }
    .pd-pay-line{
        width:2px;
        height:30px;
    }
}
/* ================================
   PAYMENT CIRCLE
================================ */
.pd-pay-circle{
    width:80px;
    height:80px;
    border-radius:50%;
    margin:0 auto 14px;

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

    font-size:26px;
    font-weight:800;
    color:#d4af37;

    border:2px solid #d4af37;
    background:linear-gradient(180deg,#fff,#fafafa);

    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.35s ease;
}

/* STEP HOVER EFFECT */
.pd-pay-step:hover .pd-pay-circle{
    background:var(--gradient-135);
    color:#fff;
    transform:scale(1.08);
}


/* ================================
   FAQ SECTION
================================ */

/* FAQ WRAP */
.pd-faq-wrap{
    display:flex;
    flex-direction:column;
    gap:14px;
    margin-top:20px;
}

/* FAQ ITEM */
.pd-faq-item{
    border-radius:10px;
    background:#fafafa;
    border-left:3px solid var(--highlights);
    overflow:hidden;
    transition:.3s ease;
}

.pd-faq-item:hover{
    background:#fff;
    box-shadow:0 6px 18px rgba(0,0,0,.1);
}

/* QUESTION */
.pd-faq-question{
    width:100%;
    background:none;
    border:none;
    padding:16px 20px;
    font-size:16px;
    font-weight:600;
    text-align:left;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    color:var(--headings);
}

/* ICON */
.pd-faq-icon{
    font-size:22px;
    font-weight:700;
    color:var(--highlights);
    transition:.3s ease;
}

/* ANSWER */
.pd-faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease;
    padding:0 20px;
}

.pd-faq-answer p{
    font-size:14.5px;
    color:#444;
    padding-bottom:21px;
    line-height:1.6;
}

/* ACTIVE STATE */
.pd-faq-item.active .pd-faq-answer{
    max-height:200px;
}

.pd-faq-item.active .pd-faq-icon{
    transform:rotate(45deg);
}


/* ================= REVIEW SECTION ================= */


/* WRAPPER */
.pd-review-wrap{
  position:relative;
  overflow:hidden;
  margin-top:20px;
}

/* WINDOW */
.pd-review-window{
  overflow:hidden;
}

/* TRACK */
.pd-review-track{
  display:flex;
  margin:20px 10px;
  gap:32px;
  transition:transform .6s ease;
  will-change:transform;
}

/* CARD */
.pd-review-card{
  flex:0 0 33.333%;
  background:#f8f8f8;
  padding:30px;
  border-radius:10px;
  opacity:.45;
  transform:scale(.94);
  transition:all .45s ease;
  box-shadow:0 6px 18px rgba(0,0,0,.05);
}

/* CENTER ACTIVE */
.pd-review-card.active{
  background:#fff;
  opacity:1;
  transform:scale(1.05);
  box-shadow:0 11px 3px rgba(0,0,0,.16);
}

/* STARS */
.pd-review-stars{
  color:#d4af37;
  letter-spacing:2px;
  margin-bottom:14px;
  font-size:14px;
}

/* TEXT */
.pd-review-text{
  font-size:13px;
  line-height:1.75;
  color:#333;
  margin-bottom:22px;
}

/* NAME */
.pd-review-card strong{
  display:block;
  font-size:14.5px;
  color:#111;
}

/* ROLE */
.pd-review-card span{
  font-size:13px;
  color:#777;
}

/* ARROWS */
.pd-review-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:46px;
  height:46px;
  border-radius:50%;
  background:#fff;
  border:1px solid #ddd;
  cursor:pointer;
  font-size:20px;
  z-index:10;
  transition:.3s;
}

.pd-review-arrow:hover{
  background:#d4af37;
  border-color:#d4af37;
  color:#fff;
}

.pd-review-arrow.prev{ left:0; }
.pd-review-arrow.next{ right:0; }

/* MOBILE */
@media(max-width:900px){
  .pd-review-card{
    flex:0 0 100%;
    opacity:1;
    transform:scale(1);
  }
}

.pd-review-name{
font-family: 'Optima', serif;
font-weight: 600;
}

/* ==============================
   WHY INVEST â€“ PREMIUM UPGRADE
============================== */

.pd-invest-intro{
  max-width:900px;
  margin:20px 0 40px;
  font-size:15.8px;
  line-height:1.8;
  color:#444;
}

/* GRID */
.pd-invest-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px 42px;
}

/* CARD */
.pd-invest-item{
  position:relative;
  background:#ffffff;
  padding:26px 30px 26px 26px;
  border-radius:18px;

  display:flex;
  gap:18px;
  align-items:flex-start;

  box-shadow:0 6px 18px rgba(0,0,0,0.06);
  transition:all .4s ease;
  overflow:hidden;
}

/* GOLD ACCENT STRIP (NOT HARD BORDER) */
.pd-invest-item::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:4px;
  height:100%;
  background:linear-gradient(180deg,#d4af37,#b8921b);
  border-radius:18px 0 0 18px;
}

/* ICON CIRCLE */
.pd-invest-item i{
  width:40px;
  height:40px;
  border-radius:50%;
  background:rgba(212,175,55,0.12);
  color:#d4af37;

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

  font-size:17px;
  flex-shrink:0;
  margin-top:2px;
}

/* TITLE */
.pd-invest-item h4{
  font-size:16.5px;
  font-weight:700;
  color:#111;
  margin-bottom:6px;
}

/* TEXT */
.pd-invest-item p{
  font-size:14.5px;
  line-height:1.65;
  color:#555;
}

/* HOVER â€“ LUXURY LIFT */
.pd-invest-item:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(0,0,0,0.14);
}

/* SOFT GOLD OUTLINE ON HOVER */
.pd-invest-item::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:18px;
  border:1px solid rgba(212,175,55,0.35);
  opacity:0;
  transition:.4s ease;
  pointer-events:none;
}

.pd-invest-item:hover::after{
  opacity:1;
}

/* RESPONSIVE */
@media(max-width:900px){
  .pd-invest-grid{
    grid-template-columns:1fr;
  }
}


/* ==============================
   ABOUT BUILDER â€“ PREMIUM STYLE
============================== */
/* Wrapper text width */
.builder-elegant-text{
  max-width:900px;
}

/* highlight intro tag line */
.builder-intro-line{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:12px;
}

.builder-intro-line span{
  width:26px;
  height:3px;
  background:#d4af37;
  border-radius:6px;
}

.builder-intro-line p{
  margin:0;
  font-size:14px;
  color:#666;
  letter-spacing:.3px;
}

/* normal paras */
.builder-elegant-text p{
  font-size:14px;
  line-height:1.8;
  color:#333;
  margin-bottom:14px;
}

/* bullet list */
.builder-bullets{
  margin:10px 0 16px;
}


/* GRID LAYOUT */
.pd-features-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
    margin-top:10px;
}

/* CARD */
.pd-feature-card{
    background:#fafafa;
    padding:18px 16px;
    border-radius:14px;
    text-align:center;
    border:1px solid #eee;
    transition:.35s ease;
}

/* ICON */
.pd-feature-card i{
    font-size:28px;
    color:#d4af37;
    margin-bottom:12px;
}

/* HEADING */
.pd-feature-card h4{
    font-size:14px;
    margin-bottom:6px;
    color:#111;
}

/* SUB TEXT */
.pd-feature-card p{
    font-size:13.5px;
    color:#666;
}

/* HOVER EFFECT PREMIUM */
.pd-feature-card:hover{
    background:#fff;
    transform:translateY(-4px);
    border-color:#d4af37;
    box-shadow:0 16px 26px rgba(0,0,0,0.12);
}

/* RESPONSIVE */
@media(max-width:992px){
    .pd-features-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:570px){
    .pd-features-grid{
        grid-template-columns:1fr 1fr;
    }
}


/* intro paragraph width */
.pd-sector-intro{
  max-width:900px;
  margin-bottom:10px;
}

.pd-sector-intro p{
  font-size:15.5px;
  color:#444;
  line-height:1.75;
}

/* GRID */
.pd-sector-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:15px;
}

/* CARD */
.pd-sector-card{
  background:#fafafa;
  border-radius:14px;
  padding:18px 16px;
  border:1px solid #eee;
  transition:.35s ease;
}

/* ICON */
.pd-sector-card i{
  font-size:26px;
  color:#d4af37;
  margin-bottom:10px;
}

/* HEADING */
.pd-sector-card h4{
  font-size:15px;
  margin-bottom:6px;
  color:#111;
}

/* TEXT */
.pd-sector-card p{
  font-size:13.6px;
  color:#666;
}

/* HOVER */
.pd-sector-card:hover{
  background:#fff;
  transform:translateY(-4px);
  border-color:#d4af37;
  box-shadow:0 16px 28px rgba(0,0,0,0.12);
}

/* RESPONSIVE */
@media(max-width:900px){
  .pd-sector-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:570px){
  .pd-sector-grid{
    grid-template-columns:1fr;
  }
}



/* ===============================
   BROCHURE CTA STRIP
=============================== */

.pd-cta-strip{
  background: var(--headings);
  padding: 28px 0;
  margin: 20px 0;
}

.pd-cta-inner{
  max-width:1200px;
  margin:auto;
  padding:0 16px;

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

/* TEXT */
.pd-cta-text h3{
  color:#fff;
  font-size:22px;
  margin-bottom:4px;
}

.pd-cta-text p{
  color:#dcdcdc;
  font-size:14px;
}

/* BUTTON */
.pd-cta-btn{
  background: var(--highlights);
  color: #fff;
  padding:12px 28px;
  border-radius:6px;
  font-weight:700;
  display:inline-block;
  transition:.3s ease;
  border:1px solid transparent;
  margin-top: 15px;
}

/* HOVER EFFECT */
.pd-cta-btn:hover{
  background:#fff;
  border-color:#d4af37;
  transform:translateY(-2px);
}

/* RESPONSIVE */
@media(max-width:800px){
  .pd-cta-inner{
    flex-direction:column;
    text-align:center;
  }
}

/* ===========================
   RERA / DISCLAIMER SECTION
=========================== */

.pd-rera-wrap{
  max-width: 1000px;
}

.pd-rera-text{
  font-size: 14.5px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 14px;
  text-align: justify;
}

.pd-rera-small{
  font-size: 13.5px;
  color:#555;
  line-height: 1.7;
  background:#fafafa;
  padding:12px 14px;
  border-radius:10px;
  border-left:3px solid #d4af37;
}


/* ===== MODERN MOBILE CTA ===== */
.mobile-cta-modern{
  position: fixed;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 420px;
  height: 58px;
  background: rgba(15,15,15,0.95);
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  z-index: 9999;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
/*.mobile-cta-modern{
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.92),
    rgba(0,0,0,0.85)
  );
  box-shadow: 0 18px 45px rgba(0,0,0,0.45);
}
*/

/* SIDE ICONS */
.cta-side{
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
}

.cta-side.call{
  background: #2c2c2c;
   border: 1px solid #ffffff5c;
}

.cta-side.whatsapp{
  background: #25d366;
}

.cta-main:active{
  transform: scale(0.94);
  box-shadow: 
    0 6px 18px rgba(212,175,55,0.45),
    inset 0 2px 6px rgba(0,0,0,0.25);
}

/* MICRO RIPPLE */
.cta-main{
  position: relative;
  overflow: hidden;
}

.cta-main::after{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(255,255,255,0.45) 0%,
    rgba(255,255,255,0.25) 20%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.cta-main:active::after{
  opacity: 1;
}


/* MAIN ENQUIRE */
.cta-main{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-135);
  color: #000;
  padding: 8px 30px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 
    0 10px 30px rgba(212,175,55,0.55),
    inset 0 1px 0 rgba(255,255,255,0.4);
      animation: pulseGold 2s infinite;

      transition: 
    transform 0.18s cubic-bezier(.4,0,.2,1),
    box-shadow 0.18s cubic-bezier(.4,0,.2,1),
    background 0.25s ease;
}

/* GOLD PULSE */
@keyframes pulseGold{
  0%{ box-shadow: 0 0 0 0 rgba(212,175,55,.6); }
  70%{ box-shadow: 0 0 0 16px rgba(212,175,55,0); }
  100%{ box-shadow: 0 0 0 0 rgba(212,175,55,0); }
}

/* DESKTOP HIDE */
@media(min-width: 992px){
  .mobile-cta-modern{ display:none; }
}

.float-vertical-cta{
  position: fixed;
  font-size:9px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background:var(--gradient-135);
  color: #fff;
  padding: 14px 10px;
  font-weight: 700;
  letter-spacing: 1px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  border-radius: 8px 0 0 8px;
  box-shadow: -6px 8px 18px rgba(0,0,0,.25);
  z-index: 9999!important;
}


@media screen and (max-width:567px){
                 
     #investment{
        padding: 20px 20px!important;
    }
    .pd-invest-item{
        padding: 15px 10px 15px 10px;
    }
    #contentp{
        font-size:14.5px!important;
    }
    .pd-faq-question{
          font-size:15px!important;
    }
    }


/* SOCIAL PROOF */
.prop-social-proof{
  text-align:center;
  font-size:12px;
  color:#666;
  margin:15px 0;
}
/* ===============================
   LEFT CTA : DESKTOP ONLY
   =============================== */
@media (min-width: 992px){

  .floating-left-cta{
    position: fixed;
    left: 20px;
    bottom: 90px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 999;
  }

  /* COMMON BUTTON */
  .float-btn{
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,.25);
    transition: all .3s ease;
    animation: floatPulse 2.5s infinite;
  }

  .float-btn:hover{
    transform: translateY(-4px) scale(1.05);
  }

  .float-btn.call{
    background: #000;
    border: 1px solid #ffffff69;
  }

  .float-btn.whatsapp{
    background: #25d366;
  }

  @keyframes floatPulse{
    0%{ transform: translateY(0); }
    50%{ transform: translateY(-6px); }
    100%{ transform: translateY(0); }
  }
}

/* ===============================
   SCROLL TO TOP : DESKTOP + MOBILE
   =============================== */

.scroll-top-wrapper{
  position: fixed;
  right: 16px;
  bottom: 110px;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.scroll-top-wrapper.show{
  opacity: 1;
  pointer-events: auto;
}

#scrollTopBtn{
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #000;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

/* SVG PROGRESS */
.progress-ring{
  position: absolute;
  top: -2px;
  left: -2px;
  transform: rotate(-90deg);
}

.progress-ring__circle{
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
  transition: stroke-dashoffset .15s linear;
}

/* MOBILE ADJUSTMENT */
@media (max-width: 768px){
  .scroll-top-wrapper{
    bottom: 110px; /* mobile CTA / browser bar safe */
    right: 12px;
  }
}


@media screen and (max-width: 567px){
    .floating-left-cta{
display: none;
    }

    .pd-right{
        margin-top: 280px;
    }
}



/* comparison table */
.compare-table { width: 100%; border-collapse: collapse; margin: 0px; font-size: 14.5px; }
.compare-table th {
  background: var(--headings); color: #fff;
  padding: 12px 14px; text-align: left; font-weight: 500; font-size: 13px;
}
/*.compare-table th:first-child { border-radius: 10px 0 0 0; }*/
/*.compare-table th:last-child { border-radius: 0 10px 0 0; }*/
.compare-table th:first-child {border-left: unset;border-radius: 10px 0 0 0; }
.compare-table th:last-child {border-left: 1px solid #fff;border-radius: 0 10px 0 0;}
.compare-table th {border-left: 1px solid #fff;}
.compare-table td { padding: 11px 14px; border-bottom: 1px solid var(--border); color: var(--text-light); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: var(--highlights-light); }
.compare-table .green { color: #000; font-weight: 600; }
.compare-table .area-name { font-weight: 600; color: var(--headings); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 500px) {
  .stats-strip { grid-template-columns: 1fr; }
  .compare-table { font-size: 13px; }
  .compare-table th, .compare-table td { padding: 9px 10px; }
}

/* comparison table if th is top to bottom */
.compare-table-ttb { width: 100%; border-collapse: collapse; margin: 0px; font-size: 14.5px; }
.compare-table-ttb th {
  background: var(--headings); color: #fff;
  padding: 12px 14px; text-align: left; font-weight: 500; font-size: 13px;
}
.compare-table-ttb tr:first-child th {border-top: unset;border-radius: 10px 0 0 0; }
.compare-table-ttb tr:last-child th {border-top: 1px solid #fff;border-radius: 0 0 0 10px;}
.compare-table-ttb tr th {border-top: 1px solid #fff;}
.compare-table-ttb td { padding: 11px 14px; border-bottom: 1px solid var(--border); color: var(--text-light); }
.compare-table-ttb tr:last-child td { border-bottom: none; }
.compare-table-ttb tr:nth-child(even) td { background: #faf7f0; }
.compare-table-ttb .green { color: #000; font-weight: 600; }
.compare-table-ttb .area-name { font-weight: 600; color: var(--headings); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 500px) {
  .stats-strip { grid-template-columns: 1fr; }
  .compare-table-ttb { font-size: 13px; }
  .compare-table-ttb th, .compare-table-ttb td { padding: 9px 10px; }
}

/* comparison table */
/*.compare-table { width: 100%; border-collapse: collapse; margin: 20px 0 30px; font-size: 14.5px; }
.compare-table th {
  background: var(--accent); color: #fff;
  padding: 12px 14px; text-align: left; font-weight: 500; font-size: 13px;
}
.compare-table th:first-child { border-radius: 10px 0 0 0; }
.compare-table th:last-child { border-radius: 0 10px 0 0; }
.compare-table td { padding: 11px 14px; border-bottom: 1px solid var(--border); color: var(--text-light); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: #faf7f0; }
.compare-table .green { color: #000; font-weight: 600; }
.compare-table .area-name { font-weight: 600; color: var(--accent); }
@media (max-width: 500px) {
  .stats-strip { grid-template-columns: 1fr; }
  .compare-table { font-size: 13px; }
  .compare-table th, .compare-table td { padding: 9px 10px; }
}*/



.form-loader-overlay{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.6);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:999999;
}

.form-loader-overlay.active{
  display:flex;
}

.loader-box{
  background:#fff;
  padding:30px 40px;
  border-radius:10px;
  text-align:center;
}

.spinner{
  width:40px;
  height:40px;
  border:4px solid #ddd;
  border-top:4px solid #caa43b;
  border-radius:50%;
  animation:spin 0.8s linear infinite;
  margin:auto;
  margin-bottom:10px;
}

@keyframes spin{
  100%{transform:rotate(360deg);}
}




/* OVERLAY */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(3px);
    display: none;
    z-index: 900;
}

/* POPUP BOX */
.popup-box {
    width: 450px;
    max-width: 90%;
    background: #fff;
    border-radius: 18px;
    padding: 35px 30px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(.7);
    opacity: 0;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    z-index: 1000;
    transition: .35s ease;
    display: none;
}

/* SHOW ANIMATION */
.popup-box.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.popup-overlay.active { display: block; }
.popup-box.active { display: block; }

/* POPUP HEADER */
.popup-header {
    position: relative;
    margin-bottom: 20px;
}

.popup-gold-line {
    width: 50px;
    height: 4px;
    background: #d4af37;
    border-radius: 2px;
    margin-bottom: 12px;
}

.popup-header h2 {
    font-size: 26px;
    font-weight: 700;
    color: #222;
    margin: 0;
}

/* CLOSE BUTTON */
.popup-close {
        position: absolute;
    top: 17px;
    right: 16px;
    color: #000000;
    font-size: 38px;
    background: #ffffff;
    cursor: pointer;
    height: 35px;
    width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
}


.popup-close:hover {
    color: #000;
}

/* SUBTEXT */
.popup-sub {
    font-size: 14px;
    color: #666;
    margin-bottom: 22px;
}

/* FORM FIELDS */
.popup-form input,
.popup-form textarea {
    width: 100%;
    padding: 12px 14px;
    background: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 14px;
    transition: .3s;
}

.popup-form input:focus,
.popup-form textarea:focus {
    border-color: #d4af37;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(212,175,55,0.2);
}

/* SUBMIT BUTTON */
.popup-btn {
    width: 100%;
    padding: 13px 0;
    background: #d4af37;
    border: none;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    border-radius: 10px;
    cursor: pointer;
    transition: .3s;
}

.popup-btn:hover {
    background: #b9972f;
}


/* ===== COMMON ===== */
.pf-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  opacity:0;
  visibility:hidden;
  transition:.4s ease;
  z-index:9998;
}

.pf-overlay.active{
  opacity:1;
  visibility:visible;
}

.pf-popup{
  position:fixed;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%) scale(.9);
  background:#fff;
  border-radius:18px;
  box-shadow:0 30px 90px rgba(0,0,0,.35);
  opacity:0;
  visibility:hidden;
  transition:.45s cubic-bezier(.22,.61,.36,1);
  z-index:9999;
}

.pf-popup.active{
  opacity:1;
  visibility:visible;
  transform:translate(-50%,-50%) scale(1);
}

.pf-close{
        position: absolute;
    top: 17px;
    right: 16px;
    color: #000000;
    font-size: 38px;
    background: #ffffff;
    cursor: pointer;
    height: 35px;
    width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
}

/* ===== SPLIT POPUP ===== */
.pf-split{
  display:flex;
  width:760px;
  max-width:95%;
  overflow:hidden;
}

.pf-image{
  width:45%;
}

.pf-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.pf-form{
  width:55%;
  padding:28px;
}

.pf-form h3{
  font-size:24px;
  margin-bottom:6px;
}

.pf-form p{
  font-size:14px;
  color:#666;
  margin-bottom:16px;
}

.pf-form input{
  width:100%;
  padding:12px 14px;
  border-radius:10px;
  border:1px solid #ddd;
  margin-bottom:12px;
}

.pf-form button{
  width:100%;
  padding:13px;
  background:var(--gradient-135);
  border:none;
  border-radius:12px;
  font-weight:700;
  cursor:pointer;
}

/* MOBILE */
@media(max-width:768px){
  .pf-split{
    flex-direction:column;
  }
  .pf-image{
    height:180px;
    width:100%;
  }
  .pf-form{
    width:100%;
  }
}


.pf-minimal{
  width:380px;
  max-width:90%;
  padding:26px;
}

.pf-minimal h3{
  font-size:22px;
  margin-bottom:6px;
}

.pf-minimal p{
  font-size:14px;
  color:#666;
  margin-bottom:16px;
}

.pf-minimal input{
  width:100%;
  padding:12px 14px;
  border-radius:10px;
  border:1px solid #ddd;
  margin-bottom:12px;
}

.pf-minimal button{
  width:100%;
  padding:13px;
  background:#000;
  color:#fff;
  border:none;
  border-radius:12px;
  font-weight:700;
}

/* All inputs equal height */
.pd-form input {
    width: 100%;
    height: 52px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-size: 15px;
    box-sizing: border-box;
}

/* intl-tel-input wrapper fix */
.pd-form .iti {
    width: 100%;
}

.pd-form .iti__tel-input {
    height: 52px !important;
    padding-left: 58px !important;
}

/* Country flag container */
.pd-form .iti__flag-container {
    height: 52px;
    border-right: 1px solid #ddd;
}

/* Focus same for all */
.pd-form input:focus {
    outline: none;
    border-color: #000;
}



.iti {
   width: 100% !important;
}

.iti__country-list {
   z-index: 999999 !important;
border-radius: 16px;
}


@media screen and (max-width:567px){
    .iti__country-list {
 border-radius: 16px;
   width: 344px;
}

}

#btnidd{
    margin-top: 10px;
}
/*.iti__arrow {*/
/*    display: none !important;*/
/*}*/

/*.iti {*/
/*    width: 100% !important;*/
/*}*/

/*.iti__selected-flag {*/
/*    padding: 0 8px !important;*/
/*}*/



#cont{
    padding: 0px 0px!important;
}

/* Reduced Padding */
.overview-table-style {
    background: #ffffff;
    padding: 20px 0;
    font-family: 'Poppins', Arial, sans-serif;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    padding: 9px 5px;
    border-radius: 6px;
    font-size: 14px;
    border: 1px solid #eee;
    border-left: 4px solid var(--highlights);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease-in-out;
    opacity: 1;
    transform: translateY(0px);
}

.item .left {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Golden Gradient Icons â€“ Now Working */
.item i {
    font-size: 16px;
    background: var(--gradient-45);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.item strong {
    color: var(--headings);
    font-weight: 600;
}

.item span {
    color: #555;
    font-weight: 500;
}

.item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.10);
    border-left: 4px solid var(--highlights-dark);
    background: linear-gradient(to right, #ffffff, #fcf8ed);
}

/* Scroll Animation */
.item.show {
    opacity: 1;
    transform: translateY(0);
}

@media(max-width: 768px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .overview-table-style {
        padding: 15px 0;
    }

    .item {
        font-size: 14px;
        padding: 11px 8px;
    }
}


.pd-faq-item .pd-faq-answer {
    display: none;
}

.pd-faq-item.active .pd-faq-answer {
    display: block;
}

.pd-faq-item.active .pd-faq-icon {
    transform: rotate(45deg); /* + becomes Ã— */
}


#formLoaderOverlay{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.65);
  z-index:99999;
  justify-content:center;
  align-items:center;
  text-align:center;
}

.form-loader-box{
  background:#ffffff;
  padding:25px 30px;
  border-radius:8px;
  box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

.form-loader-box p{
  margin-top:15px;
  font-size:16px;
  font-weight:600;
  color:#333;
}

/* Spinner Animation */
.spinner{
  width:40px;
  height:40px;
  border:4px solid #eee;
  border-top:4px solid #d4af37;
  border-radius:50%;
  margin:auto;
  animation:spin 1s linear infinite;
}

@keyframes spin{
  to{ transform: rotate(360deg); }
}



#contentp p {
    font-family: 'Lato', sans-serif;
    color: #2E2E2E;
    font-weight: 400;
    line-height: 1.6;
}