* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background: #fff;
      color: #222;
      overflow-x: hidden;
    }

    img {
      width: 100%;
      display: block;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    .container {
      width: 90%;
      max-width: 1300px;
      margin: auto;
    }
				
				.sticky-cta{ display:none !important;}

    /* HEADER */
    header {
      position: fixed;
      width: 100%;
      top: 0;
      left: 0;
      z-index: 999;
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid #eee;
    }

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 8px 0;
    }

    .logo {
      font-size: 32px;
      font-weight: 800;
      color: #13276b;
    }
				
				.logo img {
					width:80%;
    }

    .logo span {
      color: #ebebeb;
    }

    .nav-links {
      display: flex;
      gap: 35px;
      list-style: none;
    }

    .nav-links a {
      font-weight: 500;
      transition: 0.3s;
    }

    .nav-links a:hover {
      color: #ebebeb;
    }

    .btn {
      display: inline-block;
      background: #ebebeb;
      color: #000;
      padding: 8px 30px;
      border-radius: 50px;
      font-weight: 600;
      transition: 0.3s;
    }

    .btn:hover {
      background: #13276b;
						color:#fff;
    }

    /* HERO */
    .hero {
      height: 70vh;
      background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.65)),
      url(../images/banner.jpg) center/cover;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      padding: 0 20px;
    }

    .hero-content {
      max-width: 850px;
						padding-top: 115px;
    }

    .hero-content p {
      letter-spacing: 5px;
      color: #ebebeb;
      margin-bottom: 20px;
      text-transform: uppercase;
      font-size: 14px;
    }

    .hero-content h1 {
    font-size: 46px;
    line-height: 18px;
    margin-bottom: 25px;
}

    .hero-content h1 span {
      color: #fff;
    }

    .hero-content .desc {
      font-size: 14px;
      color: #eee;
      line-height: 1.8;
      margin-bottom: 40px;
    }

    .hero-btns {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .outline-btn {
      border: 2px solid #fff;
      padding: 14px 30px;
      border-radius: 50px;
      color: #fff;
      font-weight: 600;
      transition: 0.3s;
    }

    .outline-btn:hover {
      background: #fff;
      color: #13276b;
    }

    /* SEARCH */
    .search-box {
      margin-top: -70px;
      position: relative;
      z-index: 10;
    }

    .search-wrapper {
      background: #fff;
      padding: 35px;
      border-radius: 25px;
      box-shadow: 0 15px 50px rgba(0,0,0,0.12);
      display: grid;
      grid-template-columns: repeat(4,1fr);
      gap: 20px;
    }

    .search-wrapper input,
    .search-wrapper select {
      width: 100%;
      padding: 18px;
      border-radius: 12px;
      border: 1px solid #ddd;
      font-size: 15px;
      outline: none;
    }

    .search-wrapper button {
      border: none;
      cursor: pointer;
      font-size: 16px;
    }

    /* SECTION */
    section {
      padding: 50px 0;
    }

    .section-title {
      text-align: center;
      margin-bottom: 30px;
    }

    .section-title p {
      text-transform: uppercase;
      color: #ebebeb;
      letter-spacing: 2px;
      margin-bottom: 15px;
      font-weight: 600;
    }

    .section-title h2 {
      font-size: 30px;
      margin-bottom: 10px;
						color:#333333;
    }

    .section-title span {
      color: #333333;
    }

    .section-title .sub {
      max-width: 700px;
      margin: auto;
      color: #666;
      line-height: 1.8;
    }

    /* PROJECTS */
    .projects {
      background: #f8f8f8;
    }

    .project-grid {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 35px;
    }

    .project-card {
      background: #fff;
      border-radius: 25px;
      overflow: hidden;
      transition: 0.4s;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

    .project-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    }

    .project-image {
      position: relative;
      overflow: hidden;
    }

    .project-image img {
      height: 300px;
      object-fit: cover;
      transition: 0.5s;
    }

    .project-card:hover img {
      transform: scale(1.1);
    }

    .tag {
      position: absolute;
      top: 20px;
      left: 20px;
      background: #13276b;
      color: #fff;
      padding: 10px 18px;
      border-radius: 50px;
      font-size: 13px;
      font-weight: 600;
    }

    .project-content {
      padding: 16px 30px;
    }

    .project-content h3 {
    font-size: 18px;
    margin-bottom: 0px;
    font-weight: 500;
}

    .location {
    color: #333;
    margin-bottom: 10px;
    font-size: 14px;
}
				
				.config{ font-size:16px; color:#000;}

    .price {
    color: #13276b;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
}

    .card-btns {
      display: flex;
      gap: 15px;
    }

    .dark-btn {
      background: #13276b;
      color: #fff;
      padding: 4px 12px;
      border-radius: 12px;
      flex: 1;
      text-align: center;
      font-weight: 600;
      transition: 0.3s;
    }

    .dark-btn:hover {
      background: #ebebeb;
						color:#333
    }

    .light-btn {
      border: 1px solid #13276b;
      padding: 4px 22px;
      border-radius: 12px;
      flex: 1;
      text-align: center;
      font-weight: 600;
      transition: 0.3s;
						background-color:#ebebeb;
    }

    .light-btn:hover {
      background: #13276b;
      color: #fff;
    }

    /* ABOUT */
    .about-wrapper {
      display: grid;
      grid-template-columns: repeat(2,1fr);
      gap: 70px;
      align-items: center;
    }

    .about-image img {
      border-radius: 25px;
      height: 425px;
      object-fit: cover;
    }

    .about-content h2 {
      font-size: 26px;
      margin-bottom: 25px;
    }

    .about-content p {
      color: #333;
      line-height: 1.6;
      margin-bottom: 10px;
    }

    #about ul{ margin-left:20px;}

    .stats {
      display: grid;
      grid-template-columns: repeat(2,1fr);
      gap: 20px;
      margin-bottom: 35px;
    }

    .stat-box {
      background: #f5f5f5;
      padding: 30px;
      border-radius: 20px;
      text-align: center;
    }

    .stat-box h3 {
      color: #ebebeb;
      font-size: 40px;
      margin-bottom: 10px;
    }

    /* AMENITIES */
    .content {
      background: #f8f8f8;
						color:#333;
    }
				
				.content ul {
    padding-left: 20px;
    column-count: 2;
				margin-bottom:20px;
}
				.content ul li{ line-height:26px; padding:5px 0px;}
				
				.content ol{ padding-left:20px;}
				.content ol li{ line-height:26px; padding:5px 0px;}

    .amenity-grid {
      display: grid;
      grid-template-columns: repeat(4,1fr);
      gap: 25px;
    }

    .amenity-box {
      background: #fff;
      padding: 40px 25px;
      border-radius: 25px;
      text-align: center;
      transition: 0.3s;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }

    .amenity-box:hover {
      transform: translateY(-10px);
    }

    .amenity-box .icon {
      font-size: 50px;
      margin-bottom: 20px;
    }

    .amenity-box h4 {
      font-size: 20px;
    }
				
				

    /* CTA */
    .cta {
      background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)),
      url('https://images.unsplash.com/photo-1494526585095-c41746248156?q=80&w=1600&auto=format&fit=crop') center/cover;
      text-align: center;
      color: #fff;
    }

    .cta h2 {
      font-size: 40px;
      margin-bottom: 25px;
    }

    .cta p {
      max-width: 700px;
      margin: auto auto 40px;
      line-height: 1.9;
      color: #ddd;
    }

    /* CONTACT */
    .contact-wrapper {
      display: grid;
      grid-template-columns: repeat(2,1fr);
      gap: 60px;
      align-items: center;
    }

    .contact-content h2 {
      font-size: 40px;
      margin-bottom: 25px;
    }

    .contact-content p {
      color: #666;
      line-height: 1.8;
      margin-bottom: 30px;
    }

    .contact-info div {
      margin-bottom: 18px;
      font-size: 18px;
    }

   .contact-form {
  background: #fff;
  padding: 45px 40px;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid #f0f0f0;
}

