/* ============ CSS VARIABLES ============ */
:root{
  --orange: #ED4E24;
  --orange-dark: #d43e17;
  --dark: #1a1a1a;
  --gray-text: #555;
  --gray-light: #f6f6f6;
  --border-color: #e6e6e6;
  --white: #ffffff;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 8px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --transition: all 0.3s ease;
  --header-height: 78px;
}

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

html{scroll-behavior:smooth;}

body{
  font-family: var(--font-body);
  color: var(--dark);
  line-height:1.6;
  overflow-x:hidden;
}

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

a{text-decoration:none;color:inherit;}

ul{list-style:none;}

.container{
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
}

h1,h2,h3,h4{font-family:var(--font-heading);font-weight:700;}

.eyebrow{
  display:inline-block;
  color:var(--orange);
  font-weight:700;
  font-size:0.85rem;
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom:10px;
}

.section-title{
  font-size:1.9rem;
  margin-bottom:24px;
  color:var(--dark);
}
.section-title.center{text-align:center;}

/* ============ BUTTONS ============ */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:13px 26px;
  border-radius:6px;
  font-weight:600;
  font-size:0.95rem;
  cursor:pointer;
  border:2px solid transparent;
  transition:var(--transition);
  white-space:nowrap;
}
.btn-primary{
  background:var(--orange);
  color:var(--white);
  border-color:var(--orange);
}
.btn-primary:hover{
  background:var(--orange-dark);
  border-color:var(--orange-dark);
  transform:translateY(-2px);
}
.btn-outline{
  background:transparent;
  color:var(--orange);
  border:2px solid var(--orange);
}
.btn-outline:hover{
  background:var(--orange);
  color:var(--white);
}
.btn-block{width:100%;}
.btn-lg{padding:15px 32px;font-size:1rem;}

.center-btn{text-align:center;margin-top:30px;}

/* ============ HEADER ============ */
.site-header{
  position:sticky;
  top:0;
  left:0;
  right:0;
  width:100%;
  background:var(--white);
  z-index:1000;
  box-shadow:0 2px 10px rgba(0,0,0,0.06);
  height:var(--header-height);
  display:flex;
  align-items:center;
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.logo{
  display:flex;
  flex-direction:column;
  line-height:1;
}
.logo-top{
  font-size:1.4rem;
  font-weight:800;
  letter-spacing:2px;
  color:var(--dark);
}
.logo-bottom{
  font-size:0.9rem;
  font-weight:600;
  color:var(--orange);
  letter-spacing:1px;
}
.main-nav ul{
  display:flex;
  gap:28px;
}
.nav-link{
  font-weight:600;
  font-size:0.92rem;
  color:var(--dark);
  text-transform:uppercase;
  letter-spacing:0.3px;
  position:relative;
  padding-bottom:4px;
  transition:var(--transition);
}
.nav-link::after{
  content:"";
  position:absolute;
  bottom:0;
  left:0;
  width:0;
  height:2px;
  background:var(--orange);
  transition:var(--transition);
}
.nav-link:hover,
.nav-link.active{color:var(--orange);}
.nav-link:hover::after,
.nav-link.active::after{width:100%;}

.header-cta{padding:11px 22px;font-size:0.85rem;}

.hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  cursor:pointer;
  padding:6px;
}
.hamburger span{
  width:26px;
  height:2px;
  background:var(--dark);
  transition:var(--transition);
}

/* ============ HERO ============ */
.hero{
  position:relative;
  min-height:640px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  overflow:hidden;
  padding-top:60px;
  padding-bottom:150px;
}
.hero-bg{
  position:absolute;
  inset:0;
  z-index:0;
}
.hero-bg img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(10,10,15,0.82) 10%, rgba(10,10,15,0.45) 55%, rgba(10,10,15,0.15) 100%);
  z-index:1;
}
.hero-content{
  position:relative;
  z-index:2;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:40px;
  flex-wrap:wrap;
  margin-bottom:70px;
}
.hero-text{color:var(--white);max-width:560px;}
.hero-text .eyebrow{color:var(--orange);}
.hero-text h1{
  font-size:3.2rem;
  font-weight:800;
  margin-bottom:6px;
  color:var(--white);
}
.hero-sub{
  font-size:1.2rem;
  font-weight:500;
  margin-bottom:20px;
  color:#eee;
}
.hero-checklist{margin-bottom:26px;}
.hero-checklist li{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:8px;
  font-size:0.98rem;
  font-weight:500;
}
.check{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:20px;height:20px;
  background:var(--orange);
  border-radius:4px;
  font-style:normal;
  font-size:0.75rem;
  color:#fff;
  flex-shrink:0;
}
.hero-badges{
  background:rgba(20,20,25,0.7);
  backdrop-filter:blur(6px);
  border-radius:var(--radius);
  padding:6px 0;
  min-width:260px;
  margin-top:20px;
}
.badge-item{
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--white);
  font-size:0.9rem;
  font-weight:500;
  padding:14px 20px;
  border-bottom:1px solid rgba(255,255,255,0.12);
}
.badge-item:last-child{border-bottom:none;}
.badge-icon{font-size:1.1rem;}

