﻿/* ==========================================================
   Anisha Garden — stylesheet (deduplicated & consolidated)
   Cleaned up: removed repeated/overridden rule blocks.
   ========================================================== */

:root {
  --aqua: var(--brand-teal);
  --leaf: var(--brand-green);
  --leaf-2: var(--brand-leaf);
  --olive: var(--brand-olive);
  --ink: #456943;
  --muted: #738637;
  --paper: #f7f9f0;
  --line: rgba(69, 105, 67, .16);
  --leaf-dark: #142d19;
  --gold: var(--brand-leaf);
  --logo-green: var(--brand-green);
  --logo-teal: var(--brand-teal);
  --logo-leaf: var(--brand-leaf);
  --premium-ink: #456943;
  --premium-muted: #738637;
  --premium-cream: #f7f9f0;
  --premium-panel: #ffffff;
  --premium-line: rgba(69, 105, 67, .16);
  --premium-shadow: 0 24px 70px rgba(69, 105, 67, .13);
  --brand-teal: #c39842;
  --brand-green: #132a45;
  --brand-leaf: #aec460;
  --brand-olive: #738637;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #0b3558;
  background: linear-gradient(180deg, #ffffff 0, #f7f9f0 48%, #ffffff 100%);
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  font-size: 18px;
}

img {
  max-width: 100%;
}

.navbar {
  border-bottom: 1px solid rgba(69, 105, 67, .12);
  background: linear-gradient(90deg, rgba(255, 255, 255, .82) 0%, rgba(247, 249, 240, .68) 48%, rgba(174, 196, 96, .34) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: none;
  min-height: 88px;
  padding: 0;
}

.navbar-brand img {
  height: 72px;
  width: 178px;
  object-fit: contain;
  object-position: center;
}

.nav-link {
  color: rgba(16, 24, 17, .82);
  font-weight: 500;
  font-size: clamp(1rem, 1vw, 1.12rem);
  border-radius: 4px;
  padding: .65rem .8rem;
  text-transform: uppercase;
}

.nav-link:hover, .nav-link:focus {
  color: var(--aqua);
}

.btn-brand {
  background: linear-gradient(135deg, var(--leaf), #1a3d21);
  border-color: var(--leaf);
  color: #fff;
  border-radius: 4px;
  font-weight: 500;
  padding: .78rem 1.1rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  border: 0;
  box-shadow: 0 16px 34px rgba(20, 45, 25, .28);
}

.btn-brand:hover, .btn-brand:focus {
  background: var(--leaf-dark);
  border-color: #456943;
  color: #fff;
  transform: translateY(-1px);
}

.btn-line {
  border: 1px solid rgba(255,255,255,.7);
  color: #fff;
  border-radius: 4px;
  font-weight: 500;
  padding: .78rem 1.1rem;
  backdrop-filter: blur(8px);
  border-color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.08);
}

.btn-line:hover, .btn-line:focus {
  background: #fff;
  color: var(--leaf);
}

.hero {
  position: relative;
  /* min-height: 92vh;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #102016; */
}

.hero .owl-carousel, .hero .owl-stage-outer, .hero .owl-stage, .hero .owl-item, .hero-swiper, .hero-swiper .swiper-wrapper, .hero-swiper .swiper-slide, .hero-slide {
  height: 92vh;
  min-height: 620px;
}

.hero-swiper {
  width: 100%;
  position: relative;
  z-index: 0;
}

.main-slider-pagination {
  bottom: 34px !important;
  z-index: 4;
}

.main-slider-pagination .swiper-pagination-bullet {
  width: 28px;
  height: 4px;
  border-radius: 99px;
  background: rgba(255, 255, 255, .72);
  opacity: 1;
  transition: width .25s ease, background .25s ease;
}

.main-slider-pagination .swiper-pagination-bullet-active {
  width: 44px;
  background: var(--brand-leaf);
}

.main-slider__swiper-button {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 32, 22, .38);
  color: #fff;
  transform: translateY(-50%);
  backdrop-filter: blur(8px);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.main-slider__swiper-button:hover,
.main-slider__swiper-button:focus {
  background: rgba(69, 105, 67, .82);
  border-color: rgba(255, 255, 255, .72);
}

.main-slider__swiper-button-prev {
  left: 28px;
}

.main-slider__swiper-button-next {
  right: 28px;
}

.hero-slide {
  background: #102016;
  position: relative;
  overflow: hidden;
  transform: none !important;
  width: 100%;
}

.hero-slide-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1.45s ease-in-out, transform 4.8s ease;
  will-change: opacity;
}

.hero-slide.swiper-slide-active .hero-slide-image {
  opacity: 1;
  transform: scale(1);
}

.hero-slide:first-child .hero-slide-image {
  opacity: 1;
  transform: scale(1);
}

.hero-swiper.swiper-initialized .hero-slide:not(.swiper-slide-active) .hero-slide-image {
  opacity: 0;
  transform: scale(1.02);
}

/* .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(247, 249, 240, .28) 0%, rgba(174, 196, 96, .18) 42%, rgba(77, 173, 171, .08) 76%),
    linear-gradient(0deg, rgba(247, 249, 240, .2), rgba(247, 249, 240, .04) 52%);
} */

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 5.5rem 0 4.5rem;
  color: #fff;
  /* display: flex;
  align-items: center; */
}

.eyebrow {
  color: var(--aqua);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero-logo-box {
  width: 350px;
  margin: 0 auto 1.35rem;
  padding: .85rem 1.15rem;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
}

.hero-text-logo {
  display: block;
  width: 100%;
  height: auto;
}

.hero h1 {
    font-size: clamp(3.5rem, 2.5vw, 5rem);
    line-height: .95;
    font-weight: 900;
    letter-spacing: 0;
    margin: 1rem 0 1.2rem;
    text-align: left;
    max-width: 650px;
    margin: 0 auto;
    font-family: "Manrope", sans-serif;
    color:#FFFFFF;
  
}
.hero p {
  max-width: 650px;
  font-size: clamp(1.04rem, 1.6vw, 1.28rem);
  color: rgba(255,255,255,.9);
  line-height: 1.75;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 2.4rem;
  max-width: 980px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.24);
  backdrop-filter: blur(14px);
  border-radius: 10px;
  overflow: hidden;
  border-color: rgba(255,255,255,.22);
  box-shadow: 0 28px 80px rgba(0,0,0,.22);
}

.hero-metrics div {
  background: rgba(255,255,255,.12);
  padding: 1.25rem;
  min-height: 118px;
}

.hero-metrics strong {
  display: block;
  font-size: clam;
  line-height: 1.45;
  line-height: 1;
}

.hero-metrics span {
  display: block;
  margin-top: .45rem;
  color: rgba(255,255,255,.82);
  font-size: .86rem;
  line-height: 1.25;
}

section {
  padding: clamp(6rem, 2vw, 7.8rem) 0;
  position: relative;
}
.hero-content-box{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
   
    padding-top: 7rem;
}
.hero-content-box-right {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    flex-direction: column;
  padding-top: 7rem;
}
.section-soft {
  background:
    url("../images/oval.png") left 3% top 8% / 104px auto no-repeat,
    url("../images/half-bottom.png") center top 4% / 150px auto no-repeat,
    url("../images/half-top.png") right 4% bottom 8% / 150px auto no-repeat,
    #132a45;
}

