@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

 :root {
    --gold:      #b8935a;
    --gold-lt:   #d4a96a;
    --dark:      #1a1714;
    --charcoal:  #2d2a26;
    --off-white: #f5f2ec;
    --muted:     #8a8680;
    --nav-bg:    rgba(255,255,255,0.92);
    --nav-h:     88px;
    --gold-grad:  linear-gradient(135deg, #c9a55a 0%, #9a7030 100%);
    --panel:      #3c3e2f;
    --border:     #e0dbd0;
}

a{
    text-decoration: none !important;
    font-size: 16px;
    line-height: 1;
    color: #1E1E1E;
}

ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

body{
    font-family: "Roboto", sans-serif;
    font-size: 16px;
}

h1,h2,h3,h4,h5,h6{
    color: #1E1E1E;
    margin-bottom: 0;
    font-family: "Cormorant Garamond", serif;
}

p{
    font-size: 16px;
    margin: 0;
    color: #1E1E1E;
}

section{
    overflow: hidden;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--nav-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,.06);
    height: 88px;
    display: flex;
    align-items: center;
    transition: height .3s, box-shadow .3s;
    padding: 0 10px;
}
.site-nav.scrolled {
    height: 68px;
    box-shadow: 0 4px 24px rgba(0,0,0,.08);
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}
.nav-logo__icon {
    width: 34px; height: 34px;
    /* background: var(--dark); */
    /* clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); */
    display: flex; align-items: center; justify-content: center;
}
.nav-logo__icon svg { width: 18px; height: 18px; fill: white; }
.nav-logo__text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: .02em;
    line-height: 1;
}

/* Nav links */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0; padding: 0;
    flex: 1;
}
.nav-menu li a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 18px;
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--charcoal);
    text-decoration: none;
    transition: color .2s;
    white-space: nowrap;
}
.nav-menu li a:hover { color: var(--gold); }
.nav-menu li a .dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    border: 1px solid currentColor;
    flex-shrink: 0;
    opacity: .5;
}

/* Right section */
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
    flex-shrink: 0;
}
.nav-availability {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--charcoal);
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
    white-space: nowrap;
}
.nav-availability .avail-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #4caf50;
    flex-shrink: 0;
}

.nav-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
}
.nav-hamburger span {
    display: block;
    width: 22px; height: 1.5px;
    background: var(--dark);
    transition: all .3s;
}

.btn-tour {
    background: white;
    border: 1.5px solid var(--gold);
    color: var(--gold);

    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 14px 28px;
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background .25s, color .25s;
}
.btn-tour:hover {
    background: var(--gold);
    color: white;
}

/* Mobile toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
    margin-left: auto;
}
.mobile-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: var(--dark);
    transition: all .3s;
}
.mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
    display: none;
    position: fixed;
    top: 88px;
    left: 0; right: 0;
    background: white;
    z-index: 999;
    padding: 24px 20px 32px;
    border-top: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 12px 40px rgba(0,0,0,.12);
    transform: translateY(-10px);
    opacity: 0;
    transition: transform .3s, opacity .3s;
}
.mobile-drawer.open {
    display: block;
    transform: translateY(0);
    opacity: 1;
}
.mobile-drawer ul {
    list-style: none;
    padding: 0; margin: 0 0 24px;
}
.mobile-drawer ul li a {
    display: block;
    padding: 13px 0;
    font-size: .9rem;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--charcoal);
    text-decoration: none;
    border-bottom: 1px solid rgba(0,0,0,.06);
    transition: color .2s;
}
.mobile-drawer ul li a:hover { color: var(--gold); }
.mobile-drawer .btn-tour { width: 100%; text-align: center; }

/* ═══════════════════════════════════
    HERO / BANNER SLIDER
═══════════════════════════════════ */
.hero-slider {
    margin-top: 88px;
    position: relative;
}

.hero-slide {
    position: relative;
    /* height: calc(100vh - 88px); */
    /* min-height: 560px; */
    overflow: hidden;
    aspect-ratio: 512 / 271;
}

.hero-slide__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.06);
    transition: transform 6s ease;
}
.slick-active .hero-slide__bg { transform: scale(1); }