.hero-features{
  position:relative;
  z-index:3;
  margin-top:-10px;
  background:var(--white);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  align-items:center;
  padding:28px 20px;
  gap:16px;
}
.feature-card{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  gap:10px;
  font-weight:600;
  font-size:0.9rem;
  cursor:default;
  transition:var(--transition);
  padding:4px 6px;
}
.feature-card:hover{transform:translateY(-5px);}
.feature-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--orange);
}

/* ============ ABOUT ============ */
.about{padding:90px 0 0;}
.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
  margin-bottom:60px;
}
.about-text h2{font-size:2rem;margin-bottom:18px;}
.about-text p{color:var(--gray-text);margin-bottom:24px;}
.about-image img{
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  width:100%;
  height:340px;
  object-fit:cover;
}

.highlight-strip{
  background:var(--orange);
  padding:34px 0;
}
.highlight-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:20px;
}
.highlight-item{
  display:flex;
  align-items:center;
  gap:14px;
  color:var(--white);
}
.highlight-item span{
  font-size:1.6rem;
  width:48px;height:48px;
  display:flex;align-items:center;justify-content:center;
  border:2px solid rgba(255,255,255,0.5);
  border-radius:50%;
  flex-shrink:0;
}
.highlight-item p{font-size:0.85rem;font-weight:600;line-height:1.3;}

/* ============ AMENITIES ============ */
.amenities{padding:80px 0;background:var(--gray-light);}
.amenities-grid{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:18px;
}
.amenity-card{
  text-align:center;
  background:var(--white);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  transition:var(--transition);
}
.amenity-card:hover{
  transform:translateY(-8px);
  box-shadow:0 12px 28px rgba(0,0,0,0.14);
}
.amenity-card img{
  height:110px;
  width:100%;
  object-fit:cover;
}
.amenity-card p{
  padding:12px 6px;
  font-size:0.82rem;
  font-weight:600;
}

/* ============ PRICE SECTION ============ */
.price-section{padding:80px 0;}
.price-grid{
  display:grid;
  grid-template-columns:2.2fr 1fr;
  gap:40px;
  align-items:start;
}
.price-cards-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.price-card{
  border:1px solid var(--border-color);
  border-radius:var(--radius);
  padding:26px 22px;
  transition:var(--transition);
}
.price-card:hover{
  box-shadow:var(--shadow);
  transform:translateY(-5px);
}
.price-card h3{font-size:1.3rem;margin-bottom:10px;}
.price-card .area{font-weight:600;color:var(--dark);}
.price-card .area-sub{font-size:0.8rem;color:var(--gray-text);margin-bottom:14px;}
.price-card .price{font-weight:700;color:var(--orange);margin-bottom:18px;}

.enquire-box{
  background:var(--white);
  border:1px solid var(--border-color);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:28px 24px;
}
.enquire-box h3{color:var(--orange);margin-bottom:18px;font-size:1.3rem;}

.lead-form{display:flex;flex-direction:column;gap:14px;}
.lead-form input{
  width:100%;
  padding:12px 14px;
  border:1px solid var(--border-color);
  border-radius:6px;
  font-family:var(--font-body);
  font-size:0.92rem;
  transition:var(--transition);
}
.lead-form input:focus{
  outline:none;
  border-color:var(--orange);
  box-shadow:0 0 0 3px rgba(237,78,36,0.12);
}
.phone-row{
  display:flex;
  align-items:center;
  border:1px solid var(--border-color);
  border-radius:6px;
  overflow:hidden;
}
.phone-row .flag{
  padding:0 12px;
  font-size:0.9rem;
  background:var(--gray-light);
  height:100%;
  display:flex;
  align-items:center;
  white-space:nowrap;
}
.phone-row input{border:none;border-radius:0;flex:1;}
.phone-row input:focus{box-shadow:none;}
.form-msg{
  font-size:0.85rem;
  font-weight:600;
  color:var(--orange);
  text-align:center;
  min-height:18px;
}

