@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;800&display=swap");

:root {
  --teal: #08665f;
  --teal-deep: #075c56;
  --teal-dark: #064d48;
  --teal-soft: #77eadc;
  --red: #e80022;
  --ink: #153735;
  --muted: #6c7372;
  --white: #fff;
  --line: rgba(8, 102, 95, .28);
  --shadow: 0 24px 60px rgba(5, 66, 62, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Montserrat";
  overflow-x: hidden;
}
.title-green {
    color: #085A53;
    /*font-weight: 700;*/
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }
button, input, select { font: inherit; }

.section-pad { padding: 60px 15px; }
.display-title {
  margin: 0 0 clamp(36px, 4vw, 30px);
  font-family: "Montserrat";
  font-size: 45px;
  line-height: 1.15;
  font-weight: 300;
  color: var(--red);
}
.display-title span { color: var(--teal); }
.red-title { color: var(--red); }
.eyebrow {
  display: inline-block;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .8rem;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
}
.brand-btn {
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  padding: 12px 34px;
  background: var(--red);
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.brand-btn:hover,
.brand-btn:focus-visible {
  color: #fff;
  background: #c9001d;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(232, 0, 34, .25);
}

/* HERO */
.hero-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #101b1a;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(1, 22, 20, .62), rgba(1, 22, 20, .08) 58%, rgba(1, 22, 20, .18));
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 50px;
}
.hero-copy { max-width: 650px; }
.hero-copy h1 {
  margin: 22px 0 32px;
  color: #fff;
  font-family: "Montserrat";
  font-size: clamp(3rem, 6vw, 6.2rem);
  line-height: .98;
  font-weight: 300;
  letter-spacing: -.045em;
}
.hero-copy h1 span { color: var(--teal-soft); }
.hero-panel-wrap {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 3;
  transform: translateX(-50%);
  font-family: "Montserrat";
}
.hero-info-panel {

  position: relative;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr 1.45fr 1.35fr;
  align-items: start;

  width: 100%;
  min-height: 200px;
  padding: 38px 42px 0px;
  
  
  

  background: linear-gradient(180deg, rgb(57 99 109 / 0%) 0%, rgb(93 133 141 / 0%) 22%, rgba(159, 181, 184, 0.68) 43%, rgb(224 229 229 / 0%) 100%, rgba(255, 255, 255, 0.98) 88%, #ffffff 100%);
 backdrop-filter: blur(20px) saturate(120%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
  border: none;

 
  border-radius: 22px 22px 0 0;

  box-shadow:
    0 -8px 30px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);

  overflow: hidden;
}

/* Bottom white fade */
.hero-info-panel::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.55) 35%,
    rgba(255, 255, 255, 0.92) 70%,
    #ffffff 100%
  );

  pointer-events: none;
  z-index: 0;
}


/* Keep content above fade */
.hero-info-panel > * {
  position: relative;
  z-index: 2;
}

/* ================================
   BRAND AREA
================================ */


.hero-brand img
{
    width: 250px;
    height: 150px;
}
.hero-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 100px;
  padding-right: 30px;
}

/* Brand icon */
.brand-mark {
  position: relative;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
}

/* Red roof */
.brand-mark::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  width: 38px;
  height: 38px;

  border-top: 8px solid #ec1c2d;
  border-left: 8px solid #ec1c2d;

  transform: rotate(45deg);
  border-radius: 2px;
}

/* Teal pillars */
.brand-mark::after {
  content: "";
  position: absolute;
  left: 5px;
  bottom: 4px;
  width: 48px;
  height: 23px;

  border-left: 7px solid #15969a;
  border-right: 7px solid #15969a;
}

.brand-mark span {
  position: absolute;
  left: 23px;
  top: 25px;
  width: 12px;
  height: 12px;
  background: #15969a;
  border-radius: 50%;
  z-index: 2;
}

.hero-brand small {
  display: block;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 33px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -1px;
  color: #15969a;
}

.hero-brand strong {
  display: block;
  margin-top: 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 4px;
  color: #e21f2f;
}

/* ================================
   STATISTICS
================================ */

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;

  min-height: 98px;
  padding: 18px 24px 0;
  text-align: center;
 border-left: 1px solid rgba(255, 255, 255, 0.52);
}