/* Gradient overlay */
.hero-slide__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
    to right,
    rgba(20,18,14,.65) 0%,
    rgba(20,18,14,.3) 50%,
    rgba(20,18,14,.1) 100%
    );
}

/* Slide content */
.hero-slide__content {
    position: absolute;
    bottom: 80px;
    left: 0; right: 0;
    padding-left: 7%;
}

.hero-slide__eyebrow {
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold-lt);
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .7s .2s, transform .7s .2s;
}
.slick-active .hero-slide__eyebrow { opacity: 1; transform: translateY(0); }

.hero-slide__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 300;
    line-height: 1.05;
    color: white;
    max-width: 640px;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s .4s, transform .7s .4s;
}
.slick-active .hero-slide__title { opacity: 1; transform: translateY(0); }

.hero-slide__title em {
    font-style: italic;
    color: var(--gold-lt);
}

.hero-slide__sub {
    margin-top: 20px;
    font-size: .92rem;
    font-weight: 300;
    color: rgba(255,255,255,.7);
    max-width: 440px;
    line-height: 1.7;
    letter-spacing: .02em;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .7s .6s, transform .7s .6s;
}
.slick-active .hero-slide__sub { opacity: 1; transform: translateY(0); }

.hero-slide__actions {
    margin-top: 36px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .7s .75s, transform .7s .75s;
}
.slick-active .hero-slide__actions { opacity: 1; transform: translateY(0); }

.btn-primary-gold {
    background: var(--gold);
    color: white;
    border: 1.5px solid var(--gold);

    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 15px 36px;
    text-decoration: none;
    display: inline-block;
    transition: background .25s, color .25s;
}
.btn-primary-gold:hover { background: transparent; color: var(--gold); }

.btn-outline-white {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255,255,255,.5);

    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 15px 36px;
    text-decoration: none;
    display: inline-block;
    transition: border-color .25s, background .25s;
}
.btn-outline-white:hover {
    border-color: white;
    background: rgba(255,255,255,.1);
    color: white;
}

/* ── Slick dots ── */
.hero-slider .slick-dots {
    bottom: 32px;
    left: 0;
    right: auto;
    width: auto;
    padding-left: calc((100% - 1200px) / 2);
    display: flex !important;
    gap: 10px;
}
@media (max-width: 1200px) {
    .hero-slider .slick-dots { padding-left: 24px; }
}
.hero-slider .slick-dots li { margin: 0; width: auto; height: auto; }
.hero-slider .slick-dots li button {
    width: 28px; height: 3px;
    background: rgba(255,255,255,.35);
    padding: 0;
    font-size: 0;
    border-radius: 0;
    transition: background .3s, width .3s;
    position: absolute;
}
.hero-slider .slick-dots li button::before { display: none; }
.hero-slider .slick-dots li.slick-active button {
    background: var(--gold);
    width: 52px;
}

/* ── Slick arrows ── */
.hero-slider .slick-prev,
.hero-slider .slick-next {
    width: 50px; height: 50px;
    border: 1px solid rgba(255,255,255,.4);
    border-radius: 50%;
    background: rgba(0,0,0,.25);
    backdrop-filter: blur(6px);
    z-index: 10;
    transition: border-color .25s, background .25s;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.hero-slider .slick-prev { left: 28px; }
.hero-slider .slick-next { right: 28px; }
.hero-slider .slick-prev:hover,
.hero-slider .slick-next:hover {
    border-color: var(--gold);
    background: rgba(184,147,90,.2);
}
.hero-slider .slick-prev::before { content: '←'; font-size: 1rem; }
.hero-slider .slick-next::before { content: '→'; font-size: 1rem; }

/* ── Slide counter ── */
.slide-counter {
    position: absolute;
    bottom: 36px;
    right: 40px;
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .18em;
    color: rgba(255,255,255,.5);
    z-index: 10;
    pointer-events: none;
}
.slide-counter .cur { color: white; }

/* ═══════════════════════════════════
    STATS BAR
═══════════════════════════════════ */
.stats-bar {
    background: var(--dark);
    padding: 40px 0;
}
.stats-bar__inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}
.stat-item { text-align: center; }
.stat-item__num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    font-weight: 300;
    color: var(--gold-lt);
    line-height: 1;
}
.stat-item__label {
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    margin-top: 6px;
}
.stat-divider {
    width: 1px; height: 50px;
    background: rgba(255,255,255,.1);
}

