/*====================================
        GOOGLE FONT
====================================*/
body {
  background-color: #000000 !important;
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
}
 .hero-image-section {
  margin-top: 3rem;
 }
 @media (max-width: 991.98px) {
  .hero-image-section {
   margin-top: 0.7rem;
  }
 }
/*====================================
        HEADER
====================================*/
.custom-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

/*====================================
        NAVBAR
====================================*/
.navbar {
  background: #0e0e0e;
  padding: 12px 0;
  transition: 0.35s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/*====================================
        LOGO
====================================*/
.logo-img {
  height: 58px;
  width: auto;
  transition: 0.3s;
}

.custom-header.scrolled .logo-img {
  height: 58px;
}

/*====================================
        MENU
====================================*/
.navbar-nav {
  gap: 30px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 7px;

  color: #d9d9d9 !important;

  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;

  padding: 8px 0 !important;

  transition: 0.35s;
}

/* icon */
.nav-link img {
  width: 15px;
  height: 15px;
  object-fit: contain;
  transition: 0.3s;
}

/* hover */
.nav-link:hover {
  color: #b48b56 !important;
}

/* active */
.nav-link.active {
  color: #ffffff !important;
}

/* underline animation */
.nav-link::after {
  content: "";

  position: absolute;

  left: 0;

  bottom: -6px;

  width: 0;

  height: 2px;

  background: #b48b56;

  transition: 0.35s;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/*====================================
        CONTACT BUTTON
====================================*/

.contact-btn {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  color: #fff;

  text-decoration: none;

  background: #3b2d1f;

  border: 1px solid #7b6447;

  border-radius: 30px;

  padding: 10px 22px;

  font-size: 11px;

  font-weight: 600;

  letter-spacing: 1px;

  text-transform: uppercase;

  transition: 0.35s;
}

.contact-btn i {
  width: 28px;

  height: 28px;

  border-radius: 50%;

  border: 1px solid rgba(255, 255, 255, 0.25);

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 12px;
}

.contact-btn:hover {
  color: #fff;

  background: #b48b56;

  border-color: #b48b56;

  text-decoration: none;
}

/*====================================
        HAMBURGER
====================================*/

.navbar-toggler {
  box-shadow: none !important;

  border: none;

  padding: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/*====================================
        STICKY EFFECT
====================================*/

.custom-header.scrolled .navbar {
  background: #000;

  padding: 10px 0;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

/*====================================
        RESPONSIVE
====================================*/

@media (max-width: 991px) {
  .navbar {
    padding: 8px 0;
  }

  .logo-img {
    height: 42px;
  }

  .custom-header.scrolled .logo-img {
    height: 40px;
  }

  .navbar-collapse {
    margin-top: 18px;

    background: #111;

    border-radius: 12px;

    padding: 15px;
  }

  .navbar-nav {
    gap: 0;
  }

  .nav-link {
    padding: 14px 5px !important;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-link::after {
    display: none;
  }

  .enq_form .contact-btn {
    width: 100%;

    justify-content: center;

    margin-top: 18px;
  }
}

@media (max-width: 576px) {
  .logo-img {
    height: 38px;
  }

  .enq_form .contact-btn {
    font-size: 10px;

    padding: 10px 18px;
  }
}
/*=====================================
        HERO IMAGE SECTION
=====================================*/
.hero-image-section {
  width: 100%;
  line-height: 0;
}

/* Media wrapper – clips the zooming image */
.hero-media {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  transform-origin: center center;
  animation: heroZoom 18s ease-in-out infinite alternate;
  will-change: transform;
}

/* Zoom in / zoom out (Ken Burns) */
@keyframes heroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.12);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-img {
    animation: none;
  }
}

.hero-img--mobile {
  display: none;
}

/* Light overlay – stronger on the left for tagline legibility */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.55) 35%,
    rgba(0, 0, 0, 0.2) 70%,
    rgba(0, 0, 0, 0.1) 100%
  );
}

/* Taglines – left aligned, vertically centred */
.hero-caption {
  position: absolute;
  z-index: 3;
  left: 6%;
  top: 50%;
  transform: translateY(-50%);
  max-width: 660px;
  text-align: left;
  line-height: 1.25;
}

/* soft dark scrim directly behind the text */
.hero-caption::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -28px -40px;
  background: radial-gradient(
    ellipse at center left,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.32) 55%,
    rgba(0, 0, 0, 0) 100%
  );
  filter: blur(4px);
}

.hero-caption__title {
  margin: 0 0 20px;
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: clamp(2.1rem, 4.6vw, 3.8rem);
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6), 0 6px 30px rgba(0, 0, 0, 0.75);
}