.section-dark {
  background:
    url("../images/oval.png") left 0% bottom 0% / 104px auto no-repeat,
    url("../images/oval.png") right 0% top 0% / 104px auto no-repeat,
    /* url("../images/oval.png") left 3% top 8% / 104px auto no-repeat,
    url("../images/oval.png") right 3% bottom 8% / 104px auto no-repeat, */
    url("../images/half-bottom.png") center top 0% / 130px auto no-repeat,
    url("../images/half-top.png") center bottom 0% / 130px auto no-repeat,
    #132a45;
  color: #fff;
}
.section-dark .section-dark {
  color: #fff;
}
.section-kicker {
  color: var(--aqua);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: .65rem;
}

.section-title {
  font-size: clamp(2.2rem, 4.8vw, 4.15rem);
  line-height: 1.02;
  font-weight: 500;
  margin-bottom: 1rem;
  max-width: 780px;
  text-wrap: balance;
  color: #0B3558;
}

.lead-copy {
  color: #0B3558;
  font-size: 1.08rem;
  line-height: 1.75;
}

.section-dark .lead-copy {
  color: rgba(255,255,255,.78);
}

.highlight-grid, .amenity-grid, .spec-grid {
  display: grid;
  gap: 1rem;
}

.highlight-grid {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.amenity-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.spec-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(250, 248, 240, .8));
  padding: 1.55rem;
  height: 100%;
  position: relative;
  display: flex;
  box-shadow: 0 14px 40px rgba(16, 24, 17, .08);
}

.section-dark .info-card {
  border-color: rgba(174, 196, 96, .24);
  background: rgba(255, 255, 255, .1);
  box-shadow: none;
}

.info-card h3 {
  font-size: 1.04rem;
  font-weight: 500;
  margin-bottom: .55rem;
}

.icon-box {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 6px;
  background: rgba(79, 176, 175, .12);
  color: var(--leaf);
  font-size: 1.22rem;
  box-shadow: inset 0 0 0 1px rgba(79, 176, 175, .2);
}

.section-dark .icon-box {
  background: rgba(255,255,255,.12);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.18);
}

.info-card p, .info-card li {
  color:#0B3558;
  margin: 0;
}

.section-dark .info-card p, .section-dark .info-card li {
  color: rgba(255,255,255,.75);
}

.image-panel {
  border-radius: 14px;
  overflow: hidden;
 
  height: 100%;
  background: #d9ded3;
  box-shadow: var(--premium-shadow);
}

.image-panel img {
  width: 100%;
  height: 100%;
  
  object-fit: cover;
}

.amenity-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  min-height: 340px;
  background: #102016;
}

.amenity-card img, .gallery-card img, .plan-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.amenity-card img {
  min-height: 340px;
}

.amenity-card span, .gallery-card span {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  color: #fff;
  font-weight: 500;
  text-shadow: 0 2px 18px rgba(0,0,0,.7);
  z-index: 2;
  line-height: 1.25;
  font-size: 1.05rem;
}

.amenity-card::after, .gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.02) 0%, rgba(0,0,0,.16) 45%, rgba(0,0,0,.82) 100%);
  z-index: 1;
}

.location-list {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: .8rem;
}

.location-list div {
  display: flex;
  justify-content: space-between;
  gap: .25rem;
  border-bottom: 1px solid var(--line);
  padding: .5rem 0;
  font-weight: 500;
  flex-direction: row;
  border-bottom-color: rgb(146 202 153 / 12%);
}

.location-list span {
  color: var(--leaf);
  white-space: nowrap;
}

.key-distance-title {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.key-distance-nav {
  gap: .5rem;
  margin-bottom: 1.2rem;
}

.key-distance-nav .nav-link {
  white-space: nowrap;
}

.key-distance-content {
  min-height: 260px;
}

.key-distance-content .location-list {
  grid-template-columns: 1fr;
}

.map-frame {
  border: 0;
  width: 100%;
  min-height: 500px;
  border-radius: 14px;
  filter: saturate(.9);
  background: #eef0ea;
  box-shadow: var(--premium-shadow);
}

.contact-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(250, 248, 240, .98), rgba(255,255,255,.98)),
    #fff;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(36, 79, 42, .06), transparent 48%);
}

.contact-section .container {
  position: relative;
  z-index: 1;
}

.contact-copy {
  margin-bottom: 1.4rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem;
  margin-bottom: .9rem;
  border: 1px solid rgba(23, 35, 26, .1);
  border-radius: 6px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 14px 42px rgba(23, 35, 26, .08);
  backdrop-filter: blur(10px);
  flex-direction: row;
}

.contact-card h3 {
  margin: 0 0 .35rem;
  font-size: 1rem;
  font-weight: 500;
}

.contact-card p {
  margin: 0;
  color: #0B3558;
  line-height: 1.55;
}

.contact-icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--leaf);
  color: #fff;
  font-size: 1.25rem;
  box-shadow: 0 14px 30px rgba(36, 79, 42, .22);
}

.contact-btn {
  margin-top: .55rem;
}

.map-card {
  position: relative;
  height: 100%;
  min-height: 560px;
  padding: .75rem;
  border: 1px solid rgba(23, 35, 26, .1);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 26px 80px rgba(23, 35, 26, .14);
  overflow: hidden;
}

.map-card .map-frame {
  height: 100%;
  min-height: 536px;
  border-radius: 6px;
}

.map-overlay {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .8rem;
  max-width: 360px;
  padding: .95rem 1rem;
  border-radius: 10px;
  background: rgba(16, 24, 17, .88);
  color: #fff;
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 42px rgba(0,0,0,.22);
  text-align: left;
}

.map-overlay span {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(79, 176, 175, .2);
  color: var(--aqua);
  font-size: 1.1rem;
}

.map-overlay strong, .map-overlay small {
  display: block;
  line-height: 1.3;
}

.map-overlay small {
  color: rgba(255,255,255,.72);
  margin-top: .15rem;
}

.gallery-card {
  height: 430px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  background: #102016;
}

.highlight-image-card {
  display: block;
  /* height: 430px; */
  border-radius: 6px;
  overflow: hidden;
  background: #102016;
  box-shadow: var(--premium-shadow);
}

.highlight-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

.highlight-image-card:hover img,
.highlight-image-card:focus img {
  transform: scale(1.04);
}

.highlight-image-card:focus-visible {
  outline: 2px solid var(--aqua);
  outline-offset: 4px;
}

.plan-card {
  display: block;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: inherit;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(16, 24, 17, .1);
  text-decoration: none;
}

.plan-card:hover, .plan-card:focus {
  color: inherit;
  text-decoration: none;
}

.plan-card img {
  height: 580px;
  object-fit: contain;
  background: linear-gradient(180deg, #f3f4ee, #fff);
  padding: 1rem;
}

.plan-card h3 {
  font-size: 1rem;
  font-weight: 500;
  padding: 1.15rem 1.25rem;
  margin: 0;
  border-top: 1px solid var(--line);
  background: #fff;
}

.nav-pills .nav-link {
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  margin: .25rem;
  min-width: 132px;
  padding: .78rem 1.2rem;
  color:  #132a45;
  box-shadow: 0 8px 24px rgba(16, 24, 17, .06);
}

.nav-pills .nav-link.active {
  background: var(--leaf);
  border-color: var(--leaf);
  color: #fff;
  box-shadow: 0 14px 30px rgba(36, 79, 42, .22);
}

.form-control, .form-select {
  border-radius: 8px;
  padding: .85rem .95rem;
  border-color: var(--line);
  min-height: 50px;
  background-color: #fbfbf7;
}

.enquiry-box {
  border-radius: 6px;
  background: #fff;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  box-shadow: var(--premium-shadow);
}

.application-form-section {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: 0px;
}

.application-form-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border: 1px solid rgba(69, 105, 67, .16);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(11, 53, 88, .92) 0%, rgba(11, 53, 88, .78) 54%, rgba(11, 53, 88, .38) 100%),
    url("../images/Right side elevation view_crop.jpg") center / cover no-repeat;
  box-shadow: var(--premium-shadow);
}

