/* =====================================================
   GRANDEUR RESIDENCES — LUXURY REAL ESTATE STYLESHEET
   ===================================================== */

/* ── CSS Custom Properties ── */
:root {
  --gold: #95302a;
  --gold-light: #bf7353;
  --gold-dark: #cb7a59;
  --dark: #0e0e0e;
  --dark-2: #161616;
  --dark-3: #1e1e1e;
  --mid: #2c2c2c;
  --off-white: #f4f0ea;
  --body-text: #5a5a5a;
  --white: #ffffff;
  --border: rgba(201, 168, 76, 0.25);
  --radius: 10px;
  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.08);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

/* ── Utility ── */
.section-pad {
  padding: 100px 0;
}

.text-gold {
  color: var(--gold) !important;
}

/* ── Typography Helpers ── */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 15px;
}

h1.section-heading {
  font-size: 40px;
  margin-bottom: 0px;
  font-family: serif;
  font-weight: 500;
  color: #95302a;
}

.about-section h2.section-heading {
  font-family: serif;
  font-size: 24px;
  font-weight: 500;
  color: #000;
  margin-bottom: 25px;
}

.about-section .section-heading em {
  font-size: 24px;
  margin-bottom: -10px;
  font-family: auto;
}

.section-heading {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  color: var(--dark);
  margin-bottom: 40px;
  margin-top: 15px;
}

.gallery-section .section-heading {
  margin-bottom: 70px;
}

.section-heading em {
  font-style: italic;
  color: var(--gold);
}

.section-sub {
  font-size: .95rem;
  color: var(--body-text);
  /* max-width: 580px; */
  /* margin: 0 auto; */
  text-align: left;
}

.section-body {
  font-size: .95rem;
  color: var(--body-text);
  margin-bottom: 16px;
  line-height: 1.8;
}

/* ── Buttons ── */
.btn-enquire {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  /* letter-spacing: 0.5px; */
  /* text-transform: uppercase; */
  padding: 7px 30px;
  border-radius: var(--radius);
  transition: var(--transition);
  border-bottom: 3px solid var(--gold);
}

.btn-enquire:hover {
  background: var(--gold);
  color: #fff;
  border-bottom: 3px solid var(--gold);
}

.btn1-enquire {
  margin-top: 1rem;
  background: transparent;
  border: 1px solid #95302a;
  color: #95302a;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  /* letter-spacing: 0.5px; */
  /* text-transform: uppercase; */
  padding: 7px 30px;
  border-radius: var(--radius);
  transition: var(--transition);
  border-bottom: 3px solid #95302a;
}

.btn1-enquire:hover {
  background: var(--gold);
  color: #fff;
  border-bottom: 3px solid var(--gold);
}

.btn-submit-bottom {
  background-image: linear-gradient(54deg, #bc5651, #95302a) !important;
  border: 1px solid #95302a;
  color: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  /* letter-spacing: 0.5px; */
  /* text-transform: uppercase; */
  padding: 10px 30px;
  border-radius: var(--radius);
  transition: var(--transition);
  /* border-bottom: 3px solid #fff; */
  margin-top: 5px;
  height: 50px;
}

.btn-submit-bottom:hover {
  background-image: linear-gradient(54deg, #bc5651, #95302a) !important;
  border: 1px solid #95302a;
  color: #fff;
}

.btn-submit {
  /* background: #95302a; */
  /* border: 1.5px solid var(--gold); */
  color: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  /* text-transform: uppercase; */
  padding: 13px 24px;
  border-radius: var(--radius);
  transition: var(--transition);
  animation: pulseEffect2 2.5s infinite;
}


@keyframes pulseEffect2 {
  0% {
    transform: scale(1);
    background-color: #95302a;
  }

  50% {
    transform: scale(1.05);
    background-color: #95302a;
    /* Lighten the background to create a highlight effect */
  }

  100% {
    transform: scale(1);
    background-color: #95302a;
  }
}

/* .btn-submit:hover {
  background: var(--gold);
  color: var(--dark);
} */

.btn-hero {
  background: var(--gold);
  border: none;
  color: var(--dark);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 16px 44px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.btn-hero:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201, 168, 76, .35);
}

.btn-primary-dark {
  background: var(--dark);
  color: var(--gold);
  border: 1.5px solid var(--dark);
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.btn-primary-dark:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ── Animations ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  opacity: 0;
  animation: fadeUp .8s ease forwards;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   NAVBAR
   ===================================================== */
#carouselExampleControls {
  margin-top: 85px;
}

/* =====================================================
   SMOOTH ZOOM IN & ZOOM OUT EFFECT
===================================================== */

#home {
  overflow: hidden;
}

#home .carousel-item {
  overflow: hidden;
}

#home .carousel-item img {
  width: 100%;
  /* height: 100vh; */
  object-fit: cover;

  /* Smooth Premium Animation */
  animation: bannerZoomEffect 4s ease-in-out infinite alternate;

  will-change: transform;
}

/* MOBILE */

@media (max-width: 767px) {

  #home .carousel-item img {
    /* height: 100vh; */
    object-fit: cover;
  }

  .about-section .section-heading em {
    font-size: 21px;
  }

}

/* KEYFRAMES */

@keyframes bannerZoomEffect {

  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.03);
  }

}

#mainNavbar {
  background: #fff;
  padding: 10px 0;
  transition: var(--transition);
  z-index: 1050;
}

#mainNavbar.scrolled {
  background: #fff;
  padding: 10px 0;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 25px rgb(0 0 0 / 20%);
}

/* =====================================================
   NAVBAR LOGO
===================================================== */

.logo-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 0;
}

/* LOGO IMAGE */

.navbar-logo {
  width: 125px;
  height: auto;
  object-fit: contain;
  transition: all .3s ease;
}

/* SCROLLED NAVBAR LOGO */

#mainNavbar.scrolled .navbar-logo {
  width: 125px
}

/* HOVER EFFECT */

.logo-brand:hover .navbar-logo {
  transform: scale(1.02);
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

  .navbar-logo {
    width: 100px;
  }

  #mainNavbar.scrolled .navbar-logo {
    width: 100px;
  }

  #mainNavbar {
    padding: 7px 0;
  }

  #mainNavbar.scrolled {
    padding: 7px 0;
  }

  #carouselExampleControls {
    margin-top: 67px;
  }

}

.logo-icon {
  color: var(--gold);
  font-size: 1.5rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .08em;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: .55rem;
  font-weight: 500;
  letter-spacing: .3em;
  color: var(--gold);
  text-transform: uppercase;
}

.navbar-nav .nav-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  /* letter-spacing: .12em; */
  /* text-transform: uppercase; */
  color: #000;
  padding: 8px 8px !important;
  transition: color .25s;
}

.navbar-nav .nav-link:hover {
  color: var(--gold) !important;
}

/* Hamburger */
.custom-toggler {
  border: none;
  background: transparent;
  padding: 4px;
  cursor: pointer;
}

.custom-toggler:focus {
  outline: none;
  box-shadow: none;
}

.toggler-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  margin: 5px 0;
  transition: var(--transition);
}

/* =====================================================
   HERO
   ===================================================== */
/* =====================================================
   HERO SECTION
===================================================== */

.hero-section {
  position: relative;
  width: 100%;
  /* height: 100vh;
    min-height: 700px; */
  overflow: hidden;
  background: #000;
}

/* =====================================================
   BACKGROUND IMAGES
===================================================== */

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;

  background-repeat: no-repeat;
  background-size: cover;

  animation: heroZoom 8s ease-in-out infinite alternate;

  z-index: 0;
}

/* =====================================================
   DESKTOP BACKGROUND
===================================================== */

.desktop-bg {
  background-image: url("../images/Desktop-Elevation.png");

  /* PERFECT DESKTOP FIT */
  background-position: center center;

  display: block;
}

/* =====================================================
   MOBILE BACKGROUND
===================================================== */

.mobile-bg {
  background-image: url("../images/Mobile-Elevation.png");

  /* PERFECT MOBILE FIT */
  background-position: center top;

  display: none;
}

/* =====================================================
   BACKGROUND ANIMATION
===================================================== */

@keyframes heroZoom {

  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.08);
  }

}

