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

/* ── CSS Custom Properties ── */
:root {
  --gold: #e08866;
  --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: 600;
  letter-spacing: .25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 15px;
}

h1.section-heading {
  font-size: 40px;
}

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

.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);
}

.btn-submit-bottom {
  background: #e08866;
  border: 1px solid #e08866;
  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: #e08866;
  border: 1px solid #e08866;
  color: #fff;
}

.btn-submit {
  /* background: #e08866; */
  /* 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);
}

/* .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: 87px;
}

/* =====================================================
   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;
  }

}

/* 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: 100px;
  height: auto;
  object-fit: contain;
  transition: all .3s ease;
}

/* SCROLLED NAVBAR LOGO */

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

/* HOVER EFFECT */

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

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

@media (max-width: 767px) {

  .navbar-logo {
    width: 80px;
  }

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

  #mainNavbar {
    padding: 7px 0;
  }

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


  #carouselExampleControls {
    margin-top: 73px;
  }

}

.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 10px !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);
}

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

.badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  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: 10px 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;
}

/* =====================================================
   HIGHLIGHTS
   ===================================================== */

.highlights-section {
  background: var(--off-white);
}

.highlight-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 15px 30px;
  height: 100%;
  border: 1px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.highlight-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: var(--transition);
}

.highlight-card:hover {
  box-shadow: var(--shadow-card);
  border-color: var(--border);
  transform: translateY(-6px);
}

.highlight-card:hover::after {
  transform: scaleX(1);
}

/* =====================
   ICON + HEADING
   ===================== */

.hcard-top {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.hcard-icon {
  width: 45px;
  height: 45px;
  /* min-width: 58px; */
  border-radius: 50%;
  background: rgb(212 175 55 / 23%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold);
  transition: var(--transition);
}

.highlight-card:hover .hcard-icon {
  transform: scale(1.1);
}

.highlight-card h5 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1.4;
}

/* =====================
   DESCRIPTION
   ===================== */

.highlight-card p {
  font-size: .88rem;
  color: var(--body-text);
  margin-bottom: 0;
  line-height: 1.6;
  font-weight: 400;
}

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

@media (max-width: 767px) {

  .about-list li {
    font-size: 16px;
    line-height: 1.2;
  }

  .highlight-card {
    padding: 15px 22px;
  }

  .hcard-top {
    gap: 12px;
    margin-bottom: 10px;
  }

  .hcard-icon {
    width: 35px;
    height: 35px;
    /* min-width: 50px; */
    font-size: 18px;
  }

  .highlight-card h5 {
    font-size: 1.05rem;
  }

  .highlight-card p {
    font-size: .85rem;
    line-height: 1.7;
  }

}

/* =====================================================
   PRICING
   ===================================================== */
/* ===================== PRICING ===================== */

.pricing-card {
  background: var(--white);
  border: 1px solid #e8e0d0;
  border-radius: var(--radius);
  padding: 20px 30px 40px 30px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  z-index: 1;
}

/* Background Image */
.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  filter: blur(5px);
  z-index: -2;
}

/* Dark Overlay */
.pricing-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: -1;
}

/* Different Background Images */
.pricing-card-1::before {
  background-image: url("../images/Floorplan-4BHK-Arvaana-Balewadi.webp");
}

.pricing-card-2::before {
  background-image: url("../images/Floorplan-4.5BHK-Arvaana-Balewadi.webp");
}

/* .pricing-card-3::before {
  background-image: url("../images/floorplan.webp");
} */

/* Hover */
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
  border-color: var(--gold);
}

.pricing-featured {
  background: var(--dark);
  border-color: var(--gold);
  color: var(--white);
}

.pricing-featured .pricing-area,
.pricing-featured .pricing-features li {
  color: rgba(255, 255, 255, .7);
}