.application-form-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.application-form-link .section-title {
  margin-bottom: .7rem;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.application-form-link .section-title,
.application-form-link .section-title .title-accent,
.application-form-link .lead-copy {
  color: #fff !important;
}

.application-form-link .lead-copy {
  margin-bottom: 0;
}

.application-form-link .btn {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  background: #fff !important;
  border-color: #fff !important;
  color: #0B3558 !important;
}

.developer-mark {
  border-left: 4px solid var(--aqua);
  padding-left: 1.2rem;
  border-left-color: var(--brand-leaf);
}

.developer-brand-box {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(360px, 34vw, 465px);
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 8px;
  background: #e7bf58;
  box-shadow: var(--premium-shadow);
  flex-direction: column;
}
.developer-brand-box p{
  margin-top: 20px;
    font-size: 20px;
    font-weight: 600;
}
.developer-brand-box img {
  display: block;
  width: min(100%, 420px);
  max-height: 320px;
  object-fit: contain;
}

footer {
  background:
    /* url("../images/oval.png") left 3% top 14% / 96px auto no-repeat,
    url("../images/half-bottom.png") center top 8% / 140px auto no-repeat,
    url("../images/half-top.png") right 4% bottom 12% / 140px auto no-repeat, */
    #132a45;
  color: rgba(255,255,255,.78);
  padding: 3rem 0 1.2rem;
  text-align: center;
  padding-top: 4.5rem;
  padding-bottom: 2rem;
}

footer a {
  color: rgba(255,255,255,.78);
  text-decoration: none;
}

footer a:hover {
  color: #fff;
}

.footer-logo {
  width: 250px;
  height: 66px;
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
  padding: .35rem;
}

.owl-theme .owl-nav [class*=owl-] {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: #fff !important;
  color: var(--leaf) !important;
  font-size: 1.4rem !important;
  line-height: 1 !important;
  box-shadow: 0 10px 28px rgba(23, 35, 26, .16);
  border: 1px solid rgba(16, 24, 17, .1) !important;
}

.owl-theme .owl-dots .owl-dot span {
  background: rgba(36, 79, 42, .35);
  width: 24px;
  height: 4px;
  border-radius: 99px;
}

.owl-theme .owl-dots .owl-dot.active span {
  background: var(--leaf);
}

@media (max-width: 991px) {
  .hero, .hero .owl-carousel, .hero .owl-stage-outer, .hero .owl-stage, .hero .owl-item, .hero-swiper, .hero-swiper .swiper-wrapper, .hero-swiper .swiper-slide, .hero-slide {
    height: auto;
    min-height: 820px;
  }

  .hero-content {
    padding-bottom: 3.5rem;
    align-items: flex-end;
    padding: 8rem 0 3rem;
  }

  .hero-metrics, .highlight-grid, .amenity-grid, .spec-grid, .location-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .map-card {
    min-height: 440px;
  }

  .map-card .map-frame {
    min-height: 416px;
  }

  .navbar-collapse {
    padding: .75rem 0 1rem;
  }

  .nav-link {
    padding: .75rem 0;
  }

  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .image-panel, .image-panel img {
    min-height: 390px;
  }

  .plan-card img {
    height: 470px;
  }

  .map-frame {
    min-height: 420px;
  }

  .booking-contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .application-form-link {
    align-items: flex-start;
    flex-direction: column;
    background:
      linear-gradient(135deg, rgba(11, 53, 88, .94), rgba(11, 53, 88, .78)),
      url("../images/Right side elevation view_crop.jpg") center / cover no-repeat;
  }

  .floor-plan-compare, .floor-plan-support {
    grid-template-columns: 1fr;
  }

  .floor-plan-compare .plan-card img, .floor-plan-support .plan-card img {
    height: 470px;
  }

  .location-map-image, .location-map-image img, .location-map-image iframe {
    min-height: 420px;
  }

  .leaf-corner {
    width: 86px;
    opacity: .34;
  }
}

@media (max-width: 575px) {
  .navbar-brand img {
    width: 132px;
    height: 48px;
  }

  .hero, .hero .owl-carousel, .hero .owl-stage-outer, .hero .owl-stage, .hero .owl-item, .hero-swiper, .hero-swiper .swiper-wrapper, .hero-swiper .swiper-slide, .hero-slide {
    height: 760px;
    min-height: 760px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 10vw, 3.8rem);
  }

  .hero-logo-box {
    width:250px;
    padding: .7rem .9rem;
    margin-bottom: 1rem;
  }

  .main-slider__swiper-button {
    width: 38px;
    height: 38px;
  }

  .main-slider__swiper-button-prev {
    left: 12px;
  }

  .main-slider__swiper-button-next {
    right: 12px;
  }

  .main-slider-pagination {
    bottom: 22px !important;
  }

  .hero-metrics, .highlight-grid, .amenity-grid, .spec-grid, .location-list {
    grid-template-columns: 1fr;
  }

  section {
    padding: 3.5rem 0;
  }

  .gallery-card {
    height: 330px;
  }

  .plan-card img {
    height: 360px;
  }

  .contact-card {
    padding: 1rem;
  }

  .contact-icon {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }

  .map-card {
    min-height: 380px;
    padding: .5rem;
  }

  .map-card .map-frame {
    min-height: 360px;
  }

  .map-overlay {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: none;
    position: static;
    margin-top: .75rem;
    background: var(--premium-ink);
  }

  .hero p {
    font-size: 1rem;
  }

  .section-title {
    line-height: 1.08;
    font-size: 2.3rem;
  }

  .enquiry-box {
    padding: 1.25rem;
  }

  main section .section-kicker {
    padding: .62rem 1rem;
    font-size: .78rem;
    letter-spacing: .1em;
  }

  main section .section-title {
    font-size: clamp(2.18rem, 10vw, 2.9rem);
  }

  main section .section-heading {
    margin-bottom: 1.8rem;
  }

  main section .section-heading .section-title {
    font-size: clamp(1.75rem, 8vw, 2.00rem);
  }

  .navbar {
    min-height: 70px;
  }

  .hero-content {
    padding: 6.2rem 0 2.4rem;
  }

  .hero-metrics {
    margin-top: 1.5rem;
  }

  .hero-metrics div {
    min-height: 104px;
    padding: 1rem;
  }

  .btn-brand, .btn-line {
    width: 100%;
  }

  .lead-copy {
    font-size: 1rem;
  }

  .highlight-grid, .spec-grid, .location-list {
    gap: .9rem;
  }

  .amenity-card, .amenity-card img {
    min-height: 300px;
  }

  #overview > .container {
    max-width: 100%;
  }

  #overview .highlight-grid .info-card {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: .85rem;
    padding: 1.25rem;
  }

  #overview .image-panel, #overview .image-panel img {
    min-height: 360px;
  }

  #overview .highlight-grid .icon-box {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    font-size: 1.12rem;
  }

  .project-overview-grid {
    grid-template-columns: 1fr;
  }

  #specification .spec-grid .info-card {
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: auto;
    padding: 1.2rem;
    column-gap: .85rem;
  }

  #specification .spec-grid .icon-box {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .booking-contact-grid {
    grid-template-columns: 1fr;
  }

  .booking-contact-card {
    grid-template-columns: 46px minmax(0, 1fr);
    min-height: 96px;
    padding: 1.15rem;
  }

  .booking-contact-card .icon-box {
    width: 46px;
    height: 46px;
  }

  #developer .highlight-grid .info-card {
    grid-template-columns: 46px minmax(0, 1fr);
    min-height: auto;
    gap: .85rem;
    padding: 1.2rem;
  }

  #developer .highlight-grid .icon-box {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .floating-enquiry-tab {
    top: auto;
    right: 1rem;
    bottom: 1rem;
    padding: .82rem 1rem;
    border-radius: 999px;
    transform: none;
    writing-mode: horizontal-tb;
  }

  .location-map-image, .location-map-image img, .location-map-image iframe {
    min-height: 340px;
  }

  .location-map-badge {
    left: .85rem;
    right: .85rem;
    bottom: .85rem;
    max-width: none;
  }

  .floor-plan-compare .plan-card img, .floor-plan-support .plan-card img {
    height: 360px;
  }

  .gallery-tab-content {
    min-height: 420px;
  }

  .leaf-corner {
    width: 68px;
    opacity: .26;
  }

  .leaf-corner-top-left {
    left: .45rem;
  }

  .leaf-corner-bottom-right {
    right: .45rem;
  }

  main section .lead-copy {
    font-size: 1.02rem;
    line-height: 1.68;
  }

  body {
    font-size: 17px;
  }

  .nav-link, .hero p, footer p, footer a, .footer-contact-line, .form-control, .form-select, textarea.form-control, .btn, .location-map-badge, .gallery-card span, .amenity-card span {
    font-size: 1rem;
  }

  main section .lead-copy, main section p, main section li, .info-card p, .project-overview-item p, .location-list div, .booking-contact-card p, .contact-card p, .developer-mark p, .form-label, .form-text {
    font-size: 1.06rem;
  }
}

