*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Inter', sans-serif;
}

body{
  background:#000;
  color:#fff;
}

html {
  scroll-behavior: smooth;
}


/* ================= TOP BAR ================= */
.project-topbar{
  position:sticky;
  top:0;
  z-index:100;
  background:#fff;
  border-bottom:1px solid #eee;
}

.topbar-inner{
  max-width:1400px;
  margin:auto;
  padding:10px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* LEFT */
.topbar-left{
  display:flex;
  align-items:center;
  gap:12px;
}

.bb-logo{
  height:50px;
}

.partner-logo{
  height:auto;
  max-width:200px;
  max-height: 50px;
}

.divider{
  width:1px;
  height:30px;
  background:#ccc;
}

.auth-text{
  font-size:11px;
  color:#666;
}

/* NAV */
.topbar-nav{
  display:flex;
  gap:22px;
}

.topbar-nav a{
  font-size:13px;
  color:#111;
  text-decoration:none;
  display:flex;
  align-items:center;
  gap:6px;
}

.topbar-nav a:hover{
  color:#b08d3a;
}


/* ================= ACTIVE NAV LINK ================= */
.topbar-nav a{
  padding:8px 14px;
  border-radius:6px;
  transition:background .3s, color .3s;
}

.topbar-nav a.active{
  background:#000;
  color:#fff;
}

.topbar-nav a.active i{
  color:#fff;
}


/* ================= HAMBURGER ================= */
.hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}

.hamburger span{
  width:26px;
  height:2px;
  background:#111;
  transition:.3s;
}


.topbar-nav.active ~ .hamburger span:nth-child(1){
  transform:rotate(45deg) translateY(8px);
}

.topbar-nav.active ~ .hamburger span:nth-child(2){
  opacity:0;
}

.topbar-nav.active ~ .hamburger span:nth-child(3){
  transform:rotate(-45deg) translateY(-8px);
}




/* ================= MOBILE NAV ================= */
@media(max-width:900px){
  body {
    padding-top: 75px;
  }
  .project-topbar{
    position:fixed;
    width: 100%;
  }

  .hamburger{
    display:flex;
  }

  .topbar-nav{
    position:fixed;
    top:70px;
    right:-100%;
    width:260px;
    height:calc(100vh - 70px);
    background:#fff;
    flex-direction:column;
    padding:20px;
    gap:12px;
    transition:.35s ease;
    z-index:999;
    box-shadow:-4px 0 20px rgba(0,0,0,.1);
  }

  .topbar-nav.active{
    right:0;
  }

  .topbar-nav a{
    padding:12px 14px;
    font-size:14px;
    border-radius:6px;
  }
}







/* ================= HERO ================= */
.project-hero{
  position:relative;
  height:calc(100vh - 70px);
  overflow:hidden;
}

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

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to right,
    rgba(8,20,35,0.9) 30%,
    rgba(8,20,35,0.2)
  );
  z-index:1;
}

.hero-content{
  position:absolute;
  left:6%;
  top:50%;
  transform:translateY(-50%);
  z-index:2;
  max-width:520px;
}

.hero-content h1{
  font-size:42px;
  font-weight:600;
  color:#d4af37;
  margin-bottom:10px;
}

.hero-content .subtitle{
  font-size:16px;
  letter-spacing:1px;
  margin-bottom:24px;
}

.project-brand{
  border-left:3px solid #d4af37;
  padding-left:14px;
}

.project-brand span{
  display:block;
  font-size:20px;
  font-weight:600;
}

.project-brand small{
  font-size:13px;
  opacity:0.8;
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){

  .project-hero{
    height: auto;
  }

  .hero-content h1{
    font-size:30px;
  }

  .hero-content{
    left:20px;
    right:20px;
  }
}





/* ================= PROJECT OVERVIEW ================= */
.project-overview{
  background:#fff;
  color:#111;
  padding:80px 20px;
}

.overview-inner{
  max-width:1300px;
  margin:auto;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:60px;
}

/* LEFT */
.overview-content{
  max-width:900px;
}

.overview-content h2{
  font-size:32px;
  font-weight:600;
  margin-bottom:5px;
}

