/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --maroon: #7b1e3c;
  --maroon-d: #5c1530;
  --maroon-l: #9e2b4e;
  --gold: #c9a84c;
  --gold-l: #e8d498;
  --gold-d: #a07830;
  --rose: #c9768a;
  --rose-l: #f0c8d0;
  --blush: #fdf0ee;
  --blush-m: #f5ddd8;
  --blush-d: #e8caca;
  --cream: #fdfaf7;
  --white: #ffffff;
  --ink: #1e0a10;
  --ink-m: #6b4050;
  --ink-l: #a07880;
  --shadow: 0 16px 48px rgba(123, 30, 60, 0.13);
  --shadow-sm: 0 4px 18px rgba(123, 30, 60, 0.09);
  --shadow-lg: 0 28px 72px rgba(123, 30, 60, 0.17);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: "Poppins", sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden !important;
}
a {
  text-decoration: none;
  color: inherit;
}
button,
input,
select,
textarea {
  font-family: inherit;
}
img {
  display: block;
  max-width: 100%;
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--blush);
}
::-webkit-scrollbar-thumb {
  background: var(--maroon);
  border-radius: 3px;
}

/* ============================================================
   TYPOGRAPHY SYSTEM  (matching PDF fonts exactly)
   Playfair Display  → big headings, italic display
   Cinzel            → section eyebrows / labels
   Montserrat        → stat numbers, thin labels
   Poppins           → body text, UI, forms
   ============================================================ */
.f-playfair {
  font-family: "Playfair Display", serif;
}
.f-cinzel {
  font-family: "Cinzel", serif;
}
.f-montserrat {
  font-family: "Montserrat", sans-serif;
}
.f-poppins {
  font-family: "Poppins", sans-serif;
}
.hero-inner .rv{
    width: 65%;
    background-color: #ffffff93;
    padding: 1rem 0;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.rv {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.rl {
  opacity: 0;
  transform: translateX(-36px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.rr {
  opacity: 0;
  transform: translateX(36px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.rv.on,
.rl.on,
.rr.on {
  opacity: 1;
  transform: none;
}
.d1 {
  transition-delay: 0.08s;
}
.d2 {
  transition-delay: 0.16s;
}
.d3 {
  transition-delay: 0.24s;
}
.d4 {
  transition-delay: 0.32s;
}
.d5 {
  transition-delay: 0.4s;
}
.d6 {
  transition-delay: 0.48s;
}

/* ============================================================
   SHARED COMPONENTS
   ============================================================ */
.eyebrow {
  font-family: "Cinzel", serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

.sec-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--maroon);
}
.sec-body {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--ink-m);
}
.gold-bar {
  width: 52px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
  margin: 16px 0;
}

.wrap {
 
  margin: 0 auto;
  padding: 0 32px;
}
section {
  padding: 92px 32px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  justify-content: center;
  border-radius: 7px;
  font-family: "Poppins", sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.4px;
  cursor: pointer;
  border: none;
  transition: all 0.25s var(--ease);
}
.btn-maroon {
  background: var(--maroon);
  color: #fff;
}
.btn-maroon:hover {
  background: var(--maroon-d);
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 10px 28px rgba(123, 30, 60, 0.3);
}
.btn-outline-maroon {
    background: transparent;
    width: 30%;
    color: var(--maroon);
    border: 2px solid var(--maroon);
    /* padding: 1px 9px 0 26px; */
}
.btn-outline-maroon:hover {
  background: var(--maroon);
  color: #fff;
}
.btn-gold {
  background: var(--gold);
  color: var(--maroon-d);
  font-weight: 700;
}
.btn-gold:hover {
  background: var(--gold-l);
  transform: translateY(-2px);
}
.fp-btns .btn-outline-maroon {
    background: transparent;
    width: fit-content !important;
}

.fp-btns .btn-outline-maroon:hover {
    background-color: #5c1530;
}
/* Form */
.f-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--ink-m);
  margin-bottom: 6px;
}
.f-input {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid var(--blush-d);
  border-radius: 7px;
  font-family: "Poppins", sans-serif;
  font-size: 13.5px;
  color: var(--ink);
  background: var(--blush);
  outline: none;
  transition:
    border-color 0.2s,
    background 0.2s;
  -webkit-appearance: none;
}
.f-input:focus {
  border-color: var(--maroon);
  background: #fff;
}
.f-group {
  margin-bottom: 14px;
}
.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.f-submit {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-d));
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  margin-top: 4px;
}
.f-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(123, 30, 60, 0.33);
}
.toast {
  display: none;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 7px;
  padding: 13px 16px;
  text-align: center;
  color: #166534;
  font-size: 13px;
  margin-top: 10px;
  font-family: "Poppins", sans-serif;
}