::selection {
  background: rgba(79, 176, 175, .26);
}

.navbar-brand {
  padding: 0;
  position: absolute;
  z-index: 3;
  margin: 0;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
}

.navbar .btn-brand, .btn-brand {
  box-shadow: 0 12px 28px rgba(36, 79, 42, .2);
}

.hero-content::before {
  content: none;
}

.info-card, .plan-card, .enquiry-box {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.info-card:hover, .plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 54px rgba(23, 35, 26, .1);
  border-color: rgba(79, 176, 175, .36);
}

.text-center .section-title {
  margin-left: auto;
  margin-right: auto;
}

.amenity-card, .gallery-card, .image-panel {
  box-shadow: 0 18px 52px rgba(23, 35, 26, .12);
}

.form-control:focus, .form-select:focus {
  border-color: var(--aqua);
  box-shadow: 0 0 0 .22rem rgba(79, 176, 175, .16);
}

a {
  text-underline-offset: .18em;
}

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(79, 176, 175, .42);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: .75rem;
  left: .75rem;
  z-index: 1100;
  transform: translateY(-140%);
  border-radius: 4px;
  background: var(--leaf-dark);
  color: #fff;
  padding: .7rem 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.nav-link:focus-visible {
  outline-offset: 0;
}

.image-panel, .amenity-card, .gallery-card {
  isolation: isolate;
}

.image-panel img, .amenity-card img, .gallery-card img {
  transition: transform .45s ease;
}

.image-panel:hover img, .amenity-card:hover img, .gallery-card:hover img {
  transform: scale(1.035);
}

.form-text {
  color: #0b3558;
}

section, header, footer {
  width: 100%;
}

section .container, footer .container {
  margin-left: auto;
  margin-right: auto;
}

main section {
  text-align: center;
}

main section .row {
  justify-content: center;
}

.section-title, .lead-copy, .developer-mark, .contact-copy {
  margin-left: auto;
  margin-right: auto;
}

.highlight-grid, .spec-grid, .location-list {
  justify-content: center;
}

.info-card, .contact-card, .developer-mark, .enquiry-box, .plan-card {
  text-align: center;
}

.icon-box, .contact-icon {
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  background: rgba(200, 168, 90, .16);
  color: var(--leaf);
}

.image-panel, .map-card, .map-frame, .enquiry-box {
  margin-left: auto;
  margin-right: auto;
}

main section .section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 auto 1.35rem;
  padding: .72rem 1.55rem;
  border: 1px solid rgba(81, 173, 170, .32);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(77, 173, 171, .14), rgba(174, 196, 96, .16)),
    rgba(255, 255, 255, .82);
  color: var(--brand-green);
  box-shadow: 0 14px 38px rgba(36, 77, 40, .08);
  font-size: clamp(.86rem, .85vw, .98rem);
  font-weight: 600;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
  border-color: rgba(77, 173, 171, .34);
}

main section .section-title {
  max-width: 1080px;
  margin: 0 auto 1.15rem;
  color: #2f3730;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: clamp(2.85rem, 4.9vw, 4.75rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 1.25rem;
}

main section .section-title .title-accent {
  color: #0B3558;
}

.section-dark .section-kicker {
  border-color: rgba(174, 196, 96, .48);
  background: rgba(255, 255, 255, .1);
  color: var(--brand-leaf);
}

.section-dark .section-title {
  color: #fff;
}

.section-dark .section-title .title-accent {
  color: var(--brand-leaf);
}

main section, footer, main section .row, footer .row, .info-card, .contact-card, .developer-mark, .enquiry-box, .plan-card, .location-list, .contact-copy {
  text-align: left;
}

main section .section-heading, main section .section-heading .section-kicker, main section .section-heading .section-title, main section .section-heading .lead-copy {
  text-align: center;
}

main section .row, footer .row {
  justify-content: flex-start;
}

.info-card .icon-box, .contact-icon {
  margin-left: 0;
  margin-right: 0;
}

main section .section-heading .lead-copy {
  margin-left: auto;
  margin-right: auto;
  display: block;
  max-width: 720px;
  margin-bottom: 0;
}

.navbar > .container {
  position: relative;
  min-height: 88px;
  max-width: 1280px;
  padding-left: clamp(1rem, 4vw, 3rem);
  padding-right: clamp(1rem, 4vw, 3rem);
}

.navbar-collapse {
  width: 100%;
  flex-grow: 1;
}

.site-nav-list {
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: clamp(.55rem, 1vw, 1.05rem);
}

.site-nav-list .nav-item:nth-child(4) {
  margin-right: clamp(155px, 14vw, 230px);
}