/* ═══════════════════════════════════
    SECTION — INTRO
═══════════════════════════════════ */
.section-intro {
    /* padding: 100px 0 80px; */
    background: var(--off-white);
}
.eyebrow-label {
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.eyebrow-label::before {
    content: '';
    display: block;
    width: 28px; height: 1px;
    background: var(--gold);
}
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--dark);
}
.section-title em { font-style: italic; color: var(--gold); }

/* ═══════════════════════════════════
    RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 991px) {
    .nav-menu,
    .nav-availability,
    .nav-hamburger,
    .btn-tour { display: none !important; }

    .mobile-toggle { display: flex; }

    .hero-slider .slick-prev,
    .hero-slider .slick-next { display: none !important; }

    .stat-divider { display: none; }
}

@media (max-width: 575px) {
    .hero-slide__content { bottom: 60px; }
    .btn-primary-gold,
    .btn-outline-white { padding: 13px 24px; font-size: .75rem; }
}

/* ═══════════════════════════════════════════════════════
   WESTIO — FLOORPLANS SECTION  (floorplan-section.css)
   Fonts: Cormorant Garamond + Jost (Google Fonts)
   Requires: Bootstrap 5 grid
═══════════════════════════════════════════════════════ */

/* ── Variables ── */
.section-floorplan {
  --gold:       #b8935a;
  --gold-lt:    #d4a96a;
  --dark:       #1a1714;
  --charcoal:   #2d2a26;
  --off-white:  #f5f2ec;
  --surface:    #ffffff;
  --border:     #e4dfd6;
  --muted:      #8a8680;
  --tab-idle:   #a09990;
  --row-border: #ece8e1;
}

/* ── Section wrapper ── */
.section-floorplan {
  /* padding: 80px 0 100px; */
  background: var(--off-white);
}

/* ── Outer card ── */
.fp-card {
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 2px 24px rgba(26,23,20,.06);
}

/* ═══════════════════════
   TYPE TABS (top row)
═══════════════════════ */
.fp-type-tabs {
  display: flex;
  align-items: center;
  gap: 0;
  border-bottom: 1px solid var(--border);
  padding: 0 32px;
  background: var(--surface);
  overflow-x: auto;
  scrollbar-width: none;
}
.fp-type-tabs::-webkit-scrollbar { display: none; }

.fp-type-tab {
  position: relative;
  padding: 22px 28px;
  font-size: .88rem;
  font-weight: 400;
  color: var(--tab-idle);
  cursor: pointer;
  white-space: nowrap;
  background: none;
  border: none;
  outline: none;
  transition: color .25s;
  letter-spacing: .02em;
}
.fp-type-tab::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 50%; right: 50%;
  height: 2px;
  background: var(--dark);
  transition: left .3s, right .3s;
}
.fp-type-tab.active {
  color: var(--dark);
  font-weight: 600;
}
.fp-type-tab.active::after {
  left: 0; right: 0;
}
.fp-type-tab:hover:not(.active) { color: var(--charcoal); }

/* Penthouse — full width muted row */
.fp-penthouse-row {
  border-top: 1px solid var(--border);
  padding: 12px 32px;
  font-size: .82rem;
  font-weight: 400;
  color: var(--tab-idle);
  letter-spacing: .04em;
  background: var(--surface);
  cursor: pointer;
  text-align: center;
  transition: color .2s, background .2s;
}
.fp-penthouse-row:hover { color: var(--charcoal); background: #faf8f4; }
.fp-penthouse-row.active { color: var(--dark); font-weight: 600; }

/* ═══════════════════════
   BODY (two-col layout)
═══════════════════════ */
.fp-body {
  display: grid;
  grid-template-columns: 340px 1fr;
  min-height: 520px;
}

@media (max-width: 991px) {
  .fp-body { grid-template-columns: 1fr; }
}

/* ── LEFT PANEL ── */
.fp-left {
  padding: 40px 36px 40px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (max-width: 991px) {
  .fp-left { border-right: none; border-bottom: 1px solid var(--border); }
}

.fp-description {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.18rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--charcoal);
}

/* Area table */
.fp-area-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: auto;
}
.fp-area-table tr {
  border-bottom: 1px solid var(--row-border);
}
.fp-area-table tr:last-child { border-bottom: none; }
.fp-area-table td {
  padding: 14px 0;
  font-size: .88rem;
  vertical-align: middle;
}
.fp-area-table .td-label {
  color: var(--muted);
  font-weight: 400;
  letter-spacing: .02em;
  width: 55%;
}
.fp-area-table .td-value {
  font-weight: 600;
  color: var(--dark);
  letter-spacing: .02em;
  text-align: right;
}

