 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', 'Poppins', sans-serif;
      background: #ffffff;
      color: #1e2f3e;
      line-height: 1.5;
      scroll-behavior: smooth;
    }

    /* Hero – pure image with dark overlay for optional text, keeps original brief */
    .hero-banner {
      background: linear-gradient(115deg, rgba(0, 20, 20, 0.3) 0%, rgba(0, 40, 50, 0.1) 70%), url('../image/Palmfront.jpg') center/cover no-repeat;
      height: min(90vh, 800px);
      width: 100%;
      background-attachment: fixed; /* tasteful parallax */
    }

    /* Sticky navigation – blurred glass, minimal */
    nav {
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(0, 110, 130, 0.15);
      padding: 0.9rem 2rem;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .nav-links {
      max-width: 1300px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 0.8rem 2rem;
    }

    .nav-links a {
      text-decoration: none;
      font-weight: 500;
      font-size: 1rem;
      color: #1a4352;
      padding: 0.3rem 0;
      border-bottom: 2px solid transparent;
      transition: 0.2s;
      letter-spacing: 0.3px;
    }

    .nav-links a:hover {
      border-bottom-color: #1f7f9c;
      color: #0f4d5e;
    }

    /* global max-width + padding */
    section, .container, .location-section, .gallery-container, .info-block, .whybuy-section {
      max-width: 1300px;
      margin-left: auto;
      margin-right: auto;
      padding: 5rem 2rem;
    }

    h1, h2, h3 {
      font-weight: 650;
      letter-spacing: -0.02em;
      color: #103542;
    }

    h1 {
      font-size: 3rem;
      line-height: 1.2;
    }

    h2 {
      font-size: 2.2rem;
      color: #1f5f74;
      margin-bottom: 1rem;
    }

    /* overview — two column elegant */
    .overview-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 3.5rem;
      align-items: center;
    }

    .overview-text {
      flex: 1 1 400px;
    }

    .overview-text p {
      font-size: 1.1rem;
      color: #2d4a5a;
      margin: 1.5rem 0 2rem;
    }

    .btn-group {
      display: flex;
      flex-wrap: wrap;
      gap: 1.2rem;
      margin: 2.5rem 0 1rem;
    }

    .btn {
      border: none;
      background: white;
      padding: 0.9rem 2.2rem;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1rem;
      display: inline-flex;
      align-items: center;
      gap: 0.8rem;
      box-shadow: 0 8px 18px -8px rgba(0,80,90,0.15);
      border: 1px solid #d2e5ed;
      cursor: pointer;
      transition: all 0.25s;
      color: #1b4d5e;
    }

    .btn-primary {
      background: #115f73;
      border-color: #115f73;
      color: white;
      box-shadow: 0 12px 22px -10px #115f73;
    }

    .btn-primary:hover {
      background: #1b7a94;
      transform: translateY(-3px);
    }

    .btn-outline:hover {
      background: #e3f2f7;
      border-color: #2897b5;
    }

    

    #videoContainer {
    margin: 20px auto; 
    max-width: 350px; 
    
    /* Card/Story Look */
    background-color: #ffffff;
    border-radius: 12px; /* Rounded corners for the container */
    padding: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2); /* Soft shadow for a floating card effect */
    /* Ensure nothing overflows the rounded corners */
    overflow: hidden; 
    }

    #videoFrame {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
    }

    .overview-media {
      flex: 1 1 400px;
      border-radius: 40px;
      overflow: hidden;
      box-shadow: 0 30px 45px -25px #0b495b;
      transition: transform 0.5s ease;
    }

    .overview-media img {
      width: 100%;
      height: auto;
      display: block;
      transition: 0.6s;
    }

    .overview-media:hover img {
      transform: scale(1.02);
    }

    /* why buy cards — softer & bold */
    .grid-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .card {
      background: #f9fdfe;
      padding: 2.2rem 1.5rem;
      border-radius: 40px;
      border: 1px solid #cde3ec;
      box-shadow: 0 20px 30px -15px #1c4d5d20;
      font-weight: 500;
      text-align: center;
      color: #1f5468;
      transition: 0.2s;
    }

    .card:hover {
      background: white;
      border-color: #92c9dd;
      transform: translateY(-6px);
    }

    /* configuration table */
    .price-table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0 15px;
      margin: 2.5rem 0;
    }

    .price-table th {
      text-align: left;
      padding: 1rem 1.5rem;
      background: #e1f2f8;
      color: #154857;
      font-weight: 600;
      border-radius: 40px 40px 20px 20px;
    }

    .price-table td {
      background: white;
      padding: 1.2rem 1.5rem;
      border-radius: 30px;
      box-shadow: 0 5px 15px rgba(0,70,90,0.05);
    }

    .price-table a {
      color: #1f7e9c;
      font-weight: 600;
      text-decoration: none;
      border-bottom: 2px solid #b7deec;
    }

    /* amenities grid */
    .amenities-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 2rem;
      margin: 3rem 0;
    }

    .amenity-item {
      text-align: center;
    }

    .amenity-item img {
      width: 100%;
      aspect-ratio: 1/1;
      object-fit: cover;
      border-radius: 30px;
      box-shadow: 0 15px 25px -10px #1b5f7240;
      transition: 0.3s;
    }

    .amenity-item p {
      margin-top: 0.8rem;
      font-weight: 500;
      color: #205f73;
    }

    .amenity-item:hover img {
      transform: scale(1.02);
    }

    /* tabs reusable */
    .tab-bar {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
      margin: 2.5rem 0 2rem;
    }

    .tab-btn {
      background: transparent;
      border: 1.5px solid #c1dae6;
      padding: 0.7rem 2rem;
      border-radius: 60px;
      font-weight: 600;
      color: #1c6177;
      cursor: pointer;
      transition: 0.15s;
    }

    .tab-btn.active {
      background: #1e6279;
      border-color: #1e6279;
      color: white;
    }

    /* specifications list */
    .spec-list {
      background: #f1f9ff;
      padding: 2.8rem;
      border-radius: 60px;
      columns: 2 280px;
      column-gap: 3rem;
      list-style: none;
    }

    .spec-list li {
      margin-bottom: 1.1rem;
      padding-left: 2.2rem;
      position: relative;
      font-weight: 450;
    }

    .spec-list li::before {
      content: "✓";
      background: #1b839f;
      color: white;
      width: 1.5rem;
      height: 1.5rem;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      position: absolute;
      left: 0;
      top: 0.1rem;
    }

    .disclaimer-box {
      background: #fef3e4;
      padding: 1.8rem 2.5rem;
      border-radius: 50px;
      margin-top: 2.5rem;
      color: #64553b;
    }

    /* floor plans */
    .floorplan-card {
      max-width: 800px;
      margin: 2rem auto;
      background: white;
      border-radius: 48px;
      padding: 2rem;
      box-shadow: 0 20px 30px -10px #1b576920;
      text-align: center;
    }

    .floorplan-card img {
      width: 100%;
      border-radius: 35px;
    }

    .arrow-nav {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      margin: 2rem 0;
    }

    .arrow-btn {
      background: white;
      border: 1px solid #c6dde9;
      width: 60px;
      height: 60px;
      border-radius: 60px;
      font-size: 2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: 0.2s;
    }

    .arrow-btn:hover {
      background: #1b6279;
      color: white;
      border-color: #1b6279;
    }

    /* gallery slides */
    .slideshow-wrapper {
      position: relative;
      max-width: 1000px;
      margin: 2rem auto;
      border-radius: 50px;
      overflow: hidden;
      box-shadow: 0 35px 45px -25px #053c4b;
    }

    .slide {
      display: none;
    }

    .slide img {
      width: 100%;
      display: block;
    }

    .slide.active {
      display: block;
    }

    .slide-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255,255,255,0.7);
      backdrop-filter: blur(4px);
      border: none;
      width: 56px;
      height: 56px;
      border-radius: 56px;
      font-size: 2.2rem;
      color: #0a3d4e;
      cursor: pointer;
    }
    .slide-nav.prev { left: 20px; }
    .slide-nav.next { right: 20px; }

    .hidden { display: none; }

    /* location map */
    .map-image {
      width: 100%;
      border-radius: 60px;
      box-shadow: 0 30px 40px -25px #0b4c5e;
      margin-top: 2rem;
    }

    .map-wrapper {
  width: 100%;
  max-width: 1100px;
  margin: 2rem auto;
  height: 450px;          /* controls map height */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

    /* info cards */
    .info-strip {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2.5rem;
      background: #ecf6fb;
      border-radius: 90px;
      padding: 4rem 3rem;
      margin: 5rem auto;
    }
    .info-item { text-align: center; }
    .info-item h3 { font-size: 1.8rem; color: #0f4f63; }

    /* footer */
    footer {
      background: #0f303b;
      color: white;
      text-align: center;
      padding: 3rem 2rem;
      border-radius: 60px 60px 0 0;
    }

    @media (max-width: 700px) {
      h1 { font-size: 2.4rem; }
      .overview-grid { gap: 2rem; }
    }


    /* ===== Brochure Popup ===== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.modal-box {
  background: #fff;
  width: 420px;
  padding: 25px;
  border-radius: 10px;
  position: relative;
}

.modal-box h2 {
  margin-bottom: 10px;
}

.modal-box input,
.modal-box select,
.modal-box button {
  width: 100%;
  margin-top: 12px;
  padding: 10px;
}

.modal-box button {
  background: #b88a3a;
  color: #fff;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

.modal-box .close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 22px;
  cursor: pointer;
}