* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, Arial, sans-serif;
}

body {
  background: #000;
  color: #fff;
}

/* NAVBAR */


/* ================= NAVBAR ================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 72px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  background: #f5c542;
  color: #000;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  font-size: 18px;
}

.logo strong {
  font-size: 16px;
}

.logo small {
  display: block;
  font-size: 12px;
  color: #aaa;
}

/* CENTER NAV */
.nav-center {
  display: flex;
  align-items: center;
}

.nav-center a {
  margin: 0 18px;
  color: #ccc;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.25s ease;
}

.nav-center a:hover {
  color: #fff;
}

/* BUTTON */
.btn-primary {
  background: #f5c542;
  color: #000;
  border: none;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(245,197,66,0.45);
}

/* ================= TOGGLE ================= */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  background: #f5c542;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .navbar {
    padding: 0 20px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-center {
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: rgba(10,10,10,0.96);
    backdrop-filter: blur(10px);
    flex-direction: column;
    gap: 22px;
    padding: 30px 0;
    display: none;
    z-index: 999;
  }

  .nav-center.active {
    display: flex;
  }

  .nav-center a {
    font-size: 18px;
  }

  .nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
  }
}





/* HERO */
.hero {
  min-height: 100vh;
  background: url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d") center/cover no-repeat;
  position: relative;
  padding-top: 72px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.5),
    rgba(0,0,0,0.3)
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  padding: 80px 80px;
}

/* LEFT */
.badge {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid #f5c542;
  border-radius: 999px;
  color: #f5c542;
  font-size: 14px;
  margin-bottom: 20px;
}

.hero-left h1 {
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.location {
  color: #f5c542;
  margin-bottom: 14px;
}

.desc {
  max-width: 520px;
  color: #ccc;
  margin-bottom: 30px;
}

.stats {
  display: flex;

  justify-content: space-between;
  /* gap: 16px; */
  width:90%;
  margin-bottom: 32px;
}

.stat-card {
  background: rgba(0,0,0,0.5);
  border-radius: 16px;
width: 30%;
  padding: 20px 26px;
  text-align: center;
  /* min-width: 120px; */
}

.stat-card strong {
  display: block;
  font-size: 22px;
  color: #f5c542;
}

.stat-card span {
  font-size: 14px;
  color: #aaa;
}

.cta {
  display: flex;
  gap: 50px;
  width: 70%;
}

/* FORM */
.hero-form {
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(12px);
  padding: 36px;
  border-radius: 24px;
}

.hero-form h3 {
  font-size: 26px;
  margin-bottom: 6px;
}

.hero-form p {
  color: #aaa;
  margin-bottom: 24px;
}

.hero-form input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #333;
  background: #111;
  color: #fff;
  margin-bottom: 14px;
}

.hero-form .full {
  width: 50%;
      margin: 10px auto;
    display: flex;
    align-items: center;
    justify-content: center;
        font-size: 18px;
    padding: 12px 30px;
    border-radius: 20px;
}




/* PRIMARY BUTTON HOVER */
.btn-primary {
  transition: all 0.25s ease;
}

.btn-primary:hover {
  /* background: #ffd966; */
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(245, 197, 66, 0.35);
}

/* OUTLINE BUTTON HOVER */
.btn-outline {
  transition: all 0.25s ease;
}

.btn-outline:hover {
  /* background: */
  color: #f5c542; ;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(245, 197, 66, 0.25);
}

/* NAVBAR CTA HOVER */
.nav-right .btn-primary:hover {
  box-shadow: 0 10px 26px rgba(245, 197, 66, 0.4);
}

/* FORM SUBMIT BUTTON HOVER */
.hero-form .btn-primary:hover {
  box-shadow: 0 14px 34px rgba(245, 197, 66, 0.45);
}
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 60px 40px;
  }

  .hero-left h1 {
    font-size: 52px;
  }

  .stats {
    width: 100%;
    gap: 16px;
  }

  .stat-card {
    flex: 1;
    width: auto;
  }

  /* FIX BUTTON */
  .btn-primary {
    width: auto;           /* ✅ NEVER 0% */
    padding: 12px 20px;
  }

  /* FIX CTA CONTAINER */
  .cta {
    width: 40%;         /* ✅ FULL WIDTH */
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 0 auto;
    border: none;
  }
}


/* ================== MOBILE ================== */
@media (max-width: 768px) {
  .hero {
    padding-top: 64px;
  }

  .hero-content {
    padding: 40px 20px;
  }

  .hero-left h1 {
    font-size: 40px;
    line-height: 1.15;
  }

  .desc {
    max-width: 100%;
    font-size: 15px;
  }

  .stats {
    flex-direction: column;
    gap: 14px;
  }

  .stat-card {
    width: 100%;
  }

  .cta {
    flex-direction: column;
    gap: 16px;
  }

  .cta button {
    width: 100%;
  }

  .hero-form {
    display: none;
    padding: 28px 22px;
  }
}