/* ============ FLOOR PLAN ============ */
.floorplan{padding:80px 0;background:var(--gray-light);}
.floorplan-grid{
  display:flex;
  align-items:stretch;
  gap:30px;
}
.fp-label{
  font-weight:700;
  margin-bottom:14px;
  font-size:1rem;
}
.master-plan{
  flex:1 1 0;
  display:flex;
  flex-direction:column;
  min-width:0;
}
.plan-img-wrap{
  position:relative;
  flex:1;
  min-height:280px;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
  cursor:pointer;
}
.plan-img-wrap img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:var(--transition);
}
.plan-img-wrap:hover img{transform:scale(1.04);}
.plan-overlay{
  position:absolute;
  inset:0;
  background:rgba(20,20,20,0.45);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  gap:16px;
  color:var(--white);
  padding:20px;
  transition:var(--transition);
}
.plan-img-wrap:hover .plan-overlay{background:rgba(20,20,20,0.55);}
.plan-overlay h4{
  color:var(--white);
  font-size:1.5rem;
  font-weight:700;
  letter-spacing:1.5px;
  margin:0;
}
.plan-view-btn{
  display:inline-block;
  border:2px solid var(--white);
  border-radius:6px;
  padding:10px 22px;
  color:var(--white);
  font-size:0.82rem;
  font-weight:600;
  letter-spacing:0.8px;
  text-transform:uppercase;
  background:transparent;
  transition:var(--transition);
}
.plan-img-wrap:hover .plan-view-btn{
  background:var(--orange);
  border-color:var(--orange);
}
.zoom-icon{
  position:absolute;
  bottom:14px;
  right:14px;
  width:36px;
  height:36px;
  border-radius:50%;
  background:var(--white);
  color:var(--dark);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 4px 10px rgba(0,0,0,0.25);
  transition:var(--transition);
}
.plan-img-wrap:hover .zoom-icon{
  background:var(--orange);
  color:var(--white);
}
.unit-plan{
  flex:1.3 1 0;
  min-width:0;
  background:var(--white);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:24px;
  display:flex;
  flex-direction:column;
}
.fp-tabs{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:16px;
}
.tab-buttons{display:flex;gap:8px;}
.tab-btn{
  padding:8px 18px;
  border-radius:6px;
  border:1px solid var(--border-color);
  background:var(--white);
  font-weight:600;
  font-size:0.85rem;
  cursor:pointer;
  transition:var(--transition);
}
.tab-btn.active,
.tab-btn:hover{
  background:var(--orange);
  color:var(--white);
  border-color:var(--orange);
}
.tab-content-wrap.plan-img-wrap{
  flex:1;
  min-height:280px;
}
.tab-content{display:none;height:100%;}
.tab-content.active{display:block;animation:fadeIn 0.4s ease;height:100%;}
.tab-content img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:6px;
  border:1px solid var(--border-color);
  display:block;
}
.fp-footer{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:18px;
  padding-top:18px;
  border-top:1px solid var(--border-color);
}

@keyframes fadeIn{from{opacity:0;transform:translateY(8px);}to{opacity:1;transform:translateY(0);}}

/* ============ GALLERY ============ */
.gallery{padding:80px 0;}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.gallery-img{
  width:100%;
  height:200px;
  object-fit:cover;
  border-radius:var(--radius);
  cursor:pointer;
  transition:var(--transition);
}
.gallery-img:hover{transform:scale(1.03);box-shadow:var(--shadow);}

.lightbox{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.9);
  z-index:2000;
  align-items:center;
  justify-content:center;
}
.lightbox.active{display:flex;}
.lightbox img{
  max-width:90%;
  max-height:85vh;
  border-radius:8px;
}
.lightbox-close{
  position:absolute;
  top:24px;
  right:34px;
  font-size:2.4rem;
  color:var(--white);
  cursor:pointer;
  line-height:1;
}

/* ============ LOCATION ============ */
.location{padding:80px 0;background:var(--gray-light);}
.location-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}
.map-view iframe{
  border-radius:var(--radius);
  margin-bottom:16px;
  box-shadow:var(--shadow);
}
.connectivity-list li{
  display:flex;
  align-items:center;
  gap:12px;
  padding:10px 0;
  border-bottom:1px dashed var(--border-color);
  font-weight:500;
  font-size:0.95rem;
}
.connectivity-list li span{
  color:var(--orange);
  font-size:1.1rem;
}
.connectivity-tags{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top:20px;
}
.connectivity-tags span{
  border-left:4px solid var(--orange);
  padding:10px 16px;
  background:var(--white);
  font-weight:700;
  font-size:0.85rem;
  letter-spacing:0.5px;
  border-radius:0 6px 6px 0;
  box-shadow:0 2px 8px rgba(0,0,0,0.05);
}

/* ============ FOOTER ============ */
.site-footer{
  background:var(--gray-light);
  padding:30px 0 100px;
  border-top:1px solid var(--border-color);
}
.disclaimer{
  font-size:0.72rem;
  color:#888;
  text-align:center;
  margin-bottom:10px;
  line-height:1.6;
}
.copyright{
  text-align:center;
  font-size:0.75rem;
  color:#888;
  margin-top:14px;
}