.overview-content h3{
  font-size:22px;
  font-weight:800;
  margin-bottom:15px;
}

.overview-content p{
  font-size:15px;
  line-height:1.8;
  color:#333;
  margin-bottom:14px;
}

/* BUTTON */
.brochure-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:18px;
  padding:12px 22px;
  border:1px solid #111;
  text-decoration:none;
  color:#111;
  font-size:14px;
  transition:.3s;
}

.brochure-btn:hover{
  background:#111;
  color:#fff;
}

/* RIGHT VERTICAL TEXT */
.overview-label{
  writing-mode:vertical-rl;
  text-orientation:mixed;
}

.overview-label span{
  font-size:28px;
  font-weight:600;
  letter-spacing:2px;
  color:#2a1205;
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){

  .project-overview {
    padding: 40px 20px;
  }
  .overview-inner{
    flex-direction:column;
    gap:30px;
  }

  .overview-label{
    writing-mode:horizontal-tb;
    text-align:right;
    width:100%;
  }

  .overview-label span{
    font-size:22px;
  }
}





/* ================= LAYOUT SECTION ================= */
.layout-section{
  background:#fff;
  padding:70px 20px;
}

.layout-header {
  max-width:1300px;
  margin:auto;
}

.layout-header h2{
  font-size:26px;
  margin-bottom:30px;
  color:#111;
}

.layout-wrapper{
  max-width:1300px;
  margin:auto;
  display:flex;
  align-items:center;
  gap:40px;
}

/* IMAGE ROW */
.layout-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:22px;
  flex:1;
}

.layout-grid img{
  width:100%;
  height:220px;
  object-fit:cover;
  cursor:pointer;
  transition:.3s ease;
}

.layout-grid img:hover{
  transform:scale(1.04);
}

/* VERTICAL LABEL */
.layout-label{
  writing-mode:vertical-rl;
}

.layout-label span{
  font-size:28px;
  font-weight:600;
  letter-spacing:2px;
  color:#2a1205;
}

/* ================= MODAL ================= */
.image-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.85);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  visibility:hidden;
  transition:.3s;
  z-index:999;
}

.image-modal.active{
  opacity:1;
  visibility:visible;
}

.image-modal img{
  max-width:90%;
  max-height:90%;
}

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

/* ================= RESPONSIVE ================= */
@media(max-width:900px){
  .layout-wrapper{
    flex-direction:column;
  }

  .layout-grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .layout-label{
    writing-mode:horizontal-tb;
  }
}



/* ================= MASTER PLAN ================= */
.masterplan-section{
  background:#fff;
  padding:0px 20px 70px 20px;
}

.masterplan-header {
  max-width:1300px;
  margin:auto;
}

.masterplan-header h2{
  font-size:26px;
  margin-bottom:30px;
  color:#111;
}

.masterplan-wrapper{
  max-width:1300px;
  margin:auto;
  display:flex;
  align-items:center;
  gap:40px;
}

/* GRID */
.masterplan-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:22px;
  flex:1;
}

.masterplan-grid img{
  width:100%;
  height:220px;
  object-fit:cover;
  cursor:pointer;
  transition:.3s ease;
}

.masterplan-grid img:hover{
  transform:scale(1.04);
}

/* VERTICAL LABEL */
.masterplan-label{
  writing-mode:vertical-rl;
}

.masterplan-label span{
  font-size:28px;
  font-weight:600;
  letter-spacing:2px;
  color:#2a1205;
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){
  .masterplan-wrapper{
    flex-direction:column;
  }

  .masterplan-grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .masterplan-label{
    writing-mode:horizontal-tb;
  }
}








/* ================= AMENITIES SECTION ================= */
.amenities-section{
  background: linear-gradient(to bottom, #0b1c2d, #071b2a);
  padding:70px 20px;
}

.amenities-header {
  max-width:1300px;
  margin:auto;
}

.amenities-header h2{
  font-size:26px;
  margin-bottom:30px;
  color:#fff;
}

.amenities-wrapper{
  max-width:1300px;
  margin:auto;
  display:flex;
  align-items:center;
  position:relative;
  gap:30px;
}

/* ARROWS */
.amenity-nav{
  width:44px;
  height:44px;
  border-radius:50%;
  border:1px solid #ccc;
  background:#fff;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
}

.amenity-nav i{
  font-size:16px;
}

/* CONTENT */
.amenities-content{
  flex:1;
  width: 100%;
}

.amenities-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px 80px;
}