@media (max-width: 1180px) {
  .cta{
    width: 90%;

  }
}



/* ================== SMALL MOBILE ================== */
@media (max-width: 480px) {
  .hero-left h1 {
    font-size: 34px;
  }

  .badge {
    font-size: 12px;
    padding: 6px 12px;
  }

  .location {
    font-size: 14px;
  }

  .stat-card strong {
    font-size: 20px;
  }

  .hero-form h3 {
    font-size: 22px;
  }
}











.features {
  padding: 100px 80px;
  background: #0b0b0b;
  color: #fff;
}




.features-header {
  text-align: center;
  margin-bottom: 70px;
}

.features-header .pill {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid #f5c542;
  color: #f5c542;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.features-header h2 {
  font-size: 46px;
  margin-bottom: 12px;
}

.features-header p {
  color: #aaa;
  max-width: 620px;
  margin: 0 auto;
  font-size: 15px;
}

/* GRID */
.features-grid {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* CARD */
.feature-card {
  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.03),
    rgba(0,0,0,0.7)
  );
  border-radius: 22px;
  padding: 34px 30px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.35s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* GOLD HIGHLIGHT CARD */
.feature-card.highlight {
  border-color: rgba(245,197,66,0.45);
}

/* HOVER */
.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245,197,66,0.6);
  box-shadow: 0 22px 50px rgba(0,0,0,0.6);
}

/* ICON */
.feature-card .icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(245,197,66,0.15);
  color: #f5c542;
  display: grid;
  place-items: center;
  font-size: 24px;
  margin-bottom: 18px;
}

/* TEXT */
.feature-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.feature-card p {
  color: #bcbcbc;
  font-size: 15px;
  line-height: 1.6;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .features {
    padding: 80px 22px;
  }

  .features-header h2 {
    font-size: 34px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
}


















.investment {
  background: radial-gradient(circle at bottom right, #3a2d00, #0b0b0b);
  padding: 130px 120px; /* MORE OUTER SPACE */
  color: #fff;
}

.investment-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 120px; /* MORE GAP BETWEEN LEFT & RIGHT */
}

/* LEFT SIDE */
.pill {
  display: inline-block;
  padding: 10px 26px;
  border-radius: 40px;
  background: rgba(255, 200, 50, 0.18);
  color: #f5c842;
  font-size: 12px;
  letter-spacing: 1.5px;
  margin-bottom: 28px;
}

.investment-left h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 28px;
}

.investment-left p {
  color: #bdbdbd;
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 48px; /* MORE GAP */
}

/* POINTS */
.points {
  display: flex;
  flex-direction: column;
  gap: 32px; /* MORE GAP BETWEEN POINTS */
}

.point {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  transition: transform 0.3s ease;
}

.point:hover {
  transform: translateX(8px);
}

.point i {
  font-size: 24px;
  color: #f5c842;
  margin-top: 2px;
}

.point strong {
  font-size: 18px;
  display: block;
  margin-bottom: 6px;
}

.point span {
  font-size: 14px;
  color: #9b9b9b;
  line-height: 1.6;
}

/* RIGHT SIDE */
.investment-right {
  position: relative;
}

.image-box {
  border-radius: 30px; /* SOFTER CORNERS */
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.65);
  transition: transform 0.45s ease;
}

.image-box:hover {
  transform: scale(1.04);
}

.image-box img {
  width: 100%;
  display: block;
}