/* ============================================================
   NAVBAR
   ============================================================ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background:rgb(253 250 247);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.22);
  transition: box-shadow 0.3s;
}
#nav.scrolled {
  box-shadow: 0 4px 20px rgba(123, 30, 60, 0.11);
}
.nav-wrap {
    width: 100%;
  margin: 0 auto;
  padding: 0 32px;
  height: 66px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
  width: 20%;
}
.nav-logobox {
  width: 40px;
  height: 40px;
  background: var(--maroon);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logobox span {
  font-family: "Playfair Display", serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -1px;
}
.nav-brand-text strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--maroon);
  line-height: 1.1;
}
.nav-brand-text small {
  font-family: "Cinzel", serif;
  font-size: 8.5px;
  letter-spacing: 2.5px;
  color: var(--gold);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}
.nav-links a {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-m);
  letter-spacing: 0.2px;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover {
  color: var(--maroon);
}
.nav-cta-btn {
  font-family: "Poppins", sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  background: var(--maroon);
  color: #fff;
  padding: 9px 20px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-cta-btn:hover {
  background: var(--maroon-d);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 23px;
  height: 2px;
  background: var(--maroon);
  border-radius: 2px;
  transition: 0.3s;
}
.mob-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 66px;
  left: 0;
  right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--blush-d);
  padding: 18px 32px;
  z-index: 999;
  gap: 14px;
  box-shadow: var(--shadow);
}
.mob-menu a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-m);
  padding: 8px 0;
  border-bottom: 1px solid var(--blush);
}

/* ============================================================
   HERO
   ============================================================ */
   .carousel-inner{
    margin-top: 4rem;
   }
#hero {
 height: 100vh;
  padding-top: 70px;
  background-image: url("../images/finalbannerdesktop.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
  /* background: linear-gradient(145deg, #FDF0EE 0%, #F7E0DB 50%, #EFD0CB 100%); */
  position: relative;
}
/* Decorative elements matching PDF's circular arc + vertical stripes */
.hero-arc {
  position: absolute;
  right: -140px;
  top: -120px;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.22);
  pointer-events: none;
}
.hero-arc-2 {
  position: absolute;
  right: -60px;
  top: -50px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.13);
  pointer-events: none;
}
.hero-stripes {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: flex;
  gap: 5px;
  padding-left: 14px;
  pointer-events: none;
}
.hero-stripes i {
  display: block;
  width: 2.5px;
  border-radius: 2px;
  background: var(--maroon);
}
.hero-stripes i:nth-child(1) {
  opacity: 0.14;
}
.hero-stripes i:nth-child(2) {
  opacity: 0.08;
}
.hero-stripes i:nth-child(3) {
  opacity: 0.05;
}
.wp_icon{
    width: 26%;
}
.hero-inner {
  /* max-width: 1180px; */
  margin: 0 auto;
  padding: 56px 32px;
  text-align: center;
  display: flex;
  justify-content: center;
  /* grid-template-columns: 1fr 420px; */
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.14);
  border: 1px solid rgba(201, 168, 76, 0.38);
  padding: 5px 15px;
  border-radius: 50px;
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold-d);
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.hero-launch-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.hero-h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(46px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--maroon);
  margin-bottom: 6px;
}
.hero-h1 em {
  font-style: italic;
  color: var(--rose);
}
.hero-sub {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 20px;
}
.hero-desc {
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.85;
  color: #000;
  max-width: 490px;
  margin-bottom: 32px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 22px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(201, 168, 76, 0.2);
  backdrop-filter: blur(6px);
  margin-bottom: 32px;
}
.hs-item {
  text-align: center;
}
.hs-num {
  font-family: "Montserrat", sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--maroon);
  line-height: 1;
}
.hs-num sup {
  font-size: 18px;
  font-weight: 600;
}

.success_msg,
.error_msg {
    display: none;
    text-align: center;
}
.hs-lbl {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-l);
  margin-top: 4px;
}
.hs-div {
  width: 1px;
  height: 38px;
  background: var(--blush-d);
  flex-shrink: 0;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Lead card */
.lead-card {
  background: #fff;
  border-radius: 20px;
  padding: 34px 30px;
  box-shadow:
    var(--shadow-lg),
    0 0 0 1px rgba(201, 168, 76, 0.12);
  position: relative;
  overflow: hidden;
}
.lead-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--maroon), var(--gold), var(--rose));
}
.lead-card-title {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--maroon);
  margin-bottom: 4px;
}
.lead-card-sub {
  font-size: 12.5px;
  color: var(--ink-l);
  margin-bottom: 22px;
}
.lead-trust {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  color: var(--ink-m);
  font-weight: 500;
}
.trust-item .ti {
  color: var(--gold-d);
}