.pricing-badge {
  display: inline-block;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.pricing-type {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: inherit;
  position: relative;
  z-index: 2;
}

.pricing-featured .pricing-type {
  color: var(--white);
}

.pricing-area {
  font-size: .82rem;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.pricing-price {
  /* font-family: var(--font-display); */
  font-family: serif;
  font-size: 28px;
  font-weight: 500;
  color: #fff;
  /* margin-bottom: 15px; */
  border-bottom: 1px solid rgb(255 255 255 / 30%);
  padding-bottom: 15px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 300;
  opacity: .7;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}

.pricing-features li {
  padding: 15px 0;
  font-size: 20px;
  align-items: center;
  text-align: center;
  gap: 10px;
  border-bottom: 1px dashed rgb(255 255 255 / 35%);
  color: #e08866;
}

.pricing-featured .pricing-features li {
  border-bottom-color: rgba(255, 255, 255, .08);
}

.pricing-features li i {
  color: var(--gold);
  font-size: .75rem;
  flex-shrink: 0;
}

.pricing-features h4 {
  color: #ffffff;
  font-size: 30px;
  margin-bottom: 0rem;
}

.pricing-features h4 span {
  color: #ffffff;
  font-size: 16px;
}

.btn-pricing {
  margin: 0px auto;
  width: 70%;
  display: block;
  background: transparent;
  border: 1px solid var(--gold);
  color: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  /* text-transform: uppercase; */
  padding: 7px 25px;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  z-index: 2;
  backdrop-filter: blur(2px);
  border-bottom: 3px solid var(--gold);
}

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

/* Mobile Responsive */
@media (max-width: 767px) {

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

  .pricing-price {
    font-size: 26px;
  }

  .pricing-features li {
    font-size: 18px;
  }

}

/* =====================================================
   AMENITIES
   ===================================================== */
.amenities-section {
  background: var(--dark);
}

.amenities-section .section-eyebrow {
  color: var(--gold);
}

.amenities-section .section-heading {
  color: var(--white);
}

.amenities-section .section-sub {
  color: rgb(255 255 255 / 74%);
}

.amenity-card {
  background: var(--dark-3);
  border: 1px solid rgba(201, 168, 76, .12);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  cursor: default;
  transition: var(--transition);
  height: 100%;
}

.amenity-card:hover {
  background: var(--mid);
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, .15);
}

.amenity-card i {
  font-size: 1.8rem;
  color: var(--gold);
  transition: var(--transition);
}

.amenity-card:hover i {
  transform: scale(1.15);
}

.amenity-card span {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .75);
  text-transform: uppercase;
}

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

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

.connectivity-section {
  background: var(--off-white);
}

/* 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: 45px;
  height: 45px;
  /* min-width: 56px; */
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dark), var(--mid));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  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;
  }

}


/* =====================================================
   DEVELOPER
===================================================== */

.developer-section {
  background: var(--white);
}

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

.developer-img-wrap {
  border: 1px solid var(--border);
  padding: 12px;
  display: inline-block;
  width: 100%;
}

.developer-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}

/* =====================================================
   HEADING + LOGO
===================================================== */

.developer-heading-wrap {
  position: relative;
  margin-bottom: 18px;
  padding-right: 140px;
}

.developer-heading {
  margin-bottom: 0 !important;
}

/* LOGO RIGHT CORNER DESKTOP */

.developer-logo {
  position: absolute;
  top: 0;
  right: 0;
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: all 0.4s ease;
}

/* =====================================================
   STATS
===================================================== */

.dev-stats {
  margin-top: 24px;
}

.dev-stat {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 18px 10px;
  text-align: center;
  border-bottom: 3px solid var(--gold);
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* HOVER SHINE EFFECT */

.dev-stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: rgba(255, 255, 255, 0.35);
  transform: skewX(-25deg);
  transition: all 0.6s ease;
}

.dev-stat:hover::before {
  left: 130%;
}

/* BOX HOVER */

.dev-stat:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-bottom-color: #c8a45d;
}

/* NUMBER */

.stat-num {
  display: block;
  font-family: auto;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 7px;
  transition: all 0.35s ease;
}

.dev-stat:hover .stat-num {
  transform: scale(1.08);
}

/* LABEL */

.stat-label {
  font-size: 14px;
  letter-spacing: 0px;
  text-transform: capitalize;
  color: #282828;
  line-height: 1.4;
  font-weight: 400;
}

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

@media (max-width: 1399px) {

  .developer-logo {
    height: 54px;
  }

}

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

@media (max-width: 1199px) {

  .developer-img {
    height: 380px;
  }

  .developer-logo {
    height: 50px;
  }

}

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

@media (max-width: 991px) {

  .developer-img {
    height: 360px;
  }

  .developer-logo {
    height: 46px;
  }

}

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

@media (max-width: 767px) {

  .developer-img {
    height: 300px;
  }

  /* CENTER TEXT */

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

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

  /* LOGO CENTER */

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

  .developer-logo {
    position: relative;
    top: auto;
    right: auto;
    display: block;
    margin: 35px auto 35px;
    height: 50px;
  }

  /* 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: var(--off-white);
}

.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: 1.1rem;
  font-weight: 600;
  background: var(--white);
  color: var(--dark);
  padding: 20px 20px;
  box-shadow: none !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: #ac5d3e;
  background: var(--white);
  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;
}

/* =====================================================
   CONTACT
   ===================================================== */
.contact-section {
  background: var(--white);
}

.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: #cb7a59;
}

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