.site-nav-list .nav-link {
  padding: .25rem 0;
  color: #050505;
  background: transparent;
  font-size: clamp(.68rem, .78vw, .82rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}

.site-nav-list .nav-link:hover, .site-nav-list .nav-link:focus, .navbar-nav .site-nav-list .nav-link.active, .navbar-nav .nav-link.active {
  background: transparent;
  color: #738637;
}

.site-nav-list .nav-call {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 999px;
  background: #738637;
  color: #fff;
  font-size: 1.12rem;
}

.site-nav-list .nav-call:hover, .site-nav-list .nav-call:focus {
  background: #456943;
  color: #fff;
}

@media (max-width: 1199px) {
  .navbar {
    min-height: 76px;
  }

  .navbar > .container {
    min-height: 76px;
  }

  .navbar-brand {
    position: static;
    transform: none;
  }

  .navbar-brand img {
    width: 148px;
    height: 58px;
  }

  .navbar-toggler {
    margin-left: auto;
  }

  .navbar-collapse {
    margin-top: .5rem;
    padding: .75rem 0 1rem;
    border-top: 1px solid rgba(16, 24, 17, .08);
    background: linear-gradient(180deg, rgba(255, 255, 255, .54), rgba(247, 249, 240, .34));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .site-nav-list {
    align-items: flex-start;
    gap: .15rem;
  }

  .site-nav-list .nav-item:nth-child(4) {
    margin-right: 0;
  }

  .site-nav-list .nav-link {
    padding: .72rem 0;
  }

  .site-nav-list .nav-call {
    margin-top: .45rem;
  }

  .site-nav-list .nav-phone {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    width: fit-content;
    margin-top: .35rem;
    padding: .72rem 1rem;
    border-radius: 999px;
    background: var(--brand-green);
    color: #fff;
  }
}

main section .section-heading {
  display: block;
  width: min(100%, 860px);
  margin: 0 auto 2.4rem;
  text-align: center;
  margin-bottom: clamp(2.25rem, 4vw, 3.75rem);
}

main section .section-heading .section-kicker, main section .section-heading .section-title, main section .section-heading .lead-copy {
  float: none;
  clear: both;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

main section .section-heading .section-kicker {
  display: inline-flex;
  margin-bottom: 1rem;
}

main section .section-heading .section-title {
  display: block;
  max-width: 780px;
  margin-bottom: .9rem;
  font-size: clamp(2rem, 3.6vw, 2.80rem);
  line-height: 1.12;
}

main section .lead-copy {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.18rem, 1.32vw, 1.38rem);
  line-height: 1.75;
}

footer .row {
  justify-content: center;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .leaf-corner {
    animation: none;
  }
}

.navbar-toggler {
  border: 1px solid var(--premium-line);
  border-radius: 6px;
  padding: .6rem .7rem;
}

.nav-link:hover, .nav-link:focus, .navbar-nav .nav-link.active {
  background: rgba(79, 176, 175, .1);
  color: var(--leaf);
}

.hero, .hero .owl-carousel, .hero .owl-stage-outer, .hero .owl-stage, .hero .owl-item, .hero-swiper, .hero-swiper .swiper-wrapper, .hero-swiper .swiper-slide, .hero-slide {
  /* height: calc(100vh - 0px);
  min-height: 720px; */
}

.eyebrow, .section-kicker {
  color: var(--gold);
  letter-spacing: .2em;
}

.btn-brand, .btn-line {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: .86rem 1.25rem;
}

.highlight-grid, .spec-grid {
  gap: 1.15rem;
}

.info-card, .plan-card, .enquiry-box, .contact-card, .map-card {
  border: 1px solid var(--premium-line);
  border-radius: 10px;
}

.info-card h3, .contact-card h3, .plan-card h3 {
  color: #0B3558;
  letter-spacing: 0;
}

.section-dark .info-card h3 {
  color: #fff;
}

.amenity-card, .gallery-card {
  border-radius: 14px;
  box-shadow: var(--premium-shadow);
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: zoom-in;
}

.nav-pills {
  gap: .5rem;
}

.form-label {
  font-size: .86rem;
  font-weight: 500;
  color: #0B3558;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: var(--leaf) !important;
  color: #fff !important;
}

main section, footer {
  text-align: center;
}

.section-title, .lead-copy, .developer-mark, .contact-copy, .image-panel, .map-card, .map-frame, .enquiry-box {
  margin-left: auto;
  margin-right: auto;
}

.site-nav-list .nav-link:hover, .site-nav-list .nav-link:focus, .navbar-nav .nav-link.active {
  background: transparent;
  color: #738637;
}

#overview .highlight-grid .info-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: flex-start;
  gap: 1rem;
  padding: 15px;
  border-color: rgba(36, 79, 42, .14);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(249, 247, 240, .9));
  box-shadow: 0 18px 44px rgba(23, 35, 26, .1);
}

#overview .highlight-grid .icon-box {
  width: 54px;
  height: 54px;
  margin: 0;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(111, 141, 50, .16), rgba(79, 176, 175, .1));
  color: var(--leaf);
  font-size: 1.28rem;
  box-shadow: inset 0 0 0 1px rgba(36, 79, 42, .16),
    0 10px 22px rgba(36, 79, 42, .1);
}

#overview .highlight-grid .highlight-content {
  min-width: 0;
}

#overview .highlight-grid .info-card h3 {
  margin: 0 0 .45rem;
  font-size: 1.12rem;
  line-height: 1.2;
}

#overview .highlight-grid .info-card p {
  max-width: 46rem;
  color: #647064;
  font-size: 1.02rem;
  line-height: 1.55;
}

.overview-icon-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem 2rem;
  padding: 1.45rem 1rem;
  border-radius: 12px;
  overflow: hidden;
  background:
    /* url("../images/oval.png") left -12px top -6px / 84px auto no-repeat,
    url("../images/half-bottom.png") center top -14px / 120px auto no-repeat,
    url("../images/half-top.png") right -8px bottom -4px / 118px auto no-repeat, */
    #132a45;
}

.overview-icon-item {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: .65rem;
  min-width: 0;
  text-align: center;
}

.overview-icon-item img {
  width: 74px;
  height: 74px;
  object-fit: contain;
}

.overview-icon-item p {
  margin: 0;
  color: #fff;
  font-size: .98rem;
  font-weight: 500;
  line-height: 1.25;
}

#overview .overview-row {
  --bs-gutter-x: clamp(1.5rem, 3vw, 3.5rem);
}

@media (min-width: 992px) {
  #overview .overview-row {
    align-items: stretch;
  }

  #overview .overview-row > .col-lg-6 {
    display: flex;
  }

  #overview .overview-row > .col-lg-6:first-child {
    flex-direction: column;
  }

  #overview .project-overview-grid {
    flex: 1;
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  #overview .image-panel {
    flex: 1;
  }
}

#overview .image-panel {
  width: 100%;
  min-height: 635px;
}

#overview .image-panel img {
  min-height: 635px;
}

.project-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.5rem;
  margin-top: 0rem;
}

.project-overview-item {
  padding: 1rem 1.05rem;
  border: 1px solid rgba(69, 105, 67, .16);
  border-radius: 10px;
  background:

    #132a45;
  box-shadow: 0 12px 30px rgba(69, 105, 67, .08);
}

.project-overview-item span {
  display: block;
    margin-bottom: .35rem;
    color: var(--brand-teal, #4dadab);
    font-size: 1.76rem;
    line-height: 1.2;
    /* letter-spacing: .08em; */
    text-transform: uppercase;
    font-weight: 500;
}

.project-overview-item p {
  margin: 0;
  color: #fff;
  font-size: 1.02rem;
  line-height: 1.35;
}

#specification .spec-grid .info-card {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  align-items: flex-start;
  column-gap: 1rem;
  row-gap: .35rem;
  min-height: 148px;
  padding: 1.45rem 1.55rem;
  text-align: left;
}

#specification .spec-grid .icon-box {
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 46px;
  height: 46px;
  margin: 0;
  border-radius: 10px;
  flex: 0 0 46px;
}

