/* ================= GLOBAL RESET ================= */

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section {
  padding: 80px 0;
}

.section.light {
  background: #f5f7fa;
}
.section ul {
  max-width: 900px;
  margin: 0 auto;
  padding-left: 20px;
  line-height: 1.8;
}

.section ul li {
  margin-bottom: 12px;
}

h1 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 20px;
}

h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 40px;
  text-align: center;
}

p {
  color: #555;
  font-size: 15px;
}

/* ================= HEADER ================= */

.header {
  background: #ffffff;
  border-bottom: 1px solid #eaeaea;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo-wrap {
  display: flex;
  align-items: center;
}

.logo {
  height: 40px;
}

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

nav a {
  margin-left: 22px;
  text-decoration: none;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s ease;
}

nav a:hover {
  color: #0073e6;
}


/* ================= MOBILE MENU ================= */

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

nav {
  position: fixed;
  top: 70px;
  right: -260px;     /* move completely outside */
  width: 250px;
  height: calc(100vh - 70px); /* proper height */
  background: #ffffff;
  display: flex;
  flex-direction: column;
  padding: 30px;
  gap: 20px;
  box-shadow: -5px 0 15px rgba(0,0,0,0.1);
  transition: 0.3s ease;
  z-index: 9999;
}

  nav.active {
    right: 0;
  }

  nav a {
    margin: 0;
    font-size: 16px;
  }
}

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

.hero {
  height: 520px;
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url('../img/hero-banner.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  text-align: center;
  color: #ffffff;
}

.hero-content {
  width: 100%;
}

.hero p {
  font-size: 18px;
  max-width: 700px;
  margin: auto;
  color: #f0f0f0;
}

/* ================= FORM SECTION ================= */

.form-section {
  padding: 70px 0;
  background: #ffffff;
}

.lead-form {
  max-width: 520px;
  margin: 30px auto 0 auto;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.lead-form input,
.lead-form select {
  padding: 13px 14px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  width: 100%;
  transition: 0.2s ease;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: #0073e6;
  outline: none;
}

.lead-form button {
  padding: 13px;
  background: #0073e6;
  color: #ffffff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s ease;
}

.lead-form button:hover {
  background: #005bb5;
}

/* ================= PROJECT GRID ================= */

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.project-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-6px);
}

.project-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.project-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-body h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
}

.summary {
  font-size: 14px;
  margin-bottom: 15px;
  color: #555;
}

.project-body p {
  font-size: 13px;
  margin-bottom: 6px;
}

.btn {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 18px;
  background: #0073e6;
  color: #ffffff;
  text-decoration: none;
  border-radius: 25px;
  font-size: 14px;
  text-align: center;
  transition: 0.3s ease;
}

.btn:hover {
  background: #005bb5;
}

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

#faq p {
  margin-bottom: 20px;
}

/* ================= FOOTER ================= */

.footer {
  background: #1a1a1a;
  color: #555;
  padding: 28px 0;
  text-align: center;
  font-size: 10px;
}

/* ================= INTL TEL INPUT FIX ================= */

.iti {
  width: 100%;
  display: block;
  margin-bottom: 15px;
}

.iti input {
  width: 100% !important;
  padding-left: 90px !important;
  height: 46px;
  border-radius: 8px;
  box-sizing: border-box;
  border: 1px solid #ddd;
}

.iti__flag-container {
  border-radius: 8px 0 0 8px;
}

.iti__selected-flag {
  background: transparent;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

  h1 {
    font-size: 34px;
  }

  .hero {
    height: 460px;
  }
}

@media (max-width: 768px) {

  h1 {
    font-size: 26px;
  }

  h2 {
    font-size: 22px;
  }

 

  .hero {
    height: 400px;
    padding: 0 15px;
  }

  .project-card img {
    height: 200px;
  }

  .section {
    padding: 60px 0;
  }

  .form-section {
    padding: 60px 0;
  }
}
/* ================= PROJECT PAGE ================= */

.project-hero {
  height: 520px;
  display: flex;
  align-items: center;
  color: #fff;
  text-align: center;
  background-size: cover;
  background-position: center;
  position: relative;
}

.project-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.project-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.quick-info {
  background: #ffffff;
  padding: 30px 0;
  border-bottom: 1px solid #eee;
}

.quick-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 20px;
  text-align: center;
}

.quick-box {
  padding: 15px;
}

.quick-box h4 {
  font-size: 14px;
  color: #777;
  margin-bottom: 5px;
}

.quick-box p {
  font-weight: 600;
  color: #1a1a1a;
}

.highlight-grid,
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 25px;
  margin-top: 30px;
}

.highlight-card,
.amenity-card {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  font-size: 14px;
}

.spec-table {
  width: 100%;
  max-width: 700px;        /* limit width */
  margin: 30px auto 0 auto; /* center horizontally */
  border-collapse: collapse;
}

.spec-table td {
  padding: 14px 20px;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  text-align: center;
}

.cta-strip {
  background: #0073e6;
  color: #fff;
  text-align: center;
  padding: 50px 0;
}

.cta-strip h3 {
  margin-bottom: 20px;
}

@media(max-width:768px){
  .project-hero{height:420px;}
}
/* ================= AMENITIES WITH IMAGE ================= */

.amenity-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  text-align: center;
}

.amenity-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.amenity-card p {
  padding: 15px;
  font-weight: 500;
  color: #333;
}

/* ================= FAQ ACCORDION ================= */

.faq-section {
  max-width: 900px;
  margin: auto;
}

.faq-item {
  border-bottom: 1px solid #eee;
  padding: 20px 0;
  cursor: pointer;
}

.faq-question {
  font-weight: 600;
  font-size: 16px;
  position: relative;
  padding-left: 25px;
}

.faq-question::before {
  content: "+";
  position: absolute;
  left: 0;
  font-size: 18px;
  font-weight: bold;
  transition: 0.3s;
}

.faq-item.active .faq-question::before {
  content: "−";
}

.faq-answer {
  display: none;
  margin-top: 10px;
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  display: block;
}
/* ================= FLOATING ACTION BUTTONS ================= */

.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.float-btn {
  background: #0073e6;
  color: #fff;
  padding: 8px 12px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 12px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  transition: 0.3s;
}

.float-btn:hover {
  background: #005bb5;
}

.float-call { background:#111; }
.float-whatsapp { background:#25D366; }

.float-whatsapp:hover { background:#1ebd5a; }

/* ================= MOBILE MENU OVERLAY ================= */

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 9998;
}

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

/* ================= MOBILE STICKY BAR ================= */

.mobile-actions {
  display: none;
}

@media(max-width:768px){

  .floating-actions {
    display: none;
  }

  .mobile-actions {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #eee;
    z-index: 9999;
  }

  .mobile-actions a {
    text-align: center;
    padding: 14px 0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-right: 1px solid #eee;
  }

  .mobile-actions a:last-child {
    border-right: none;
  }

  .mobile-enquiry { background:#0073e6; color:#fff; }
  .mobile-call { background:#111; color:#fff; }
  .mobile-whatsapp { background:#25D366; color:#fff; }

  body {
    padding-bottom: 60px;
  }
}

/* ================= POPUP FORM ================= */

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  z-index: 10000;
}

.popup-overlay.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-box {
  background: #fff;
  width: 90%;
  max-width: 420px;
  padding: 30px;
  border-radius: 12px;
  position: relative;
}

.popup-box .lead-form input,
.popup-box .lead-form select {
  margin-bottom: 15px;
}

.popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  font-size: 20px;
}