.amenities-col{
  display:flex;
  flex-direction:column;
}

.amenity-item{
  display:flex;
  align-items:center;
  gap:16px;
  padding:18px 0;
  border-bottom:1px solid #ddd;
  font-size:15px;
  cursor: pointer;
}

.amenity-item i{
  font-size:22px;
  width:30px;
}

/* VERTICAL LABEL */
.amenities-label{
  writing-mode:vertical-rl;
  margin-left:10px;
}

.amenities-label span{
  font-size:28px;
  font-weight:600;
  letter-spacing:2px;
  color:#fff;
}

.amenity-item i{
  transition: transform .3s ease;
}

.amenity-item:hover i{
  transform: scale(1.15);
}


/* ================= RESPONSIVE ================= */
@media(max-width:900px){
  .amenities-wrapper{
    flex-direction:column;
    gap:20px;
  }

  .amenities-grid{
    grid-template-columns:1fr;
    gap: 0px;
  }

  .amenities-label{
    writing-mode:horizontal-tb;
  }
}










/* ================= ENQUIRY SECTION ================= */
.enquiry-section{
  background: linear-gradient(to bottom, #f6faf8, #ffffff);
  padding:90px 20px;
}

.enquiry-inner {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

/* LEFT TEXT */
.enquiry-left h2{
  font-size:56px;
  font-weight:600;
  line-height:1.15;
  color:#071b2a;
}

/* RIGHT FORM */
.enquiry-right{
  max-width:460px;
  width:100%;
}

.enquiry-desc{
  font-size:16px;
  margin-bottom:22px;
  color:#222;
}

.enquiry-form{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.enquiry-form input,
.enquiry-form select{
  padding:14px 16px;
  font-size:14px;
  border:1px solid #bbb;
  outline:none;
  width: 100%;
}

.phone-row{
  display:flex;
  gap:10px;
}

.phone-row select{
  width:90px;
  flex: 1;
}

.phone-row input{
  flex: 6;
}

.submit-btn{
  color: #ffd200;
  margin-top:10px;
  background:#071b2a;
  border:none;
  padding:14px;
  font-size:15px;
  font-weight:600;
  cursor:pointer;
  border-radius:6px;
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){
  .enquiry-section {
    padding: 40px 20px;
  }

  .enquiry-inner{
    flex-direction:column;
    gap:40px;
  }

  .enquiry-left{
    width: 100%;
  }

  .enquiry-left h2{
    font-size:40px;
  }
}



.layout-grid img,
.layout-label span,
.masterplan-grid img,
.masterplan-label span,
.amenity-item,
.enquiry-section * {
  opacity: 1;
  transform: none;
}











/* ================= BROCHURE MODAL ================= */

.brochure-modal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.brochure-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.brochure-box{
  position: relative;
  max-width: 720px;
  width: 90%;
  margin: auto;
  margin-top: 100px;
  background: #071b2a;
  border-radius: 12px;
  overflow: hidden;
  z-index: 2;
}

.brochure-close{
  position: absolute;
  top: 12px;
  right: 14px;
  width: 30px;
  height: 30px;
  background: #f7f7f7;
  border: none;
  font-size: 20px;
  cursor: pointer;
  border-radius: 50%;
}

.brochure-inner{
  display: grid;
  grid-template-columns: 1fr 1.4fr;
}

/* LEFT PANEL */
.brochure-info{
  background:#f7f7f7;
  padding:30px 20px;
  text-align:center;
}

.brochure-info h3{
  font-size:22px;
  font-weight:600;
  margin-bottom:24px;
  color:#071b2a;
}

/* PROMISE LIST */
.promise-list{
  display:flex;
  flex-direction:column;
  align-items:center;
}

.promise-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  font-size:14px;
  color:#071b2a;
}

.promise-item i{
  font-size:34px;
  color:#071b2a;
}

.promise-item span{
  line-height:1.3;
  font-weight:500;
}

/* DIVIDER LINE */
.promise-divider{
  width:60%;
  height:1px;
  background:#ddd;
  margin:18px 0;
}


/* RIGHT */
.brochure-form{
  padding: 30px;
}

.brochure-form h3{
  margin-bottom: 18px;
  font-size: 22px;
  line-height: 40px;
  text-align: center;
}

.brochure-form span{
  color: #e63946;
}

#brochureModal .brochure-enquiry-form input,
.brochure-enquiry-form select{
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  color: #071b2a;
  background: #ccc;
}

#brochureModal .phone-row{
  display: flex;
  gap: 10px;
}

#brochureModal .phone-row select{
  width: 90px;
}