.hero-caption__price {
  margin: 0 0 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: clamp(1.05rem, 1.8vw, 1.5rem);
  letter-spacing: 0.4px;
  color: #f6ede0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6), 0 4px 20px rgba(0, 0, 0, 0.7);
}

.hero-caption__price sup {
  font-size: 0.7em;
}

.hero-caption__location {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: clamp(0.9rem, 1.3vw, 1.1rem);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6), 0 4px 20px rgba(0, 0, 0, 0.7);
}

/* Download Brochure button */
.hero-brochure-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 14px 32px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.72rem, 1vw, 0.82rem);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: #1a1206;
  background: linear-gradient(135deg, #d8a86a 0%, #b48b56 100%);
  border: 1px solid #e2be86;
  border-radius: 30px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  transition: 0.35s ease;
}

.hero-brochure-btn:hover {
  color: #1a1206;
  background: linear-gradient(135deg, #e8bd82 0%, #c99a63 100%);
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.55);
}

.hero-brochure-btn i {
  font-size: 0.95em;
}

.btn-ico {
  flex: none;
  width: 15px;
  height: 15px;
}

@media (max-width: 991.98px) {
  .hero-brochure-btn {
    margin-top: 20px;
    padding: 12px 26px;
  }
}

@media (max-width: 991.98px) {
  .hero-img--desktop {
    display: none;
  }

  .hero-img--mobile {
    display: block;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0.25) 30%,
      rgba(0, 0, 0, 0.82) 100%
    );
  }

  .hero-caption {
    left: 0;
    right: 0;
    top: auto;
    bottom: 9%;
    transform: none;
    max-width: none;
    padding: 0 22px;
  }

  .hero-caption__title {
    margin-bottom: 14px;
  }
}

/*=====================================
        HERO SECTION (legacy)
=====================================*/
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 750px;
  overflow: hidden;
}

/* =========================================
   HERO SECTION
========================================= */

.hero-section {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
  background: #fff;
}


/* =========================================
   DESKTOP VIDEO
========================================= */

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* =========================================
   HERO CONTAINER
========================================= */

.hero-container {
  position: relative;
  z-index: 2;
  height: 100%;
}


/* =========================================
   HERO CONTENT
========================================= */

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 40px;
}


/* CODENAME */

.codename {
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
}


/* LOGO */

.hero-logo {
  width: 280px;
  max-width: 100%;
  height: auto;
  margin-bottom: 25px;
}


/* TITLE */

.hero-title {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 25px;
}


/* =========================================
   DIVIDER
========================================= */

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.hero-divider span {
  display: block;
  width: 60px;
  height: 1px;
  background: #b18a4a;
}

.hero-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #b18a4a;
  white-space: nowrap;
}


/* =========================================
   MOBILE VIDEO
========================================= */

.mobile-video-wrapper {
  display: none;
}

.mobile-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 991.98px) {

  .hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: #000;
  }

  /* Hide desktop video */
  .desktop-video {
    display: none;
  }

  /* Hero container */
  .hero-container {
    position: relative;
    z-index: 5;
    width: 100%;
    height: 100%;
    padding: 0;
  }

  /* Mobile video becomes background */
  .mobile-video-wrapper {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
  }

  .mobile-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }

  /* Dark overlay for better text visibility */
  .mobile-video-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.30);
    z-index: 2;
  }

  /* Content on top of video */
  .hero-container > .row {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-container > .row > div {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
  }

  .hero-content {
    position: relative;
    z-index: 20;
    padding: 20px;
    text-align: center;
    color: #fff;
  }

  .codename {
    color: #fff;
    margin-bottom: 15px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
  }

  .hero-logo {
    width: 220px;
    max-width: 75%;
    height: auto;
    margin-bottom: 25px;
  }

  .hero-title {
    color: #fff;
    font-size: 25px;
    line-height: 1.3;
    font-weight: 500;
    margin-bottom: 25px;
  }

  .hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .hero-divider span {
    width: 40px;
    height: 1px;
    background: #b18a4a;
  }

  .hero-tag {
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    white-space: nowrap;
  }

}
/* Dark Overlay */
/* .hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
} */

/* Content Above Background */
.hero-section .container-fluid,
.hero-section .row {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 520px;
  margin-left: auto;
  margin-right: 7%;
  text-align: center;
}

/*=====================================
            LOGO
=====================================*/
.hero-logo {
  max-width: 250px;
  width: 100%;
  margin-bottom: 28px;
}
.codename {
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 6px;
  line-height: 1.4;
  margin-bottom: 10px;
}

/*=====================================
            SUB TITLE
=====================================*/
.hero-title {
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  font-size: 36px;
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 15px;
}

/*=====================================
        GOLD STRIP
=====================================*/
.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 45px;
}

.hero-divider span {
  width: 70px;
  height: 2px;
  background: #b9925a;
}