/* ============================================================
   ABOUT
   ============================================================ */
#about {
  background: var(--cream);
}
.about-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
/* Arch visual — matching PDF's arched stat column */
.about-arch-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.about-arch {
  width: 280px;
  aspect-ratio: 0.75;
  border-radius: 200px 200px 0 0;
  background: linear-gradient(180deg, var(--blush-m), var(--blush));
  border: 1.5px solid rgba(201, 168, 76, 0.25);
  position: relative;
  overflow: hidden;
}
.about-arch-fill {
  position: absolute;
  inset: 18px 18px 0;
  border-radius: 180px 180px 0 0;
  background: linear-gradient(
    160deg,
    var(--maroon) 0%,
    var(--maroon-l) 55%,
    var(--rose) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.arch-num {
  font-family: "Montserrat", sans-serif;
  font-size: 80px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.arch-label {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 6px;
  text-align: center;
}
/* Vertical stat lines matching PDF */
.about-stat-lines {
  position: absolute;
  right: -28px;
  top: 0;
  bottom: 0;
  display: flex;
  gap: 5px;
  align-items: stretch;
}
.asl {
  width: 3px;
  background: var(--blush-d);
  border-radius: 2px;
}
.asl:nth-child(1) {
  opacity: 0.8;
}
.asl:nth-child(2) {
  opacity: 0.5;
}
.asl:nth-child(3) {
  opacity: 0.3;
}
.about-float-stat {
  position: absolute;
  bottom: 20px;
  right: -16px;
  background: #fff;
  border-radius: 12px;
  padding: 18px 22px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(201, 168, 76, 0.2);
  text-align: center;
}
.afs-num {
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--maroon);
  line-height: 1;
}
.afs-lbl {
  font-family: "Montserrat", sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-l);
  margin-top: 3px;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}
.val-item {
  background: var(--blush);
  border-left: 3px solid var(--gold);
  border-radius: 9px;
  padding: 15px 17px;
  transition: all 0.22s var(--ease);
}
.val-item:hover {
  background: #fff;
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.val-title {
  font-family: "Cinzel", serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--maroon);
  margin-bottom: 4px;
}
.val-desc {
  font-size: 12px;
  font-weight: 300;
  color: var(--ink-l);
  line-height: 1.55;
}

/* ============================================================
   FLOOR PLANS
   ============================================================ */
#floorplans {
  background: var(--blush);
  padding-top: 92px;
  padding-bottom: 92px;
}
.fp-top {
  max-width: 1180px;
  margin: 0 auto 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}
.fp-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.fp-tab {
  font-family: "Poppins", sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 50px;
  cursor: pointer;
  border: 2px solid var(--blush-d);
  background: transparent;
  color: var(--ink-m);
  transition: all 0.22s var(--ease);
}
.fp-tab.on {
  background: var(--maroon);
  border-color: var(--maroon);
  color: #fff;
}
.fp-tab:hover:not(.on) {
  border-color: var(--maroon);
  color: var(--maroon);
}