/* 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 #e08866;
  font-size: 20px;
  color: #e08866;
  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: var(--off-white);
  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: #c7653f;
  margin-bottom: 4px;
}

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

.cinfo-item p:hover {
  color: #cb7a59;
  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: #f5a586;
  margin-bottom: 28px;
}

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

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

.custom-input {
  background: var(--dark-3);
  border: 1px solid rgba(201, 168, 76, .2);
  color: var(--white);
  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::placeholder {
  color: rgba(255, 255, 255, .25);
}

.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: var(--dark);
  border: 1px solid var(--border);
  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 25px;
  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: 100px;
  object-fit: contain;
}

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

.modal-title {
  font-family: var(--font-display);
  font-size: 24px;
  color: #f5f5f5;
  margin-bottom: 6px;
  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: #ffffffd1;
  font-size: 14px;
  display: block;
  width: 95%;
  margin: 0 auto 7px;
}

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

.custom-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

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

/* BUTTON */
.btn-submit {
  height: 50px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, #e08866, #a25c3f);
  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: #ffffffad;
  margin-top: 20px;
  margin-bottom: 20px;
}

/* REMOVE BOOTSTRAP EXTRA ANIMATION SCROLL */
.modal.fade .modal-dialog {
  transform: 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 25px;
  }

  .modal-title {
    font-size: 20px;
    line-height: 1.4;
  }

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

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

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

  .custom-close {
    top: 14px;
    right: 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: rgba(255, 255, 255, .58);
  margin: 0;
  line-height: 1.7;
  text-align: center;
}

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

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

.footer-rera-link a {
  font-size: 13px;
  color: rgba(255, 255, 255, .58);
  margin: 0;
  line-height: 1.7;
  text-align: center;
}

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

.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: #f9a787;
  margin-bottom: 24px;
  position: relative;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 34px;
  height: 1px;
  background: rgba(201, 168, 76, .45);
}

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

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

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

.footer-links a {
  font-size: .87rem;
  color: rgba(255, 255, 255, .52);
  text-decoration: none;
  transition: all .3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--gold);
  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: rgba(255, 255, 255, .52);
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.7;
  transition: all .3s ease;
}

.footer-contact a:hover p {
  color: var(--gold);
}

.footer-contact i {
  color: var(--gold);
  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: var(--gold-light);
  transform: translateY(-3px);
}

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

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

  .developer-img {
    height: 320px;
  }

  #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;
  }

  .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: 0px;
    right: -10px;
  }

  .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: 36px;
  }

  .section-heading {
    font-size: 1.8rem;
  }

  .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 25px;
  }

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

  .amenity-card {
    padding: 22px 12px;
  }

  .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: #e08866; */
  background: linear-gradient(135deg, #e08866, #a25c3f);
  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
===================================================== */
/* =====================================================
   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: #121212;
  border: 1px solid rgba(255, 255, 255, 0.08);

  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;
}

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

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

.popup-logo img {
  width: 95px;
  object-fit: contain;
}

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

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

.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: rgba(255, 255, 255, 0.9);

  font-size: 14px;
  font-weight: 500;

  margin-bottom: 8px;
}

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


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

  border-radius: 14px;

  border: 1px solid rgba(255, 255, 255, 0.12);

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

  padding: 0 16px;

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

  transition: 0.3s ease;
}

.popup-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.popup-input:focus {
  outline: none;

  border-color: #f7956f;

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

  box-shadow: none;
}

/* BUTTON */
.popup-submit-btn {
  height: 50px;

  border: none;
  border-radius: 14px;

  background: linear-gradient(135deg, #e08866, #a25c3f);

  color: #fff;

  font-size: 16px;
  font-weight: 600;

  transition: 0.3s ease;
}

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

/* PRIVACY */
.popup-privacy {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  text-align: center;

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

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

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

@media (max-width: 767px) {

  .custom-popup-box {
    max-width: 100%;
    padding: 25px 18px;
    border-radius: 10px;
  }

  .popup-title {
    font-size: 21px;
  }

  .popup-input {
    height: 48px;
  }

  .popup-submit-btn {
    height: 50px;
  }

  .popup-logo img {
    width: 85px;
  }

}

.about-section {
  padding: 85px 0 90px;
}

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

.pricing-section {
  padding: 60px 0 80px;
}

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

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

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

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

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

@media (max-width: 767px) {

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

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

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

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

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

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

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

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

  .contact-section {
    padding: 52px 0 75px;
  }

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

}