/* =====================================================
   OVERLAY
===================================================== */

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.45),
      rgba(0, 0, 0, 0.65));

  z-index: 1;
}

/* =====================================================
   CONTENT
===================================================== */

.hero-content {
  position: relative;
  z-index: 2;

  width: 100%;
  height: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;

  padding: 0 20px;
}

.hero-tagline {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 6px;
  color: #d4af37;
  margin-bottom: 25px;
  text-transform: uppercase;
  margin-top: 5rem;
}

.hero-heading {
  font-size: clamp(65px, 7vw, 120px);
  line-height: 1.1;
  font-weight: 300;
  color: #fff;
  margin-bottom: 25px;
}

.hero-heading em {
  color: #d4af37;
  font-style: italic;
  font-weight: 400;
}

.hero-desc {
  font-size: 28px;
  color: #fff;
}

/* =====================================================
   LARGE DESKTOP
===================================================== */

@media (min-width:1600px) {

  .desktop-bg {
    background-position: center center;
  }

}

/* =====================================================
   LAPTOP VIEW
===================================================== */

@media (max-width:1366px) {

  .hero-heading {
    font-size: 90px;
  }

}

/* =====================================================
   TABLET VIEW
===================================================== */

@media (max-width:991px) {

  /* .hero-section{
        min-height: 650px;
    } */

  .hero-heading {
    font-size: 70px;
  }

  .hero-desc {
    font-size: 22px;
  }

}

/* =====================================================
   MOBILE VIEW
===================================================== */

@media (max-width:767px) {

  .desktop-bg {
    display: none;
  }

  .mobile-bg {
    display: block;

    /* IMPORTANT FOR MOBILE FIT */
    background-size: cover;
    background-position: center center;
  }

  /* .hero-section{
        min-height: 100vh;
    } */

  .hero-content {
    padding: 0 18px;
  }

  .hero-tagline {
    font-size: 10px;
    letter-spacing: 4px;
    margin-bottom: 18px;
    margin-top: 5rem;
  }

  .hero-heading {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 18px;
  }

  .hero-desc {
    font-size: 16px;
  }

}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width:480px) {

  .hero-heading {
    font-size: 34px;
  }

  .mobile-bg {
    background-position: center top;
  }

}


/* =====================================================
   ABOUT
   ===================================================== */
.about-img-wrap {
  position: relative;
  display: inline-block;
}

.about-main-img {
  width: 100%;
  border-radius: 2px;
  object-fit: cover;
  /* height: 520px; */
  box-shadow: 24px 24px 0 var(--gold);
  background: #282828;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--dark);
  color: var(--white);
  padding: 15px 15px;
  border-top: 3px solid var(--gold);
  border-left: 3px solid var(--gold);
  text-align: center;
  min-width: 120px;
}

.badge-num {
  display: block;
  font-family: auto;
  font-size: 2.2rem;
  font-weight: 700;
  color: #e3635b;
  margin-bottom: 5px;
  line-height: 1;
}

.badge-label {
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
}

.about-list li {
  padding: 15px 0;
  border-bottom: 1px solid #f0ebe2;
  font-size: 17px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--body-text);
  list-style: none;
  line-height: 1.2;
}

.about-list li:first-child {
  border-top: 1px solid #f0ebe2;
}

.about-list li i {
  color: var(--gold);
  flex-shrink: 0;
}

/*======================================================
            PREMIUM HIGHLIGHTS SECTION
======================================================*/

.highlights-section {
  background: #f6f2f28c;
  overflow: hidden;
}

.premium-highlight-wrapper {
  position: relative;
  background: transparent;
  margin-top: -70px;
  margin-bottom: -30px;
}

/*======================================================
            LEFT VERTICAL TITLE
======================================================*/

.vertical-highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.vertical-highlight h2 {
  font-size: 56px;
  font-weight: 300;
  letter-spacing: 4px;
  color: #95302a;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
}

.vertical-highlight span {
  margin-top: 20px;
  letter-spacing: 6px;
  font-size: 13px;
  text-transform: uppercase;
  color: #222;
}

/*======================================================
                CENTER IMAGE
======================================================*/

/* .highlight-image {
  padding: 0 30px;
} */

.highlight-image img {
  width: 100%;
  /* height: 650px; */
  object-fit: cover;
  display: block;
  transition: .6s;
}

/* .highlight-image:hover img {
  transform: scale(1.04);
} */

/*======================================================
                RIGHT CONTENT
======================================================*/

.highlight-content {
  padding-left: 35px;
}

.highlight-icon-top {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 1px solid #95302a;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}

.highlight-icon-top i {
  color: #95302a;
  font-size: 26px;
}

.highlight-description {
  font-size: 14px;
  line-height: 2;
  color: #444;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 35px;
}

/*======================================================
                LIST
======================================================*/

.highlight-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.highlight-item-icon {
  width: 45px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201, 125, 82, .12);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #95302a;
  font-size: 17px;
  transition: .35s;
}

.highlight-item:hover .highlight-item-icon {
  background: #95302a;
  color: #fff;
  transform: rotate(10deg) scale(1.08);
}

.highlight-item span {
  font-size: 15px;
  color: #222;
  line-height: 1.6;
  position: relative;
  padding-bottom: 10px;
  display: block;
  width: 100%;
}

.highlight-item span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 45px;
  height: 2px;
  background: #95302a;
}

/*======================================================
                BOTTOM STAT
======================================================*/

.highlight-stat {
  display: flex;
  align-items: flex-end;
  margin-top: 45px;
}

.highlight-stat .number {
  font-size: 95px;
  line-height: .8;
  color: #95302a;
  font-family: auto;
}

.highlight-stat .plus {
  font-size: 48px;
  color: #95302a;
  display: block;
  line-height: 1;
}

.highlight-stat p {
  margin: 0 0 0 15px;
  font-size: 20px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #222;
}

/*======================================================
                IMAGE HOVER
======================================================*/

.highlight-image {
  overflow: hidden;
}

/*======================================================
                RESPONSIVE
======================================================*/

@media (max-width:1199px) {

  /* .highlight-image img {
    height: 580px;
  } */

  .vertical-highlight h2 {
    font-size: 56px;
  }

  .highlight-content {
    padding-left: 20px;
  }

}

@media (max-width:991px) {

  .highlights-section {
    padding-top: 70px;
    padding-bottom: 50px;
  }

  .highlight-image {
    padding: 0;
    margin-bottom: 40px;
  }

  /* .highlight-image img {
    height: 420px;
  } */

  .highlight-content {
    padding: 0;
  }

  .highlight-icon-top {
    margin: auto auto 25px;
  }

  .highlight-description {
    text-align: center;
    margin-bottom: 35px;
  }

  .highlight-stat {
    justify-content: center;
    margin-top: 40px;
  }

}

#highlights-btn-desktop {
  margin-top: -4rem;
}

@media (max-width:767px) {

  .premium-highlight-wrapper {
    margin-top: 0px;
    margin-bottom: 0px;
  }


  /* .highlight-image img {
    height: 300px;
  } */

  .highlight-description {
    font-size: 13px;
    line-height: 1.8;
  }

  .highlight-item {
    gap: 12px;
  }

  .highlight-item-icon {
    width: 45px;
    height: 38px;
    font-size: 15px;
  }

  .highlight-item span {
    font-size: 14px;
    line-height: 1.5;
  }

  .highlight-stat .number {
    font-size: 70px;
  }

  .highlight-stat .plus {
    font-size: 34px;
  }

  .highlight-stat p {
    font-size: 15px;
    letter-spacing: 2px;
  }

}

@media (max-width:575px) {

  /* .highlight-image img {
    height: 240px;
  } */

  .highlight-stat {
    margin-top: 5px;
    margin-bottom: 35px;
  }

  .highlight-stat .number {
    font-size: 58px;
  }

  .highlight-stat p {
    font-size: 14px;
  }

}

/* =====================================================
   FLOOR PLAN SECTION
===================================================== */

.floorplan-section {
  background: #161616;
  position: relative;
  overflow: hidden;
}

.floorplan-title {
  color: #c9a15f;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 70px;
  letter-spacing: 1px;
  text-align: center;
}