.contact-form h3{ font-size:24px;}
.contact-form p{ font-size:16px; margin-bottom:25px;}

.input-group {
  position: relative;
  margin-bottom: 28px;
}

.input-group input,
.input-group select {
  width: 100%;
  padding: 20px 20px 20px 52px;
  border: 1.5px solid #e0e0e0;
  border-radius: 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #222;
  background: #fafafa;
  outline: none;
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
}

.input-group input:focus,
.input-group select:focus {
  border-color: #ebebeb;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(217, 154, 28, 0.1);
}

/* Floating Label */
.input-group label {
  position: absolute;
  left: 52px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #aaa;
  pointer-events: none;
  transition: all 0.25s ease;
  background: transparent;
  padding: 0 4px;
  font-family: 'Poppins', sans-serif;
}

.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label,
.input-group select:focus ~ label,
.input-group select:valid ~ label {
  top: 0;
  font-size: 12px;
  color: #aaa;
  background: #fff;
  font-weight: 600;
  left: 46px;
}

/* Icon */
.input-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  z-index: 1;
  pointer-events: none;
}


/* Submit Button */
.submit-btn {
  width: 100%;
  padding: 18px 30px;
  background: linear-gradient(135deg, #333333, #000000);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(217, 154, 28, 0.4);
  margin-top: 8px;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #13276b, #333);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn svg {
  transition: transform 0.3s ease;
}

.submit-btn:hover svg {
  transform: translateX(5px);
}

/* Privacy note */
.form-note {
  text-align: center;
  font-size: 13px;
  color: #aaa;
  margin-top: 18px;
  margin-bottom: 0;
}

    /* FOOTER */
    footer {
      background: #13276b;
      color: #bbb;
      padding: 40px 0;
    }

    .footer-wrapper {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
    }

    .footer-links {
      display: flex;
      gap: 25px;
    }

    .footer-links a:hover {
      color: #fff;
    }

    /* RESPONSIVE */
    @media(max-width: 1100px) {
      .project-grid,
      .amenity-grid {
        grid-template-columns: repeat(2,1fr);
      }

      .about-wrapper,
      .contact-wrapper {
        grid-template-columns: 1fr;
      }

      .search-wrapper {
        grid-template-columns: repeat(2,1fr);
      }
    }

    @media(max-width: 768px) {
      
						#about ul{margin-bottom:20px;}
						
						.content ul {
    column-count: 1;
}
						
						.about-wrapper {
    gap: 40px;
}
						
						.about-image img {
    height: auto;
}
						
						.hero {
    height: 58vh;
    background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.65)), url(../images/banner-mob.jpg) center/cover;
}