/* ── RIGHT PANEL (floorplan image area) ── */
.fp-right {
  position: relative;
  background: #f9f8f5;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 460px;
}

.fp-plan-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 32px;
  max-height: 560px;
  transition: opacity .4s ease;
}

/* Placeholder when no image */
.fp-plan-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: #c8c2b8;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.fp-plan-placeholder svg {
  width: 64px; height: 64px;
  stroke: #d8d3c8;
  fill: none;
  stroke-width: 1.2;
}

/* Nav arrow (left edge of right panel) */
.fp-nav-arrow {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  background: var(--dark);
  clip-path: polygon(40% 0%, 100% 50%, 40% 100%, 0% 100%, 60% 50%, 0% 0%);
  cursor: pointer;
  opacity: .7;
  transition: opacity .2s;
}
.fp-nav-arrow:hover { opacity: 1; }

/* ── Active tab content visibility ── */
.fp-pane { display: none; }
.fp-pane.active { display: contents; }

/* ═══════════════════════════════════════════════════════
   WESTIO — PRICE SECTION  (price-section.css)
   Fonts needed: Cormorant Garamond + Jost (Google Fonts)
   Depends on: Bootstrap 5 grid (col-*, row, container)
   Variables assumed from main stylesheet:
     --gold     #b8935a
     --gold-lt  #d4a96a
     --dark     #1a1714
     --charcoal #2d2a26
     --off-white #f5f2ec
═══════════════════════════════════════════════════════ */

/* ── Root variables (standalone fallbacks) ── */
.section-price {
  --gold:       #b8935a;
  --gold-lt:    #d4a96a;
  --gold-dark:  #8a6535;
  --dark:       #1a1714;
  --charcoal:   #2d2a26;
  --off-white:  #f5f2ec;
  --surface:    #ffffff;
  --border:     #e0dbd0;
  --row-alt:    #faf8f4;
}

/* ── Section wrapper ── */
.section-price {
  /* padding: 96px 0 108px; */
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

/* Subtle texture lines */
.section-price::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--gold) 40%,
    var(--gold-lt) 60%,
    transparent 100%);
  opacity: .45;
}

/* ── Section heading ── */
.price-section__head {
  margin-bottom: 52px;
}

.price-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.price-eyebrow::before,
.price-eyebrow::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.price-section__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--dark);
  letter-spacing: .01em;
}
.price-section__title em {
  font-style: italic;
  color: var(--gold);
}

.price-section__sub {
  margin-top: 12px;
  font-size: .9rem;
  font-weight: 300;
  color: #7a7570;
  letter-spacing: .02em;
  line-height: 1.7;
}

/* ── Table panel ── */
.price-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
}

/* Thin gold top accent */
.price-panel::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-lt) 50%, transparent 100%);
}

/* ── Table ── */
.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table thead {
  background: #f3efe8;
  border-bottom: 1px solid var(--border);
}

.price-table thead th {
  padding: 16px 28px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #6b6560;
  text-align: left;
  white-space: nowrap;
}