.floorplan-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px 0px;
  /* margin-top: -6rem; */
  /* margin-bottom: 4rem; */
}

.floor-item {
  position: relative;
}

.floor-item img {
  width: 550px;
  max-width: 550px;
  display: block;
  transition: .4s ease;
  margin: auto;
}

.floor-item:hover img {
  transform: scale(1.04);
}

/* Label */

.floor-label {
  position: absolute;
  color: #95302a;
  min-width: 260px;
}

.floor-label span {
  display: block;
  font-size: 14px;
  margin-bottom: 3px;
}

.floor-label h4 {
  color: #95302a;
  font-size: 24px;
  margin-bottom: 5px;
  font-weight: 600;
}

.floor-label p {
  color: #000;
  font-size: 16px;
  margin-bottom: 25px;
}

/* Line */

.floor-label::before {
  content: "";
  position: absolute;
  height: 1px;
  background: #95302a;
  top: 26px;
  width: 130px;
}

/* Left */

.floor-label.left {
  left: 44px;
  bottom: 2rem;
}

.floor-label.left::before {
  left: 100%;
  margin-top: 40px;
  margin-left: -260px;
}

.floor-item-3 .floor-label.left {
  left: 44px;
  bottom: -65px;
}

/* Right */

.floor-label.right {
  right: 200px;
  bottom: 7.5rem;
  /* text-align: right; */
}

.floor-item-4 .floor-label.right {
  right: 185px;
  bottom: -10px;
}

.floor-label.right::before {
  right: 100%;
  margin-right: -130px;
  margin-top: 40px;
}

/* Positioning */

.floor-item-1 {
  margin-top: -3rem;
}

.floor-item-2 {
  margin-top: -8rem;
}

.floor-item-2 img {
  width: 600px;
}


.floor-item-3 {
  margin-top: 140px;
}

.floor-item-4 {
  margin-top: 75px;
}

/* Existing Button Styling */

.floor-label .btn-pricing {
  width: auto;
  min-width: 180px;
  margin-top: 10px;

  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  /* letter-spacing: 0.5px; */
  /* text-transform: uppercase; */
  padding: 7px 30px;
  border-radius: var(--radius);
  transition: var(--transition);
  border-bottom: 3px solid var(--gold);
}

.floor-label .btn-pricing:hover {
  background: var(--gold);
  color: #fff;
  border-bottom: 3px solid var(--gold);
}

/* =====================================================
   TABLET
===================================================== */

/* @media (max-width: 991px) {

  .floorplan-wrapper {
    gap: 60px 40px;
  }

  .floor-label.left {
    left: -40px;
  }

  .floor-label.right {
    right: -40px;
  }

  .floorplan-title {
    font-size: 28px;
  }
} */

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

  .floorplan-title {
    font-size: 22px;
    text-align: center;
    margin-bottom: 80px;
  }

  .floorplan-wrapper {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: -4rem;
    margin-bottom: 1.5rem;
  }

  .floor-item-1,
  .floor-item-2,
  .floor-item-3,
  .floor-item-4 {
    margin-top: 0;
  }

  .floor-label.right {
    bottom: -70px;
  }

  .floor-label p {
    margin-bottom: 20px;
  }

  .floor-label {
    position: relative;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    text-align: center !important;
    margin-top: -3.5rem;
  }

  .floor-item-2 {
    margin-top: -1.5rem;
  }

  .floor-label::before {
    display: none;
  }

  .floor-item img {
    max-width: 100%;
    margin-top: 0rem;
  }

  .floor-label .btn-pricing {
    width: 220px;
    display: block;
    margin: 15px auto 0;
  }
}


/* =====================================================
   CONNECTIVITY
===================================================== */

.connectivity-section {
  background: #f6f2f28c;
}

/* ROW STRETCH */

.connectivity-section .row.align-items-stretch {
  align-items: stretch !important;
}

/* CONNECT CARD */

.connect-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid #e8e0d0;
  transition: var(--transition);
  height: 100%;
}

.connect-card:hover {
  box-shadow: var(--shadow-card);
  border-color: var(--gold);
  transform: translateX(6px);
}

/* ICON */

.connect-icon {
  width: 50px;
  height: 50px;
  /* min-width: 56px; */
  border-radius: 50%;
  background: #95302a26;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #95302a;
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* TEXT */

.connect-info h6 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--dark);
}

.connect-info p {
  font-size: 0.85rem;
  color: var(--body-text);
  margin: 0 0 8px;
  line-height: 1.5;
}

.connect-dist {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 767px) {

  .connect-icon {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

}


/* =====================================================
   MAP
===================================================== */

/* MAP */

.map-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #e8e0d0;
  box-shadow: var(--shadow-card);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  /* min-height: 690px; */
  border: 0;
  display: block;
}

/* CLICK OVERLAY */

.map-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  cursor: pointer;
  background: transparent;
  /* border: 1px solid #0000001a; */
}

/* TABLET */

@media (max-width: 991px) {

  .map-wrapper iframe {
    min-height: 420px;
  }

}

/* MOBILE */

@media (max-width: 767px) {

  .map-wrapper iframe {
    min-height: 300px;
  }

}

/*=====================================================
CONNECTIVITY NEW DESIGN
=====================================================*/

.connectivity-wrapper {

  overflow: hidden;
  /* border-radius: 20px; */
  /* background: #fbfbfb; */
  /* box-shadow: 0 15px 50px rgba(0, 0, 0, .08); */
  /* border: 1px solid #eee; */

}

.location-map {

  position: relative;
  /* height:100%; */

}

.location-map img {

  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

}

.map-overlay {

  position: absolute;
  inset: 0;
  cursor: pointer;
  background: transparent;
  z-index: 5;

}

/* Right Panel */

.distance-panel {

  height: 100%;
  /* background:#faf9f7; */
  padding: 0px 40px 20px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;

}

.distance-small {

  color: #95302a;
  letter-spacing: 3px;
  font-size: 13px;
  margin-bottom: 20px;
  font-weight: 600;

}

.distance-title {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1;
  margin-bottom: 35px;
  color: #222;
  letter-spacing: 2px;
}

.distance-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.distance-item {

  display: flex;
  justify-content: space-between;
  align-items: center;

  border-bottom: 1px solid #ddd;

  padding-bottom: 10px;

}

.distance-item span {

  color: #666;
  font-size: 15px;

}

.distance-item strong {

  color: #95302a;
  font-size: 15px;
  font-weight: 600;

}

.distance-panel .btn {

  align-self: flex-start;

}

/* Tablet */

@media(max-width:991px) {

  .distance-title {

    font-size: 40px;

  }

  /* .location-map img{

    height:500px;

} */

  .distance-panel {

    padding: 40px 30px;

  }

}

/* Mobile */

@media(max-width:767px) {

  /* .location-map img {

    height: 280px;

  } */

  .distance-panel {

    padding: 30px 22px;

  }

  .distance-title {
    font-size: 30px;
    margin-top: 15px;
    text-align: center;
  }

  .distance-item {

    font-size: 14px;

  }

  .distance-panel .btn {

    display: none;

  }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

  /* CENTER TEXT */

  .about-heading {
    text-align: left;
  }

  .section-eyebrow,
  .developer-heading {
    text-align: center;
    line-height: 1.1;
  }

  /* LOGO CENTER */

  .developer-heading-wrap {
    padding-right: 0;
    text-align: center;
  }

  .developer-logo {
    position: relative;
    top: auto;
    right: auto;
    display: block;
    margin: 10px auto 30px;
    width: 110px;
  }

  /* 2 COLUMNS FOR MOBILE */

  .dev-stats .col-3 {
    width: 50%;
    flex: 0 0 50%;
  }

  .dev-stat {
    padding: 18px 12px;
  }

  .stat-num {
    font-size: 1.7rem;
  }

  .stat-label {
    font-size: 14px;
  }

}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 575px) {

  .developer-img {
    height: 260px;
  }

  .dev-stat {
    padding: 16px 10px;
  }

  .stat-num {
    font-size: 1.45rem;
  }

  .stat-label {
    font-size: 14px;
    line-height: 1.35;
  }

}


/* =====================================================
   FAQ
   ===================================================== */