#specification .spec-grid .info-card h3 {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
}

#specification .spec-grid .info-card p {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
}

.amenity-card:hover, .amenity-card:focus, .gallery-card:hover, .gallery-card:focus {
  color: inherit;
  text-decoration: none;
}

.amenity-card:focus-visible, .gallery-card:focus-visible {
  outline: 2px solid var(--aqua);
  outline-offset: 4px;
}

.booking-contact-grid {
  display: grid;
  gap: 1rem;
}

.booking-contact-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  min-height: 112px;
  padding: 1.35rem 1.45rem;
  border: 1px solid rgba(36, 79, 42, .14);
  border-radius: 12px;
  background: rgba(255, 255, 255, .86);
  color: #0b3558;
  text-align: left;
  text-decoration: none;
  box-shadow: 0 16px 42px rgba(23, 35, 26, .08);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.booking-contact-card:hover, .booking-contact-card:focus {
  color: var(--ink);
  border-color: rgba(79, 176, 175, .34);
  box-shadow: 0 20px 52px rgba(23, 35, 26, .12);
  text-decoration: none;
  transform: translateY(-2px);
}

.booking-contact-card:focus-visible {
  outline: 2px solid var(--aqua);
  outline-offset: 4px;
}

.booking-contact-card .icon-box {
  width: 52px;
  height: 52px;
  margin: 0;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(111, 141, 50, .16), rgba(79, 176, 175, .1));
  color: var(--leaf);
  font-size: 1.16rem;
}

.booking-contact-card h3 {
  margin: 0 0 .3rem;
  font-size: 1rem;
  line-height: 1.25;
}

.booking-contact-card p {
  margin: 0;
  color: #0B3558;
  font-size: 1rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

#developer .highlight-grid .info-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: flex-start;
  gap: 1rem;
  padding: 1.45rem 1.55rem;
  text-align: left;
}

#developer .highlight-grid .icon-box {
  width: 54px;
  height: 54px;
  margin: 0;
  border-radius: 12px;
  flex: 0 0 54px;
}

#developer .highlight-grid .highlight-content {
  min-width: 0;
}

#developer .highlight-grid .info-card h3 {
  margin: 0 0 .45rem;
  font-size: 1.04rem;
  line-height: 1.25;
}

#developer .highlight-grid .info-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

strong, b {
  font-weight: 500;
}

.navbar, .navbar > .container {
  border-color: rgba(69, 105, 67, .12);
}

.site-nav-list .nav-link:hover, .site-nav-list .nav-link:focus, .navbar-nav .nav-link.active, .nav-link:hover, .nav-link:focus, .location-list span, main section .section-title .title-accent {
  color: var(--brand-teal);
}
.nav-link:hover, .nav-link:focus {
  background-color: var(--brand-teal);
  color:#fff;
}

.btn-brand, .nav-pills .nav-link.active, .site-nav-list .nav-call, .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: var(--brand-green);
  border-color: var(--brand-green);
  color: #fff;
}

.btn-brand:hover, .btn-brand:focus, .site-nav-list .nav-call:hover, .site-nav-list .nav-call:focus, .owl-theme .owl-nav [class*=owl-]:hover {
  background: var(--brand-olive) !important;
  border-color: var(--brand-olive) !important;
  color: #fff !important;
}

#floor-plan {
  background: linear-gradient(135deg, rgba(77, 173, 171, .12) 0%, rgba(255, 255, 255, .95) 46%, rgba(174, 196, 96, .18) 100%);
}

#floor-plan .section-kicker {
  background: linear-gradient(135deg, rgba(77, 173, 171, .18), rgba(174, 196, 96, .18)),
    rgba(255, 255, 255, .9);
}

#floor-plan .plan-card {
  border-color: rgba(77, 173, 171, .22);
  background: rgba(255, 255, 255, .96);
}

#floor-plan .nav-pills .nav-link {
  /* background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(77, 173, 171, .18); */
}

#floor-plan .nav-pills .nav-link.active {
  background: var(--brand-teal);
  border-color: var(--brand-teal);
  color: #fff;
}
main section.section-dark .section-kicker{
    background: var(--brand-teal) !important;
    border-color:  var(--brand-teal)!important;
    color: #0B3558 !important;
}
#floor-plan .furniture-layout-block {
  margin-top: clamp(2.4rem, 5vw, 4rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(77, 173, 171, .18);
}

#floor-plan .furniture-layout-heading {
  max-width: 760px;
  margin: 0 auto 1.4rem;
}

#floor-plan .furniture-layout-heading span {
  display: inline-block;
  margin-bottom: .45rem;
  color: var(--brand-teal);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}

#floor-plan .furniture-layout-heading h3 {
  margin: 0;
  color: var(--premium-ink);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 1.25;
}

/* .section-dark, footer {
  background: linear-gradient(135deg, #456943 0%, #456943 58%, #738637 100%);
  color: #fff;
} */

.info-card, .plan-card, .enquiry-box, .contact-card, .map-card, .booking-contact-card {
  border-color: rgba(69, 105, 67, .16);
}

.info-card, .booking-contact-card, .contact-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(247, 249, 240, .9));
}

.icon-box, .contact-icon, .booking-contact-card .icon-box, #overview .highlight-grid .icon-box, #specification .spec-grid .icon-box, #developer .highlight-grid .icon-box {
  background: linear-gradient(135deg, rgba(77, 173, 171, .26) 0%, rgba(174, 196, 96, .24) 52%, rgba(115, 134, 55, .22) 100%);
  color: var(--brand-green);
  box-shadow: inset 0 0 0 1px rgba(77, 173, 171, .28),
    0 10px 24px rgba(69, 105, 67, .12);
}

.booking-contact-card .icon-box {
  background: linear-gradient(135deg, var(--brand-green), #132a45);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16),
    0 12px 26px rgba(19, 42, 69, .24);
}

.section-dark .icon-box, .section-dark .contact-icon {
  background: linear-gradient(135deg, rgba(77, 173, 171, .28), rgba(174, 196, 96, .28), rgba(115, 134, 55, .2));
  color: #152c45;
  box-shadow: inset 0 0 0 1px rgba(174, 196, 96, .28);
}

.form-control:focus, .form-select:focus, .amenity-card:focus-visible, .gallery-card:focus-visible, .booking-contact-card:focus-visible {
  border-color: var(--brand-teal);
  box-shadow: 0 0 0 .22rem rgba(77, 173, 171, .16);
  outline-color: var(--brand-teal);
}

.map-overlay span, .eyebrow {
  color: var(--brand-teal);
}

.amenity-card::after,
.gallery-card::after {
  display: none;
}

.amenity-card span,
.gallery-card span {
    left: 0;
    right: 0;
    bottom: 0;
    max-width: none;
    padding: .8rem 1rem;

    border-top: none;
    border-radius: 0;

    /* Left & right light, center darker */
    background:linear-gradient(
        to right,
        rgba(11, 53, 88, 0.35) 0%,
        rgba(11, 53, 88, 0.70) 45%,
        rgba(11, 53, 88, 0.75) 50%,
        rgba(11, 53, 88, 0.40) 75%,
        rgba(11, 53, 88, 0.35) 100%
    );

    color: #fff;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: 1px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .5);
    text-align: center;
}
#specification .spec-grid .icon-box i {
  color: #fff;
}