#brochureModal .brochure-submit-btn{
  width: 100%;
  padding: 14px;
  background: #ff9c49;
  color: #071b2a;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.brochure-submit-btn:disabled{
    opacity:0.7;
    cursor:not-allowed;
  }

/* RESPONSIVE */
@media(max-width:700px){
  .brochure-box{
    margin-top: 40px;
  }

  .brochure-inner{
    grid-template-columns: 1fr;
  }
}


@media(max-width:700px){

  /* LEFT PANEL MOBILE FIX */
  .brochure-info{
    padding:20px 15px;
  }

  .brochure-info h3{
    font-size:18px;
    margin-bottom:16px;
  }

  .promise-list{
    flex-direction:row;
    justify-content:space-around;
    width:100%;
  }

  .promise-item{
    font-size:12px;
    gap:6px;
  }

  .promise-item i{
    font-size:26px;
  }

  /* HIDE DIVIDERS ON MOBILE */
  .promise-divider{
    display:none;
  }

}



/* ERROR TEXT */
  #enquiryForm .submit-btn:disabled{
    opacity:0.7;
    cursor:not-allowed;
  }

  #enquiryForm .error{
    color:#ff4d4f;
    font-size:12px;
    margin-top: 5px;
    margin-bottom:10px;
    display:block;
  }

  .error{
    color:#ff4d4f;
    font-size:12px;
    margin-top:-14px;
    margin-bottom:10px;
    display:block;
  }

  /* THANK YOU POPUP */
  .thankyou-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.6);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:99999;
  }

  .thankyou-box{
    background:#fff;
    padding:35px 30px;
    max-width:380px;
    width:90%;
    text-align:center;
    border-radius:14px;
    animation:scaleIn 0.3s ease;
  }

  .thankyou-box i{
    font-size:48px;
    color:#28a745;
    margin-bottom:15px;
  }

  .thankyou-box h3{
    margin-bottom:10px;
    color:#071b2a;
  }

  .thankyou-box p{
    font-size:14px;
    color:#555;
  }

  .thankyou-box button{
    margin-top:20px;
    padding:10px 22px;
    border:none;
    background:#071b2a;
    color:#fff;
    border-radius:6px;
    cursor:pointer;
  }

  @keyframes scaleIn{
    from{transform:scale(0.8);opacity:0}
    to{transform:scale(1);opacity:1}
  }





/* ================= FOOTER ================= */
.site-footer{
  background: linear-gradient(to bottom, #efeefe, #f9ffff);
  padding: 22px 20px;
  font-size: 13px;
  color: #222;
}

.footer-inner{
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner a{
  text-decoration: none;
  color: inherit;
}

.footer-inner a:hover{
  text-decoration: underline;
}

/* LEFT */
.footer-left p{
  margin-bottom: 6px;
}

.footer-left i{
  margin-right: 6px;
  font-size: 13px;
}

/* CENTER */
.footer-center{
  display: flex;
  gap: 14px;
}

.footer-center a{
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #111;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
}

.footer-center a:hover{
  background: #00d2b8;
}

/* RIGHT */
.footer-right{
  text-align: right;
}

.footer-right .powered{
  margin-top: 4px;
}

.footer-right .powered a:hover{
  color: #caa586;
}


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

  .footer-right{
    text-align: center;
  }
}