.faq-section {
  background: #f6f2f28c;
}

.faq-accordion .accordion-item {
  background: var(--white);
  border: 1px solid #e8e0d0;
  border-radius: var(--radius) !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  background: var(--white);
  color: var(--dark);
  padding: 20px 20px;
  box-shadow: none !important;
  background: #fff;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: #95302a;
  background: #fff;
  font-size: 18px;
}

.faq-accordion .accordion-button::after {
  background-image: none;
  content: '\f067';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--gold);
  font-size: .8rem;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  content: '\f068';
}

.faq-accordion .accordion-body {
  font-size: 14px;
  color: var(--body-text);
  padding: 0 28px 24px;
  line-height: 1.8;
  background: #fff;
}

/* =====================================================
   CONTACT
   ===================================================== */
.contact-section {
  background: #fff;
}

.contact-info-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cinfo-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

/* CLICKABLE CONTACT ITEMS */

.cinfo-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  color: inherit;
  transition: all 0.3s ease;
}

.cinfo-item:hover {
  transform: translateX(5px);
}

.cinfo-item h6 {
  margin-bottom: 4px;
  color: #111;
}

.cinfo-item h6:hover {
  color: #000;
}

.cinfo-item p {
  margin-bottom: 0;
  color: #95302a;
}

/* ICON */

.cinfo-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #95302a;
  font-size: 20px;
  color: #95302a;
  transition: all 0.3s ease;
}

/* HOVER EFFECT */

.cinfo-item:hover .cinfo-icon {
  background: var(--gold);
  color: #fff;
  transform: scale(1.08);
}

/* .cinfo-icon {
  width: 44px;
  height: 44px;
   background: #f5f5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
} */

.cinfo-item h6 {
  font-size: 18px;
  letter-spacing: 1px;
  /* text-transform: uppercase; */
  color: #95302a;
  margin-bottom: 4px;
}

.cinfo-item p {
  font-size: .88rem;
  color: var(--body-text);
  margin: 0;
}

.cinfo-item p:hover {
  color: #95302a;
  text-decoration: underline;
}

.contact-form-card {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 40px 50px;
  height: 100%;
  width: 90%;
  display: block;
  margin: 0px auto;
}

.form-card-heading {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: #ef7871;
  margin-bottom: 28px;
}

.form-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  /* text-transform: uppercase; */
  color: rgba(255, 255, 255, .6);
  margin-bottom: 8px;
}

.form-label i {
  color: #95302a;
  font-size: 15px;
}

.custom-input {
  background: var(--dark-3);
  border: 1px solid rgba(201, 168, 76, .2);
  color: var(--black);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: .88rem;
  transition: var(--transition);
}

.custom-input:focus {
  background: var(--dark-3);
  border-color: var(--gold);
  color: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, .15);
}

.custom-input option {
  background: var(--dark);
  color: var(--white);
}

select.custom-input {
  color: rgba(255, 255, 255, .7);
}

select.custom-input option {
  color: var(--white);
}

/* Success Message */
.success-msg {
  background: rgba(201, 168, 76, .12);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: var(--gold);
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.invalid-msg {
  font-size: .78rem;
  color: #ff7070;
  margin-top: 6px;
  display: none;
}

.invalid-msg.show {
  display: block;
}

/* =====================================================
   MODAL
===================================================== */

.modal {
  padding-right: 0 !important;
}

/* Prevent background scroll when modal opens */
body.modal-open {
  overflow: hidden;
  padding-right: 0 !important;
}

/* MODAL DIALOG */
.modal-dialog {
  display: flex;
  align-items: center;
  min-height: 100vh;
  margin: 0 auto;
  padding: 15px;
}

/* MAIN MODAL BOX */
.modal-luxury {
  position: relative;
  background: #fff;
  border-top: 3px solid #95302a;
  box-shadow: 0px 0 10px rgb(22 23 24 / 85%);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 20px;
  width: 100%;
  max-width: 450px;
  margin: auto;

  /* FIX SCROLL ISSUE */
  max-height: 95vh;
  /* overflow-y: auto; */
}

/* REMOVE DEFAULT HEADER */
.modal-header {
  display: none;
}

/* MODAL BODY */
.modal-body {
  padding: 10px 15px 10px;
  position: relative;
}

/* CLOSE BUTTON */
.custom-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 10;
  opacity: 1;
  /* filter: brightness(0) invert(1); */
  box-shadow: none !important;
}

/* LOGO */
.modal-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.modal-logo img {
  width: 130px;
  object-fit: contain;
}

/* HEADING */
.modal-heading {
  text-align: center;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 24px;
  color: #000;
  margin-bottom: 30px;
  line-height: 1.4;
}

.modal-subtitle {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  letter-spacing: 0.05em;
}

/* FORM LABEL */
.form-label {
  color: #0000008f;
  font-size: 14px;
  display: block;
  width: 95%;
  margin: 0 auto 7px;
}

.contact-section .contact-form-card .form-label {
  color: #ddd;
}

.contact-section .custom-input {
  border: 1px solid #dddddd2b;
}


/* INPUT */
.custom-input {
  height: 45px;
  border-radius: 12px;
  border: 1px solid rgb(25 20 20 / 42%);
  background: rgba(255, 255, 255, 0.05);
  color: #000;
  padding: 12px 16px;
  font-size: 15px;
  transition: 0.3s ease;
}

.custom-input::placeholder {
  color: #979595;
}

.custom-popup-box .form-group::placeholder {
  color: #fff !important;
}


.custom-input:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: #78aefc;
  box-shadow: none;
  color: #000;
}

.contact-section .custom-input {
  color: #fff;
}