.fp-panel {
  display: none;
  max-width: 1180px;
  margin: 0 auto;
}
.fp-panel.on {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Floor plan diagram card */
.fp-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(201, 168, 76, 0.12);
}
.fp-card-head {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-l));
  padding: 20px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fp-card-head-alt {
  background: linear-gradient(135deg, var(--gold-d), var(--gold));
}
.fp-card-head h3 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
.fp-card-head .fp-type {
  font-family: "Montserrat", sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 3px;
}
.fp-area-badge {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 8px 14px;
  text-align: right;
}
.fp-area-badge .an {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.fp-area-badge .au {
  font-family: "Montserrat", sans-serif;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.fp-svg-bg {
  background: var(--blush);
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fp-svg-bg svg {
  width: 100%;
  max-width: 300px;
  height: auto;
}

/* FP Info panel */
.fp-info-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.fp-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201, 168, 76, 0.13);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 5px 14px;
  border-radius: 50px;
  width: fit-content;
  font-family: "Cinzel", serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold-d);
}
.fp-name {
  font-family: "Playfair Display", serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--maroon);
  line-height: 1.05;
}
.fp-name span {
  font-style: italic;
  color: var(--rose);
  font-size: 22px;
}
.fp-spec-table {
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.fp-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  border-bottom: 1px solid var(--blush);
}
.fp-spec-row:last-child {
  border-bottom: none;
}
.fsr-k {
  font-family: "Poppins", sans-serif;
  font-size: 12.5px;
  font-weight: 300;
  color: #000;
}
.fsr-v {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--maroon);
}
.unit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}
.unit-chip {
  background: #fff;
  border-radius: 9px;
  padding: 12px 8px;
  text-align: center;
  border: 2px solid transparent;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s var(--ease);
}
.unit-chip:hover,
.unit-chip.sel {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.06);
}
.uc-num {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--maroon);
}
.uc-area {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: var(--ink-l);
  margin-top: 2px;
}
.uc-face {
  font-family: "Montserrat", sans-serif;
  font-size: 9.5px;
  font-weight: 600;
  color: var(--gold-d);
  margin-top: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.fp-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ============================================================
   SPECIFICATIONS
   ============================================================ */
#specs {
  background: #fff;
}
.spec-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.spec-tab {
  font-family: "Poppins", sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 50px;
  cursor: pointer;
  border: 2px solid var(--blush-d);
  background: transparent;
  color: var(--ink-m);
  transition: all 0.22s var(--ease);
}
.spec-tab.on {
  background: var(--maroon);
  border-color: var(--maroon);
  color: #fff;
}
.spec-tab:hover:not(.on) {
  border-color: var(--maroon);
  color: var(--maroon);
}
.spec-panel {
  display: none;
}
.spec-panel.on {
  display: block;
}
.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.spec-full {
  grid-column: 1/-1;
}
.spec-block {
  background: var(--blush);
  border-radius: 12px;
  overflow: hidden;
}
.spec-block-head {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.65);
  border-bottom: 1px solid var(--blush-d);
}
.spec-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.spec-block-head h4 {
  font-family: "Cinzel", serif;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--maroon);
}
.spec-block-head p {
  font-family: "Poppins", sans-serif;
  font-size: 11.5px;
  font-weight: 300;
  color: var(--ink-l);
}

.spec-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 10px;
  padding: 11px 20px;
  border-bottom: 1px solid var(--blush-d);
}
.spec-row:last-child {
  border-bottom: none;
}
.spec-row .sk {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-m);
}
.spec-row .sv {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: var(--ink);
}
.spec-full-rows {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* ============================================================
   AMENITIES
   ============================================================ */
#amenities {
  background: linear-gradient(
    145deg,
    var(--maroon-d) 0%,
    var(--maroon) 55%,
    var(--maroon-l) 100%
  );
  padding: 92px 32px;
}
#amenities .eyebrow {
  color: var(--gold-l);
}
#amenities .eyebrow::before {
  background: var(--gold-l);
}
#amenities .sec-title {
  color: #fff;
}
#amenities .gold-bar {
  background: linear-gradient(90deg, var(--gold-l), transparent);
}
.amenities-desc {
  font-family: "Poppins", sans-serif;
  font-size: 14.5px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.85;
  max-width: 540px;
  margin-bottom: 48px;
}
.amenities-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.am-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}
.am-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(201, 168, 76, 0.1),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.25s;
}
.am-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-5px);
  border-color: rgba(201, 168, 76, 0.3);
}
.am-card:hover::before {
  opacity: 1;
}
.am-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(201, 168, 76, 0.14);
  border: 1px solid rgba(201, 168, 76, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 24px;
  transition: all 0.25s;
}
.am-card:hover .am-icon {
  background: rgba(201, 168, 76, 0.26);
  border-color: var(--gold);
}
.am-title {
  font-family: "Poppins", sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 7px;
}
.am-desc {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.6;
}

/* ============================================================
   LOCATION MAP
   ============================================================ */