.hero, .hero .owl-carousel, .hero .owl-stage-outer, .hero .owl-stage, .hero .owl-item, .hero-swiper, .hero-swiper .swiper-wrapper, .hero-swiper .swiper-slide {
  overflow: hidden;
}

.hero .owl-stage {
  display: flex;
}

.hero .owl-item {
  flex: 0 0 auto;
}

@media (min-width: 768px) {
  .hero-simple-slider .hero-visual img {
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
  }
}

@media (max-width: 767px) {
  .hero {
    background: #fff;
    overflow: visible;
  }

  .hero,
  .hero .owl-carousel,
  .hero .owl-stage-outer,
  .hero .owl-stage,
  .hero .owl-item,
  .hero-swiper,
  .hero-swiper .swiper-wrapper,
  .hero-swiper .swiper-slide,
  .hero-slide {
    height: auto;
    min-height: 0;
  }

  .hero-content {
    position: relative;
    inset: auto;
    padding: 0px;
    background: #fff;
    color: #0B3558;
    text-align: center;
    display: none;
  }

  .hero-content .container {
    padding-right: 0;
    padding-left: 0;
  }
.hero-simple-pagination{

}
  .hero-logo-box {
    width: min(250px, 76vw);
    margin-bottom: .85rem;
  }

  .hero h1 {
max-width: 100%;
        font-size: clamp(2rem, 8.5vw, 3rem);
        line-height: 1.08;
        text-align: center;
        color: #0b3558;
  }

  .main-slider__swiper-button {
    top: min(46vw, 210px);
    transform: translateY(-50%);
  }
.floor-plan-compare, .floor-plan-support {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
    gap: 1.15rem;
}
  .hero-simple-pagination {
    top: min(88vw, 395px);
    bottom: auto;
  }
  .hero-content-box{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
   
    padding-top: 0rem;
}
.hero-content-box-right {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    flex-direction: column;
  padding-top: 0rem;
}
.floor-plan-compare .plan-card img {
  height: auto !important;
}

}

@media (min-width: 1200px) {
  .site-nav-list {
    position: static;
    padding-right: 0;
    display: flex !important;
    align-items: center;
    justify-content: center;
    column-gap: clamp(1.45rem, 2vw, 2.45rem) !important;
    width: 100%;
  }

  .site-nav-list .nav-phone-item {
           position: absolute;
        right: 25px;
        top: 20px;
        transform: none;
        justify-self: end;
  }

  .site-nav-list .nav-phone {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: 0;
    border-radius: 50%;
    background: var(--brand-green);
    color: #fff;
    box-shadow: 0 12px 28px rgba(69, 105, 67, .16);
    width: 48px;
    height: 48px;
    justify-content: center;
    font-size: 1.12rem;
  }

  .site-nav-list .nav-phone:hover, .site-nav-list .nav-phone:focus {
    background: var(--brand-olive);
    color: #fff;
  }

  .navbar > .container {
    position: relative;
    max-width: 1500px;
  }

  .navbar-brand {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    margin: 0;
    transform: translate(-50%, -50%);
  }

  .navbar-collapse {
    width: 100%;
    flex-grow: 0;
  }

  .site-nav-list .nav-item:nth-child(4) {
    margin-right: clamp(180px, 15vw, 265px);
  }

  .site-nav-list .nav-item:nth-child(5) {
    grid-column: auto;
  }

  .site-nav-list .nav-link {
    font-size: clamp(.82rem, .93vw, 1.05rem);
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
  }

  .site-nav-list .nav-phone span {
    display: none;
  }
}

.nav-phone {
  font-weight: 500;
}

.nav-phone i {
  line-height: 1;
}

.floating-enquiry-tab {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 1040;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .9rem 1rem;
  border-radius: 8px 0 0 8px;
  background: var(--brand-green);
  color: #c39842;
  font-size: .9rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 16px 38px rgba(23, 35, 26, .22);
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  height:150px;
  align-items: center;
  justify-content: center;
}

.floating-enquiry-tab i {
  font-size: 1.05rem;
}

.floating-enquiry-tab:hover, .floating-enquiry-tab:focus {
  background: var(--brand-teal);
  color: #fff;
}

.floating-scroll-down {
  position: fixed;
  right: 1.25rem;
  bottom: 1.5rem;
  z-index: 1040;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(11, 53, 88, .25);
  border-radius: 50%;
  color: #fff;
  background: #0B3558;
  box-shadow: 0 10px 24px rgba(11, 53, 88, .22);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.floating-scroll-down:hover,
.floating-scroll-down:focus-visible {
  color: #fff;
  background: var(--brand-teal);
  transform: translateY(3px);
}

@media (max-width: 767px) {
  .floating-scroll-down {
    right: 1rem;
    bottom: 5rem;
  }
  .site-nav-list {

    padding: 15px;
}
.site-nav-list .nav-link {
 
    font-size: clamp(.98rem, .78vw, .82rem);

}
    .navbar-brand img {

        margin-top: 10px;
    }

}

.enquiry-modal .modal-content {
  border: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 28px 90px rgba(16, 24, 17, .28);
}

.enquiry-modal .modal-header {
  align-items: flex-start;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  border: 0;
  background: linear-gradient(135deg, rgba(69, 105, 67, .96), rgba(77, 173, 171, .9));
  color: #fff;
}

.enquiry-modal .modal-kicker {
  display: block;
  margin-bottom: .35rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
  opacity: .86;
}

.enquiry-modal .modal-title {
  margin: 0;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  line-height: 1.1;
}

.enquiry-modal .btn-close {
  filter: invert(1) grayscale(1) brightness(2);
  opacity: .9;
}

.enquiry-modal .modal-body {
  padding: 1.5rem;
  background: #f7f9f0;
}

.enquiry-box-modal {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: left;
}

.location-map-image {
  position: relative;
  display: block;
  min-height: 430px;
  border-radius: 8px;
  overflow: hidden;
  background: #eef0ea;
  box-shadow: 0 24px 70px rgba(69, 105, 67, .13);
  color: inherit;
  cursor: zoom-in;
  text-decoration: none;
}

.location-map-image:hover, .location-map-image:focus {
  color: inherit;
  text-decoration: none;
}

.location-map-image:focus-visible {
  outline: 2px solid var(--brand-teal);
  outline-offset: 4px;
}

.location-map-image img, .location-map-image iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  display: block;
}

.location-map-image img {
  object-fit: cover;
}

.location-map-image iframe {
  border: 0;
}

.location-map-badge {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  max-width: calc(100% - 2.5rem);
  padding: .85rem 1rem;
  border-radius: 6px;
  background: rgba(16, 24, 17, .86);
  color: #fff;
  box-shadow: 0 14px 36px rgba(0, 0, 0, .2);
}

.location-map-badge i {
  color: var(--brand-teal);
}