section {
    padding: 34px 0;
}

.btn {
    padding: 6px 10px;
    border-radius: 15px;
}
.logo {
    width: 180px;
}
						
						.nav-links {
        display: none;
      }

      .hero-content h1 {
        font-size: 26px;
      }
						
						.hero-content h1 {
    line-height: 16px;
}

      .section-title h2,
      .about-content h2,
      .contact-content h2,
      .cta h2 {
        font-size: 25px;
      }

      .project-grid,
      .amenity-grid,
      .search-wrapper,
      .stats {
        grid-template-columns: 1fr;
      }

      .hero-btns {
        flex-direction: column;
      }

      .footer-wrapper {
        flex-direction: column;
        text-align: center;
      }
    }
				
				
				
/* =========================
POPUP FORM
========================= */

.popup-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(5px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
}

.popup-wrapper{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 92%;
  max-width: 470px;
  background: #fff;
  border-radius: 28px;
  padding: 40px 30px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
  overflow: hidden;
}

.popup-wrapper.active,
.popup-overlay.active{
  opacity: 1;
  visibility: visible;
}

.popup-wrapper.active{
  transform: translate(-50%, -50%) scale(1);
}

.popup-wrapper::before{
  content:'';
  position:absolute;
  width:180px;
  height:180px;
  background: rgba(232,132,56,0.12);
  border-radius:50%;
  top:-70px;
  right:-70px;
}