/* CTA CARD */
.cta-box {
  position: absolute;
  bottom: -35px;
  left: -35px;
  background: linear-gradient(135deg, #ffd34d, #f0b800);
  padding: 20px 35px; /* BIGGER CARD */
  border-radius: 22px;
  color: #111;
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
  transition: transform 0.3s ease;
}

.cta-box:hover {
  transform: translateY(-8px);
}

.cta-box small {
  font-size: 13px;
  letter-spacing: 0.5px;
  opacity: 0.85;
}

.cta-box h3 {
  font-size: 30px;
  margin-top: 6px;
}

/* MOBILE */
@media (max-width: 900px) {
  .investment {
    padding: 90px 24px;
  }

  .investment-container {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .cta-box {
    left: 20px;
    bottom: -25px;
  }
}
/* LEFT IMAGE (TOP VIEW SOCIETY) */
.left-image-box {
  width: 100%;
  max-width: 420px;
  margin-bottom: 40px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.55);
  transition: transform 0.4s ease;
}

.left-image-box img {
  width: 100%;
  display: block;
}

/* subtle premium hover */
.left-image-box:hover {
  transform: scale(1.03);
}























/* .amenities {
  background: radial-gradient(circle at top, #1a1a1a, #0b0b0b);
  padding: 120px 60px;
  color: #fff;
}

.amenities-container {
  max-width: 1300px;
  margin: auto;
  text-align: center;
}


.pill {
  display: inline-block;
  padding: 8px 22px;
  border-radius: 30px;
  background: rgba(255, 200, 50, 0.15);
  color: #f5c842;
  font-size: 12px;
  letter-spacing: 1.4px;
  margin-bottom: 22px;
}

.amenities h2 {
  font-size: 48px;
  margin-bottom: 18px;
}

.subtitle {
  color: #a5a5a5;
  font-size: 17px;
  margin-bottom: 70px;
}


.row {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}


.amenity-card {
  flex: 1;
  background: linear-gradient(145deg, #111, #0a0a0a);
  border-radius: 22px;
  padding: 42px 20px;
  border: 1px solid #1f1f1f;
  transition: all 0.35s ease;
}

.amenity-card i {
  font-size: 30px;
  color: #f5c842;
  background: rgba(245, 200, 66, 0.12);
  padding: 18px;
  border-radius: 14px;
  margin-bottom: 18px;
  display: inline-block;
}

.amenity-card h4 {
  font-size: 16px;
  font-weight: 600;
}


.amenity-card:hover {
  transform: translateY(-6px);
  border-color: #f5c84255;
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}


.spacer {
  flex: 1;
}

.clubhouse {
  flex: 2;
  background: linear-gradient(145deg, #151515, #0d0d0d);
  border: 1px solid rgba(245, 200, 66, 0.7);
  box-shadow: 0 30px 80px rgba(245, 200, 66, 0.15);
  transform: scale(1.1);
  margin: 0 20px;
}

.clubhouse h4 {
  font-size: 18px;
  font-weight: 700;
}


@media (max-width: 900px) {
  .row {
    flex-direction: column;
  }

  .spacer {
    display: none;
  }

  .clubhouse {
    flex: 1;
  }
}

@media (max-width: 600px) {
  .amenities {
    padding: 70px 16px;
  }

  .amenities h2 {
    font-size: 34px;
  }

  .subtitle {
    font-size: 14px;
  }
}

@media (max-width: 360px) {
  .amenities h2 {
    font-size: 28px;
  }

  .amenity-card {
    padding: 28px 16px;
  }

  .pill {
    font-size: 10px;
    padding: 6px 14px;
  }
} */











.amenities {
  background: radial-gradient(circle at top, #1a1a1a, #0b0b0b);
  padding: 120px 60px;
  color: #fff;
}

.amenities-container {
  max-width: 1300px;
  margin: auto;
  text-align: center;
}

.pill {
  display: inline-block;
  padding: 8px 22px;
  border-radius: 30px;
  background: rgba(255, 200, 50, 0.15);
  color: #f5c842;
  font-size: 12px;
  letter-spacing: 1.4px;
  margin-bottom: 22px;
}

.amenities h2 {
  font-size: 48px;
  margin-bottom: 18px;
}

.subtitle {
  color: #a5a5a5;
  font-size: 17px;
  margin-bottom: 70px;
}

/* ===== DESKTOP GRID ===== */
.row {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}

.amenity-card {
  flex: 1;
  background: linear-gradient(145deg, #111, #0a0a0a);
  border-radius: 22px;
  padding: 42px 20px;
  border: 1px solid #1f1f1f;
}

.amenity-card i {
  font-size: 30px;
  color: #f5c842;
  background: rgba(245, 200, 66, 0.12);
  padding: 18px;
  border-radius: 14px;
  margin-bottom: 18px;
  display: inline-block;
}

.amenity-card h4 {
  font-size: 16px;
  font-weight: 600;
}

.clubhouse {
  flex: 2;
  border-color: rgba(245, 200, 66, 0.7);
}

.spacer {
  flex: 1;
}

.slider-btn {
  display: none;
}

/* ===== MOBILE SLIDER ===== */
@media (max-width: 600px) {

   .slider-track {
    width: 100%;
  }

  .amenities {
    padding: 70px 16px;
  }

  .row {
    display: contents;
  }

  .spacer {
    display: none;
  }

  .amenities-slider {
    position: relative;
    overflow: hidden;
  }

  .slider-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .slider-track::-webkit-scrollbar {
    display: none;
  }

  .amenity-card {
    flex: 0 0 100%;
    scroll-snap-align: center;
  }

  .clubhouse {
    flex: 0 0 100%;
  }

  .slider-btn {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.65);
    color: #f5c842;
    font-size: 26px;
    cursor: pointer;
    z-index: 10;
  }

  .slider-btn.prev { left: 6px; }
  .slider-btn.next { right: 6px; }
}



















.infra-section {
  padding: 120px 80px;
  background: #0b0b0b;
}

.infra-box {
  max-width: 1400px;
  margin: auto;
  background: linear-gradient(145deg, #141414, #0e0e0e);
  border-radius: 28px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}

/* LEFT */
.infra-left {
  padding: 70px 70px;
  color: #fff;
}

.infra-left h2 {
  font-size: 40px;
  line-height: 1.25;
  margin-bottom: 22px;
}

.infra-left p {
  color: #bcbcbc;
  line-height: 1.7;
  margin-bottom: 38px;
  max-width: 520px;
}

/* LIST */
.infra-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.infra-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  color: #e5e5e5;
}

.infra-list i {
  color: #f5c842;
  font-size: 18px;
  background: rgba(245, 200, 66, 0.15);
  padding: 6px;
  border-radius: 50%;
}

/* RIGHT IMAGE */
.infra-right {
  position: relative;
}

.infra-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .infra-box {
    grid-template-columns: 1fr;
  }

  .infra-left {
    padding: 50px 40px;
  }

  .infra-section {
    padding: 90px 20px;
  }
}
















.pricing-section {
  padding: 40px 80px;
}

/* HEADER */
.pricing-header {
  text-align: center;
  margin-bottom: 70px;
}

.pill {
  display: inline-block;
  padding: 8px 22px;
  border-radius: 30px;
  background: rgba(245, 200, 66, 0.15);
  color: #f5c842;
  font-size: 12px;
  letter-spacing: 1.4px;
  margin-bottom: 18px;
}

.pricing-header h2 {
  font-size: 46px;
  margin-bottom: 12px;
}

.pricing-header p {
  color: #a8a8a8;
  font-size: 16px;
}

/* ================= GRID ================= */
.pricing-grid {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

/* ================= CARD ================= */
.price-card {
  position: relative;
  background: linear-gradient(145deg, #141414, #0e0e0e);
  border-radius: 26px;
  padding: 48px 40px;
  border: 1px solid #1f1f1f;
  transition: all 0.35s ease;
}



.price-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.price {
  font-size: 38px;
  color: #f5c842;
  font-weight: 700;
}

.small {
  font-size: 13px;
  color: #9a9a9a;
}

/* LIST */
.price-card ul {
  list-style: none;
  margin: 34px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price-card li {
  display: flex;
  gap: 12px;
  font-size: 15px;
  color: #e0e0e0;
}

.price-card i {
  color: #f5c842;
}

/* BUTTONS */
.btn-primary {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #ffd34d, #f0b800);
  color: #111;
  font-weight: 600;
}

.btn-outline {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  background: transparent;
  border: 1px solid #f5c842;
  color: #f5c842;
  cursor: pointer;
}

/* ================= MOST POPULAR ================= */
.price-card.popular {
  border: 2px solid #f5c842;
  transform: translateY(-12px);
  box-shadow: 0 0 0 1px rgba(245,200,66,0.35);
}

.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: #f5c842;
  color: #111;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(245,200,66,0.45);
}

.price-card:hover {
  border-color: #f5c842;
}

/* ICON + CONTENT stays same */
.price-card {
  border: 1px solid #1f1f1f;
  transition: border-color 0.3s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

/* MOST POPULAR – stronger glow */
.price-card.popular:hover {
  border-color: #f5c842;
  box-shadow: 0 35px 90px rgba(245,200,66,0.25);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1000px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-section {
    padding: 90px 20px;
  }

  .price-card.popular {
    transform: none;
  }
}












/* ================= LAUNCH OFFER SECTION ================= */
.launch-section {
  padding: 60px 80px 120px;
}

/* OFFER BOX */
.launch-box {
  max-width: 1300px;
  margin: auto;
  padding: 50px 40px;
  border-radius: 28px;
  text-align: center;

  background: radial-gradient(
    circle at center,
    rgba(245, 200, 66, 0.18),
    #141414 70%
  );

  border: 1px solid rgba(245, 200, 66, 0.35);
  box-shadow:
    inset 0 0 60px rgba(245, 200, 66, 0.15),
    0 40px 90px rgba(0,0,0,0.6);
}

/* TEXT */
.launch-box h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.launch-box p {
  font-size: 17px;
  color: #d0d0d0;
}

.launch-box span {
  color: #f5c842;
  font-weight: 700;
}

/* BUTTONS */
.launch-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 22px;
}

.launch-primary {
  padding: 14px 36px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(135deg, #ffd34d, #f0b800);
  color: #111;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.launch-outline {
  padding: 14px 36px;
  border-radius: 30px;
  background: transparent;
  border: 1px solid #f5c842;
  color: #f5c842;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

/* HOVER */
.launch-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(245,200,66,0.4);
}

.launch-outline:hover {
  background: rgba(245, 200, 66, 0.15);
  transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .launch-section {
    padding: 60px 20px 90px;
  }

  .launch-actions {
    flex-direction: column;
  }
}

























body {
  background: #0b0b0b;
  color: #fff;
}

/* ================= MASTER PLAN SECTION ================= */
.master-section {
  padding: 120px 80px;
}

.master-header {
  text-align: center;
  margin-bottom: 80px;
}

.master-pill {
  display: inline-block;
  padding: 8px 22px;
  border-radius: 30px;
  background: rgba(245, 200, 66, 0.15);
  color: #f5c842;
  font-size: 12px;
  letter-spacing: 1.4px;
  margin-bottom: 20px;
}

.master-header h2 {
  font-size: 46px;
  margin-bottom: 14px;
}

.master-header p {
  color: #a8a8a8;
  font-size: 17px;
}

/* ================= GRID ================= */
.master-grid {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: center;
}

/* ================= LEFT FEATURES ================= */
.master-features {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.feature-card {
  background: linear-gradient(145deg, #141414, #0e0e0e);
  border-radius: 22px;
  padding: 26px 30px;
  border: 1px solid #1f1f1f;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: all 0.35s ease;
}

.feature-card:hover {
  transform: translateX(8px);
  border-color: #f5c842;
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}

.feature-icon {
  min-width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(245, 200, 66, 0.15);
  color: #f5c842;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.feature-text h4 {
  font-size: 18px;
  margin-bottom: 6px;
}

.feature-text p {
  color: #b0b0b0;
  font-size: 14.5px;
  line-height: 1.6;
}

/* ================= RIGHT IMAGE ================= */
.master-image-box {
  position: relative;
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.65);
}

.master-image-box img {
  width: 100%;
  display: block;
}

/* DOWNLOAD BUTTON */
.download-btn {
  position: absolute;
  bottom: 22px;
  right: 22px;
  background: linear-gradient(135deg, #ffd34d, #f0b800);
  color: #111;
  border: none;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 55px rgba(245,200,66,0.45);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1100px) {
  .master-grid {
    grid-template-columns: 1fr;
  }

  .master-section {
    padding: 90px 20px;
  }

  .feature-card:hover {
    transform: translateX(0);
  }
}
















.location-section {
  padding: 120px 80px;
}

/* HEADER */
.location-header {
  text-align: center;
  margin-bottom: 80px;
}

.location-pill {
  display: inline-block;
  padding: 8px 22px;
  border-radius: 30px;
  background: rgba(245, 200, 66, 0.15);
  color: #f5c842;
  font-size: 12px;
  letter-spacing: 1.4px;
  margin-bottom: 20px;
}

.location-header h2 {
  font-size: 48px;
  margin-bottom: 14px;
}

.location-header p {
  color: #a8a8a8;
  font-size: 17px;
}

/* ================= GRID ================= */
.location-grid {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

/* ================= LEFT ================= */
.location-left h3 {
  font-size: 26px;
  margin-bottom: 30px;
}

.connectivity-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.connectivity-card {
  background: linear-gradient(145deg, #141414, #0e0e0e);
  border-radius: 22px;
  padding: 22px 26px;
  border: 1px solid #1f1f1f;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.35s ease;
}

.connectivity-card:hover {
  border-color: #f5c842;
  transform: translateX(6px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}

.connect-left {
  display: flex;
  gap: 16px;
  align-items: center;
}

.connect-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(245, 200, 66, 0.15);
  color: #f5c842;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.connect-text h4 {
  font-size: 17px;
  margin-bottom: 4px;
}

.connect-text span {
  color: #9a9a9a;
  font-size: 13px;
}

/* RIGHT TIME */
.connect-time {
  text-align: right;
}

.connect-time strong {
  color: #f5c842;
  font-size: 16px;
}

.connect-time span {
  font-size: 12px;
  color: #9a9a9a;
}

/* ================= RIGHT ================= */
.location-right {
  display: flex;
  padding-top: 100px;
  flex-direction: column;
  gap: 30px;
}

/* MAP */
.map-box {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid #1f1f1f;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

/* .map-box iframe {
  width: 100%;
  height: 320px;
  border: none;
} */

img {
  height: 100%;
  width: 100%;
}

/* ADDRESS */
.address-card {
  background: linear-gradient(145deg, #141414, #0e0e0e);
  border-radius: 22px;
  padding: 28px;
  border: 1px solid #1f1f1f;
}

.address-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.address-card p {
  color: #b0b0b0;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 22px;
}

.direction-btn {
  background: linear-gradient(135deg, #ffd34d, #f0b800);
  border: none;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  color: #111;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.direction-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(245,200,66,0.45);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1100px) {
  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-section {
    padding: 90px 20px;
  }

  .connectivity-card:hover {
    transform: none;
  }
}














.landmark-section {
  padding: 0px  120px;
}

.landmark-box {
  max-width: 1400px;
  margin: auto;
  padding: 50px 40px;
  border-radius: 30px;
  background: linear-gradient(145deg, #141414, #0e0e0e);
  border: 1px solid #1f1f1f;
  box-shadow: 0 35px 90px rgba(0,0,0,0.65);
}

/* TITLE */
.landmark-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
}

/* GRID */
.landmark-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* ITEM */
.landmark-item {
  text-align: center;
  padding: 20px 10px;
  transition: transform 0.3s ease;
}

.landmark-item:hover {
  transform: translateY(-6px);
}

/* ICON */
.landmark-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  border-radius: 18px;
  background: rgba(245, 200, 66, 0.15);
  color: #f5c842;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: inset 0 0 0 1px rgba(245,200,66,0.25);
}

/* TEXT */
.landmark-item h4 {
  font-size: 17px;
  margin-bottom: 8px;
}

.landmark-item p {
  font-size: 14px;
  color: #b0b0b0;
  line-height: 1.6;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .landmark-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .landmark-section {
    padding: 60px 20px 90px;
  }
}












.about-section {
  padding: 120px 80px;
}

.about-grid {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}

/* ================= LEFT IMAGE ================= */
.about-image-box {
  position: relative;
  height: 620px; /* IMPORTANT */
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.65);
}

.about-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* DARK GRADIENT OVER IMAGE */
.about-image-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.1),
    rgba(0,0,0,0.65)
  );
  z-index: 1;
}

/* STATS OVER IMAGE */
.about-stats {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;

  background: rgba(15, 15, 15, 0.88);
  backdrop-filter: blur(8px);

  border-radius: 22px;
  padding: 22px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;

  border: 1px solid rgba(245,200,66,0.25);
  z-index: 2;
}

.about-stats h3 {
  color: #f5c842;
  font-size: 26px;
  font-weight: 700;
}

.about-stats span {
  font-size: 13px;
  color: #b0b0b0;
}

/* ================= RIGHT CONTENT ================= */
.about-pill {
  display: inline-block;
  padding: 8px 22px;
  border-radius: 30px;
  background: rgba(245, 200, 66, 0.15);
  color: #f5c842;
  font-size: 12px;
  letter-spacing: 1.4px;
  margin-bottom: 18px;
}

.about-content h2 {
  font-size: 44px;
  margin-bottom: 18px;
}

.about-content p {
  color: #b0b0b0;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
}

/* FEATURES */
.about-features {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(245, 200, 66, 0.15);
  color: #f5c842;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.about-feature h4 {
  font-size: 17px;
  margin-bottom: 4px;
}

.about-feature p {
  font-size: 14px;
  color: #a8a8a8;
}

/* QUOTE CARD */
.about-quote {
  margin-top: 36px;
  background: linear-gradient(145deg, #141414, #0e0e0e);
  border-radius: 22px;
  padding: 26px;
  border: 1px solid #1f1f1f;
}

.about-quote p {
  font-style: italic;
  color: #cfcfcf;
  margin-bottom: 16px;
  line-height: 1.6;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f5c842;
  font-weight: 600;
}

.quote-author span {
  font-size: 13px;
  color: #9a9a9a;
}

/* HOVER POLISH */
.about-image-box:hover .about-stats {
  box-shadow: 0 15px 40px rgba(245,200,66,0.35);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1100px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-section {
    padding: 90px 20px;
  }

  .about-content h2 {
    font-size: 36px;
  }

  .about-image-box {
    height: 520px;
  }
}









.contact-section{
  padding:120px 80px;
}

.contact-header{
  text-align:center;
  max-width:900px;
  margin:0 auto 70px;
}

.contact-pill{
  display:inline-block;
  padding:8px 22px;
  border-radius:30px;
  background:rgba(245,200,66,0.15);
  color:#f5c842;
  font-size:12px;
  letter-spacing:1.4px;
  margin-bottom:18px;
}

.contact-header h2{
  font-size:46px;
  margin-bottom:14px;
}

.contact-header p{
  color:#b0b0b0;
  font-size:16px;
}

/* ================= GRID ================= */
.contact-grid{
  max-width:1400px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:50px;
}

/* ================= INFO CARDS ================= */
.contact-info{
  display:flex;
  flex-direction:column;
  gap:22px;
}

.info-card{
  background:linear-gradient(145deg,#141414,#0e0e0e);
  border-radius:22px;
  padding:26px;
  border:1px solid #1f1f1f;
  display:flex;
  gap:16px;
  align-items:flex-start;
  transition:.3s;
}

.info-card:hover{
  border-color:rgba(245,200,66,.4);
  box-shadow:0 20px 50px rgba(0,0,0,.6);
}

.info-icon{
  width:48px;
  height:48px;
  border-radius:14px;
  background:rgba(245,200,66,.15);
  color:#f5c842;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
}

.info-card h4{
  font-size:17px;
  margin-bottom:6px;
}

.info-card p{
  font-size:14px;
  color:#a8a8a8;
  line-height:1.6;
}

.info-highlight{
  color:#f5c842;
  font-weight:600;
  margin-top:6px;
}

/* ================= FORM ================= */
.contact-form{
  background:linear-gradient(145deg,#141414,#0e0e0e);
  border-radius:26px;
  padding:40px;
  border:1px solid #1f1f1f;
}

.contact-form h3{
  font-size:26px;
  margin-bottom:24px;
}

.form-group{
  margin-bottom:18px;
}

.form-group label{
  font-size:14px;
  color:#b0b0b0;
  margin-bottom:8px;
  display:block;
}

.form-group input,
.form-group textarea{
  width:100%;
  padding:14px 16px;
  border-radius:14px;
  background:#0b0b0b;
  border:1px solid #222;
  color:#fff;
  font-size:14px;
  outline:none;
  transition:.3s;
}

.form-group textarea{
  resize:none;
  height:130px;
}

.form-group input:focus,
.form-group textarea:focus{
  border-color:#f5c842;
  box-shadow:0 0 0 1px rgba(245,200,66,.4);
}

.char-limit{
  font-size:12px;
  color:#888;
  margin-top:6px;
}

/* BUTTON */
.send-btn{
  margin-top:12px;
  width:100%;
  padding:16px;
  border-radius:16px;
  border:none;
  background:#f5c842;
  color:#000;
  font-size:16px;
  font-weight:700;
  cursor:pointer;
  transition:.3s;
}

.send-btn:hover{
  background:#ffd95a;
  box-shadow:0 15px 40px rgba(245,200,66,.45);
}

/* ================= RESPONSIVE ================= */
@media(max-width:1100px){
  .contact-grid{
    grid-template-columns:1fr;
  }

  .contact-section{
    padding:90px 20px;
  }

  .contact-header h2{
    font-size:36px;
  }
}









.footer{
  padding:80px 80px 40px;
  background:#0b0b0b;
  border-top:1px solid #1a1a1a;
}

.footer-grid{
  max-width:1400px;
  margin:auto;
  display:grid;
  grid-template-columns:1.2fr 1fr 1.2fr 1.3fr;
  gap:50px;
}

/* LOGO */
.footer-logo{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:16px;
}

.footer-logo-icon{
  width:42px;
  height:42px;
  border-radius:10px;
  background:#f5c842;
  color:#000;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
}

.footer-logo h3{
  font-size:20px;
}

.footer-logo span{
  font-size:12px;
  color:#a8a8a8;
}

.footer-desc{
  color:#b0b0b0;
  font-size:14px;
  line-height:1.7;
  margin-bottom:22px;
}

/* SOCIAL */
.footer-social{
  display:flex;
  gap:12px;
}

.footer-social a{
  width:38px;
  height:38px;
  border-radius:10px;
  background:#151515;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:16px;
  transition:.3s;
}

.footer-social a:hover{
  background:#f5c842;
  color:#000;
}

/* HEADINGS */
.footer h4{
  font-size:18px;
  margin-bottom:20px;
}

/* LINKS */
.footer-links{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.footer-links a{
  color:#b0b0b0;
  text-decoration:none;
  font-size:14px;
  transition:.3s;
}

.footer-links a:hover{
  color:#f5c842;
}

/* CONTACT INFO */
.footer-contact{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.contact-item{
  display:flex;
  gap:12px;
  font-size:14px;
  color:#b0b0b0;
}

.contact-item i{
  color:#f5c842;
  font-size:16px;
}

/* NEWSLETTER */
.newsletter p{
  font-size:14px;
  color:#b0b0b0;
  margin-bottom:14px;
}

.newsletter input{
  width:100%;
  padding:14px;
  border-radius:12px;
  border:1px solid #222;
  background:#0b0b0b;
  color:#fff;
  outline:none;
  margin-bottom:12px;
}

.newsletter input:focus{
  border-color:#f5c842;
}

.newsletter button{
  width:100%;
  padding:14px;
  border-radius:12px;
  border:none;
  background:#f5c842;
  color:#000;
  font-weight:700;
  cursor:pointer;
  transition:.3s;
}

.newsletter button:hover{
  background:#ffd95a;
}

/* ================= BOTTOM BAR ================= */
.footer-bottom{
  max-width:1400px;
  margin:50px auto 0;
  padding-top:24px;
  border-top:1px solid #1a1a1a;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:20px;
  font-size:13px;
  color:#8f8f8f;
}

.footer-bottom a{
  color:#b0b0b0;
  text-decoration:none;
  margin-left:18px;
}

.footer-bottom a:hover{
  color:#f5c842;
}

.footer-note{
  max-width:1400px;
  margin:16px auto 0;
  font-size:12px;
  color:#777;
  text-align:center;
  line-height:1.6;
}

/* ================= RESPONSIVE ================= */
@media(max-width:1100px){
  .footer{
    padding:60px 20px 30px;
  }

  .footer-grid{
    grid-template-columns:1fr;
  }

  .footer-bottom{
    flex-direction:column;
    align-items:center;
    text-align:center;
  }
}









.m7w29c {

  opacity: 0;

}
















section.mobile-bottom-section{
    display:none;
}

/* ================= MOBILE ONLY ================= */
@media (max-width:768px){

    body{
        padding-bottom:90px;
    }

    /* ===== STICKY BOTTOM BAR ===== */
    section.mobile-bottom-section{
        display:flex;
        position:fixed;
        bottom:0;
        left:0;
        width:100%;
        height:78px;

        background:
            radial-gradient(
                circle at 50% -40%,
                rgba(245,196,0,0.28),
                rgba(0,0,0,0) 65%
            ),
            linear-gradient(
                180deg,
                #0c0c0c 0%,
                #050505 60%,
                #000000 100%
            );

        box-shadow:
            0 -12px 40px rgba(0,0,0,0.9),
            inset 0 1px 0 rgba(255,255,255,0.05);

        border-top:1px solid rgba(245,196,0,0.18);
        z-index:9999;
    }

    /* ===== CTA ITEMS ===== */
    .cta-item{
        flex:1;
        text-decoration:none;
        color:#ffffff;
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        gap:6px;
        font-size:12px;
        font-weight:600;
        position:relative;
    }

    /* Divider */
    .cta-item:not(:last-child)::after{
        content:"";
        position:absolute;
        right:0;
        top:20%;
        height:60%;
        width:1px;
        background:linear-gradient(
            to bottom,
            transparent,
            rgba(245,196,0,0.35),
            transparent
        );
    }

    /* ===== ICON STYLE (REFINED SIZE) ===== */
    .cta-item i{
        font-size:16px;      /* smaller icon */
        padding:7px;        /* smaller gold circle */
        border-radius:50%;

        background:linear-gradient(
            135deg,
            #ffd86a,
            #f5c400
        );

        color:#5c4300;

        box-shadow:
            0 0 0 1px rgba(245,196,0,0.55),
            0 4px 12px rgba(245,196,0,0.3);
    }

    .cta-item:active{
        background:rgba(245,196,0,0.08);
    }
}













.page-content{
  padding:100px;
  font-size:20px;
}

/* ===== OVERLAY ===== */
.popup-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.45);
  backdrop-filter: blur(12px);
  display:none; /* 🔴 hidden initially */
  align-items:center;
  justify-content:center;
  z-index:9999;
}

/* ===== POPUP CARD ===== */
.popup-card{
  width:380px;
  padding:32px;
  border-radius:16px;
  background:#111;
  color:#fff;
  box-shadow:0 30px 70px rgba(0,0,0,0.6);
  position:relative;
  animation: scaleIn 0.35s ease;
}

@keyframes scaleIn{
  from{ transform:scale(0.9); opacity:0 }
  to{ transform:scale(1); opacity:1 }
}

/* ===== CLOSE BUTTON ===== */
.close-btn{
  position:absolute;
  top:14px;
  right:14px;
  width:34px;
  height:34px;
  border:none;
  border-radius:50%;
  background:#222;
  color:#fff;
  font-size:18px;
  cursor:pointer;
}

/* ===== FORM ===== */
.popup-card h2{
  margin-bottom:8px;
}

.popup-card p{
  font-size:14px;
  color:#bbb;
  margin-bottom:20px;
}

input{
  width:100%;
  padding:12px;
  margin:10px 0;
  border-radius:8px;
  border:none;
  outline:none;
}

.submit-btn{
  width:100%;
  padding:12px;
  margin-top:10px;
  border:none;
  border-radius:8px;
  background:linear-gradient(135deg,#d4af37,#f5d76e);
  color:#111;
  font-weight:600;
  cursor:pointer;
}















#thankYouPopup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(6px);
}

.thankyou-box {
  background: #0b0b0b;
  border: 2px solid #d4af37;
  padding: 35px 40px;
  border-radius: 14px;
  text-align: center;
  width: 90%;
  max-width: 420px;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.35);
}

.thankyou-box h2 {
  color: #d4af37;
  font-size: 26px;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.thankyou-box p {
  color: #e6e6e6;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.thankyou-box button {
  background: linear-gradient(135deg, #d4af37, #b8962e);
  color: #000;
  border: none;
  padding: 10px 26px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.thankyou-box button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(212, 175, 55, 0.45);
}











@media (max-width: 600px) {

  .amenities {
    padding: 70px 16px;
  }

  /* flatten rows */
  .row {
    display: contents;
  }

  .spacer {
    display: none;
  }

  .amenities-slider {
    position: relative;
    overflow: hidden;
  }

  .slider-track {
    display: flex;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .slider-track::-webkit-scrollbar {
    display: none;
  }

  /* 🔑 KEY FIX */
  .amenity-card {
    flex: 0 0 100%;
    max-width: 100%;
    scroll-snap-align: center;
    margin: 0 auto; /* CENTER */
  }

  .clubhouse {
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* buttons */
  .slider-btn {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.65);
    color: #f5c842;
    font-size: 26px;
    cursor: pointer;
    z-index: 10;
  }

  .slider-btn.prev { left: 6px; }
  .slider-btn.next { right: 6px; }
}


/* hide buttons on desktop */
@media (min-width: 601px) {
  .slider-btn {
    display: none;
  }
}