/* BUTTON */
.btn-submit {
  height: 50px;
  border-radius: 12px;
  border: none;
  background-image: linear-gradient(54deg, #bc5651, #95302a) !important;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  transition: 0.3s ease;
}

.btn-submit:hover {
  color: #fff;
}

/* SUCCESS MESSAGE */
.success-msg {
  background: rgba(25, 135, 84, 0.15);
  border: 1px solid rgba(25, 135, 84, 0.3);
  color: #7dffb3;
  padding: 14px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: 14px;
}

/* ERROR MESSAGE */
.invalid-msg {
  color: #ff7b7b;
  font-size: 12px;
  margin-top: 6px;
  display: none;
}

/* PRIVACY TEXT */
.privacy-text {
  font-size: 13px;
  color: #3a3838d4;
  margin-top: -5px;
  margin-bottom: 20px;
}

/* REMOVE BOOTSTRAP EXTRA ANIMATION SCROLL */
.modal.fade .modal-dialog {
  transform: none;
}

/* ==========================
   CALL NOW BOX
========================== */

.call-now-box {
  margin-top: 20px;
  padding: 10px 18px;
  border-radius: 10px;
  /* background: linear-gradient(135deg, #b68c52, #d4af37); */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  position: relative;
  overflow: hidden;
  /* box-shadow: 0 10px 30px rgb(26 24 21 / 8%); */
}

.call-icon {
  width: 45px;
  height: 45px;
  /* min-width: 55px; */
  border-radius: 50%;
  background: #95302a26;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulseCall 2s infinite;
}

.call-icon i {
  color: #95302a;
  font-size: 20px;
}

.call-content {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.call-label {
  font-size: 14px;
  color: #000;
  opacity: 0.9;
  margin-bottom: 2px;
  text-align: center;
}

.call-number {
  color: #95302a;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  /* letter-spacing: 0.5px; */
  transition: all .3s ease;
}

.call-number:hover {
  color: #000;
  transform: translateX(3px);
}

@keyframes pulseCall {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  }

  70% {
    transform: scale(1.08);
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@keyframes shineEffect {
  100% {
    left: 120%;
  }
}

@media (max-width: 576px) {
  .call-now-box {
    padding: 12px;
  }

  .call-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }

  .call-number {
    font-size: 18px;
  }

  .call-label {
    font-size: 12px;
  }
}

a {
  text-decoration: none;
}

/* =====================================================
   MOBILE RESPONSIVE
===================================================== */

@media (max-width: 767px) {

  .modal-dialog {
    min-height: 100vh;
    margin: 0;
    padding: 10px;
    align-items: center;
  }

  .modal-luxury {
    width: 100%;
    max-width: 100%;
    max-height: 92vh;
    overflow-y: auto;
    padding: 18px;
  }

  .modal-body {
    padding: 10px 10px 10px;
  }

  .modal-title {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 27px;
  }

  .privacy-text {
    font-size: 12px;
    /* color: #ffffffad; */
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .modal-logo img {
    width: 120px;
  }

  /* .custom-input,
  .btn-submit {
    height: 50px;
  } */

  .custom-close {
    top: 14px;
    right: 14px;
  }
}

/* =====================================
   FLOATING INPUT WITH ICON
===================================== */

.floating-fieldset {
  position: relative;
  border: 1px solid #95302a;
  border-radius: 10px;
  padding: 0 10px;
  height: 45px;
  background: transparent;
  transition: .3s;
  border-bottom: 3px solid #95302a;
  margin-top: 27px;
}

.floating-fieldset legend {
  width: auto;
  padding: 0 10px 0 30px;
  margin-left: 10px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 500;
  color: #95302a;
  background: #fff;
  line-height: 1;
  margin-top: -7px;
}

.input-wrap {
  /* display: flex; */
  align-items: center;
  height: 100%;
  gap: 12px;
}

.field-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  min-width: 22px;
}

.field-icon i {
  font-size: 16px;
  color: #95302a;
  margin-top: -18px;
  margin-left: 30px;
}

.floating-input {
  width: 100%;
  border: 0 !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  color: #000 !important;
  font-size: 15px;
  box-shadow: none !important;
  outline: none !important;
}

.floating-input:focus {
  border: 0 !important;
  box-shadow: none !important;
  outline: none !important;
}

.floating-fieldset:focus-within {
  border-color: #95302a;
}

.floating-fieldset:focus-within legend {
  color: #95302a;
}

.floating-fieldset:focus-within .field-icon i {
  color: #95302a;
}

/* Mobile */

@media (max-width:767px) {

  .floating-fieldset {
    /* height: 60px; */
    padding: 0 15px;
  }

  .floating-fieldset legend {
    font-size: 13px;
  }

  .field-icon i {
    font-size: 16px;
  }

  .floating-input {
    font-size: 14px;
  }
}

/* =====================================================
   FOOTER
===================================================== */

.footer-section {
  background: var(--dark-2);
  overflow: hidden;
}

/* =====================================================
   FOOTER TOP
===================================================== */

.footer-top {
  padding: 70px 0 40px;
}

/* =====================================================
   FOOTER COLUMN SPACING
===================================================== */

.footer-section .row>div {
  position: relative;
}

/* =====================================================
   QR + RERA SECTION
===================================================== */

.footer-rera-box {
  display: flex;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
}

/* =====================================================
   QR SECTION
===================================================== */

.footer-qr {
  text-align: center;
}

.footer-qr img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  /* background: #fff; */
  /* padding: 8px; */
  /* border-radius: 16px; */
  box-shadow: 0 8px 25px rgba(0, 0, 0, .25);
}

.footer-qr p {
  margin-top: 12px;
  margin-bottom: 0;
  font-size: 14px;
  letter-spacing: .08em;
  /* text-transform: uppercase; */
  color: rgba(255, 255, 255, .65);
}

/* =====================================================
   RERA DETAILS
===================================================== */

.footer-rera-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.footer-rera-no {
  font-size: .82rem;
  color: #ffffffc7;
  margin: 0;
  line-height: 1.7;
  text-align: center;
}

.footer-rera-no span {
  color: #f5f5f5;
  font-weight: 600;
  letter-spacing: .05em;
}

.footer-rera-link {
  margin-top: -10px;
}

.footer-rera-link a {
  font-size: 13px;
  color: #ffffffc7;
  margin: 0;
  line-height: 1.7;
  text-align: center;
}

.footer-rera-link a:hover {
  color: #ef7871;
}

.footer-rera-link span {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .05em;
}

/* =====================================================
   MAHARERA LOGO
===================================================== */

.maharera-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.maharera-logo img {
  width: 105px;
  height: 105px;
  /* background: #fff; */
  padding: 0px;
  /* border-radius: 12px; */
  transition: all .35s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .2);
}

.maharera-logo img:hover {
  transform: translateY(-4px);
}

/* =====================================================
   FOOTER HEADINGS
===================================================== */

.footer-heading {
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #ef7871;
  margin-bottom: 24px;
  position: relative;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 34px;
  height: 1px;
  background: #ef7871;
}

/* =====================================================
   FOOTER LINKS
===================================================== */

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
  text-align: left;
}

.footer-links a {
  font-size: .87rem;
  color: #ffffffc7;
  text-decoration: none;
  transition: all .3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #ef7871;
  transform: translateX(5px);
}

/* =====================================================
   CONTACT SECTION
===================================================== */

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact a {
  text-decoration: none;
}

.footer-contact p {
  font-size: .86rem;
  color: #ffffffc7;
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.7;
  transition: all .3s ease;
}

.footer-contact a:hover p {
  color: #ef7871;
}

.footer-contact i {
  color: #ef7871;
  font-size: .9rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* =====================================================
   FOOTER BOTTOM
===================================================== */

.footer-bottom {
  background: var(--dark);
  padding: 26px 0 10px;
  border-top: 1px solid rgba(201, 168, 76, .1);
}

.footer-copy {
  font-size: .8rem;
  color: rgba(255, 255, 255, .35);
  margin: 0;
  line-height: 1.7;
}

.text-gold {
  color: var(--gold);
}

/* =====================================================
   DISCLAIMER
===================================================== */

.footer-disclaimer {
  font-size: .72rem;
  color: rgba(255, 255, 255, .24);
  /* margin-top: 20px; */
  line-height: 1.9;
  /* border-top: 1px dashed rgba(255, 255, 255, .08); */
  /* padding-top: 16px; */
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

  .footer-top {
    padding: 70px 0 55px;
  }

  .footer-rera-box {
    justify-content: flex-start;
    margin-bottom: 10px;
  }

  .footer-section .row>div {
    margin-bottom: -10px;
  }

}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

  .footer-top {
    padding: 65px 0 40px;
  }

  /* QR + RERA */

  .footer-rera-box {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 24px;
  }

  .footer-rera-details {
    align-items: center;
  }

  /* HEADINGS */

  .footer-heading {
    margin-bottom: 20px;
    margin-left: 25px;
  }

  /* .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  } */

  /* LINKS */

  .footer-links {
    text-align: center;
    margin-left: 25px;
  }

  .footer-links li {
    margin-bottom: 11px;
  }

  /* CONTACT */

  .footer-contact {
    align-items: center;
    text-align: center;
  }

  .footer-contact p {
    justify-content: center;
  }

  /* COPYRIGHT */

  .footer-copy,
  .footer-disclaimer {
    text-align: left;
  }

}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 575px) {

  .footer-top {
    padding: 65px 0 40px;
  }

  .footer-qr img {
    width: 95px;
    height: 95px;
  }

  .maharera-logo img {
    width: 100px;
    height: 100px;
  }

  .footer-links a,
  .footer-contact p {
    font-size: .83rem;
  }

  .footer-rera-no {
    font-size: .77rem;
  }

  .footer-copy {
    font-size: .75rem;
  }

  .footer-disclaimer {
    font-size: .68rem;
    line-height: 1.8;
  }

}

/* =====================================================
   BACK TO TOP
   ===================================================== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 13px;
  width: 46px;
  height: 46px;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: var(--transition);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #000;
  border: 1px solid #fff;
  transform: translateY(-3px);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 991.98px) {
  .section-pad {
    padding: 70px 0;
  }

  .about-main-img {
    height: 380px;
  }

  /* .developer-img {
    height: 320px;
  } */

  .developer-img {
    width: 50%;
    /* margin: -10px auto 10px; */
  }

  .developer-img-wrap {
    border: none;
    background: none;
  }

  #navMenu {
    background: rgba(14, 14, 14, .98);
    padding: 20px 24px;
    margin-top: 12px;
    border-top: 1px solid var(--border);
  }

  .navbar-nav .nav-link {
    padding: 12px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    color: #fff;
  }

  .btn-enquire {
    margin-top: 50px;
    /* width: 100%; */
    margin: 0px auto;
    display: block;
  }

  .btn1-enquire {
    margin-top: 50px;
    /* width: 100%; */
    margin: 0px auto;
    display: block;
    margin-top: 1rem;
  }


  .btn-submit {
    margin-top: 12px;
    width: 100%;
  }

}