/* ============ FLOATING BUTTONS ============ */
.float-btn{
  position:fixed;
  right:24px;
  width:56px;height:56px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.5rem;
  box-shadow:0 6px 18px rgba(0,0,0,0.25);
  z-index:900;
  transition:var(--transition);
}
.float-btn:hover{transform:scale(1.08);}
.float-call{
  bottom:170px;
  background:#FFC107;
  color:var(--dark);
}
.float-whatsapp{
  bottom:100px;
  background:#25D366;
}

/* ============ MOBILE BOTTOM BAR ============ */
.mobile-bar{
  display:none;
  position:fixed;
  bottom:0;left:0;right:0;
  z-index:950;
  background:var(--orange);
}
.mobile-bar-btn{
  flex:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  color:var(--white);
  font-size:0.75rem;
  font-weight:600;
  padding:10px 0;
  gap:2px;
  border-right:1px solid rgba(255,255,255,0.2);
}
.mobile-bar-btn:last-child{border-right:none;}
.mobile-bar-btn span{font-size:1.1rem;}

/* ============ POPUP ============ */
.popup-overlay{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(10,10,15,0.6);
  backdrop-filter:blur(6px);
  z-index:3000;
  align-items:center;
  justify-content:center;
  padding:20px;
}
.popup-overlay.active{display:flex;animation:fadeIn 0.35s ease;}
.popup-box{
  background:var(--white);
  border-radius:var(--radius);
  padding:34px 30px;
  max-width:420px;
  width:100%;
  position:relative;
  box-shadow:0 20px 60px rgba(0,0,0,0.3);
  animation:popIn 0.35s ease;
}
@keyframes popIn{from{opacity:0;transform:scale(0.92);}to{opacity:1;transform:scale(1);}}
.popup-box h3{
  color:var(--orange);
  margin-bottom:20px;
  font-size:1.4rem;
  text-align:center;
}
.popup-close{
  position:absolute;
  top:14px;right:18px;
  font-size:1.6rem;
  cursor:pointer;
  color:#999;
  line-height:1;
}
.popup-close:hover{color:var(--orange);}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px){
  .amenities-grid{grid-template-columns:repeat(4,1fr);}
  .highlight-grid{grid-template-columns:repeat(3,1fr);}
  .price-grid{grid-template-columns:1fr;}
  .location-grid{grid-template-columns:1fr;}
}

@media (max-width: 900px){
  .main-nav{
    position:fixed;
    top:var(--header-height);
    left:0;right:0;
    background:var(--white);
    flex-direction:column;
    max-height:0;
    overflow:hidden;
    transition:max-height 0.35s ease;
    box-shadow:0 8px 16px rgba(0,0,0,0.08);
  }
  .main-nav.open{max-height:400px;}
  .main-nav ul{
    flex-direction:column;
    padding:10px 20px 20px;
    gap:0;
  }
  .main-nav ul li{border-bottom:1px solid var(--border-color);}
  .nav-link{display:block;padding:14px 0;}
  .hamburger{display:flex;}
  .header-cta{display:none;}
  .about-grid{grid-template-columns:1fr;}
  .floorplan-grid{flex-direction:column;}
  .mobile-bar{display:flex;}
  .float-btn{display:none;} /* mobile-bar already has Call + WhatsApp, so hide the floating round buttons on mobile/tablet to stop them overlapping section content like the plan buttons */
}

@media (max-width: 768px){
  .hero{min-height:auto;padding-bottom:130px;}
  .hero-text h1{font-size:2.2rem;}
  .hero-content{flex-direction:column;margin-bottom:40px;}
  .hero-badges{width:100%;min-width:0;}
  .hero-features{grid-template-columns:repeat(2,1fr);display:grid;margin-top:-10px;}
  .amenities-grid{grid-template-columns:repeat(2,1fr);}
  .highlight-grid{grid-template-columns:repeat(2,1fr);}
  .price-cards-row{grid-template-columns:1fr;}
  .gallery-grid{grid-template-columns:repeat(2,1fr);}
  .section-title{font-size:1.5rem;}
  body{padding-bottom:56px;}
}

@media (max-width: 480px){
  .hero-text h1{font-size:1.8rem;}
  .amenities-grid{grid-template-columns:repeat(2,1fr);}
  .highlight-grid{grid-template-columns:1fr 1fr;}
  .logo-top{font-size:1.15rem;}
  .logo-bottom{font-size:0.75rem;}
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  *{animation-duration:0.001ms !important; transition-duration:0.001ms !important;}
}