.floor-plan-compare, .floor-plan-support {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

.floor-plan-compare .plan-card img {
  height: 620px;
}

.floor-plan-support .plan-card img {
  height: 420px;
}

.gallery-tab-content {
  min-height: 470px;
}

.gallery-tab-content .tab-pane {
  width: 100%;
}

.footer-social {
  display: grid;
  gap: .65rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  width: fit-content;
}

.footer-social i {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

.footer-contact-line {
  display: flex;
  align-items: center;
  gap: .7rem;
}

.footer-contact-line i {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

.footer-contact-line span {
  overflow-wrap: anywhere;
}

.leaf-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.leaf-section > .container {
  position: relative;
  z-index: 2;
}

.leaf-corner {
  position: absolute;
  display: block;
  width: 200px;
  aspect-ratio: .78;
  background: center / contain no-repeat;
  opacity: .58;
  pointer-events: none;
  z-index: 1;
  filter: drop-shadow(0 12px 18px rgba(69, 105, 67, .12));
  animation: leaf-float-left 9s ease-in-out infinite;
}

.leaf-corner-top-left {
  top: clamp(.65rem, 2vw, 1.5rem);
  left: clamp(.65rem, 2vw, 1.5rem);
  background-image: url("../images/contact_left_top_image\ .png");
  transform: rotate(-2deg);
}

.leaf-corner-bottom-right {
  right: clamp(.65rem, 2vw, 1.5rem);
  bottom: clamp(.65rem, 2vw, 1.5rem);
  background-image: url("../images/contact_right_top_image.png");
  animation-delay: -3.5s;
}

.section-soft .leaf-corner {
  opacity: .46;
}

.section-dark .leaf-corner, .contact-section .leaf-corner {
  opacity: .34;
}

@keyframes leaf-float-left {
  0% {
    translate: -12px 0;
    rotate: -4deg;
    filter: saturate(1);
  }

  50% {
    translate: 12px 0;
    rotate: 4deg;
    filter: saturate(1.12);
  }

  100% {
    translate: -12px 0;
    rotate: -4deg;
    filter: saturate(1);
  }
}

main section p, main section li, .info-card p, .project-overview-item p, .location-list div, .booking-contact-card p, .contact-card p, .developer-mark p, .form-label, .form-text {
  font-size: clamp(1.08rem, 1.12vw, 1.22rem);
  line-height: 1.65;
}

.info-card h3, .booking-contact-card h3, .contact-card h3, .plan-card h3 {
  font-size: clamp(1.16rem, 1.25vw, 1.38rem);
  line-height: 1.25;
}

.hero p, footer p, footer a, .footer-contact-line, .form-control, .form-select, textarea.form-control, .btn, .location-map-badge, .gallery-card span, .amenity-card span {
  font-size: clamp(1.05rem, 1.05vw, 1.2rem);
  line-height: 1.6;
}

.info-card h3, .booking-contact-card h3, .contact-card h3, .plan-card h3, footer h3 {
  font-size: clamp(1.26rem, 1.35vw, 1.5rem);
}

/* ==========================================================
   Anisha Garden — Requested Blue Theme Update
   Applied colour: #0B3558 | RGB(11, 53, 88)
   ========================================================== */

main section .section-kicker,
.section-kicker {
  background: #0B3558 !important;
  border-color: #0B3558 !important;
  color: #ffffff !important;
}

main section .section-title,
.section-title,
main section .section-title .title-accent,
.section-title .title-accent,
.title-accent {
  color: #0B3558 !important;
}

#floor-plan .section-kicker {
  background: #0B3558 !important;
  border-color: #0B3558 !important;
  color: #ffffff !important;
}

#floor-plan .nav-pills .nav-link.active,
.nav-pills .nav-link.active {
 background: #c39842 !important;
    border-color: #c39842  !important;
    color: #ffffff !important;
}

.btn-brand {
  background: #0B3558 !important;
  border-color: #0B3558 !important;
  color: #ffffff !important;
}

.btn-brand:hover,
.btn-brand:focus {
  background: #082b48 !important;
  border-color: #082b48 !important;
  color: #ffffff !important;
}


.specification-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.specification-points li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.specification-points li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    width: 19px;
    height: 19px;
    background:#FFFFFF;
    color: #0B3558;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    line-height: 19px;
}

/* ==========================================================
   Anisha Garden — White Heading Text on Solid Blue Sections
   Location Map | Specifications | Booking Enquiry
   ========================================================== */

/* Specifications section */
#specification .section-title,
#specification .section-title .title-accent,
#specification .title-accent {
  color: #FFFFFF !important;
}

/* Location / map section: applies where the blue background uses .section-dark */
.section-dark .section-title,
.section-dark .section-title .title-accent,
.section-dark .title-accent {
  color: #FFFFFF !important;
}

/* Booking enquiry / contact section */
.contact-section .section-title,
.contact-section .section-title .title-accent,
.contact-section .title-accent,
#contact .section-title,
#contact .section-title .title-accent,
#contact .title-accent {
  color: #0b3558 !important;
}

/* ==========================================================
   Thank You Page
   ========================================================== */

.thank-you-page {
  min-height: 100vh;
}

.thank-you-main {
  min-height: calc(100vh - 88px);
}

.thank-you-hero {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 88px);
  padding: clamp(5rem, 8vw, 7rem) 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(247, 249, 240, .96), rgba(255, 255, 255, .94) 46%, rgba(77, 173, 171, .12) 100%),
    #f7f9f0;
}

.thank-you-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(11, 53, 88, .82) 0%, rgba(11, 53, 88, .56) 42%, rgba(11, 53, 88, .12) 100%),
    url("../images/Right side elevation view_crop.jpg") center / cover no-repeat;
  opacity: .18;
}

.thank-you-panel {
  position: relative;
  z-index: 2;
  padding: clamp(1.6rem, 4vw, 3rem);
  border: 1px solid rgba(69, 105, 67, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--premium-shadow);
  text-align: center;
  backdrop-filter: blur(12px);
}

.thank-you-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  margin-bottom: 1.35rem;
  border-radius: 50%;
  background: #0B3558;
  color: #fff;
  font-size: 2.4rem;
  box-shadow: 0 18px 42px rgba(11, 53, 88, .22);
}

.thank-you-panel .section-kicker {
  display: inline-flex;
  width: auto;
}

.thank-you-panel .section-title {
  max-width: none;
  margin-right: auto;
  margin-left: auto;
      font-size: clamp(2.85rem, 3.9vw, 4.75rem);
}

.thank-you-panel .lead-copy {
  max-width: 760px;
  margin: 0 auto;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .85rem;
  margin-top: 2rem;
}

.thank-you-outline-btn {
  border: 1px solid rgba(11, 53, 88, .24);
  border-radius: 4px;
  background: #fff;
  color: #0B3558;
  font-weight: 500;
  padding: .78rem 1.1rem;
  box-shadow: 0 12px 30px rgba(11, 53, 88, .08);
}

.thank-you-outline-btn:hover,
.thank-you-outline-btn:focus {
  border-color: #0B3558;
  background: #0B3558;
  color: #fff;
}

.thank-you-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .8rem 1.2rem;
  margin-top: 1.5rem;
  color: #0B3558;
  font-size: clamp(1rem, 1vw, 1.12rem);
}

.thank-you-contact span {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}

.thank-you-contact i {
  color: var(--brand-teal);
}

@media (max-width: 575px) {
  .thank-you-actions .btn {
    width: 100%;
  }

  .thank-you-contact {
    align-items: center;
    flex-direction: column;
  }
}
.top-bottom-grid{
  min-height: 635px;
}
.hero-content h2{
  padding:10px 45px; 
background: linear-gradient(
    to right,
    rgba(4, 8, 75, 0.10) 0%,
    rgba(4, 8, 75, 0.75) 18%,
    rgba(4, 8, 75, 0.85) 25%,
    rgba(4, 8, 75, 0.85) 65%,
    rgba(4, 8, 75, 0.75) 78%,
    rgba(4, 8, 75, 0.10) 100%
);
}