.price-table tbody tr {
  border-bottom: 1px solid #ede9e1;
  transition: background .2s;
}
.price-table tbody tr:nth-child(even) { background: var(--row-alt); }
.price-table tbody tr:last-child { border-bottom: none; }
.price-table tbody tr:hover { background: #fdf5e8; }

.price-table tbody td {
  padding: 26px 28px;
  vertical-align: middle;
}

/* BHK type cell */
.price-type-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border: 1.5px solid var(--border);
  background: #f9f7f3;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: border-color .25s;
}
.price-type-badge::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  opacity: 0;
  transition: opacity .25s;
}
.price-table tbody tr:hover .price-type-badge {
  border-color: var(--gold);
}
.price-table tbody tr:hover .price-type-badge::after { opacity: 1; }

.price-type-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1;
}
.price-type-lbl {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

/* Carpet area */
.price-carpet {
  font-size: .92rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.5;
}
.price-carpet small {
  display: block;
  font-size: .72rem;
  color: #9a9590;
  letter-spacing: .06em;
  margin-top: 2px;
}

/* Price amount */
.price-amount {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
}
.price-amount .rupee {
  font-size: 1rem;
  vertical-align: middle;
}
.price-amount small {
  display: block;
  font-size: .7rem;
  font-weight: 400;
  color: #9a9590;
  letter-spacing: .06em;
  margin-top: 3px;
}

/* Request button */
.btn-breakup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #c9a55a 0%, #9a7030 100%);
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 13px 20px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  min-width: 170px;
  text-align: center;
  line-height: 1.4;
  position: relative;
  overflow: hidden;
  transition: filter .25s, transform .2s, box-shadow .25s;
  box-shadow: 0 4px 16px rgba(184,147,90,.25);
}
.btn-breakup::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: rgba(255,255,255,.15);
  transform: skewX(-20deg);
  transition: left .4s;
}
.btn-breakup:hover::before { left: 160%; }
.btn-breakup:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,147,90,.35);
  color: #fff;
}
.btn-breakup svg {
  width: 12px; height: 12px;
  stroke: rgba(255,255,255,.8);
  fill: none;
  flex-shrink: 0;
}

/* ── Costing card (right panel) ── */
.costing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.costing-card::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-lt) 50%, transparent 100%);
}

.costing-card__label {
  padding: 18px 24px 0;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #9a9590;
}

.costing-card__preview {
  flex: 1;
  padding: 16px 24px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f7f3;
  border-bottom: 1px solid var(--border);
  min-height: 200px;
}

/* Simulated document */
.doc-sheet {
  width: 100%;
  max-width: 300px;
  background: white;
  border: 1px solid #d8d3c8;
  padding: 14px;
  box-shadow: 0 6px 28px rgba(0,0,0,.1);
  position: relative;
}
.doc-sheet::after {
  content: '';
  position: absolute;
  top: 4px; right: 4px;
  width: 20px; height: 20px;
  border-top: 3px solid var(--gold-lt);
  border-right: 3px solid var(--gold-lt);
}

.doc-sheet__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  border-bottom: 1.5px solid #333;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.doc-sheet__col-head {
  font-size: .5rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #333;
  text-align: center;
  border: 1px solid #ccc;
  padding: 4px 2px;
}

.doc-section { margin-bottom: 8px; }
.doc-section__title {
  font-size: .48rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 5px;
  padding-left: 2px;
  border-left: 2px solid var(--gold);
  padding-left: 4px;
}