@media (max-width: 767.98px) {
  .section-pad {
    padding: 60px 0;
  }

  .hero-heading {
    font-size: clamp(2.4rem, 8vw, 3.5rem);
  }

  .about-badge {
    bottom: -5px;
    right: -10px;
    padding: 10px 10px;
  }

  .badge-num {
    margin-bottom: 3px;
  }

  .contact-form-card {
    padding: 30px 25px;
    width: 100%;
  }

  .cinfo-item {
    margin-bottom: 0px;
  }

  .custom-input {
    height: 40px;
  }

  .back-to-top {
    bottom: 60px;
    right: 15px;
  }

  .pricing-card {
    padding: 20px 30px 40px 30px;
  }

  .connect-card {
    padding: 15px 18px;
  }

  .btn-primary-dark {
    display: block;
    margin: 20px auto;
  }

}

@media (max-width: 575.98px) {
  .section-pad {
    padding: 50px 0;
  }

  .hero-desc {
    font-size: .85rem;
  }

  .btn-hero {
    padding: 14px 32px;
    font-size: .78rem;
  }

  h1.section-heading {
    font-size: 34px;
    margin-bottom: -10px;
  }

  .about-section h2.section-heading {
    font-size: 24px;
  }

  .section-heading {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 25px;
  }

  .gallery-section .section-heading {
    margin-bottom: 40px;
  }

  .section-eyebrow,
  .developer-heading {
    text-align: center;
    line-height: 1.2;
    margin-bottom: 25px;
  }

  .contact-section .section-heading {
    text-align: center;
  }

  .about-img-wrap {
    box-shadow: none;
  }

  .about-main-img {
    height: auto;
    box-shadow: 14px 14px 0 var(--gold);
    margin-top: -2rem;
    margin-bottom: 3rem;
  }

  .dev-stat {
    padding: 16px 8px;
  }

  .stat-num {
    font-size: 28px;
  }

  .modal-header {
    padding: 22px 22px 16px;
  }

  .modal-body {
    padding: 10px 10px 10px;
  }

  .footer-top {
    padding: 55px 0 40px;
  }

  .amenity-card {
    padding: 20px 5px 15px 5px;
  }

  .amenity-card i {
    font-size: 1.5rem;
  }
}

.grecaptcha-badge {
  transform: translateY(80px) !important;
  opacity: .9 !important;
  transition: .3s
}

/*Share Button*/

.wrapper {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 100;
}

.wrapper :is(.btn, .link) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  left: 6px;
  bottom: 2rem;
  background-color: #04a53a;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  position: relative;
  animation: pulse 3s infinite;
}

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

.list .item {
  list-style-type: none;
  display: contents;
}

/* Define the pulse animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    background-color: #04a53a;
    box-shadow: 0 0 0 rgba(28, 31, 32, 0.7);
  }

  50% {
    transform: scale(1.2);
    background-color: #04a53a;
    box-shadow: 0 0 20px rgba(28, 31, 32, 0.7);
  }

  100% {
    transform: scale(1);
    background-color: #04a53a;
    box-shadow: 0 0 0 rgba(28, 31, 32, 0.7);
  }
}


.down_enquiry {
  /* background: #95302a; */
  background-image: linear-gradient(54deg, #bc5651, #95302a) !important;
  bottom: 0;
  left: 0;
  right: 0;
  position: fixed;
  width: 100%;
  z-index: 9;
  display: none;
  animation: pulseEffect4 2s infinite;
}

/* Pulse effect animation */
@keyframes pulseEffect4 {
  0% {
    transform: scale(1);
    background-color: #a25c3f;
  }

  50% {
    transform: scale(1.05);
    background-color: #a25c3f;
  }

  100% {
    transform: scale(1);
    background-color: #a25c3f;
  }
}

.down_enquiry ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.down_enquiry ul li {
  flex: 1;
  text-align: center;
  border-right: 1px solid #fff;
}

.down_enquiry ul li:last-child {
  border-right: none;
}

.down_enquiry ul li a {
  color: #fff;
  display: block;
  font-size: 15px;
  text-decoration: none;
  font-weight: 600;
  padding: 7px 0;
  position: relative;
  overflow: hidden;
  word-spacing: 2px;
  /* For animation clipping */
}

/* =====================================================
   POPUP DESIGN
===================================================== */

.custom-popup-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);

  display: none;
  justify-content: center;
  align-items: center;

  z-index: 99999;
  padding: 15px;
}

/* ACTIVE */
.custom-popup-overlay.active {
  display: flex;
}

/* POPUP BOX */
.custom-popup-box {
  position: relative;
  width: 100%;
  max-width: 430px;

  background: #fff;
  border-top: 3px solid #95302a;
  box-shadow: 0px 0 10px rgb(22 23 24 / 85%);

  border-radius: 10px;

  padding: 30px 25px;

  overflow: hidden;

  animation: popupFade 0.35s ease;
}

/* ANIMATION */
@keyframes popupFade {

  from {
    transform: translateY(30px) scale(0.95);
    opacity: 0;
  }

  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

/* CLOSE */
.popup-close {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 20px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: 0.3s ease;
  border: navajowhite;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  filter: invert(1);
}

/* .popup-close:hover {
  background: #78aefc;
  color: #111;
} */

/* LOGO */
.popup-logo {
  text-align: center;
  margin-bottom: 20px;
}

.popup-logo img {
  width: 125px;
  object-fit: contain;
  margin: 0 auto;
}

/* HEADING */
.popup-heading {
  text-align: center;
  margin-bottom: 25px;
}

.popup-title {
  font-family: var(--font-display);
  color: #000;
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 30px;
}

.popup-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin: 0;
}

/* LABEL */
.popup-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #0000008f;
  letter-spacing: 0.5px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.popup-label i {
  color: #95302a;
  font-size: 15px;
}


/* INPUT */
.popup-input {
  width: 100%;
  height: 45px;

  border-radius: 14px;

  border: 1px solid rgb(25 20 20 / 42%);

  background: rgba(255, 255, 255, 0.05);

  padding: 0 16px;

  color: #000;
  font-size: 15px;

  transition: 0.3s ease;
}

.popup-input::placeholder {
  color: #979595;
}