#locmap {
  background: var(--cream);
}
.locmap-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 52px;
  align-items: start;
}
.locmap-info .sec-title {
  margin-bottom: 10px;
}
.locmap-info .sec-body {
  margin-bottom: 28px;
}
.conn-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.conn-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--blush);
  border-radius: 11px;
  padding: 13px 16px;
  transition: all 0.22s var(--ease);
}
.conn-item:hover {
  background: var(--blush-m);
  transform: translateX(4px);
}
.conn-time-box {
  width: 50px;
  height: 50px;
  border-radius: 9px;
  background: var(--maroon);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ctb-n {
  font-family: "Montserrat", sans-serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
}
.ctb-u {
  font-family: "Montserrat", sans-serif;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.7;
}
.conn-text h5 {
  font-family: "Poppins", sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--maroon);
}
.conn-text p {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: var(--ink-l);
  margin-top: 2px;
}
/* SVG Map Container */
.map-box {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--blush-d);
}
.map-box-head {
  background: var(--maroon);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.map-box-head h4 {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.map-box-head span {
  font-family: "Montserrat", sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.map-box-body {
  padding: 20px;
}
.map-legend {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  padding: 12px 20px;
  border-top: 1px solid var(--blush);
}
.leg {
  display: flex;
  align-items: center;
  gap: 6px;
}
.leg-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}
.leg span {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: var(--ink-m);
}

/* ============================================================
   LOCATION ADVANTAGE
   ============================================================ */
#locadv {
  background: var(--blush);
}
.locadv-grid {
  max-width: 1180px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.ladv-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.22s var(--ease);
}
.ladv-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.ladv-head {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 13px;
  border-bottom: 2px solid var(--blush);
}
.ladv-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.ladv-head h3 {
  font-family: "Cinzel", serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--maroon);
}
.ladv-body {
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.ladv-row {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 8px 0;
  border-bottom: 1px solid var(--blush);
}
.ladv-row:last-child {
  border-bottom: none;
}
.ladv-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.ladv-name {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-m);
  flex: 1;
}
.ladv-dist {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--maroon);
  background: var(--blush);
  padding: 3px 10px;
  border-radius: 50px;
  white-space: nowrap;
}

/* ============================================================
   PAYMENT SCHEDULE
   ============================================================ */
#payment {
  background: #fff;
}
.payment-grid {
  max-width: 1180px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.pay-timeline {
  position: relative;
  padding-left: 26px;
}
.pay-timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: linear-gradient(180deg, var(--maroon) 0%, var(--gold) 100%);
}
.pay-row {
  display: flex;
  gap: 22px;
  padding-bottom: 26px;
  align-items: flex-start;
  position: relative;
}
.pay-row:last-child {
  padding-bottom: 0;
}
.pay-dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--maroon);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  z-index: 1;
  margin-left: -48px;
  box-shadow: 0 0 0 4px var(--cream);
}
.pay-dot-gold {
  background: var(--gold);
  color: var(--maroon-d);
}
.pay-content {
  padding-top: 6px;
}
.pay-content h4 {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.pay-content p {
  font-family: "Poppins", sans-serif;
  font-size: 12.5px;
  font-weight: 300;
  color: var(--ink-l);
}
.pay-pct {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-top: 4px;
}
.pay-cta {
  background: linear-gradient(145deg, var(--maroon-d), var(--maroon));
  border-radius: 20px;
  padding: 38px;
  color: #fff;
  position: sticky;
  top: 86px;
}
.pay-cta h3 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}
.pay-cta p {
  font-family: "Poppins", sans-serif;
  font-size: 13.5px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
  margin-bottom: 26px;
}
.pay-inp {
  width: 100%;
  padding: 13px 16px;
  border-radius: 7px;
  border: none;
  font-family: "Poppins", sans-serif;
  font-size: 13.5px;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  outline: none;
}
.pay-inp::placeholder {
  color: rgba(255, 255, 255, 0.42);
}
.pay-inp:focus {
  background: rgba(255, 255, 255, 0.2);
}
.pay-submit {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: var(--maroon-d);
  border: none;
  border-radius: 7px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: 0.4px;
  transition: all 0.22s;
}
.pay-submit:hover {
  background: var(--gold-l);
  transform: translateY(-1px);
}

/* ============================================================
   CONTACT
   ============================================================ */
#contact {
  background: var(--blush);
}
.contact-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.ci-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0 30px;
}
.ci-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.ci-ico {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.ci-txt strong {
  display: block;
  font-family: "Cinzel", serif;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--maroon);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.ci-txt a,
.ci-txt span {
  font-family: "Poppins", sans-serif;
  font-size: 13.5px;
  font-weight: 300;
  color: var(--ink-m);
}
.ci-txt a:hover {
  color: var(--maroon);
}
.contact-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 38px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(201, 168, 76, 0.12);
}
.contact-form-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--maroon);
  margin-bottom: 22px;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--maroon-d);
  color: rgba(255, 255, 255, 0.6);
  padding: 44px 32px 24px;
  text-align: center;
}
.footer-brand {
display: flex;
justify-content: center;
}
.footer-brand img{
    width: 25%;
}
.footer-info {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 2;
}
.footer-info a {
  color: var(--gold-l);
}
.footer-hr {
  width: 56px;
  height: 1px;
  background: rgba(201, 168, 76, 0.3);
  margin: 18px auto;
}
.footer-motto {
  font-family: "Cinzel", serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-l);
  margin-top: 12px;
  display: block;
}
.footer-copy {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 300;
  opacity: 0.4;
  margin-top: 14px;
}