.hero-stat strong {
  display: block;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 26px;
  line-height: 1.25;
  font-weight: 300;
  white-space: nowrap;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.hero-stat span {
  display: block;
  margin-top: 7px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0.2px;
  color: #167f83;
}

/* ================================
   TABLET
================================ */

@media (max-width: 1024px) {
  .hero-section {
    min-height: 480px;
    padding-top: 260px;
  }

  .hero-panel-wrap {
    width: calc(100% - 32px);
  }

  .hero-info-panel {
    grid-template-columns: 1.25fr 0.6fr 1.25fr 1.15fr;
    padding: 32px 25px 100px;
  }

  .hero-brand {
    padding-right: 18px;
  }

  .hero-brand small {
    font-size: 26px;
  }

  .hero-brand strong {
    font-size: 33px;
    letter-spacing: 3px;
  }

  .brand-mark {
    flex-basis: 50px;
    width: 50px;
    height: 50px;
    transform: scale(0.88);
  }

  .hero-stat {
    padding-left: 15px;
    padding-right: 15px;
  }

  .hero-stat strong {
    font-size: 21px;
  }
}

/* ================================
   MOBILE
================================ */

@media (max-width: 767px) {
  .hero-section {
    min-height: auto;
    padding: 220px 0 0;
  }

  .hero-panel-wrap {
    width: calc(100% - 24px);
  }

  .hero-info-panel {
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 25px 20px 75px;
    border-radius: 18px 18px 0 0;
  }

  .hero-info-panel::after {
    height: 90px;
  }

  .hero-brand {
    justify-content: center;
    min-height: auto;
    padding: 0 0 24px;
  }

  .hero-brand small {
    font-size: 27px;
  }

  .hero-brand strong {
    font-size: 32px;
    letter-spacing: 3px;
  }

  .hero-stat {
    min-height: auto;
    padding: 20px 10px;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
  }

  .hero-stat strong {
    font-size: 22px;
    white-space: normal;
  }

  .hero-stat span {
    margin-top: 6px;
    font-size: 13px;
  }
}

/* ================================
   SMALL MOBILE
================================ */

@media (max-width: 480px) {
  .hero-section {
    padding-top: 180px;
  }

  .hero-panel-wrap {
    width: calc(100% - 16px);
  }

  .hero-info-panel {
    padding: 22px 15px 70px;
    border-radius: 15px 15px 0 0;
  }

  .hero-brand {
    gap: 8px;
  }

  .brand-mark {
    flex-basis: 45px;
    width: 45px;
    height: 45px;
    transform: scale(0.78);
  }

  .hero-brand small {
    font-size: 23px;
  }

  .hero-brand strong {
    font-size: 27px;
    letter-spacing: 2px;
  }

  .hero-stat strong {
    font-size: 20px;
  }
}

.hero-brand,
.hero-stat {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px 24px;
}

.hero-brand { gap: 15px; }
.hero-brand small { display: block; color: #19978e; font-size: clamp(1.35rem, 2vw, 2rem); font-weight: 700; }
.hero-brand strong { display: block; color: var(--red); font-family: Georgia, serif; font-size: clamp(2rem, 3.2vw, 3.4rem); font-weight: 400; line-height: .9; letter-spacing: .07em; }
.brand-mark { position: relative; width: 48px; height: 42px; }
.brand-mark::before,
.brand-mark::after,
.brand-mark span::before,
.brand-mark span::after {
  content: "";
  position: absolute;
  height: 7px;
  border-radius: 4px;
  background: var(--red);
  transform-origin: center;
}
.brand-mark::before { width: 34px; transform: rotate(-42deg); left: 2px; top: 15px; }
.brand-mark::after { width: 34px; transform: rotate(42deg); right: 2px; top: 15px; }
.brand-mark span::before { width: 23px; transform: rotate(-42deg); left: 10px; top: 23px; }
.brand-mark span::after { width: 23px; transform: rotate(42deg); right: 10px; top: 23px; }
.brand-mark.small { transform: scale(.62); margin: -6px auto -8px; }
.hero-stat { flex-direction: column; gap: 8px; color: #fff; }
.hero-stat strong { font-size: 26px; font-weight: 400; white-space: nowrap; }
.hero-stat span { color: #034943; font-size: .95rem; letter-spacing: .04em; font-weight: 400; }





/* ENQUIRY */
.enquiry-section { background: #fff; }
.enquiry-section .section-heading { max-width: 1230px; margin: 0 auto; }
.enquiry-section .display-title { font-size: 45px; }
.lead-copy {
  max-width: 1050px;
  color: #000;
  font-size: 18px;
  line-height: 1.75;
  font-weight: 300;
}
.call-heading {
  margin: 36px 0 45px;
  font-family: "Montserrat";
  color: var(--red);
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  font-weight: 300;
}
.call-heading span { color: var(--teal); font-size: .7em; }
.enquiry-form { max-width: 990px; margin: 0 auto; }
.line-field { position: relative; border-bottom: 1px solid #5a6261; padding-top: 8px; }
.line-field label {
  display: block;
  margin: 0px;
  color: var(--teal);
  font-size: .88rem;
  font-weight: 500;
  text-transform: uppercase;
}
.line-field input,
.line-field select {
  width: 100%;
  height: 20px;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
}
.line-field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--red) 50%), linear-gradient(135deg, var(--red) 50%, transparent 50%); background-position: calc(100% - 12px) 14px, calc(100% - 7px) 14px; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 28px; }
.phone-field { display: grid; grid-template-columns: 130px 1fr; gap: 26px; }
.enquiry-submit { width: min(100%, 390px); min-height: 34px; padding-block: 6px; }
.form-message { min-height: 24px; margin: 12px 0 0; color: var(--teal); font-size: .85rem; }

/* =====================================
   GLIMPSE SECTION
===================================== */

.paradise-glimpse-section {
    position: relative;
    width: 100%;
    padding-top: 60px;
    overflow: hidden;
    background: #ffffff;
}

.paradise-glimpse-heading {
    position: relative;
    z-index: 5;
    padding: 0 20px;
}

.paradise-glimpse-heading h2 {
    margin: 0 0 42px;
    color: #ec0029;
    font-family: "Montserrat";
    font-size: 45px;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -1.5px;
}

.paradise-glimpse-heading h2 span {
    color: #00675f;
}

/* =====================================
   FULL-WIDTH CAROUSEL
===================================== */

.paradise-slider-wrapper {
    position: relative;
    z-index: 5;
    width: 100%;
    margin-bottom: -52px;
}

.paradise-glimpse-slider {
    width: 100%;
    overflow: visible;
}

.paradise-glimpse-slider .swiper-wrapper {
    align-items: center;
}

.paradise-glimpse-slider .swiper-slide {
    width: min(1000px, 59vw);
    height: auto;
    cursor: pointer;
    transition:
        transform 0.5s ease,
        opacity 0.5s ease,
        filter 0.5s ease;
}

/* Side slides are part of the same carousel */

.paradise-glimpse-slider .swiper-slide:not(.swiper-slide-active) {
    opacity: 0.88;
    transform: scale(0.99);
    filter: brightness(0.92);
}

.paradise-glimpse-slider .swiper-slide-active {
    position: relative;
    z-index: 4;
    opacity: 1;
    transform: scale(1);
    filter: brightness(1);
}

/* Image card */

.paradise-slide-card {
    position: relative;
    width: 100%;
    aspect-ratio: 760 / 295;
    overflow: hidden;
    border-radius: 14px;
    background: #d9e3e1;
}

.paradise-slide-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s linear;
}

.paradise-glimpse-slider
.swiper-slide-active
.paradise-slide-card img {
    transform: scale(1.035);
}

/* Text box on active slide */

.paradise-slide-content {
    position: absolute;
    top: 75%;
    right: 8%;
    width: 270px;
    min-height: 82px;
    padding: 17px 25px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            rgba(31, 32, 26, 0.96),
            rgba(47, 45, 36, 0.92)
        );
    box-shadow: 0 15px 34px rgba(0, 0, 0, 0.24);
    text-align: center;
    opacity: 0;
    transform: translateY(-50%) translateX(15px);
    transition:
        opacity 0.45s ease 0.15s,
        transform 0.45s ease 0.15s;
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
}

.paradise-glimpse-slider
.swiper-slide-active
.paradise-slide-content {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.paradise-slide-content h3 {
    margin: 0 0 3px;
    color: #ec0029;
    font-family: "Montserrat";
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
}

.paradise-slide-content p {
    margin: 0;
    color: #ffffff;
    font-family: "Montserrat";
    font-size: 14px;
    font-weight: 300;
    line-height: 1.35;
}

/* Carousel arrows */

.paradise-slider-arrow {
    position: absolute;
    z-index: 10;
    top: 50%;
    display: flex;
    width: 38px;
    height: 38px;
    padding: 0;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 50%;
    color: #ffffff;
    background: rgba(0, 78, 71, 0.52);
    font-size: 17px;
    opacity: 0;
    cursor: pointer;
    transform: translateY(-50%);
    transition:
        opacity 0.3s ease,
        background 0.3s ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.paradise-glimpse-slider:hover .paradise-slider-arrow {
    opacity: 1;
}

.paradise-slider-arrow:hover {
    background: #00675f;
}

.paradise-slider-prev {
    left: calc(50% - min(380px, 29.5vw) + 18px);
}

.paradise-slider-next {
    right: calc(50% - min(380px, 29.5vw) + 18px);
}

/* =====================================
   GREEN BACKGROUND
===================================== */

#master-plan
{
	padding-top: 100px !important;
}

.paradise-amenities-background {
    position: relative;
    width: 100%;
    min-height: 272px;
    padding-top: 100px;
    overflow: visible;
    background: #07685f;
}

/* Curved decorative lines */

.paradise-wave {
    position: absolute;
    left: -8%;
    width: 116%;
    height: 120px;
    border: 1px solid rgba(106, 225, 214, 0.42);
    border-right-color: transparent;
    border-left-color: transparent;
    border-radius: 50%;
    pointer-events: none;
}

.paradise-wave-one {
    top: 42px;
    transform: rotate(2deg);
}

.paradise-wave-two {
    top: 88px;
    transform: rotate(-2deg);
}

.paradise-wave-three {
    top: 138px;
    transform: rotate(3deg);
}

/* =====================================
   AMENITIES GRID
===================================== */


.paradise-amenity-item img
{
    width: 60px;
}

.paradise-amenities-grid {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: min(960px, 100%);
    margin: 0 auto -18px;
    overflow: hidden;
    /*border: 1px solid rgba(255, 255, 255, 0.28);*/
    border-radius: 15px;
    background:
        linear-gradient(
179deg, rgba(3, 91, 84, 0.94) 0%, rgba(25, 117, 110, 0.92) 78%, rgba(199, 225, 221, 0.92) 100%);

    box-shadow: 0 22px 45px rgba(0, 54, 50, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.paradise-amenity-item {
    display: flex;
    min-height: 130px;
    padding: 13px 8px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
    border-right: 2px solid #ffffff99;
    border-bottom: 2px solid rgba(255, 255, 255, 0.38);
    color: #ffffff;
    text-align: center;
}

.paradise-amenity-item:nth-child(4n) {
    border-right: 0;
}

.paradise-amenity-item:nth-child(n + 5) {
    border-bottom: 0;
}

.paradise-amenity-item i {
    color: #8cfff1;
    font-size: 31px;
    line-height: 1;
}

.paradise-amenity-item span {
    color: #ffffff;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.3;
}

/* =====================================
   BOTTOM CONTENT
===================================== */

.paradise-bottom-content {
    position: relative;
    z-index: 3;
    padding: 29px 20px 12px;
    background: #ffffff;
}

.paradise-bottom-content h3 {
    margin: 30px 0 19px;
    color: #00675f;
    font-family: "Montserrat";
    font-size: clamp(30px, 3vw, 43px);
    font-weight: 300;
    line-height: 1.25;
    letter-spacing: -1px;
}

.paradise-bottom-content h3 span {
    color: #ec0029;
}

.paradise-brochure-button {
    display: inline-flex;
    width: 390px;
    min-height: 18px;
    padding: 10px 24px;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    color: #ffffff;
	border: 1px solid #ec0029;
    background: #ec0029;
    font-family: "Montserrat";
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.paradise-brochure-button:hover {
    color: #ffffff;
    background: #c90024;
    transform: translateY(-2px);
}

/* =====================================
   LAPTOP
===================================== */

@media (max-width: 1199.98px) {

    .paradise-glimpse-slider .swiper-slide {
        width: 68vw;
    }

    .paradise-slider-prev {
        left: calc(16vw + 18px);
    }

    .paradise-slider-next {
        right: calc(16vw + 18px);
    }
}

/* =====================================
   TABLET
===================================== */

@media (max-width: 991.98px) {

    .paradise-glimpse-heading h2 {
        margin-bottom: 32px;
    }

    .paradise-glimpse-slider .swiper-slide {
        width: 76vw;
    }

    .paradise-slider-wrapper {
        margin-bottom: -42px;
    }

    .paradise-slide-card {
        aspect-ratio: 2.15 / 1;
    }

    .paradise-slider-prev {
        left: calc(12vw + 15px);
    }

    .paradise-slider-next {
        right: calc(12vw + 15px);
    }

    .paradise-amenities-background {
        padding: 78px 30px 0;
    }

    .paradise-slide-content {
        right: 6%;
    }
	
	.journey-grid
	{
		padding-left: 15px;
	}
}

/* =====================================
   MOBILE
===================================== */

@media (max-width: 767.98px) {
	
	#master-plan
	{
		padding-top: 30px !important;
	}
	
	.journey-title {
        font-size: 27px;
    }
	
	.journey-grid
	{
		padding-left: 15px;
	}
	.journey-card
	{
		min-height: auto;
	}
	

    .paradise-glimpse-section {
        padding-top: 0px;
    }
	
	


    .paradise-glimpse-heading h2 {
        margin-bottom: 28px;
        font-size: 30px;
        letter-spacing: -0.6px;
        font-family: "Montserrat";
    }

    .paradise-glimpse-slider .swiper-slide {
        width: 87vw;
    }

    .paradise-slider-wrapper {
        margin-bottom: -30px;
    }

    .paradise-slide-card {
        aspect-ratio: 1.55 / 1;
        border-radius: 11px;
    }

    .paradise-slide-content {
        top: auto;
        right: 14px;
        bottom: 14px;
        left: 14px;
        width: auto;
        min-height: auto;
        padding: 12px 15px;
        transform: translateY(12px);
    }

    .paradise-glimpse-slider
    .swiper-slide-active
    .paradise-slide-content {
        transform: translateY(0);
    }

    .paradise-slide-content h3 {
        font-size: 17px;
    }

    .paradise-slide-content p {
        font-size: 10px;
    }

    .paradise-slider-arrow {
        width: 34px;
        height: 34px;
        opacity: 1;
    }

    .paradise-slider-prev {
        left: calc(6.5vw + 10px);
    }

    .paradise-slider-next {
        right: calc(6.5vw + 10px);
    }

    .paradise-amenities-background {
        min-height: auto;
        padding: 60px 15px 0;
    }

    .paradise-amenities-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-bottom: -15px;
    }

    .paradise-amenity-item {
        border-right: 1px solid rgba(255, 255, 255, 0.38) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.38) !important;
    }

    .paradise-amenity-item:nth-child(2n) {
        border-right: 0 !important;
    }

    .paradise-amenity-item:nth-child(n + 7) {
        border-bottom: 0 !important;
    }

    .paradise-bottom-content {
        padding-top: 37px;
        padding-bottom: 40px;
    }

    .paradise-bottom-content h3 {
        font-size: 27px;
    }
}

/* =====================================
   SMALL MOBILE
===================================== */

@media (max-width: 480px) {
	
	.journey-title {
        font-size: 27px;
    }
	
	.journey-grid
	{
		padding-left: 15px;
	}
	.journey-card
	{
		min-height: auto;
	}

    .paradise-glimpse-heading h2 {
        font-size: 27px;
    }

    .paradise-glimpse-slider .swiper-slide {
        width: 89vw;
    }

    .paradise-slide-card {
        aspect-ratio: 1.25 / 1;
    }

    .paradise-amenity-item {
        min-height: 88px;
        padding: 10px 5px;
    }

    .paradise-amenity-item i {
        font-size: 27px;
    }

    .paradise-amenity-item span {
        font-size: 12px;
    }

    .paradise-bottom-content h3 {
        font-size: 24px;
    }

    .paradise-brochure-button {
        width: min(100%, 240px);
        min-height: 34px;
        font-size: 10px;
    }
}

.mrg-top
{
	margin-top:15px;
}

/* MASTER PLAN */
.master-plan-section { background: #fff; }
.master-image-wrap { max-width: 1000px; margin: 0 auto 15px; overflow: hidden; border-radius: 18px; box-shadow: 0 20px 50px rgba(15, 72, 67, .12); }
.master-image-wrap img { width: 100%; aspect-ratio: 1.92 / 1; object-fit: cover; }
.master-list { max-width: 900px; margin: 0 auto; color: #343938; }
.master-list ul { padding: 0; margin: 0; list-style: none; }
.master-list li { position: relative; padding-left: 20px; margin-bottom: 10px; font-size: 15px; line-height: 1.35; color: #000;}
.master-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--red); font-weight: 700; }

/* LOCATION */
.location-section { background: #fff; }
.location-tabs { display: grid; grid-template-columns: repeat(4, 1fr); max-width: 960px; margin: 15px auto 0px; }
.location-tab { padding: 13px 10px; border: 0; border-bottom: 1px solid #87908f; background: transparent; color: var(--teal); text-transform: uppercase; font-size: 15px; transition: color .25s ease, border-color .25s ease; }
.location-tab.active { color: var(--red); border-color: var(--red); }
.location-content { max-width: 950px; margin: 0 auto; }
.radar-wrap { position: relative; width: min(100%, 520px); aspect-ratio: 1; margin: 0 auto; }
.range-ring { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); border: 1.5px dashed rgba(6, 96, 89, .5); border-radius: 50%; background: rgba(119, 234, 220, .10); transition: opacity .45s ease, background .45s ease, box-shadow .45s ease, transform .45s ease; }
.ring-1 { width: 38%; height: 38%; }
.ring-2 { width: 56%; height: 56%; }
.ring-3 { width: 74%; height: 74%; }
.ring-4 { width: 92%; height: 92%; }
.range-ring.active-ring { opacity: 1; background: rgba(99, 238, 221, .50); box-shadow: inset 0 0 44px rgba(78, 216, 201, .28), 0 0 24px rgba(37, 193, 177, .16); transform: translate(-50%, -50%) scale(1.02); }
.range-ring:not(.active-ring) { opacity: .52; }
.radar-core { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 3; width: 28%; aspect-ratio: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: 50%; background: rgba(101, 237, 220, .75); text-align: center; box-shadow: inset 0 0 24px rgba(255,255,255,.35); }
.radar-core strong { color: var(--teal); font-size: clamp(.75rem, 1.4vw, 1.05rem); }
.radar-core em { color: var(--red); font-family: Georgia, serif; font-style: normal; font-size: clamp(.85rem, 1.6vw, 1.25rem); letter-spacing: .06em; }
.radar-marker { position: absolute; z-index: 5; display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--red); color: #fff; font-weight: 600; box-shadow: 0 7px 15px rgba(232,0,34,.23); transition: left .45s ease, top .45s ease, opacity .25s ease, transform .45s ease; }
.marker-1 { left: 61%; top: 31%; }
.marker-2 { left: 65%; top: 62%; }
.marker-3 { left: 30%; top: 57%; }
.location-list-panel { transition: opacity .3s ease, transform .3s ease; }
.location-list-panel.is-changing { opacity: 0; transform: translateY(8px); }
.distance-label { display: inline-block; margin-bottom: 14px; color: var(--red); text-transform: uppercase; font-size: .78rem; letter-spacing: .03em; }
.location-list { margin: 0; padding-left: 1.35rem; color: #222;  font-size: 15px; line-height: 1.55; }
.radar-wrap.radar-changing .range-ring,
.radar-wrap.radar-changing .radar-marker { opacity: 0; }

/* MAP */
.map-section { padding: 30px 0 0; background: #fff; }
.map-wrap { position: relative; min-height: 570px; overflow: hidden;  }
.map-wrap iframe { width: 100%; height: 570px; border: 0; filter: saturate(.85) contrast(.95); }
.map-address-card { position: absolute; top: 55px; left: clamp(20px, 6vw, 95px); display: flex; gap: 14px; width: min(360px, calc(100% - 40px)); padding: 22px; border-radius: 16px; background: rgba(255,255,255,.96); box-shadow: 0 18px 50px rgba(31,51,49,.18); }
.map-address-card h3 { margin: 0 0 8px; font-size: 1.25rem; }
.map-address-card p { margin: 0 0 12px; color: #616867; font-size: .9rem; line-height: 1.5; }
.map-address-card a { color: var(--teal); font-weight: 600; font-size: .86rem; }
.map-pin { flex: 0 0 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--red); color: #fff; font-size: 1.25rem; }

/* JOURNEY */
.journey-section { background: #fff; padding-top: 100px; }
.journey-title { margin: 14px 0 46px; color: var(--teal); font-family: "Montserrat"; font-size: 45px; font-weight: 300; line-height: 1.1; }
.journey-title span { color: var(--red); }
.journey-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(16px, 2vw, 32px); padding-left: 100px; }
.journey-card { min-height: 195px; padding: 35px 20px 24px; border: 1px solid var(--teal); border-radius: 17px; background: #fff; color: var(--teal); cursor: pointer; transition: transform .28s ease, background .28s ease, color .28s ease, box-shadow .28s ease; }
.journey-card strong { display: block; margin-bottom: 23px; color: var(--red); font-size: clamp(2rem, 3vw, 2.7rem); line-height: 1; }
.journey-card p { margin: 0; font-family: "Montserrat"; font-size: clamp(.95rem, 1.25vw, 1.15rem); font-weight: 300; }
.journey-card:hover,
.journey-card:focus-visible,
.journey-card.active { transform: translateY(-8px); background: var(--teal); color: #fff; box-shadow: 0 20px 45px rgba(6, 102, 95, .2); outline: 0; }
.journey-card:hover strong,
.journey-card:focus-visible strong,
.journey-card.active strong { color: #7effee; }
.journey-btn { min-width: 390px; }

/* PROJECTS */
.projects-section { position: relative; overflow: hidden; background: #fff; }
.projects-section::before { content: ""; position: absolute; inset: 90px 0 0; opacity: .65; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1600' height='600' viewBox='0 0 1600 600'%3E%3Cg fill='none' stroke-width='1'%3E%3Cpath stroke='%2308665f' d='M-120 240 C140 30 340 430 620 190 S1080 20 1720 240'/%3E%3Cpath stroke='%23e80022' d='M-100 310 C180 110 380 500 670 270 S1130 80 1700 310'/%3E%3Cpath stroke='%2308665f' d='M-140 370 C150 180 390 560 720 330 S1210 150 1710 380'/%3E%3Cpath stroke='%23e80022' d='M-130 440 C160 250 420 620 780 390 S1260 220 1720 450'/%3E%3C/g%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; background-size: cover; pointer-events: none; }
.project-container { position: relative; z-index: 2; max-width: 1440px; }
.project-carousel { position: relative; display: flex; align-items: center; gap: 14px; }
.project-viewport { overflow: hidden; width: 100%; padding: 20px 4px 30px; }
.project-track { display: flex; gap: 36px; transition: transform .6s cubic-bezier(.22,.61,.36,1); will-change: transform; }
.project-card { position: relative; flex: 0 0 calc((100% - 72px) / 3); min-width: 0; overflow: hidden; border-radius: 18px; background: #fff; /*box-shadow: 0 18px 45px rgba(21, 55, 53, .13);*/ transition: transform .32s ease, box-shadow .32s ease; }
.project-card:hover { transform: translateY(-14px); box-shadow: 0 30px 65px rgba(21,55,53,.2); }
.project-image { position: relative; height: 195px; overflow: hidden; }
.project-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.project-card:hover .project-image img { transform: scale(1.06); }
.status-pill { position: absolute; right: 16px; bottom: 14px; min-width: 95px; padding: 6px 12px; border-radius: 99px; background: #fff; color: #d29a17; text-align: center; font-size: .68rem; }
.project-body { position: relative; min-height: 295px; padding: 24px 28px 56px; }
.project-body h3 { margin: 0 0 22px; color: var(--red); font-family: "Montserrat"; font-size: 1.45rem; font-weight: 400; }
.project-meta { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 25px; color: var(--teal); font-size: 14px; }
.project-body p { min-height: 65px; margin: 0 0 24px; color: #626a69; font-size: 15px; line-height: 1.5; }
.project-actions { display: flex; justify-content: space-between; gap: 16px; }
.project-actions a { color: var(--teal); font-size: 14px; }
.project-actions .red-link { color: var(--red); }
.city-pill { margin-right: 24px; position: absolute; right: 0; bottom: 0; min-width: 145px; padding: 12px 24px; border-radius: 8px 8px 0px 0px; background: var(--teal); color: #fff; text-align: center; font-size: .82rem; }
.project-nav { flex: 0 0 46px; width: 46px; height: 46px; border: 1px solid rgba(6,102,95,.3); border-radius: 50%; background: #fff; color: var(--teal); box-shadow: 0 10px 24px rgba(21,55,53,.12); transition: background .2s ease, color .2s ease; }
.project-nav:hover { background: var(--teal); color: #fff; }
.project-dots { display: flex; justify-content: center; gap: 8px; margin-top: 8px; }
.project-dot { width: 9px; height: 9px; border: 0; border-radius: 50%; background: rgba(6,102,95,.25); }
.project-dot.active { width: 24px; border-radius: 20px; background: var(--red); }

/* CONTACT + FOOTER */
.contact-footer { position: relative; padding-top: 85px; background: linear-gradient(#fff 85px, var(--teal) 85px); }
.contact-card { position: relative; z-index: 2; width: min(calc(100% - 40px), 1040px); padding: clamp(35px, 5vw, 58px) clamp(28px, 6vw, 90px); border-radius: 24px; background: linear-gradient(180deg, rgba(255,255,255,.75), rgba(5,99,91,.94) 35%, rgba(5,85,79,.98)); color: #fff; box-shadow: 0 -22px 55px rgba(0,0,0,.14); }
.contact-copy > p { margin: 0 0 4px; font-family: "Montserrat"; font-size: clamp(1.25rem, 2.3vw, 2rem); font-weight: 300; }
.contact-copy h2 { margin: 0 0 8px; color: #76f5e5; font-family: "Montserrat"; font-size: clamp(2rem, 4vw, 3.6rem); font-weight: 300; line-height: 1.1; }
.contact-copy > span { display: block; max-width: 540px; margin-bottom: 20px; font-size: .86rem; line-height: 1.5; }
.whatsapp-btn { width: min(100%, 440px); padding: 8px 20px; border-radius: 999px; background: #78f3e5; color: #07534e; font-weight: 700; text-transform: uppercase; }
.whatsapp-btn:hover { background: #fff; color: #07534e; }
.footer-form h3 { margin: 0 0 10px; color: #86f4e8; font-size: 1rem; font-weight: 400; text-transform: uppercase; }
.footer-form input,
.footer-form select { width: 100%; height: 34px; margin-bottom: 12px; padding: 0 20px; border: 0; border-radius: 99px; outline: 0; background: rgba(52, 177, 166, .7); color: #fff; font-size: .8rem; }
.footer-form input::placeholder { color: rgba(255,255,255,.55); }
.footer-form select { color: rgba(255,255,255,.7); }
.footer-form .brand-btn { width: 100%; min-height: 34px; padding-block: 6px; }
.footer-form .form-message { color: #8ffbef; }












/* REVEAL */
.reveal-up { opacity: 0; transform: translateY(25px); transition: opacity .7s ease, transform .7s ease; }
.reveal-up.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1199.98px) {
  .hero-info-panel { grid-template-columns: 1.25fr .55fr 1fr 1.1fr; min-height: 165px; }
  .hero-stat strong { font-size: 1.5rem; }
  .project-track { gap: 24px; }
  .project-card { flex-basis: calc((100% - 48px) / 3); }
}

@media (max-width: 991.98px) {
  .hero-section { min-height: 900px; align-items: flex-start; }
  .hero-content { padding-top: 150px; padding-bottom: 360px; }
  .hero-panel-wrap { width: 100%; }
  .hero-info-panel { grid-template-columns: repeat(2, 1fr); border-radius: 26px 26px 0 0; }
  .hero-brand { grid-column: 1 / -1; }
  .hero-brand::after { display: none; }
  .hero-stat:nth-child(3)::after { display: none; }
  .hero-brand, .hero-stat { padding: 18px; }
  .amenity-carousel-shell::before,
  .amenity-carousel-shell::after { width: 28%; }
  .amenity-carousel-shell::before { right: calc(100% + 20px); }
  .amenity-carousel-shell::after { left: calc(100% + 20px); }
  .location-list-panel { max-width: 520px; margin: 0 auto; text-align: center; }
  .location-list { display: inline-block; text-align: left; }
  .journey-grid { grid-template-columns: repeat(3, 1fr); padding-left: 15px;
	}
  .project-card { flex-basis: calc((100% - 24px) / 2); }
  .contact-copy { text-align: center; }
  .contact-copy > span { margin-inline: auto; }
  .whatsapp-btn { margin-inline: auto; }
}

@media (max-width: 767.98px) {
  .section-pad { padding: 40px 0; }
  .display-title { margin-bottom: 15px; font-size: 27px; }
  .hero-section { min-height: 820px; }
  .hero-content { padding-top: 100px; padding-bottom: 365px; }
  .hero-copy { text-align: center; margin: 0 auto; }
  .hero-copy h1 { font-size: clamp(3.1rem, 14vw, 5rem); }
  .hero-info-panel { min-height: 310px; }
  .hero-brand { padding: 18px 10px 10px; }
  .hero-brand small { font-size: 1.25rem; }
  .hero-brand strong { font-size: 2.2rem; }
  .hero-stat { padding: 14px 8px; }
  .hero-stat strong { font-size: 1.15rem; white-space: normal; }
  .hero-stat span { font-size: .75rem; }
  .phone-field { grid-template-columns: 118px 1fr; gap: 18px; }
  .amenity-carousel-shell { width: min(100% - 24px, 720px); }
  .amenity-carousel-shell::before,
  .amenity-carousel-shell::after { display: none; }
  .amenity-carousel-shell .carousel-item { aspect-ratio: 1.5 / 1; }
  .amenity-strip { right: 5%; width: 48%; padding: 14px; }
  .amenity-grid { grid-template-columns: repeat(2, 1fr); width: min(100%, 520px); }
  .amenity-item { border-right: 1px solid rgba(255,255,255,.35) !important; border-bottom: 1px solid rgba(255,255,255,.35) !important; }
  .amenity-item:nth-child(2n) { border-right: 0 !important; }
  .amenity-item:nth-child(n+7) { border-bottom: 0 !important; }
  .location-tabs { grid-template-columns: repeat(2, 1fr); gap: 6px; margin-top: -12px; }
  .radar-marker { width: 26px; height: 26px; font-size: .78rem; }
  .map-wrap, .map-wrap iframe { min-height: 480px; height: 480px; }
  .map-address-card { top: 20px; left: 20px; }
  .journey-grid { grid-template-columns: repeat(2, 1fr); }
  .journey-card:last-child { grid-column: 1 / -1; }
  .project-card { flex-basis: 100%; }
  .project-track { gap: 18px; }
  .project-nav { display: none; }
  .project-body h3 { font-size: 1.25rem; }
  
  .journey-grid 
  { 
      padding-left: 15px;
	}
	
}

@media (max-width: 575.98px) {
  .container { --bs-gutter-x: 1.4rem; }
  .hero-section { min-height: 760px; }
  .hero-content { padding-top: 72px; padding-bottom: 390px; }
  .hero-copy h1 { margin-top: 14px; font-size: 3.25rem; }
  .hero-copy .brand-btn { min-width: 190px; }
  .hero-info-panel { min-height: 345px; }
  .hero-brand { flex-direction: column; gap: 0; }
  .hero-stat { min-height: 88px; }
  .hero-stat:nth-child(4) { grid-column: 1 / -1; }
  .hero-stat:nth-child(3)::after { display: block; }
  .hero-stat:nth-child(4)::after { display: none; }
  .enquiry-section .display-title { font-size: 1.85rem; }
  .lead-copy { font-size: 15px; line-height: 1.65; color: #000; }
  .call-heading { margin: 28px 0 32px; }
  .phone-field { grid-template-columns: 1fr; gap: 16px; }
  .amenity-carousel-shell .carousel-item { aspect-ratio: 1.12 / 1; }
  .amenity-strip { right: 5%; left: 5%; top: auto; bottom: 16px; width: auto; transform: none; }
  .amenity-item { min-height: 94px; padding: 8px; }
  .amenity-item span { font-size: .77rem; }
  .brochure-btn { min-width: 240px; }
  .master-list li { font-size: .78rem; }
  .location-tabs { grid-template-columns: 1fr; }
  .radar-wrap { width: min(100%, 360px); }
  .radar-core { width: 34%; }
  .map-wrap, .map-wrap iframe { min-height: 430px; height: 430px; }
  .map-address-card { top: auto; bottom: 16px; padding: 17px; }
  .journey-title { font-size: 27px; margin: 20px 0 30px; }
  .journey-grid { grid-template-columns: 1fr; }
  .journey-card:last-child { grid-column: auto; }
  .journey-card { min-height: 150px; padding: 25px; }
  .journey-card strong { margin-bottom: 14px; }
  .journey-btn { min-width: 0; width: 100%; }
  .project-image { height: 180px; }
  .project-body { padding: 22px 20px 56px; }
  .project-meta, .project-actions { flex-direction: unset; gap: 9px; }
  .project-body p { min-height: 0; }
  .contact-footer { padding-top: 55px; background: linear-gradient(#fff 55px, var(--teal) 55px); }
  .contact-card { width: calc(100% - 24px); padding-inline: 22px; }
  
  
  
  .journey-grid
	{
		padding-left: 15px;
	}
	.journey-card
	{
		min-height: auto;
	}
	
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}


/* =========================================================
   PHP + SHARED HEADER/FOOTER INTEGRATION
========================================================= */

.paradise-page {
  background: #ffffff;
}

.paradise-page .paradise-main {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.paradise-page .hero-section {
  min-height: calc(100svh - var(--header-height, 82px));
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.1) 65%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
}

.paradise-page .form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.paradise-page .server-form-message {
  width: min(100%, 760px);
  margin: 0 auto 16px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.paradise-page .server-form-message.is-success {
  color: var(--teal-dark);
  background: rgba(8, 102, 95, 0.10);
}

.paradise-page .server-form-message.is-error {
  color: #9c0018;
  background: rgba(232, 0, 34, 0.10);
}

.paradise-page .footer-form .server-form-message {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.paradise-page .paradise-brochure-button {
  border: 1px solid var(--red);
}

.paradise-page .location-section {
  scroll-margin-top: 100px;
}

.paradise-page .contact-footer {
  padding-bottom: 80px;
}

.paradise-page .contact-card {
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .paradise-page .hero-section {
    min-height: 820px;
  }
  .journey-grid 
  { 
      padding-left: 15px;
	}
}

@media (max-width: 575.98px) {
  .paradise-page .hero-section {
    min-height: 720px;
  }

  .paradise-page .contact-footer {
    padding-bottom: 58px;
  }
  .journey-grid 
  { 
      padding-left: 15px;
	}
}


/* =========================================================
   TRANSPARENT HERO HEADER + SMOOTH PAGE MOTION
   Keep this block at the absolute end.
========================================================= */

.paradise-page .hero-section {
    min-height: 100vh;
    padding-top: 0;
}

.paradise-page .hero-shade {
    background:
        linear-gradient(180deg, rgba(3, 42, 69, 0.22) 0%, transparent 28%),
        linear-gradient(90deg, rgba(1, 22, 20, 0.30), rgba(1, 22, 20, 0.03) 58%, rgba(1, 22, 20, 0.10));
}

.paradise-page .hero-info-panel {
    opacity: 0;
    transform: translate3d(0, 54px, 0) scale(0.985);
    transition:
        opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 1000ms cubic-bezier(0.22, 1, 0.36, 1);
}

.paradise-page.is-page-ready .hero-info-panel {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.paradise-page .hero-video {
    transform: scale(1.035);
    transition: transform 1800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.paradise-page.is-page-ready .hero-video {
    transform: scale(1);
}

.paradise-page .mh-header-overlay .mh-header-shell > * {
    opacity: 0;
    transform: translate3d(0, -14px, 0);
    transition:
        opacity 650ms ease,
        transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.paradise-page.is-page-ready .mh-header-overlay .mh-header-shell > * {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.paradise-page.is-page-ready .mh-header-overlay .mh-header-shell > *:nth-child(1) {
    transition-delay: 80ms;
}

.paradise-page.is-page-ready .mh-header-overlay .mh-header-shell > *:nth-child(2) {
    transition-delay: 160ms;
}

.paradise-page.is-page-ready .mh-header-overlay .mh-header-shell > *:nth-child(3) {
    transition-delay: 240ms;
}

.smooth-section-reveal {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    filter: blur(4px);
    transition:
        opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 880ms cubic-bezier(0.22, 1, 0.36, 1),
        filter 620ms ease;
    transition-delay: var(--smooth-delay, 0ms);
    will-change: opacity, transform;
}

.smooth-section-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
}

.smooth-scale-reveal {
    transform: translate3d(0, 22px, 0) scale(0.975);
    filter: none;
}

.smooth-scale-reveal.is-visible {
    transform: translate3d(0, 0, 0) scale(1);
}

.paradise-page .display-title,
.paradise-page .paradise-glimpse-heading h2,
.paradise-page .journey-title {
    text-wrap: balance;
    font-family: "Montserrat";
}

.paradise-page .project-card,
.paradise-page .journey-card,
.paradise-page .paradise-slide-card,
.paradise-page .master-image-wrap {
    backface-visibility: hidden;
}

@media (max-width: 920px) {
    .paradise-page .hero-section {
        min-height: 820px;
    }

    .paradise-page .hero-panel-wrap {
        bottom: 0;
    }
}

@media (max-width: 767.98px) {
    .paradise-page .hero-section {
        min-height: 760px;
    }

    .paradise-page .hero-info-panel {
        border-radius: 24px 24px 0 0;
    }

    .smooth-section-reveal {
        transform: translate3d(0, 18px, 0);
        filter: blur(2px);
        transition-duration: 650ms, 720ms, 520ms;
    }

    .smooth-scale-reveal {
        transform: translate3d(0, 14px, 0) scale(0.985);
    }
}

@media (prefers-reduced-motion: reduce) {
    .paradise-page .hero-info-panel,
    .paradise-page .hero-video,
    .paradise-page .mh-header-overlay .mh-header-shell > *,
    .smooth-section-reveal {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        transition: none !important;
    }
}

/* =====================================================
   CLEAN MOBILE HERO
   One glassmorphism card with the logo inside its top area.
===================================================== */
@media (max-width: 767.98px) {
  .paradise-page .hero-section {
    --mobile-hero-height: clamp(390px, 108vw, 500px);
    position: relative;
    display: block;
    min-height: 0;
    padding: 0 !important;
    overflow: visible;
    background: #ffffff;
  }

  .paradise-page .hero-video {
    position: relative;
    inset: auto;
    z-index: 0;
    display: block;
    width: 100%;
    height: var(--mobile-hero-height);
    object-fit: cover;
    object-position: center center;
  }

  .paradise-page .hero-shade {
    position: absolute;
    inset: 0 0 auto;
    z-index: 1;
    width: 100%;
    height: var(--mobile-hero-height);
    background: linear-gradient(
      180deg,
      rgba(0, 20, 18, 0.08) 0%,
      rgba(0, 20, 18, 0.02) 48%,
      rgba(0, 20, 18, 0.20) 100%
    );
    pointer-events: none;
  }

  .paradise-page .hero-panel-wrap {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: 3;
    width: 100%;
    max-width: none;
    margin: -150px 0 0;
    padding: 0 12px 18px;
    transform: none;
  }

  .paradise-page .hero-info-panel {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    min-height: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.50);
    border-radius: 24px;
    background:
      linear-gradient(
        145deg,
        rgba(217, 204, 169, 0.35) 0%,
        rgba(89, 112, 106, 0.26) 38%,
        rgba(241, 247, 246, 0.66) 66%,
        rgba(235, 246, 245, 0.82) 100%
      ),
      rgba(255, 255, 255, 0.18);
    box-shadow:
      0 18px 45px rgba(0, 0, 0, 0.16),
      inset 0 1px 0 rgba(255, 255, 255, 0.68);
    backdrop-filter: blur(22px) saturate(140%);
    -webkit-backdrop-filter: blur(22px) saturate(140%);
  }

  .paradise-page .hero-info-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: inherit;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0.02) 43%,
      rgba(255, 255, 255, 0.40) 62%,
      rgba(225, 241, 239, 0.46) 100%
    );
    pointer-events: none;
  }

  .paradise-page .hero-info-panel::after {
    content: none !important;
    display: none !important;
  }

  .paradise-page .hero-info-panel > * {
    position: relative;
    z-index: 1;
  }

  /* Logo is part of the same card, not positioned over the video. */
  .paradise-page .hero-brand {
    position: static !important;
    inset: auto !important;
    grid-column: 1 / -1;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    min-height: 176px;
    margin: 0 !important;
    padding: 32px 18px 22px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: linear-gradient(
      180deg,
      rgba(27, 55, 52, 0.30) 0%,
      rgba(40, 69, 65, 0.18) 62%,
      rgba(255, 255, 255, 0.02) 100%
    ) !important;
    box-shadow: none !important;
    transform: none !important;
    overflow: visible !important;
    pointer-events: none;
  }

  .paradise-page .hero-brand::before,
  .paradise-page .hero-brand::after {
    content: none !important;
    display: none !important;
  }

  .paradise-page .hero-project-logo {
    position: static !important;
    display: block !important;
    width: min(72vw, 270px) !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 126px !important;
    margin: 8px auto 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    object-fit: contain !important;
    transform: none !important;
    filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.30));
  }

  .paradise-page .hero-stat {
    display: flex;
    min-height: 104px;
    padding: 20px 10px 18px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    border: 0;
    background: rgba(255, 255, 255, 0.10);
    text-align: center;
  }

  .paradise-page .hero-info-panel .hero-stat:nth-child(2) {
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    border-right: 1px solid rgba(0, 92, 85, 0.20);
    border-bottom: 1px solid rgba(0, 92, 85, 0.20);
  }

  .paradise-page .hero-info-panel .hero-stat:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    border-bottom: 1px solid rgba(0, 92, 85, 0.20);
  }

  .paradise-page .hero-info-panel .hero-stat:nth-child(4) {
    grid-column: 1 / -1;
  }

  .paradise-page .hero-stat strong {
    display: block;
    margin: 0;
    color: #4e5554;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 500;
    white-space: normal;
    text-shadow: none;
  }

  .paradise-page .hero-stat span {
    display: block;
    margin-top: 9px;
    color: #087773;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    text-shadow: none;
  }

  .paradise-page .enquiry-section {
    position: relative;
    z-index: 1;
    clear: both;
  }
}

@media (max-width: 480px) {
  .paradise-page .hero-section {
    --mobile-hero-height: clamp(370px, 110vw, 445px);
  }

  .paradise-page .hero-panel-wrap {
    margin-top: -138px;
    padding: 0 9px 16px;
  }

  .paradise-page .hero-info-panel {
    border-radius: 20px;
  }

  .paradise-page .hero-brand {
    min-height: 160px;
    padding: 28px 14px 18px !important;
  }

  .paradise-page .hero-project-logo {
    width: min(76vw, 245px) !important;
    max-height: 116px !important;
  }

  .paradise-page .hero-stat {
    min-height: 96px;
    padding: 18px 8px 16px;
  }

  .paradise-page .hero-stat strong {
    font-size: 18px;
  }

  .paradise-page .hero-stat span {
    font-size: 12px;
  }
}

/* =====================================================
   TABLET HERO MATCHES MOBILE LAYOUT
   Applies only from 768px to 991.98px.
   Logo and statistics stay inside one glassmorphism card.
===================================================== */
@media (min-width: 768px) and (max-width: 991.98px) {
  .paradise-page .hero-section {
    --tablet-hero-height: clamp(520px, 72vw, 690px);
    position: relative;
    display: block;
    min-height: 0 !important;
    padding: 0 !important;
    overflow: visible;
    background: #ffffff;
  }

  .paradise-page .hero-video {
    position: relative;
    inset: auto;
    z-index: 0;
    display: block;
    width: 100%;
    height: var(--tablet-hero-height);
    object-fit: cover;
    object-position: center center;
  }

  .paradise-page .hero-shade {
    position: absolute;
    inset: 0 0 auto;
    z-index: 1;
    width: 100%;
    height: var(--tablet-hero-height);
    background: linear-gradient(
      180deg,
      rgba(0, 20, 18, 0.08) 0%,
      rgba(0, 20, 18, 0.02) 48%,
      rgba(0, 20, 18, 0.20) 100%
    );
    pointer-events: none;
  }

  .paradise-page .hero-panel-wrap {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: 3;
    width: 100%;
    max-width: none;
    margin: -120px 0 0;
    padding: 0 clamp(28px, 7vw, 76px) 28px;
    transform: none;
  }

  .paradise-page .hero-info-panel {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 760px);
    min-height: 0;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.52);
    border-radius: 28px;
    background:
      linear-gradient(
        145deg,
        rgba(217, 204, 169, 0.36) 0%,
        rgba(89, 112, 106, 0.28) 38%,
        rgba(241, 247, 246, 0.68) 66%,
        rgba(235, 246, 245, 0.84) 100%
      ),
      rgba(255, 255, 255, 0.18);
    box-shadow:
      0 22px 52px rgba(0, 0, 0, 0.17),
      inset 0 1px 0 rgba(255, 255, 255, 0.70);
    backdrop-filter: blur(22px) saturate(140%);
    -webkit-backdrop-filter: blur(22px) saturate(140%);
  }

  .paradise-page .hero-info-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: inherit;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.09) 0%,
      rgba(255, 255, 255, 0.02) 43%,
      rgba(255, 255, 255, 0.42) 62%,
      rgba(225, 241, 239, 0.48) 100%
    );
    pointer-events: none;
  }

  .paradise-page .hero-info-panel::after {
    content: none !important;
    display: none !important;
  }

  .paradise-page .hero-info-panel > * {
    position: relative;
    z-index: 1;
  }

  .paradise-page .hero-brand {
    position: static !important;
    inset: auto !important;
    grid-column: 1 / -1;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    min-height: 210px;
    margin: 0 !important;
    padding: 42px 24px 26px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: linear-gradient(
      180deg,
      rgba(27, 55, 52, 0.32) 0%,
      rgba(40, 69, 65, 0.20) 62%,
      rgba(255, 255, 255, 0.02) 100%
    ) !important;
    box-shadow: none !important;
    transform: none !important;
    overflow: visible !important;
    pointer-events: none;
  }

  .paradise-page .hero-brand::before,
  .paradise-page .hero-brand::after {
    content: none !important;
    display: none !important;
  }

  .paradise-page .hero-project-logo,
  .paradise-page .hero-brand img {
    position: static !important;
    display: block !important;
    width: min(46vw, 330px) !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 152px !important;
    margin: 8px auto 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    object-fit: contain !important;
    transform: none !important;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.30));
  }

  .paradise-page .hero-stat {
    display: flex;
    min-height: 120px;
    padding: 24px 16px 21px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    border: 0;
    background: rgba(255, 255, 255, 0.10);
    text-align: center;
  }

  .paradise-page .hero-info-panel .hero-stat:nth-child(2) {
    border-top: 1px solid rgba(255, 255, 255, 0.30);
    border-right: 1px solid rgba(0, 92, 85, 0.20);
    border-bottom: 1px solid rgba(0, 92, 85, 0.20);
  }

  .paradise-page .hero-info-panel .hero-stat:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, 0.30);
    border-bottom: 1px solid rgba(0, 92, 85, 0.20);
  }

  .paradise-page .hero-info-panel .hero-stat:nth-child(4) {
    grid-column: 1 / -1;
  }

  .paradise-page .hero-stat strong {
    display: block;
    margin: 0;
    color: #4e5554;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 500;
    white-space: normal;
    text-shadow: none;
  }

  .paradise-page .hero-stat span {
    display: block;
    margin-top: 10px;
    color: #087773;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    text-shadow: none;
  }

  .paradise-page .enquiry-section {
    position: relative;
    z-index: 1;
    clear: both;
  }
}


/* =====================================================
   SITE PLAN ZOOM VIEWER
   Click the plan image to open full-screen zoom controls.
===================================================== */
body.site-plan-viewer-open {
  overflow: hidden;
}

.paradise-page .master-image-wrap {
  position: relative;
}

.paradise-page .site-plan-preview {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: inherit;
  background: transparent;
  cursor: zoom-in;
}

.paradise-page .site-plan-preview img {
  display: block;
  width: 100%;
  aspect-ratio: 1.92 / 1;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.paradise-page .site-plan-preview:hover img,
.paradise-page .site-plan-preview:focus-visible img {
  transform: scale(1.025);
  filter: brightness(0.92);
}

.paradise-page .site-plan-preview:focus-visible {
  outline: 3px solid rgba(232, 0, 34, 0.42);
  outline-offset: 4px;
}

.paradise-page .site-plan-open-hint {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  min-height: 42px;
  padding: 10px 16px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(5, 72, 67, 0.82);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.20);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.25s ease, transform 0.25s ease;
}

.paradise-page .site-plan-preview:hover .site-plan-open-hint,
.paradise-page .site-plan-preview:focus-visible .site-plan-open-hint {
  background: var(--red);
  transform: translateY(-3px);
}

.site-plan-viewer[hidden] {
  display: none !important;
}

.site-plan-viewer {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(2, 18, 17, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.site-plan-viewer-dialog {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(1480px, 100%);
  height: min(94vh, 980px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: #102725;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.48);
}

.site-plan-viewer-toolbar {
  display: flex;
  min-height: 68px;
  padding: 12px 16px 12px 22px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  background: #075f58;
}

.site-plan-viewer-heading {
  min-width: 0;
}

.site-plan-viewer-heading strong {
  display: block;
  overflow: hidden;
  font-size: 16px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-plan-viewer-heading span {
  display: block;
  margin-top: 4px;
  color: #9ef3e8;
  font-size: 12px;
  font-weight: 500;
}

.site-plan-viewer-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-plan-viewer-actions button,
.site-plan-viewer-actions a {
  display: inline-flex;
  min-width: 42px;
  height: 42px;
  padding: 0 13px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.30);
  border-radius: 10px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  font-size: 17px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.site-plan-viewer-actions a {
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.site-plan-viewer-actions button:hover,
.site-plan-viewer-actions button:focus-visible,
.site-plan-viewer-actions a:hover,
.site-plan-viewer-actions a:focus-visible {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.72);
  background: var(--red);
  outline: none;
  transform: translateY(-1px);
}

.site-plan-viewer-actions button:disabled {
  opacity: 0.38;
  cursor: not-allowed;
  transform: none;
}

.site-plan-viewer-close {
  margin-left: 4px;
}

.site-plan-viewer-viewport {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 0;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(45deg, rgba(255, 255, 255, 0.035) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.035) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.035) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.035) 75%),
    #081c1a;
  background-position: 0 0, 0 12px, 12px -12px, -12px 0;
  background-size: 24px 24px;
  cursor: zoom-in;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}

.site-plan-viewer-viewport.is-zoomed {
  cursor: grab;
}

.site-plan-viewer-viewport.is-dragging {
  cursor: grabbing;
}

.site-plan-viewer-viewport:focus-visible {
  outline: 2px solid #9ef3e8;
  outline-offset: -2px;
}

.site-plan-viewer-viewport img {
  display: block;
  width: auto;
  height: auto;
  max-width: calc(100% - 40px);
  max-height: calc(100% - 40px);
  object-fit: contain;
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: center center;
  transition: transform 0.18s ease;
  will-change: transform;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.site-plan-viewer-viewport.is-dragging img {
  transition: none;
}

.site-plan-viewer-help {
  margin: 0;
  padding: 10px 16px;
  color: rgba(255, 255, 255, 0.72);
  background: #0b302d;
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
}

@media (max-width: 767.98px) {
  .paradise-page .site-plan-open-hint {
    right: 10px;
    bottom: 10px;
    min-height: 36px;
    padding: 8px 12px;
    font-size: 11px;
  }

  .site-plan-viewer {
    padding: 0;
  }

  .site-plan-viewer-dialog {
    width: 100%;
    height: 100 vh;
    border: 0;
    border-radius: 0;
  }

  .site-plan-viewer-toolbar {
    min-height: 62px;
    padding: 10px;
    gap: 10px;
  }

  .site-plan-viewer-heading {
    display: none;
  }

  .site-plan-viewer-actions {
    width: 100%;
    justify-content: center;
    gap: 6px;
  }

  .site-plan-viewer-actions button,
  .site-plan-viewer-actions a {
    min-width: 40px;
    height: 40px;
    padding: 0 11px;
  }

  .site-plan-viewer-actions a span {
    display: none;
  }

  .site-plan-viewer-close {
    margin-left: auto;
  }

  .site-plan-viewer-viewport img {
    max-width: calc(100% - 18px);
    max-height: calc(100% - 18px);
  }

  .site-plan-viewer-help {
    padding: 8px 10px;
    font-size: 10px;
  }
}