.popup-input:focus {
  outline: none;
  border-color: #78aefc;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

/* BUTTON */
.popup-submit-btn {
  height: 50px;
  border: none;
  border-radius: 14px;
  background-image: linear-gradient(54deg, #bc5651, #95302a) !important;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s ease;
  animation: pulseEffect2 2.5s infinite;
}


@keyframes pulseEffect2 {
  0% {
    transform: scale(1);
    background-color: #95302a;
  }

  50% {
    transform: scale(1.05);
    background-color: #95302a;
    /* Lighten the background to create a highlight effect */
  }

  100% {
    transform: scale(1);
    background-color: #95302a;
  }
}

/* .popup-submit-btn:hover {
  transform: translateY(-2px);
} */

/* PRIVACY */
.popup-privacy {
  color: #3a3838d4;
  font-size: 13px;
  text-align: center;

  margin-top: -5px;
  margin-bottom: 18px;
}

/* SCROLL FIX */
body.popup-open {
  overflow: hidden;
}

/* ==========================================
   POPUP FLOATING INPUTS
========================================== */
/* ==========================================
   POPUP FLOATING INPUT DESIGN
========================================== */

.popup-floating-fieldset {
  position: relative;
  width: 100%;
  height: 45px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  margin-top: 27px;
  border: 1px solid #95302a;
  border-bottom: 3px solid #95302a;
  border-radius: 10px;
  background: transparent;
  transition: all .3s ease;
}

/* Floating Label */

.popup-floating-fieldset legend {
  position: absolute;
  top: -11px;
  left: 20px;

  display: flex;
  align-items: center;
  gap: 8px;

  padding: 0 12px;

  margin: 0;
  width: auto;

  background: #fff;

  color: #95302a;
  font-size: 15px;
  font-weight: 600;

  line-height: 1;
}

/* Label Icons */

.popup-floating-fieldset legend i {
  font-size: 17px;
  color: #95302a;
}

/* Input */

.popup-floating-input {
  width: 100%;
  height: 100%;

  border: none !important;
  background: transparent !important;

  outline: none !important;
  box-shadow: none !important;

  /* padding:15px 0 0 0 !important; */
  margin: 0 !important;

  color: #222 !important;
  font-size: 16px;
  font-weight: 500;
}

.popup-floating-input:focus {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.popup-floating-input::placeholder {
  color: #999;
}

/* Focus Effect */

.popup-floating-fieldset:focus-within {
  /* border-color:#95302a; */
  box-shadow: 0 0 0 1px rgba(141, 91, 91, .12);
}

.popup-floating-fieldset:focus-within legend {
  color: #95302a;
}

.popup-floating-fieldset:focus-within legend i {
  color: #95302a;
}

/* Remove Bootstrap Style */

.popup-floating-input.form-control {
  min-height: auto;
}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:767px) {

  .popup-floating-fieldset {
    height: 45px;
    padding: 0 16px;
    border-radius: 14px;
  }

  .popup-floating-fieldset legend {
    left: 15px;
    font-size: 14px;
    top: -10px;
    padding: 0 10px;
  }

  .popup-floating-fieldset legend i {
    font-size: 16px;
  }

  .popup-floating-input {
    font-size: 15px;
  }
}


/* New Developer Section CSS Code */
/*==============================
Developer Section
==============================*/

.developer-section {
  padding: 90px 0;
  background: #fff;
}

.developer-card {

  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  /* border-radius:18px; */
  background: #fff;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .08);

}

/*==============================
LEFT
==============================*/

.developer-left {

  padding: 40px 20px 30px 80px;
  position: relative;
  background: #fff;

}

.developer-left::before {

  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 100%;

  background:
    repeating-linear-gradient(90deg,
      #7a1f19 0px,
      #7a1f19 3px,
      #9d342c 3px,
      #9d342c 7px);

}

.developer-logo {

  margin-bottom: 35px;

}

.developer-logo img {
  margin: 0 auto;
  width: 170px;

}

.developer-left h2 {

  font-size: 34px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #222;

}

.developer-left p {

  color: #555;
  line-height: 1.9;
  font-size: 16px;
  margin-bottom: 20px;

}

.developer-left strong {

  color: #b68b2c;

}

.developer-sign {

  margin-top: 40px;

}

.developer-sign img {

  width: 160px;

}


/*==============================
RIGHT
==============================*/

.developer-right {

  position: relative;
  min-height: 630px;

  background:
    repeating-linear-gradient(90deg,
      #852721 0px,
      #852721 3px,
      #9c342d 3px,
      #9c342d 12px);

}

.developer-overlay {

  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(133, 39, 33, .35),
      rgba(133, 39, 33, .1));

}

.developer-img {

  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  z-index: 2;

}

.developer-text {

  position: absolute;
  left: 60px;
  bottom: 90px;
  z-index: 5;

}

.developer-text h3 {

  font-size: 60px;
  line-height: 1.1;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  margin: 0;
  text-transform: uppercase;

}

/*==============================
Responsive
==============================*/

@media(max-width:1200px) {

  .developer-text h3 {

    font-size: 58px;

  }

  .developer-right {

    min-height: 620px;

  }

}

@media(max-width:991px) {

  .developer-card {

    grid-template-columns: 1fr;

  }

  .developer-left {

    padding: 60px 15px;

  }

  .developer-right {

    min-height: 550px;

  }

  .developer-text {

    left: 35px;
    bottom: 45px;

  }

  .developer-text h3 {

    font-size: 48px;

  }

}

@media(max-width:767px) {

  .developer-left {

    padding: 20px 15px 10px;

  }

  .developer-left .developer-logo img {
    width: 200px;
    margin-bottom: -10px;

  }

  .developer-left::before {
    background: none;
  }

  .developer-left h2 {

    font-size: 28px;

  }

  .developer-left p {

    font-size: 15px;
    line-height: 1.8;

  }

  .developer-right {

    min-height: 430px;

  }

  .developer-img {

    width: 100%;
    height: 100%;
    bottom: 0;
    right: 0;

  }

  .developer-text {

    left: 20px;
    bottom: 25px;

  }

  .developer-text h3 {

    font-size: 38px;
    line-height: 1.2;

  }

}

@media(max-width:480px) {

  .developer-right {

    min-height: 360px;

  }

  .developer-text h3 {

    font-size: 30px;
    line-height: 1.1;

  }

}

/* Section Padding  */

.about-section {
  padding: 55px 0 70px;
  background: #fff;
}

.highlights-section {
  padding: 60px 0 50px;
}

.pricing-section {
  padding: 60px 0 40px;
  background: #fff;
}

.amenities-section {
  padding: 65px 0 70px;
}

.connectivity-section {
  padding: 60px 0 70px;
  background: #f6f2f28c;
}

.developer-section {
  padding: 80px 0 90px;
}

.faq-section {
  padding: 60px 0 70px;
}

.contact-section {
  padding: 90px 0 90px;
}

@media (max-width: 767px) {

  .connect-info h6 {
    margin-bottom: 3px;
  }

  .about-section {
    padding: 30px 0 55px;
  }

  .highlights-section {
    padding: 50px 0 60px;
  }

  .pricing-section {
    padding: 50px 0 40px;
  }

  .amenities-section {
    padding: 55px 0 55px;
  }

  .connectivity-section {
    padding: 50px 0 55px;
  }

  .developer-section {
    padding: 60px 0 55px;
  }

  .faq-section {
    padding: 50px 0 50px;
  }

  .contact-section {
    padding: 45px 0 65px;
  }

  .popup-close {
    top: 2px;
    right: 2px;
  }

  .amenity-card span {
    font-size: 14px;
    letter-spacing: 0.5px;
  }

}

.btn-close-white {
  filter: none;
}

.contact-form-card .form-label i {
  color: #ef7871;
  font-size: 15px;
  margin-right: 7px;
}

.contact-form-card .privacy-text {
  color: #ddddddba;
}




/* Auto & Exit Popup */
.custom-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .7);
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.custom-popup-box {
  position: relative;
  z-index: 100000;
  pointer-events: auto;
}

.custom-popup-overlay input,
.custom-popup-overlay button,
.custom-popup-overlay select,
.custom-popup-overlay textarea {
  pointer-events: auto;
}

/* br {
  display: inline-block;
}

@media (max-width: 767px) {
  br {
    display: none;
  }
} */


/* New Gallery Section Code */

.gallery-section {

  padding: 60px 0 90px;
  overflow: hidden;
  background: #fff;

}

.gallery-title {

  text-align: center;
  margin-bottom: 45px;

}

.gallery-title h2 {

  font-size: 46px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 18px;

}

.gallery-title p {

  font-size: 28px;
  letter-spacing: 5px;
  color: #c48d2f;

}

.gallerySwiper {

  width: 100%;
  padding-bottom: 200px;

}

.gallerySwiper .swiper-slide {

  background-position: center;
  background-size: cover;

  width: 560px;
  height: auto;

  transition: .4s;

}

.gallerySwiper .swiper-slide img {
  display: block;
  margin: 0 auto;
  width: 90%;
  height: 300px;
  /* height: auto; */
  object-fit: cover;

  display: block;

  border-radius: 5px;

}

.swiper-pagination {

  bottom: 0 !important;

}

.swiper-pagination-bullet {

  width: 10px;
  height: 10px;
  background: #bdbdbd;
  opacity: 1;

}

.swiper-pagination-bullet-active {

  background: #111;

}

/* Tablet */

@media(max-width:991px) {

  .gallery-title h2 {

    font-size: 38px;

  }

  .gallery-title p {

    font-size: 22px;
    letter-spacing: 3px;

  }

  .gallerySwiper .swiper-slide {

    width: 430px;
    height: auto;

  }

}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.gallery-item img {
  transition: .5s;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, .55); */

  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  transition: .4s;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-btn {
  padding: 7px 28px;
  border-radius: 10px;
  background: #111;
  opacity: 0.9;
  color: #fff;
  border: 1px solid #fff;
  border-bottom: 3px solid #fff;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 1px;
  transition: .3s;
}

.gallery-btn:hover {
  background: #95302a;
  color: #fff;
  border: 1px solid #fff;
  border-bottom: 3px solid #fff;
}

/* Lightbox Counter Bottom Right */

.gclose {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 48px !important;
  height: 48px !important;
  color: #fff !important;
  opacity: 1 !important;
  background: #282828 !important;
  border: 1px solid #ddd !important;
}

.gnext,
.gprev {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 55px !important;
  height: 55px !important;
  opacity: 1 !important;
  color: #fff !important;
  background: #282828 !important;
  border: 1px solid #ddd !important;
}

.gcounter {
  display: block !important;
  color: #fff !important;
  right: 20px !important;
  left: auto !important;
  bottom: 20px !important;
  top: auto !important;
  font-size: 15px !important;
  z-index: 999999 !important;
}

.gslide-description {
  display: none !important;
}


.gallery-item {

  position: relative;
  overflow: hidden;

}

.gallery-item img {

  transition: .5s;

}


/* Mobile */

@media(max-width:576px) {

  .glightbox-clean .gprev {
    top: 47% !important;
  }

  .glightbox-clean .gnext {
    top: 47% !important;
  }


  .gallery-section {

    padding: 50px 0 65px;

  }

  .gallery-title h2 {

    font-size: 30px;

  }

  .gallery-title p {

    font-size: 18px;
    letter-spacing: 2px;
    padding: 0 20px;
    line-height: 1.6;

  }

  .gallerySwiper .swiper-slide img {
    width: 95%;
    height: 200px;
  }

  .gallerySwiper .swiper-slide {

    width: 280px;
    height: auto;

  }

  .gallery-btn {
    padding: 5px 28px;
  }

}

@media(max-width:768px) {

  .luxury-amenities-section .section-sub {
    margin-bottom: -1.5rem;
  }

  .glightbox-clean .gprev {
    top: 47% !important;
  }

  .glightbox-clean .gnext {
    top: 47% !important;
  }

  .gnext {
    right: 10px !important;
  }

  .gprev {
    left: 10px !important;
  }

  .gnext,
  .gprev {

    width: 42px !important;
    height: 42px !important;

  }

  .gnext svg,
  .gprev svg {

    width: 20px !important;
    height: 20px !important;

  }

  .gcounter {
    right: 10px !important;
    bottom: 10px !important;
    font-size: 14px !important;
  }

  .gclose {
    right: 10px !important;
    top: 10px !important;
    width: 35px !important;
    height: 35px !important;
  }

  .glightbox-clean .gclose svg {
    width: 14px !important;
  }

}


/* another new css code */

/*==================================================
LUXURY AMENITIES
==================================================*/

.luxury-amenities-section {
  background: #f6f2f28c;
  /* background: #f8f4ed; */
  padding: 60px 0 75px;
  overflow: hidden;
}

/*================ Heading =================*/

.luxury-heading {
  max-width: 850px;
  margin: 0 auto 70px;
}

.luxury-eyebrow {
  color: #95302a;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.luxury-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 58px;
  font-weight: 500;
  color: #17342d;
  margin-bottom: 20px;
}

.luxury-title em {
  font-style: italic;
  color: #95302a;
}

.luxury-subtitle {
  max-width: 700px;
  margin: auto;
  font-size: 17px;
  line-height: 30px;
  color: #666;
}

/*================ Image =================*/

.clubhouse-image {
  margin: 0 auto 70px;
  text-align: center;
}

.clubhouse-image img {

  width: 100%;
  max-width: 1100px;
  height: 580px;

  object-fit: cover;

  border-radius: 30px;

  box-shadow: 0 30px 80px rgba(0, 0, 0, .15);

}

/*================ Tabs =================*/

/*================ Premium Tabs =================*/

.luxury-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.luxury-tab {
  position: relative;
  border: 1px solid var(--gold);
  background: rgba(255, 255, 255, 0.7);
  color: #5b5b5b;
  padding: 7px 25px;
  min-width: 110px;
  border-radius: 10px;
  border-bottom: 3px solid var(--gold);
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all .35s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .05);
}

.luxury-tab:hover {
  transform: translateY(-3px);
  color: #17342d;
  border-color: #95302a;
  box-shadow: 0 12px 28px rgba(184, 134, 91, .22);
}

/* Active Button */

.luxury-tab.active {
  background-image: linear-gradient(54deg, #bc5651, #95302a) !important;
  /* border: 1px solid #95302a; */
  color: #fff;
  border-color: #95302a;
  box-shadow: 0 15px 35px rgba(184, 134, 91, .35);
}

.luxury-tab.active:hover {
  color: #fff;
}

/* Small Golden Dot */

/* .luxury-tab.active::before{
  content:"";
  position:absolute;
  width:8px;
  height:8px;
  border-radius:50%;
  background:#fff;
  top:50%;
  left:18px;
  transform:translateY(-50%);
} */

/* .luxury-tab.active{
  padding-left:40px;
} */

/*================ Content =================*/

.luxury-content {

  display: none;

  animation: fadeLuxury .5s ease;

}

.luxury-content.active {

  display: block;

}

@keyframes fadeLuxury {

  from {

    opacity: 0;

    transform: translateY(25px);

  }

  to {

    opacity: 1;

    transform: translateY(0);

  }

}

/*================ Heading Divider =================*/

.content-heading {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 25px;

  margin-bottom: 55px;

}

.content-heading span {

  width: 120px;

  height: 1px;

  background: #d7c8b8;

}

.content-heading h3 {

  margin: 0;

  font-family: 'Cormorant Garamond', serif;

  font-size: 42px;

  color: #17342d;

}

/*================ Grid =================*/

.amenities-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 0px 60px;

}

.amenity-item {

  display: flex;

  align-items: center;

  gap: 15px;

  padding: 18px 0;

  border-bottom: 1px solid #e7ddd2;

  transition: .3s;

  font-size: 17px;

  color: #444;

}

.amenity-item:hover {

  padding-left: 12px;

  color: #17342d;

}

.amenity-item i {

  width: 35px;

  height: 35px;

  border-radius: 50%;

  background: #fff;

  display: flex;

  align-items: center;

  justify-content: center;

  color: #95302a;

  box-shadow: 0 10px 20px rgba(0, 0, 0, .08);

  transition: .35s;

}

.amenity-item:hover i {

  background: #95302a;

  color: #fff;

  transform: rotate(360deg);

}

/*================ Mobile =================*/

@media(max-width:991px) {

  .luxury-title {

    font-size: 46px;

  }

  .clubhouse-image img {

    height: 420px;

  }

  .content-heading h3 {

    font-size: 34px;

  }

}

@media(max-width:767px) {

  .luxury-title {

    font-size: 36px;

  }

  .luxury-tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 12px;
    padding: 5px 0 12px;
    margin-bottom: 35px;
    scrollbar-width: none;
  }

  .luxury-tabs::-webkit-scrollbar {
    display: none;
  }

  .luxury-tab {
    flex: 0 0 auto;
    min-width: 70px;
    padding: 5px 10px;
    font-size: 13px;
    letter-spacing: 1.5px;
  }

  /* .luxury-tab.active{
    padding-left:34px;
  } */

  /* .luxury-tab.active::before{
    left:14px;
    width:7px;
    height:7px;
  } */

  .clubhouse-image img {
    height: 280px;
    border-radius: 18px;
  }

  .content-heading {
    gap: 10px;
  }

  .content-heading span {
    width: 40px;
  }

  .content-heading h3 {
    font-size: 25px;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0px 10px;
  }

  .amenity-item {
    gap: 7px;
    padding: 15px 0;
  }

  .amenity-item {
    font-size: 15px;
  }

  .content-heading {
    margin-bottom: 25px;
  }

  .luxury-tabs {
    margin-bottom: 30px;
  }

  .luxury-amenities-section {
    padding: 55px 0 65px;
  }

}