/* ============================================================
   STICKY BAR
   ============================================================ */
    .mobile-btn-wrapper {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        border-top: 1px solid #fff;
        display: flex;
        z-index: 9999;
    }
    .mobile-download-btn1 {
        flex: 1;
        text-align: center;
        font-size: 16px;
        font-weight: 500;
        font-family: "Playfair Display", serif;
        padding: 15px 0;
        text-decoration: none;
        color: #fff;
        background: #5c1530;
        border-right: 2px solid #fff;
    }
        .mobile-download-btn1:last-child {
        border-right: none;
        background-color: var(--gold);
    }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero-inner,
  .about-grid,
  .fp-panel.on,
  .locmap-grid,
  .locadv-grid,
  .payment-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-inner {
    gap: 40px;
  }
  .amenities-grid {
    grid-template-columns: 1fr 1fr;
  }
  .spec-grid {
    grid-template-columns: 1fr;
  }
  section {
    padding: 68px 20px;
  }
  #hero {
    padding-bottom: 40px;
  }
  .pay-timeline {
    padding-left: 0;
  }
  .hero-stats{
    gap: 30px;
  }
  .wrap{
    padding: 0;
  }
  .pay-timeline::before {
    left: 18px;
  }
  body {
    padding-bottom: 56px;
   
  }
  html{
     overflow-x:  hidden !important;
  }
  #about{
    padding-top: 120px;
  }
}


@media (max-width: 768px) {
    .modal {
        margin-top: 10rem;
    }
    .btn-outline-maroon {
    background: transparent;
    width: 45%;
}
    .wp_icon{
    width: 26%;
}
    .sec-body, .amenities-desc {
  font-size: 16px;
}
.val-title, .val-desc, .ci-txt strong, .ci-txt a, .ci-txt span, .footer-copy {
    font-size: 14px;
}
     .carousel-inner{
    margin-top: 4rem;
   }
    .nav-wrap{
        padding: 0 20px;
    }
    .footer-brand img{
        width: 50%;
    }
    .nav-brand{
        width: 30%;
    }
    .logo{
        width: 100% !important;
    }
    .hero-launch-badge{
        font-size: 9px;
    }
    .sticky-bar{
        display: block !important;
    }
    #hero {
 height: 100vh;
  padding-top: 70px;
  background-image: url("../images/finalbannermobile.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
  .hero-stats {
    gap: 14px;
    flex-wrap: wrap;
  }
  .f-row {
    grid-template-columns: 1fr;
  }
  .amenities-grid {
    grid-template-columns: 1fr 1fr;
  }
  .unit-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.iconss{
    width: 50%;
}

.logo {
  width: 62%;
}
.locadv-sec{
  background:#f8f9fa;
}

.sec-title{
  font-size:32px;
  font-weight:700;
}

.eyebrow{
  font-size:13px;
  color:#777;
}

/* Accordion */
.custom-accordion{
  margin:auto;
}

.acc-item{
  background:#fff;
  border-radius:10px;
  margin-bottom:12px;
  overflow:hidden;
  box-shadow:0 5px 15px rgba(0,0,0,.05);
}

/* Header */
.acc-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px 20px;
  cursor:pointer;
  font-weight:600;
  font-size:16px;
}

.acc-head .iconss{
    width: 12%;
    filter: invert(1);
}
.calliconss{
    width: 24%;
}

/* Body */
.acc-body{
  max-height:0;
  overflow:hidden;
  transition:.4s ease;
  padding:0 20px;
}

.acc-item.active .acc-body{
  max-height:300px;
  padding:10px 20px 15px;
}

.acc-item.active .acc-icon{
  content:"−";
}

/* Rows */
.row-item{
  display:flex;
  justify-content:space-between;
  padding:8px 0;
  border-bottom:1px dashed #eee;
  font-size:14px;
}

.row-item:last-child{
  border:none;
}

.row-item b{
  color:#003539;
}

/* Mobile */
@media(max-width:576px){
  .sec-title{
    font-size:24px;
  }
}