.popup-close{
  position:absolute;
  top:15px;
  right:15px;
  width:42px;
  height:42px;
  border:none;
  border-radius:50%;
  background:#ccc;
  color:#fff;
  font-size:24px;
  cursor:pointer;
  z-index:2;
  transition:0.3s;
}

.popup-close:hover{
  background:#ebebeb;
}

.popup-logo{
  text-align:center;
  margin-bottom:20px;
  position:relative;
  z-index:2;
}

.popup-logo img{
  width:160px;
  margin:auto;
}

.popup-heading{
  text-align:center;
  margin-bottom:30px;
  position:relative;
  z-index:2;
}

.popup-heading p{
  color:#333;
  font-size:13px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:1px;
  margin-bottom:10px;
}

.popup-heading h3{
  font-size:30px;
  line-height:1.3;
  margin-bottom:10px;
  color:#13276b;
}

.popup-heading span{
  color:#666;
  font-size:14px;
  line-height:1.7;
}

.popup-form{
  position:relative;
  z-index:2;
}

.popup-input-group{
  position:relative;
  margin-bottom:18px;
}

.popup-input-group span{
  position:absolute;
  left:18px;
  top:50%;
  transform:translateY(-50%);
  font-size:18px;
}

.popup-input-group input{
  width:100%;
  padding:18px 18px 18px 52px;
  border-radius:14px;
  border:1px solid #ddd;
  outline:none;
  background:#fafafa;
  font-family:'Poppins',sans-serif;
  transition:0.3s;
}

.popup-input-group input:focus{
  border-color:#ebebeb;
  background:#fff;
  box-shadow:0 0 0 4px rgba(232,132,56,0.1);
}