.doc-rows { display: flex; flex-direction: column; gap: 3px; }
.doc-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4px;
}
.doc-cell {
  height: 6px;
  border-radius: 1px;
  background: #e5e0d8;
}
.doc-cell.md  { background: #c8c2b5; }
.doc-cell.drk { background: #9a9288; }
.doc-cell.gld { background: linear-gradient(90deg, #c9a55a, #a07c3a); }
.doc-cell.w50 { width: 50%; }
.doc-cell.w70 { width: 70%; }
.doc-cell.w85 { width: 85%; }

.doc-divider {
  height: 1px;
  background: #ccc;
  margin: 8px 0 6px;
}
.doc-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
.doc-sig { display: flex; flex-direction: column; gap: 3px; }
.doc-sig-line { height: 1px; background: #888; }
.doc-sig-label {
  height: 4px;
  width: 60%;
  background: #d8d3c8;
  border-radius: 1px;
}

/* Card CTA */
.costing-card__cta {
  padding: 0;
  background: linear-gradient(135deg, #c9a55a 0%, #9a7030 100%);
  position: relative;
  overflow: hidden;
}
.costing-card__cta::before {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 50%;
  height: 100%;
  background: rgba(255,255,255,.12);
  transform: skewX(-20deg);
  transition: left .5s;
}
.costing-card__cta:hover::before { left: 160%; }

.costing-card__cta a {
  display: block;
  padding: 20px 24px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: white;
  text-decoration: none;
  text-align: center;
}

/* ── Note / disclaimer ── */
.price-note {
  margin-top: 20px;
  font-size: .72rem;
  font-weight: 300;
  color: #9a9590;
  letter-spacing: .04em;
  line-height: 1.6;
}
.price-note strong { color: var(--gold); font-weight: 500; }

/* ── Responsive ── */
@media (max-width: 991px) {
  .section-price { padding: 64px 0 72px; }
  .price-table thead th,
  .price-table tbody td { padding: 16px 16px; }
  .price-type-badge { width: 50px; height: 50px; }
  .price-type-num { font-size: 1.2rem; }
  .btn-breakup { min-width: 140px; font-size: .68rem; padding: 11px 14px; }
  /* .costing-card { margin-top: 24px; } */
}

@media (max-width: 767px) {
  .price-table { display: block; overflow-x: auto; }
  .price-section__head { margin-bottom: 32px; }
}

@media (max-width: 575px) {
  .price-table thead th,
  .price-table tbody td { padding: 14px 12px; }
  .btn-breakup { min-width: 120px; font-size: .65rem; padding: 10px 10px; }
}

.aminities_card{
    text-align: center;
}

.aminities_card i{
    font-size: 32px;
    color: var(--gold);
}
.aminities_card h3{
    font-size: 20px;
}

.gallery_card{
    overflow: hidden;
    border-radius: 10px;
}

.gallery_card img{
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: 1s ease-in-out;
}

.gallery_card:hover img{
    transform: scale(1.1);
}

.blur_img img{
    aspect-ratio: 4/1;
    object-fit: cover;
    filter: blur(2px);
}

.location_card{
  display: flex;
  gap: 10px;
  align-items: center;
  text-align: left;
}

.location_card h3{
  font-size: 20px;
}

.location_card i{
  font-size: 16px;
}

.f_12{
  font-size: 12px;
}

.open-modal-btn {
  background: var(--gold-grad);
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: none;
  padding: 16px 40px;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0,0,0,.35);
  transition: filter .25s, transform .2s;
}
.open-modal-btn:hover { filter: brightness(1.1); transform: translateY(-2px); }

/* ══════════════════════════════
    MODAL OVERRIDES
══════════════════════════════ */
.modal-backdrop { backdrop-filter: blur(4px); background: rgba(0,0,0,.55); }
.modal-backdrop.show { opacity: 1; }

.modal-dialog {
  max-width: 860px;
  margin: auto;
}

.modal-content {
  border: none;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.4);
}

/* ══════════════════════════════
    THREE-COLUMN LAYOUT
══════════════════════════════ */
.modal-inner {
  display: grid;
  grid-template-columns: 160px 1fr 220px;
  min-height: 520px;
}

/* ── COL 1: We Promise ── */
.modal-promise {
  background: var(--panel);
  padding: 36px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
}
.modal-promise::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    90deg, rgba(0,0,0,.04) 0, rgba(0,0,0,.04) 1px,
    transparent 1px, transparent 48px
  );
  pointer-events: none;
}

.promise-title {
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 28px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.promise-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 1;
}
.promise-item:last-child { border-bottom: none; }

.promise-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(184,147,90,.4);
  display: flex; align-items: center; justify-content: center;
  background: rgba(184,147,90,.08);
  transition: border-color .2s, background .2s;
}
.promise-item:hover .promise-icon {
  border-color: var(--gold);
  background: rgba(184,147,90,.15);
}
.promise-icon i {
  font-size: 1.25rem;
  color: var(--gold);
}

.promise-label {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .08em;
  color: rgba(255,255,255,.75);
  line-height: 1.4;
}

/* ── COL 2: Form ── */
.modal-form-col {
  background: #fff;
  padding: 36px 40px 28px;
  display: flex;
  flex-direction: column;
}

/* Logo row */
.modal-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.modal-logo-icon {
  width: 48px; height: 48px;
  /* background: var(--dark); */
  /* clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%); */
  display: flex; align-items: center; justify-content: center;
}
.modal-logo-icon svg { width: 22px; height: 22px; fill: white; }
.modal-logo-divider {
  width: 1px; height: 36px;
  background: var(--border);
}
.modal-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: .04em;
}
.modal-logo-text span { color: var(--gold); }