.hero-tag {
  background: linear-gradient(90deg, #8d683e, #b9925a, #8d683e);
  color: #fff;
  padding: 12px 28px;
  margin: 0 15px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

/*=====================================
            BUTTON
=====================================*/
.hero-btn {
  display: inline-block;
  padding: 16px 42px;
  border: 1px solid #b9925a;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: 0.35s;
}

.hero-btn:hover {
  background: #b9925a;
  color: #fff;
}

/*=====================================
        DESKTOP ALIGNMENT
=====================================*/
@media (min-width: 992px) {
  .hero-section .row {
    height: 100vh;
  }
}

/*=====================================
            TABLET
=====================================*/
@media (max-width: 991px) {
  .hero-section {
    min-height: 700px;
    height: 90vh;
  }

  .hero-content {
    margin: auto;
    padding: 0 30px;
  }

  .hero-logo {
    max-width: 270px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-tag {
    font-size: 15px;
    padding: 10px 18px;
  }

  .hero-divider span {
    width: 45px;
  }
}

/*=====================================
            MOBILE
=====================================*/
@media (max-width: 767px) {
  .hero-section {
    height: 100vh;
  }

  .hero-content {
    margin: auto;
    padding: 0 20px;
    text-align: center;
  }

  .hero-logo {
    max-width: 220px;
    margin-bottom: 25px;
  }

  .hero-title {
    font-size: 22px;
    margin-bottom: 25px;
  }

  .hero-divider {
    flex-direction: column;
    gap: 12px;
  }

  .hero-divider span {
    display: none;
  }

  .hero-tag {
    font-size: 13px;
    padding: 10px 16px;
  }

  .hero-btn {
    width: 100%;
    max-width: 250px;
  }
}
.line-divider {
  background-color: #000000;
}
/* ===== SECTION ===== */
.address-section {
  background: #050505;
  position: relative;
  overflow: hidden;
}

/* subtle luxury texture lines */
.address-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(255, 255, 255, 0.04) 0,
      transparent 25%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(255, 255, 255, 0.03) 0,
      transparent 20%
    );
  opacity: 0.35;
  pointer-events: none;
}

/* ===== IMAGE ===== */
.address-image-wrapper {
  width: 230px;
  border: 2px solid #b58a4a;
  border-radius: 22px;
  padding: 4px;
  background: #0b0b0b;
  box-shadow:
    0 0 0 1px rgba(181, 138, 74, 0.35),
    0 12px 30px rgba(0, 0, 0, 0.55);
}

.address-image {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

/* ===== DIVIDER ===== */
.address-divider {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 260px;
  background: linear-gradient(
    to bottom,
    rgba(181, 138, 74, 0),
    rgba(181, 138, 74, 0.6),
    rgba(181, 138, 74, 0)
  );
}

/* ===== TYPOGRAPHY ===== */
.address-title {
  color: #b58a4a;
  font-size: 42px;
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
}

.address-text {
  color: #d7d7d7;
  font-size: 19px;
  line-height: 1.8;
  max-width: 700px;
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

.address-text strong {
  color: #ffffff;
  font-weight: 700;
}

/* ===== BUTTON ===== */
.address-btn {
  background: #2a2114;
  border: 1px solid #7a5b2f;
  color: #f3e7cf;
  padding: 14px 34px;
  border-radius: 16px;
  font-size: 17px;
  font-weight: 500;
  transition: 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.address-btn:hover {
  background: #3a2b18;
  color: #fff;
  transform: translateY(-1px);
}

/* ===== FLOATING CHAT ===== */
.chat-floating {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 74px;
  height: 74px;
  align-items: center;
  justify-content: center;
}

.chat-floating img {
  width: 74px;
  height: auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
  .address-section {
    text-align: center;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .address-image-wrapper {
    width: 200px;
  }

  .address-image {
    height: 290px;
  }

  .address-title {
    font-size: 32px;
    line-height: 1.15;
    letter-spacing: 1px;
  }

  .address-text {
    font-size: 16px;
    line-height: 1.75;
    max-width: 100%;
  }

  .address-btn {
    width: 100%;
    max-width: 300px;
    padding: 13px 24px;
  }
}

@media (max-width: 575.98px) {
  .address-title {
    font-size: 28px;
  }

  .address-text {
    font-size: 15px;
  }

  .address-image-wrapper {
    width: 180px;
  }

  .address-image {
    height: 260px;
  }
}
.section-divider {
  background-color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
}
/*==========================
      AMENITIES SECTION
==========================*/

.amenities-section {
  position: relative;
  background: #070707;
  overflow: hidden;
  padding: 80px 0;
}

/* background lines */

.amenities-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(images/bg-pattern.png) center center/cover no-repeat;
  opacity: 0.12;
  pointer-events: none;
}
.amenities-section::after {
  content: "";
  position: absolute;
  right: -140px;
  top: -80px;
  width: 520px;
  height: 130%;
  border: 2px solid rgba(187, 144, 70, 0.25);
  border-radius: 50%;
  transform: rotate(16deg);
}
.amenities-section::before,
.amenities-section::after {
  pointer-events: none;
}
.gallery-section::after {
  content: "";
  position: absolute;
  right: -140px;
  top: -80px;
  width: 620px;
  height: 230%;
  border: 2px solid rgba(187, 144, 70, 0.25);
  border-radius: 50%;
  transform: rotate(18deg);
}
.gallery-section::before,
.gallery-section::after {
  pointer-events: none;
}

.amenities-title {
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

.amenity-box {
  text-align: center;
  transition: 0.35s;
  position: relative;
  z-index: 2;
}

.amenity-box img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 18px;
  transition: 0.35s;
  filter: brightness(1);
}

.amenity-box h5 {
  color: #fff;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.3;
  font-family: "Montserrat", sans-serif;
  margin: 0;
}

.amenity-box:hover img {
  transform: translateY(-8px) scale(1.08);
}

.amenity-box:hover h5 {
  color: #c59a52;
}

.amenity-box:hover {
  transform: translateY(-5px);
}
.gallery-section {
  position: relative;
  background: #050505;
  padding: 20px 0;
  overflow: hidden;
}

/* Background */

.gallery-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(images/bg-pattern.png) center center/cover;
  opacity: 0.08;
}

.gallery-title {
  color: #fff;
  font-size: 46px;
  text-align: center;
  letter-spacing: 4px;
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.galleryTop,
.galleryBottom {
  overflow: visible;
}

.galleryTop .swiper-slide,
.galleryBottom .swiper-slide {
  width: 235px;
  height: 340px;
}

.galleryTop img,
.galleryBottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  border-radius: 18px;
  border: 2px solid #b68a3c;

  transition: 0.4s;
}

.galleryTop img:hover,
.galleryBottom img:hover {
  transform: scale(1.05);
}

.swiper-wrapper {
  transition-timing-function: linear !important;
}
@media (max-width: 991px) {
  .galleryTop .swiper-slide,
  .galleryBottom .swiper-slide {
    width: 240px;
    height: 330px;
  }

  .gallery-title {
    font-size: 38px;
  }
}

@media (max-width: 767px) {
  .gallery-section {
    padding: 60px 0;
  }

  .gallery-title {
    font-size: 30px;
    margin-bottom: 35px;
  }

  .galleryTop .swiper-slide,
  .galleryBottom .swiper-slide {
    width: 170px;
    height: 240px;
  }
}

/*============================
   GALLERY MARQUEE (CSS only)
=============================*/
.gallery-marquee {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
}

.gallery-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: galleryScroll 55s linear infinite;
}

.gallery-marquee:hover .gallery-track {
  animation-play-state: paused;
}

.gallery-item {
  flex: 0 0 auto;
  width: 235px;
  height: 340px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  border: 2px solid var(--theme-accent, #425e73);
  display: block;
}

@keyframes galleryScroll {
  from {
    transform: translateX(0);
  }
  to {
    /* half the track = one full set of 6 slides (incl. trailing gap) */
    transform: translateX(calc(-50% - 10px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-track {
    animation: none;
  }
}

@media (max-width: 991px) {
  .gallery-item {
    width: 240px;
    height: 330px;
  }
}

@media (max-width: 767px) {
  .gallery-item {
    width: 170px;
    height: 240px;
  }

  .gallery-track {
    animation-duration: 40s;
  }
}

/*============================
      MASTER PLAN
=============================*/

.masterplan-section {
  position: relative;
  background: #050505;
  padding: 20px 0;
  overflow: hidden;
}

/* Background Pattern */

.masterplan-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(images/bg-pattern.png) center center/cover no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

/* Decorative Golden Curve */

.masterplan-section::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 0;
  width: 320px;
  height: 100%;
  border: 1px solid rgba(190, 145, 70, 0.25);
  border-radius: 50%;
  transform: rotate(12deg);
}

.masterplan-title {
  text-align: center;
  color: #ece7df;

  font-family: "Cormorant Garamond", serif;

  font-size: 46px;

  font-weight: 500;

  letter-spacing: 4px;

  margin-bottom: 55px;

  position: relative;

  z-index: 2;
}

/* White Card */

.masterplan-card {
  background: #ffffff;

  border-radius: 18px;

  padding: 35px;

  max-width: 1100px;

  margin: auto;

  position: relative;

  z-index: 2;

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

/* Image */

.masterplan-card img {
  width: 100%;

  display: block;

  border-radius: 8px;
}
/* Tablet */

@media (max-width: 991px) {
  .masterplan-section {
    padding: 70px 0;
  }

  .masterplan-title {
    font-size: 38px;
  }

  .masterplan-card {
    padding: 20px;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .masterplan-section {
    padding: 55px 0;
  }

  .masterplan-title {
    font-size: 30px;

    letter-spacing: 2px;

    margin-bottom: 30px;
  }

  .masterplan-card {
    padding: 12px;

    border-radius: 12px;
  }
}
.masterplan-card {
  overflow: hidden;
}

.masterplan-card img {
  transition: 0.5s ease;
}

.masterplan-card:hover img {
  transform: scale(1.02);
}
/*==============================
        UNIT PLAN
==============================*/

.unit-plan-section {
  background: #050505;
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

/* Luxury background */

.unit-plan-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(images/bg-pattern.png) center/cover no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

.section-title {
  color: #ece8e1;
  text-align: center;

  font-size: 44px;

  letter-spacing: 4px;

  margin-bottom: 55px;

  font-family: "Cormorant Garamond", serif;

  position: relative;
  z-index: 2;
}

.unit-card {
  /* background: #fff; */

  /* border: 2px solid #b48b43; */

  border-radius: 18px;

  overflow: hidden;

  padding: 12px;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);

  transition: 0.4s;

  position: relative;

  z-index: 2;
}

.unit-card img {
  width: 100%;

  border-radius: 10px;

  display: block;
}

.unit-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.unit-card-title {
  margin: 14px 0 4px;

  text-align: center;

  font-family: "Cormorant Garamond", serif;

  font-size: 1.05rem;

  font-weight: 600;

  letter-spacing: 0.5px;

  color: #b48b43;
}

.download-btn {
  display: inline-block;

  color: #fff;

  text-decoration: none;
  cursor: pointer;
  padding: 14px 34px;

  border-radius: 10px;

  border: 1px solid #7d6339;

  background: linear-gradient(180deg, #3f3325, #1d1814);

  font-size: 16px;

  transition: 0.35s;
}

.download-btn:hover {
  color: #fff;

  background: #b58a45;

  border-color: #b58a45;
}
/* Tablet */

@media (max-width: 991px) {
  .section-title {
    font-size: 36px;
  }

  .unit-card {
    margin: auto;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .unit-plan-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 30px;

    margin-bottom: 35px;

    letter-spacing: 2px;
  }

  .unit-card {
    max-width: 320px;

    margin: auto;
  }

  .download-btn {
    padding: 12px 26px;

    font-size: 15px;
  }
}
/*===========================
        CONTACT SECTION
===========================*/

.contact-section {
  background: #050505;
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

/* Luxury Background */

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(images/bg-pattern.png) center center/cover;
  opacity: 0.08;
}

/* Golden Curve */

.contact-section::after {
  content: "";
  position: absolute;
  right: -140px;
  top: -80px;
  width: 420px;
  height: 130%;
  border: 1px solid rgba(187, 144, 70, 0.25);
  border-radius: 50%;
  transform: rotate(12deg);
}
.contact-section::before,
.contact-section::after {
  pointer-events: none;
}

.contact-section .container {
  position: relative;
  z-index: 2;
}

.contact-title {
  color: #ece7df;
  text-align: center;

  font-family: "Cormorant Garamond", serif;

  font-size: 44px;

  letter-spacing: 3px;

  margin-bottom: 15px;

  position: relative;

  z-index: 2;
}
.contact-title1 {
  color: #ece7df;
  text-align: center;

  font-family: "Cormorant Garamond", serif;

  font-size: 20px;

  letter-spacing: 1px;

  margin-bottom: 55px;

  position: relative;

  z-index: 2;
}

/* Image */

.contact-image {
  /* border: 2px solid #b48b43; */

  border-radius: 14px;

  overflow: hidden;

  background: #111;

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);

  position: relative;

  z-index: 2;
}

.contact-image img {
  width: 100%;
  display: block;
}

/* Labels */

.contact-section label {
  color: #d9d3ca;

  font-size: 12px;

  letter-spacing: 1px;

  margin-bottom: 6px;

  display: block;
}

/* Inputs */

.contact-section .form-control {
  height: 46px;

  border-radius: 6px;

  border: none;

  background: #fff;

  font-size: 14px;

  box-shadow: none;
}

.contact-section .form-control:focus {
  box-shadow: 0 0 0 2px rgba(181, 138, 69, 0.35);
}

/* Checkbox */

.form-check-label {
  color: #c7c7c7;

  font-size: 12px;

  line-height: 1.5;
}

.form-check-input {
  border: 1px solid #777;

  background: transparent;
}

.form-check-input:checked {
  background: #b58a45;

  border-color: #b58a45;
}

/* Button */

.contact-btn {
  background: linear-gradient(180deg, #453624, #1d1814);

  border: 1px solid #80663e;

  color: #fff;

  padding: 11px 32px;

  border-radius: 12px;

  transition: 0.35s;
}

.contact-btn:hover {
  background: #b58a45;

  border-color: #b58a45;
}
/* Tablet */

@media (max-width: 991px) {
  .contact-title {
    font-size: 38px;
  }

  .contact-image {
    max-width: 300px;

    margin: auto;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .contact-title1 {
    color: #ece7df;
    text-align: center;

    font-family: "Cormorant Garamond", serif;

    font-size: 14px;

    letter-spacing: 1px;

    margin-bottom: 55px;

    position: relative;

    z-index: 2;
  }
  .contact-section {
    padding: 60px 0;
  }

  .contact-title {
    font-size: 30px;

    margin-bottom: 35px;

    letter-spacing: 2px;
  }

  .contact-image {
    max-width: 250px;

    margin: 0 auto 35px;
  }

  .contact-btn {
    width: 100%;
  }

  .contact-section .form-control {
    height: 44px;
  }
}
.map {
  width: 100%;
  height: auto;
}
.footer-section {
  padding: 20px 30px;
  display: flex;
  justify-content: end;
  align-items: end;
  background-color: #000000;
}
/*===========================
      POPUP MODAL
===========================*/

.modal-backdrop.show {
  opacity: 0.75;
}

.enquiry-modal {
  background: #1f1f1f;

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 8px;

  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.55);

  position: relative;

  overflow: visible;
}

/* Close Button */

.custom-close {
  position: absolute;

  top: -12px;

  right: -12px;

  width: 28px;

  height: 28px;
  color: #000000 !important;

  background: #fff;

  border-radius: 50%;

  opacity: 1;

  z-index: 5;

  background-size: 10px;
}

.custom-close:hover {
  opacity: 1;
}

/* Modal Body */
.modal {
  margin-top: 30px;
}
.enquiry-modal .modal-body {
  padding: 35px 35px 28px;
}
.success_msg,
.error_msg {
  display: none;
}

/* Title */

.popup-title {
  text-align: center;

  color: #fff;

  font-size: 38px;

  letter-spacing: 3px;

  margin-bottom: 10px;

  font-family: "Cormorant Garamond", serif;
}
.popup-title1 {
  text-align: center;

  color: #fff;

  font-size: 12px;

  letter-spacing: 1px;

  margin-bottom: 20px;

  font-family: "Cormorant Garamond", serif;
}

/* Labels */

.enquiry-modal label {
  color: #bfbfbf;

  font-size: 11px;

  letter-spacing: 1px;

  margin-bottom: 6px;

  display: block;
}

/* Inputs */

.enquiry-modal .form-control {
  height: 42px;

  border: none;

  border-radius: 4px;

  background: #fff;

  color: #222;

  font-size: 13px;

  box-shadow: none;
}

.enquiry-modal .form-control:focus {
  border: 1px solid #b58a45;

  box-shadow: 0 0 0 0.2rem rgba(181, 138, 69, 0.18);
}

/* Checkbox */

.form-check {
  display: flex;

  align-items: flex-start;
}

.form-check-input {
  margin-top: 4px;
}

.form-check-label {
  color: #d5d5d5;

  font-size: 10px;

  line-height: 1.4;

  margin-left: 8px;
}

/* Button */

.popup-btn {
  background: linear-gradient(#4a3a27, #2a2118);

  color: #fff;

  border: 1px solid #8f6b3d;

  border-radius: 10px;

  padding: 8px 24px;

  font-size: 14px;

  transition: 0.3s;
}

.popup-btn:hover {
  background: #b58a45;

  border-color: #b58a45;

  color: #fff;
}
/* Tablet */

@media (max-width: 991px) {
  .popup-title {
    font-size: 32px;
  }
}

/* Mobile */

@media (max-width: 576px) {
  .modal-dialog {
    margin: 15px;
  }

  .enquiry-modal .modal-body {
    padding: 25px 20px;
  }

  .popup-title {
    font-size: 28px;

    margin-bottom: 20px;
  }

  .enquiry-modal .form-control {
    height: 40px;
  }

  .popup-btn {
    width: 100%;
  }

  .custom-close {
    top: -10px;

    right: -10px;
  }
}
@media (max-width: 576px) {
  .section-divider {
    background: #000;
    overflow: hidden;
  }

  .section-divider .divider {
    /* width: 100%; */
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.map-section {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.map-frame {
  width: 100%;
  height: 550px;
  border: 0;
  display: block;
}

/* Tablet */
@media (max-width: 991.98px) {
  .map-frame {
    height: 450px;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .map-frame {
    height: 320px;
  }
}
.fixed-enquire-btn {
  position: fixed;
  top: 50%;
  right: -42px;
  transform: translateY(-50%) rotate(-90deg);

  width: 135px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(180deg, #4b3b2c 0%, #1e1813 100%);
  border: 1px solid #7f6238;
  border-radius: 8px 8px 0 0;

  color: #fff;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.3px;

  text-decoration: none;

  z-index: 99999;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);

  transition: all 0.3s ease;
}

.fixed-enquire-btn:hover {
  color: #fff;
  background: linear-gradient(180deg, #6c5437, #2d2117);
  right: -38px;
}
.footer-section {
  background: #000;
  padding: 20px 0;
}

.footer-content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80px;
}

/* Center Section */
.footer-center {
  text-align: center;
}

.footer-links a {
  color: #fff;
  text-decoration: underline;
  margin: 0 8px;
  font-size: 15px;
}

.footer-links span {
  color: #fff;
}

.copyright {
  color: #fff;
  font-size: 14px;
}

/* Right Image */
.footer-right {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.footer-right img {
  max-height: 60px;
  width: auto;
}

/* Mobile */
@media (max-width: 767.98px) {
  .footer-content {
    flex-direction: column;
  }

  .footer-right {
    position: static;
    transform: none;
    margin-top: 15px;
    text-align: center;
  }

  .footer-right img {
    max-height: 50px;
  }

  .footer-links a {
    display: inline-block;
    margin: 5px;
    font-size: 14px;
  }
}
.close-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.close-btn:hover {
  color: #d4af37;
}

/*=====================================================
        LIGHT THEME OVERRIDE
        text  ....... #425e73
        surface .... #ffffff
        buttons .... unified "Download Brochure" pill
=====================================================*/
:root {
  --theme-text: #425e73;
  --theme-heading: #33485a;
  --theme-accent: #425e73;
  --theme-accent-soft: rgba(66, 94, 115, 0.16);
  --theme-border: #d3dde3;
}

body {
  background-color: #ffffff !important;
  color: var(--theme-text);
}

p,
li,
span,
label,
td,
th,
dd,
dt,
blockquote,
address {
  color: var(--theme-text);
}

/* ---------- NAVBAR ---------- */
.navbar,
.custom-header.scrolled .navbar {
  background: #ffffff;
  border-bottom: 1px solid var(--theme-border);
  box-shadow: 0 6px 24px rgba(66, 94, 115, 0.08);
}

.nav-link,
.nav-link.active {
  color: var(--theme-text) !important;
}

.nav-link:hover {
  color: #1f3646 !important;
}

.nav-link::after {
  background: var(--theme-accent);
}

.nav-link img {
  filter: brightness(0) saturate(100%) invert(37%) sepia(14%) saturate(1042%)
    hue-rotate(165deg) brightness(92%) contrast(87%);
}

.navbar-collapse {
  background: #ffffff;
  /* border: 1px solid var(--theme-border); */
}

@media (max-width: 991px) {
  .nav-link {
    border-bottom: 1px solid var(--theme-border);
  }
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23425e73' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ---------- SECTION SURFACES ---------- */
.address-section,
.amenities-section,
.gallery-section,
.masterplan-section,
.unit-plan-section,
.contact-section,
.section-divider,
.line-divider,
.map-section {
  background: #ffffff !important;
}

.address-section::before,
.amenities-section::before,
.gallery-section::before,
.masterplan-section::before,
.unit-plan-section::before,
.contact-section::before {
  display: none;
}

.amenities-section::after,
.gallery-section::after,
.masterplan-section::after,
.contact-section::after {
  border-color: var(--theme-accent-soft);
}

/* ---------- HEADINGS ---------- */
.address-title,
.amenities-title,
.gallery-title,
.masterplan-title,
.section-title,
.contact-title,
.contact-title1 {
  color: var(--theme-heading) !important;
}

/* ---------- BODY / SUPPORT TEXT ---------- */
.address-text,
.address-text strong,
.amenity-box h5,
.contact-section label,
.form-check-label,
.footer-links a,
.footer-links span,
.copyright {
  color: var(--theme-text) !important;
}

.amenity-box:hover h5 {
  color: #1f3646;
}

/* ---------- IMAGE FRAMES / RULES ---------- */
.address-image-wrapper {
  background: #ffffff;
  border-color: var(--theme-accent);
  box-shadow:
    0 0 0 1px var(--theme-accent-soft),
    0 12px 30px rgba(66, 94, 115, 0.18);
}

.address-divider {
  background: linear-gradient(
    to bottom,
    rgba(66, 94, 115, 0),
    rgba(66, 94, 115, 0.55),
    rgba(66, 94, 115, 0)
  );
}

.galleryTop img,
.galleryBottom img {
  border-color: var(--theme-accent);
}

.amenity-box img {
  filter: brightness(0) saturate(100%) invert(37%) sepia(14%) saturate(1042%)
    hue-rotate(165deg) brightness(92%) contrast(87%);
}

.unit-card {
  background: #ffffff;
  border: 1px solid var(--theme-border);
  box-shadow: 0 15px 35px rgba(66, 94, 115, 0.15);
}

.unit-card:hover {
  box-shadow: 0 25px 50px rgba(66, 94, 115, 0.22);
}

.unit-card-title {
  color: var(--theme-accent);
}

.masterplan-card {
  box-shadow: 0 20px 45px rgba(66, 94, 115, 0.18);
  border: 1px solid var(--theme-border);
}

/* ---------- FORMS ---------- */
.contact-section .form-control,
.enquiry-modal .form-control {
  background: #ffffff;
  color: #23323d;
  border: 1px solid var(--theme-border);
}

.contact-section .form-control:focus,
.enquiry-modal .form-control:focus {
  border-color: var(--theme-accent);
  box-shadow: 0 0 0 3px var(--theme-accent-soft);
}

.contact-image {
  background: #eef2f4;
  box-shadow: 0 18px 40px rgba(66, 94, 115, 0.2);
}

.form-check-input {
  border: 1px solid #9fb0ba;
  background: #ffffff;
}

.form-check-input:checked {
  background: var(--theme-accent);
  border-color: var(--theme-accent);
}

/* ---------- MODAL ---------- */
.modal-backdrop.show {
  opacity: 0.4;
}

.enquiry-modal {
  background: #ffffff;
  border: 1px solid var(--theme-border);
  box-shadow: 0 25px 70px rgba(66, 94, 115, 0.25);
}

.popup-title,
.popup-title1 {
  color: var(--theme-heading);
}

.enquiry-modal label {
  color: var(--theme-text);
}

.custom-close {
  background: var(--theme-accent);
  color: #ffffff !important;
}

/* ---------- FOOTER ---------- */
.footer-section {
  background: #f3f6f7;
  border-top: 1px solid var(--theme-border);
}

/* ---------- UNIFIED BUTTONS ("Download Brochure" style) ---------- */
.hero-brochure-btn,
.address-btn,
.download-btn,
.contact-btn,
.popup-btn,
.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff !important;
  background: linear-gradient(135deg, #4f6d82 0%, #425e73 55%, #354b5d 100%);
  border: 1px solid #5f7d92;
  border-radius: 30px;
  box-shadow: 0 12px 28px rgba(66, 94, 115, 0.3);
  transition: 0.35s ease;
  cursor: pointer;
}

.hero-brochure-btn:hover,
.address-btn:hover,
.download-btn:hover,
.contact-btn:hover,
.popup-btn:hover,
.hero-btn:hover {
  color: #ffffff !important;
  background: linear-gradient(135deg, #5a7a90 0%, #4c6a80 55%, #3d5468 100%);
  border-color: #6b8497;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(66, 94, 115, 0.42);
}

.contact-btn i {
  border-color: rgba(255, 255, 255, 0.4);
}

/* Fixed side "Enquire Now" tab – keep its shape, retheme colour */
.fixed-enquire-btn {
  background: linear-gradient(180deg, #4f6d82 0%, #354b5d 100%);
  border: 1px solid #5f7d92;
  color: #ffffff;
}

.fixed-enquire-btn:hover {
  background: linear-gradient(180deg, #5a7a90 0%, #3d5468 100%);
  color: #ffffff;
}

@media (max-width: 991.98px) {
  .hero-brochure-btn,
  .address-btn,
  .download-btn,
  .contact-btn,
  .popup-btn {
    padding: 12px 24px;
  }
}

/* ---------- SECTION DIVIDER (CSS ornament, no image) ---------- */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: #ffffff !important;
}

.section-divider .divider-line {
  flex: 0 1 140px;
  height: 1px;
  background: linear-gradient(to right, rgba(66, 94, 115, 0), #425e73);
}

.section-divider .divider-line:last-child {
  background: linear-gradient(to left, rgba(66, 94, 115, 0), #425e73);
}

.section-divider .divider-diamond {
  flex: none;
  width: 9px;
  height: 9px;
  transform: rotate(45deg);
  background: #425e73;
  box-shadow: 0 0 0 4px rgba(66, 94, 115, 0.14);
}

@media (max-width: 767px) {
  .section-divider {
    gap: 12px;
  }

  .section-divider .divider-line {
    flex-basis: 90px;
  }
}

/* ---------- POP-UP MODALS: top gap on desktop ---------- */
@media (min-width: 992px) {
  .modal-dialog {
    margin-top: 90px;
  }

  .modal-dialog-centered {
    align-items: flex-start;
  }
}