.popup-submit-btn{
  width:100%;
  border:none;
  padding:18px;
  border-radius:14px;
  background:linear-gradient(135deg,#13276b,#284091);
  color:#fff;
  font-size:16px;
  font-weight:700;
  cursor:pointer;
  transition:0.3s;
  margin-top:5px;
}

.popup-submit-btn:hover{
  background:linear-gradient(135deg,#13276b,#333);
  transform:translateY(-2px);
}

.popup-note{
  text-align:center;
  margin-top:15px;
  font-size:13px;
  color:#888;
}

@media(max-width:768px){

  .project-content {
    padding: 16px 22px;
}
		
		.popup-wrapper{
    padding:35px 22px;
  }

  .popup-heading h3{
    font-size:24px;
  }

  .popup-logo img{
    width:130px;
  }

}	


/* =========================
FAQ SECTION
========================= */

.faq-section{
  background:#f8f8f8;
}

.faq-wrapper{
  max-width:100%;
  margin:auto;
}

.faq-item{
  background:#fff;
  border-radius:18px;
  margin-bottom:18px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  transition:0.3s;
}

.faq-item.active{
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.faq-question{
  width:100%;
  background:#fff;
  border:none;
  outline:none;
  padding:10px 28px;
  text-align:left;
  font-size:16px;
  font-weight:600;
  font-family:'Poppins',sans-serif;
  color:#13276b;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  transition:0.3s;
}

.faq-question:hover{
  color:#646464;
}

.faq-question span{
  font-size:28px;
  color:#333;
  transition:0.3s;
  line-height:1;
}

.faq-item.active .faq-question span{
  transform:rotate(45deg);
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.4s ease;
}

.faq-answer p{
  padding:0 28px 24px;
  color:#666;
  line-height:1.9;
  font-size:15px;
}

.faq-item.active .faq-answer{
  max-height:300px;
}

@media(max-width:768px){

  .proj-banner-btns {
    position: unset;
}
		.proj-banner-section { min-height: 480px; align-items: flex-end; }
  .proj-banner-overlay {
    background: linear-gradient(
      to top,
      rgba(15,10,4,0.95) 0%,
      rgba(15,10,4,0.7) 60%,
      rgba(15,10,4,0.3) 100%
    );
  }
  .proj-banner-content { max-width: 100%; }
  .proj-banner-title { font-size: clamp(20px, 5vw, 32px); margin-bottom: 20px; }
  .proj-banner-btns { flex-direction: column; gap: 10px; }
  .proj-btn-outline,
  .proj-btn-solid { width: 100%; justify-content: center; padding: 13px; }
		
		.proj-banner-btns {
    position: relative !important;
    left: 0% !important;
    bottom: 36px;
				padding-top: 20px;
}

.contact-form {
    padding: 45px 24px;
}
		
		
		.faq-question{
    font-size:16px;
    padding:20px;
  }

  .faq-answer p{
    padding:0 20px 20px;
    font-size:14px;
  }
		
		
		.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 10px clamp(12px, 3vw, 20px);
    display: flex !important;
    gap: 8px;
    z-index: 200;
    box-shadow: 0 -2px 12px rgb(0 0 0 / 7%);
}
.cta-wa {
    flex: 1;
    background: #1AB235;
    color: #000;
    border: none;
    border-radius: var(--radius-btn);
    padding: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    font-family: poppins;
    white-space: nowrap;
}
.cta-advice {
    flex: 1;
    background: #20347c;
    color: #fff;
    border: none;
    border-radius: var(--radius-btn);
    padding: 8px;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    font-family: poppins;
    white-space: nowrap;
}
		
}


/* ── PROJECT HIGHLIGHT BANNER ── */
.proj-banner-section {
  position: relative;
  min-height: 300px;
  background: url(../images/mid-banner.jpg) center center / cover no-repeat;
  display: flex;
  align-items: center;
  padding: clamp(30px, 0vw, 72px) clamp(16px, 4vw, 32px);
  overflow: hidden;
}
.proj-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(15, 10, 4, 0.88) 0%,
    rgba(15, 10, 4, 0.75) 45%,
    rgba(15, 10, 4, 0.25) 100%
  );
}
.proj-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.proj-banner-content {
  max-width: 520px;
  display: flex;
  flex-direction: column;
}


.proj-banner-eyebrow{
  animation: colorChange 3s infinite;
}

@keyframes colorChange{
  0%{
    color: #cfe700;
  }
  
  100%{
    color: #f2ff82;
  }
  
  
}



.proj-banner-eyebrow {
  font-size: 18px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 12px;
}
.proj-banner-title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

/* detail list */
.proj-banner-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.proj-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.proj-detail-icon {
  font-size: 16px;
  margin-top: 1px;
  flex-shrink: 0;
  width: 22px;
  text-align: center;
		color: #fff;
}
.proj-detail-item > div {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.proj-detail-label {
  font-size: 10px;
  color: #9a8060;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.proj-detail-value {
  font-size: 14px;
  color: #e8ddc8;
  font-weight: 500;
  line-height: 1.4;
}
.proj-price {
  color: #f0c84a !important;
  font-weight: 700 !important;
  font-size: 16px !important;
}

/* buttons */
.proj-banner-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: auto;
    position: absolute;
    left: 22%;
    bottom: 36px;
}
.proj-btn-outline {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  border-radius: var(--radius-btn);
  padding: 11px 26px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  letter-spacing: 0.04em;
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}
.proj-btn-outline:hover {
  background: #fff;
  color: var(--dark2);
}
.proj-btn-solid {
  display: inline-flex;
  align-items: center;
  background: #B01217;
  border: 2px solid #fff;
  color: #fff;
  border-radius: var(--radius-btn);
  padding: 11px 26px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  letter-spacing: 0.04em;
  transition: opacity var(--transition);
}
.proj-btn-solid:hover { opacity: 0.88; }

.popup-input-group span i,
.input-group .input-icon {
  color: #999;
}

				