/* Heading */
.modal-form-head {
  font-size: .95rem;
  font-weight: 500;
  color: var(--dark);
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.5;
}
.modal-form-head strong { font-weight: 700; }
.modal-form-head .highlight { color: #c0392b; font-weight: 700; }

/* Fields */
.modal-field {
  position: relative;
  margin-bottom: 14px;
}
.modal-field i {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: .85rem;
  pointer-events: none;
}
.modal-field input,
.modal-field select {
  width: 100%;
  padding: 13px 14px 13px 38px;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-size: .88rem;
  font-weight: 400;
  color: var(--dark);
  background: #faf9f7;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.modal-field input:focus,
.modal-field select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,147,90,.12);
  background: #fff;
}
.modal-field input::placeholder { color: var(--muted); }

/* Phone row */
.phone-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 8px;
}
.phone-select-wrap {
  position: relative;
}
.phone-select-wrap .flag {
  position: absolute;
  left: 10px; top: 50%;
  transform: translateY(-50%);
  font-size: .9rem;
  pointer-events: none;
}
.phone-select-wrap select {
  padding-left: 32px;
  appearance: none;
  cursor: pointer;
}

/* Submit */
.modal-submit {
  width: 100%;
  background: var(--gold-grad);
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: none;
  padding: 15px;
  margin-top: 6px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: filter .25s, transform .2s;
  box-shadow: 0 4px 16px rgba(184,147,90,.3);
}
.modal-submit::before {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: rgba(255,255,255,.15);
  transform: skewX(-20deg);
  transition: left .45s;
}
.modal-submit:hover::before { left: 160%; }
.modal-submit:hover { filter: brightness(1.08); transform: translateY(-1px); }

/* Phone strip */
.modal-phone-strip {
  margin-top: 16px;
  background: var(--gold-grad);
  padding: 11px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 2px;
}
.modal-phone-strip i { color: #fff; font-size: 1rem; }
.modal-phone-strip span {
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: #fff;
}

/* ── COL 3: Brochure ── */
.modal-brochure {
  background: var(--gold-grad);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
/* subtle pattern */
.modal-brochure::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,.04) 0, rgba(255,255,255,.04) 1px,
    transparent 1px, transparent 14px
  );
  pointer-events: none;
}

.brochure-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.brochure-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.brochure-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brochure-item i {
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
  opacity: .9;
}
.brochure-item span {
  font-size: .88rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: .04em;
}

/* ── Close button ── */
.modal-close-btn {
  position: absolute;
  top: 12px; right: 14px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  border: none;
  color: #fff;
  font-size: .75rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background .2s;
}
.modal-close-btn:hover { background: rgba(255,255,255,.35); }

/* ── Responsive ── */
@media (max-width: 767px) {
  .modal-inner { grid-template-columns: 1fr; }
  .modal-promise { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 16px; padding: 24px 16px; }
  .promise-item { width: 30%; padding: 12px 0; border-bottom: none; }
  .modal-brochure { padding: 28px 24px; }
  .brochure-list { flex-direction: row; flex-wrap: wrap; gap: 12px; }
}

.whats-app{
  position: fixed;
  width: 40px;
  height: 40px;
  bottom: 40px;
  right: 3%;
  /* bottom: 15%;
  right: 3%; */
  background: #01c83c;
  z-index: 99;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 1px 1px 8px 2px #959595;
}

.whats-app.call_btn{
  bottom: 90px;
  background: var(--dark);
}

.whats-app a{
  color: #fff;
  font-size: 25px;
}

.fp-plan-placeholder img{
  aspect-ratio: 5/3;
  object-fit: contain;
  filter: blur(2px);
}