/* ===== LUXHAUS — Shared Stylesheet ===== */

/* ── Fonts ── */
@font-face {
    font-family: 'Luxera';
    src: url('./assets/Luxera.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Metrina';
    src: url('./assets/Metrina.woff2') format('woff2'), url('./assets/Metrina.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

/* ── CSS Variables ── */
:root {
    --color-gold: #C9A84C;
    --color-gold-light: #F0D898;
    --color-gold-dark: #8B6914;
    --color-white: #FAFAFA;
    --color-muted: #6B6B6B;
    --color-black: #0D0D1A;
    --color-dark: #FFFFFF;
    --color-card-bg: #FFFFFF;
    --color-border: #D4B86A;
    --font-agatho: 'Agatho Lightcaps', serif;
    --font-neu: 'Poppins', sans-serif;
    --font-serif: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
    --section-px: 5%;
    --section-py: 80px;
    --max-w: 1600px;
}
*, html, body {
    font-family: 'Poppins', sans-serif;
}


/* ── Base ── */
html {
    scroll-behavior: smooth;
}

body {
    
    font-size: 16px;
    font-weight: 400; /* Increased slightly for readability on white */
    line-height: 1.7;
    letter-spacing: 0.5px;
    color: var(--color-black); /* Deep Navy */
    background: var(--color-white); /* Ivory White */
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Luxera', serif;
    font-weight: normal;
    color: var(--color-black);
    line-height: 1.2;
}

.logo {
    font-family: 'Luxera', serif;
    font-weight: normal;
    color: var(--color-white);
    line-height: 1.2;
}

p {
    font-size: 0.9rem;
    color: #6B6B6B;
    line-height: 1.5;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

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

/* ===========================
   UTILITY CLASSES
   =========================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

/* ── Container ── */
.container {
    max-width: var(--max-w);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--section-px);
    padding-right: var(--section-px);
}

/* ── Section spacing ── */
.section {
    padding: var(--section-py) var(--section-px);
}

.section--centered {
    max-width: var(--max-w);
    margin-left: auto;
    margin-right: auto;
}

/* ===========================
   SITE HEADER
   =========================== */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 1600px;
    width: 100%;
    padding: 24px var(--section-px);
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.site-header img {
    height: 70px;
    width: auto;
    display: block;
}

@media (min-width: 768px) {
    .site-header {
        padding: 40px var(--section-px);
    }
    .site-header img {
        height: 110px;
    }
}

/* ===========================
   SHAKE CTA BUTTON
   =========================== */
.shake-cta {
    position: relative;
    width: 200px;
    min-height: 34px;
    background: linear-gradient(270deg, #FFCC00 0%, #FFE680 50%, #FFCC00 100%);
    background-size: 200% auto;
    color: var(--color-black);
    border: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.4px;
    
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0px 14px 21px rgba(139, 105, 20, 0.25); /* Burnished Gold shadow */
    animation: shimmer 3s linear infinite;
    transform-style: preserve-3d;
    will-change: transform, background-position;
}

@keyframes shimmer {
    to { background-position: 200% center; }
}

.shake-cta-hero {
    width: 220px;
    min-height: 52px;
    font-size: 15px;
    letter-spacing: 1.2px;
    border-radius: 6px;
    box-shadow: 0px 18px 32px rgba(139, 105, 20, 0.38);
}

.shake-cta:hover,
.shake-cta:focus,
.shake-cta:active {
    background-position: right center;
    color: var(--color-black);
    box-shadow: 0px 18px 28px rgba(139, 105, 20, 0.4);
    transform: translateY(-2px);
}

@keyframes headShake {
    0% {
        transform: translateX(0);
    }

    6.5% {
        transform: translateX(-3px);
    }

    18.5% {
        transform: translateX(2px);
    }

    31.5% {
        transform: translateX(-3px);
    }

    43.5% {
        transform: translateX(2px);
    }

    50% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(0);
    }
}

/* ── Spinner animation ── */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.animate-spin {
    animation: spin 1s linear infinite;
}

/* ===========================
   HEADER & LOGO
   =========================== */
.hero-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(201,168,76,0.15);
    margin-bottom: 8px;
}

.hero-logo-img {
    height: 64px;
    width: auto;
}



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

/* ── Mobile-first (new design) ── */
.hero {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
    background-color: #FAFAFA;
    overflow: hidden;
}

.hero::before {
    display: none;
}

.hero__left {
    width: 100%;
}

.hero__bg {
    display: block;
    position: relative;
    width: 100%;
    height: 55vh;
    z-index: 0;
    object-fit: cover;
    object-position: center top;
}

video.hero__bg,
img.hero__bg {
    object-fit: cover;
    object-position: center top;
}

.hero__fade {
    display: none;
}

.hero__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: calc(100% - 32px);
    max-width: 480px;
    margin: -40px auto 32px;
    padding: 32px 24px;
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #D4B86A;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.hero__top-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero__eyebrow {
    
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-gold);
    margin-bottom: 8px;
}

.hero__title {
    font-weight: 700;
    
    font-size: 2.2rem;
    line-height: 1.15;
    color: var(--color-black);
    margin-bottom: 24px;
    max-width: 100%;
}

@media (min-width: 481px) and (max-width: 767px) {
    .hero__title {
    font-weight: 700;
        /* removed font-size */
    }
}

.hero__scarcity-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--color-border);
    border-radius: 100px;
    
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--color-black);
}

.hero__scarcity-badge .dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-gold);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.2); /* Antique Gold shadow */
}

/* ── Bottom card (mobile only) ── */
.hero__bottom-card {
    border-top: 1px solid #EAEAEA;
    padding-top: 24px;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.hero__price-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero__price-label {
    font-weight: 300;
    font-size: 0.85rem;
    color: var(--color-muted);
}

.hero__price-sqft {
    color: var(--color-black);
}

.hero__price-value {
    font-weight: 700;
    
    font-size: 2rem;
    color: #C9A84C;
    line-height: 1;
}

.hero__price-value span {
    
    font-size: 0.9rem;
    color: var(--color-black);
    text-transform: none;
}

.hero__location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero__location svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--color-gold);
}

.hero__location span {
    
    font-size: 0.95rem;
    color: var(--color-black);
}

/* ── CTA button (mobile: full-width yellow) ── */
.hero__cta {
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px;
    background: #C9A84C;
    color: #0D0D1A;
    
    font-size: 1rem;
    font-weight: 600;
    border-radius: 9999px;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.hero__cta:hover {
    background-position: right center;
    transform: translateY(-2px);
}

/* ===================================
   DESKTOP HERO (≥768px)
   =================================== */
@media (min-width: 768px) {
    .hero-logo-img {
        height: 120px;
    }
    .hero {
        display: flex;
        flex-direction: row;
        height: 100vh;
        width: 100%;
        gap: 0;
        margin: 0;
        padding: 0;
        overflow: hidden;
    }

    .hero__left {
        width: 62%;
        height: 100vh;
        flex-shrink: 0;
    }

    /* Video occupies first grid column on the left */
    .hero__bg {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .hero__fade {
        display: none;
    }

    /* Text content occupies second grid column on the right */
    .hero__inner {
        width: 38%;
        max-width: none;
        height: 100vh;
        background: #FFFFFF;
        overflow-y: auto;
        padding: 32px 28px;
        display: flex;
        flex-direction: column;
        gap: 16px;
        border-left: 1px solid rgba(201,168,76,0.2);
        margin: 0;
    }

    /* Glass card on the right */
    .hero__top-content {
        text-align: left;
        width: 100%;
        max-width: none;
        background: #FFFFFF;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: 1px solid #C9A84C;
        border-radius: 16px;
        padding: 40px;
        margin: 0;
        box-shadow: 0 4px 24px rgba(0,0,0,0.08);
        flex: none;
    }

    .hero__eyebrow {
        color: #C9A84C;
        font-size: 0.85rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        margin-bottom: 12px;
        font-weight: 500;
    }

    .hero__title {
        color: #1A1A1A;
        font-size: clamp(1.6rem, 2.8vw, 2.8rem);
        font-weight: 700;
        line-height: 1.2;
        text-shadow: none;
        margin-bottom: 20px;
        max-width: 100%;
    }

    .hero__scarcity-badge {
        display: inline-block;
        color: #1A1A1A;
        border: 1px solid #C9A84C;
        border-radius: 999px;
        padding: 8px 20px;
        font-size: 0.75rem;
        letter-spacing: 0.15em;
        font-weight: 500;
        background: transparent;
    }
    
    .hero__scarcity-badge .dot {
        display: none;
    }

    /* Price card on the right */
    .hero__bottom-card {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        transform: none;
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 32px;
        border-radius: 16px;
        background: #FFFFFF;
        box-shadow: 0 4px 24px rgba(0,0,0,0.08);
        border: 1px solid #C9A84C;
        z-index: 2;
    }

    .hero__price-wrap {
        margin-bottom: 20px;
    }

    .hero__price-label {
        font-weight: 300;
        letter-spacing: 1.5px;
        font-size: 0.75rem;
        line-height: 1.4;
        color: var(--color-gold);
        max-width: 100%;
        margin-bottom: 8px;
    }

    .hero__price-value {
        font-size: 2.2rem;
        color: #C9A84C;
        line-height: 1.1;
        font-weight: 700;
    }

    .hero__price-value span {
        display: block;
        font-size: 0.85rem;
        font-weight: 500;
        color: var(--color-black);
        letter-spacing: 1.5px;
        margin-top: 4px;
        text-transform: none;
    }

    .hero__location {
        justify-content: flex-start;
        margin-bottom: 30px;
    }

    .hero__cta {
        width: 100%;
        min-height: 48px;
        padding: 14px 32px;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        background-color: #C9A84C;
        color: #111;
        border-radius: 9999px;
    }
    
    .hero__cta:hover {
        background-position: right center;
        box-shadow: 0px 18px 28px rgba(139, 105, 20, 0.4);
        transform: translateY(-2px);
    }
}

/* ===========================
   EXPERTISE CARDS SECTION
   =========================== */
.expertise {
    padding: var(--section-py) var(--section-px);
    max-width: var(--max-w);
    margin: 0 auto;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--color-black);
}

.section-title span {
    font-weight: normal;
    color: var(--color-gold);
    font-family: 'Poppins', sans-serif;
}

.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--color-border);
    padding: 28px 24px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-6px);
    border-color: var(--color-gold-dark);
    box-shadow: 0 10px 30px rgba(139, 105, 20, 0.15); /* Burnished Gold soft shadow */
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.card p {
    font-size: 0.95rem;
    color: var(--color-muted);
    margin-bottom: 30px;
}

.card__link {
    font-size: 0.85rem;
    
    letter-spacing: 1px;
    color: var(--color-black);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.card__link .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.card:hover .arrow {
    transform: translateX(5px);
}

/* center CTA below cards */
.text-center {
    text-align: center;
}

.mt-16 {
    margin-top: 64px;
}

/* ===========================
   FLOOR PLAN SECTION
   =========================== */
.floor-plan-cards {
    background-color: #FAF9F5;
}

.floor-plans-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.floor-plan-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.floor-plan-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-gold-dark);
    box-shadow: 0 10px 30px rgba(139, 105, 20, 0.15);
}

.floor-plan-card img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    object-position: center;
    background-color: #fff;
    border-bottom: 1px solid var(--color-border);
}

.floor-plan-card__info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.floor-plan-card__info h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.floor-plan-card__info p {
    font-size: 0.95rem;
    color: var(--color-muted);
    margin-bottom: 24px;
    flex: 1;
}

/* ===========================
   ABOUT SECTION
   =========================== */
.about {
    padding: var(--section-py) var(--section-px);
    max-width: var(--max-w);
    margin: 0 auto;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

.about__image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    border-left: 2px solid var(--color-gold);
}

.about__eyebrow {
    font-size: 0.8rem;
    letter-spacing: 2px;
    
    color: var(--color-gold);
    margin-bottom: 20px;
}

.about__title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 40px;
    text-align: left;
}

.about__body {
    font-size: 0.95rem;
}

.about__features {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 32px;
}

.about__feature-icon {
    width: 50px;
    height: 50px;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.about__feature h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.about__feature p {
    font-size: 0.95rem;
}

/* ===========================
   PROJECT FULL IMAGE
   =========================== */
.project-full {
    width: 100%;
}

.project-full img {
    width: 100%;
    max-height: 80vh;
    object-fit: cover;
}

/* ===========================
   GALLERY / TABS
   =========================== */
.gallery-section {
    padding: var(--section-py) var(--section-px);
    max-width: var(--max-w);
    margin: 0 auto;
}

.tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.tab-divider {
    width: 1px;
    height: 32px;
    background-color: rgba(0, 0, 0, 0.2);
}

.tab-btn {
    
    font-size: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    color: var(--color-muted);
}

.tab-btn.active {
    color: var(--color-gold);
}

.tab-btn:hover {
    color: var(--color-gold-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    transition: opacity 0.5s ease;
}

.gallery-grid.hidden {
    display: none;
}

.gallery-grid a {
    display: block;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    cursor: zoom-in;
    transition: opacity 0.3s ease;
}

.gallery-grid img:hover {
    opacity: 0.9;
}

/* ===========================
   NEARBY PLACES SECTION
   =========================== */
/* ── SECTION BACKGROUND ── */
.nearby-section {
  background: #FAF9F5;
  padding: 80px 0;
  width: 100%;
}

/* ── MAP ── */
.map-container {
  width: 100%;
  height: 420px;
  border-radius: 20px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.12),
              0 0 80px rgba(201, 168, 76, 0.06);
  overflow: hidden;
  margin: 0 0 48px 0;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
/* ── NEARBY SECTION REDESIGN ── */
.nearby-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (min-width: 1024px) {
    .nearby-grid {
        flex-direction: row;
        align-items: stretch;
        gap: 64px;
    }
    .nearby-content {
        width: 40%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .nearby-map {
        width: 60%;
    }
    .nearby-map .map-container {
        height: 100%;
        min-height: 500px;
        margin-bottom: 0;
    }
}

.location-cards-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.location-card {
  background: #FFFFFF;
  border: 1px solid rgba(201, 168, 76, 0.15);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.location-card:hover {
  border-color: #C9A84C;
  box-shadow: 0 12px 32px rgba(201, 168, 76, 0.15);
  transform: translateY(-4px);
}
.location-card .fa-icon {
  font-size: 20px;
  color: #C9A84C;
  background: rgba(201, 168, 76, 0.1);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 0;
  flex-shrink: 0;
}
.location-card .place-name {
  color: #1A1A1A;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1.3;
  text-align: left;
}
.location-card .time-badge {
  display: inline-flex;
  margin-left: auto;
  background: #C9A84C;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
/* ── MOBILE ── */
@media (max-width: 767px) {
  .nearby-section { padding: 48px 0; }
  .map-container { height: 320px; }
  .location-cards-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
}

/* ===========================
   CONTACT SECTION
   =========================== */
.contact {
    padding: var(--section-py) var(--section-px);
    max-width: var(--max-w);
    margin: 0 auto;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: start;
}

.contact__eyebrow {
    font-size: 0.8rem;
    letter-spacing: 2px;
    
    color: var(--color-gold);
    margin-bottom: 15px;
}

.contact__title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 30px;
}

.contact__body {
    font-size: 0.95rem;
    margin-bottom: 40px;
}

.contact__cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.contact__card {
    background: #ffffff;
    padding: 20px;
    border-radius: 2px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: transform 0.3s ease;
}

.contact__card:hover {
    transform: translateY(-4px);
}

.contact__card-icon {
    background: var(--color-gold);
    padding: 10px;
    color: #ffffff;
    flex-shrink: 0;
}

.contact__card-icon svg {
    width: 24px;
    height: 24px;
}

.contact__card h4 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 5px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.contact__card p {
    font-size: 0.85rem;
    color: #666;
}

.booking-box {
    width: 100%;
    position: relative;
    min-height: 400px;
}

.ghl-form-container-class {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: transparent;
    z-index: 1;
    color: var(--color-gold);
}

.form-placeholder svg {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
}

.form-placeholder span {
    font-size: 0.9rem;
    
    letter-spacing: 1px;
    font-weight: 500;
    color: var(--color-muted);
}

/* ===========================
   MODAL
   =========================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: #111111;
    border: 1px solid rgba(251, 188, 5, 0.3);
    border-radius: 12px;
    width: 100%;
    max-width: 500px;
    position: relative;
    padding: 40px 30px 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.9);
    transform: scale(0.95);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-top-icon {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background: linear-gradient(270deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(201, 168, 76, 0.4); /* Antique Gold shadow */
    color: var(--color-black);
}

.modal-top-icon svg {
    width: 24px;
    height: 24px;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-header {
    text-align: center;
    margin-bottom: 20px;
}

.modal-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    
}

.modal-header h2 span {
    color: var(--color-gold);
}

.modal-header p {
    font-size: 0.95rem;
    color: var(--color-muted);
}

.modal-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
    padding: 16px 20px;
    background: rgba(168, 124, 58, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(168, 124, 58, 0.1);
}

.modal-step {
    display: flex;
    align-items: center;
    gap: 16px;
}

.modal-step-number {
    width: 28px;
    height: 28px;
    background-color: var(--color-gold);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.modal-step-text {
    
    font-size: 0.95rem;
    color: var(--color-white);
    font-weight: 400;
}

/* ===========================
   THANK YOU PAGE
   =========================== */
.thankyou-body {
    background: var(--color-black);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.glow-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.glow-tl {
    position: absolute;
    top: -10%;
    left: -15%;
    width: 55%;
    height: 65%;
    background: radial-gradient(ellipse at center, rgba(168, 124, 58, 0.28) 0%, transparent 70%);
}

.glow-br {
    position: absolute;
    bottom: -10%;
    right: -15%;
    width: 55%;
    height: 65%;
    background: radial-gradient(ellipse at center, rgba(168, 124, 58, 0.22) 0%, transparent 70%);
}

.thankyou-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 24px;
}

.thankyou-logo {
    display: block;
    margin-bottom: 48px;
}

.thankyou-logo img {
    display: block;
    margin: 0 auto;
}

.checkmark {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid var(--color-gold);
    background: rgba(168, 124, 58, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.thankyou-title {
    font-size: 3rem;
    margin-bottom: 16px;
}

.thankyou-title span {
    color: var(--color-gold);
}

.thankyou-divider {
    width: 50px;
    height: 2px;
    background: var(--color-gold);
    margin: 0 auto 24px;
}

.thankyou-subtitle {
    font-size: 1rem;
    max-width: 420px;
    line-height: 1.7;
}

.thankyou-back {
    display: inline-block;
    margin-top: 40px;
    font-size: 0.8rem;
    
    letter-spacing: 2px;
    color: var(--color-gold);
}

.thankyou-back:hover {
    color: var(--color-white);
}

/* ===========================
   FAQ SECTION
   =========================== */
.faq {
    padding: var(--section-py) var(--section-px);
    max-width: var(--max-w);
    margin: 0 auto;
}

.faq-section {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 60px;
    align-items: flex-start;
}

.faq-left-column {
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

.faq-title {
    font-family: 'Luxera', serif;
    font-size: 2.5rem;
    font-weight: normal;
    line-height: 1.2;
    color: var(--color-black);
}

.faq-desc {
    font-size: 0.95rem;
    margin-top: 16px;
}

.faq__list, .faq-right-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq__item {
    background: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.faq__item:hover {
    border-color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(139, 105, 20, 0.1);
}

.faq__question {
    padding: 24px;
    
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-black);
    cursor: pointer;
    list-style: none;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq__question::-webkit-details-marker {
    display: none;
}

.faq__question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-gold);
    transition: transform 0.3s ease;
}

.faq__item[open] .faq__question::after {
    content: '−';
    transform: rotate(180deg);
}

.faq__item[open] .faq__question {
    border-bottom: 1px solid var(--color-border);
}

.faq__answer {
    padding: 24px;
    color: var(--color-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq__answer p {
    margin-bottom: 10px;
}

.faq__answer p:last-child {
    margin-bottom: 0;
}

.faq__answer ul {
    margin-top: 10px;
    padding-left: 20px;
    list-style-type: disc;
}

.faq__answer li {
    margin-bottom: 6px;
}

/* ===========================
   RESPONSIVE — TABLET (≥768px)
   =========================== */
@media (min-width: 768px) {
    .hero__title {
    font-weight: 700;
        /* removed font-size */
    }

    .thankyou-title {
        font-size: 4.5rem;
    }

    .cards-grid, .floor-plans-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about__features {
        flex-direction: row;
    }

    .contact__cards {
        grid-template-columns: 1fr 1fr;
    }

    .section-title {
        font-size: 3rem;
    }
}

/* ===========================
   RESPONSIVE — DESKTOP (≥1024px)
   =========================== */
@media (min-width: 1024px) {

    /* Removed overriding flex-direction: row to keep single column layout */

    .hero__price-badge {
        background: transparent;
        backdrop-filter: none;
        padding: 0;
    }

    .hero__title {
    font-weight: 700;
        font-size: 3.2rem;
    }

    .cards-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .floor-plans-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about__grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(5, 1fr);
    }



    .contact__grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===========================
   RESPONSIVE — LARGE (≥1280px)
   =========================== */
@media (min-width: 1280px) {
    .hero__title {
    font-weight: 700;
        /* removed font-size */
    }

    .hero__price-value {
    font-weight: 700;
        font-size: 2.4rem;
    }
}
/* ===================================
   HERO REDESIGN
   =================================== */
.hero-new {
    background-color: #FAFAFA;
    font-family: 'Poppins', sans-serif;
    padding-bottom: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
@media (min-width: 768px) {
    .hero-new {
    }
}

/* Hero Content Redesign (Logo & Text) */
.hero-left-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Keeps everything flush-left */
  text-align: left;
  gap: 16px; /* Clean vertical spacing */
}

.logo-header-group {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin-bottom: 48px;
}
.header-logo {
  height: 96px;       /* Keeps logos aligned and uniform */
  width: auto;
  object-fit: contain;
}
.logo-divider {
  width: 1px;
  height: 80px;       /* Slightly shorter than logos for aesthetics */
  background-color: rgba(0, 0, 0, 0.2); /* Adjusted to #ccc equivalent since background is light */
}

@media (max-width: 768px) {
  .hero-left-content {
    gap: 12px;
  }
  .header-logo {
    height: 72px;
  }
  .logo-divider {
    height: 56px;
  }
  .logo-header-group {
    gap: 12px;
  }
}

.hero-new .container {
    max-width: 1600px;
}

.hero-new__top {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

@media (min-width: 1024px) {
    .hero-new__top {
        flex-direction: row;
        align-items: stretch;
        gap: 64px;
    }
    .hero-new__left {
        width: 38%;
    }
    .hero-new__right {
        width: 62%;
        display: flex;
        flex-direction: column;
    }
    .hero-new__media-wrapper {
        flex: 1;
        height: 100%;
        min-height: 480px; /* Ensure a minimum height just in case */
    }
}

.hero-new__label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #C9A84C;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0;
}

.hero-new__title {
    font-family: 'Luxera', serif;
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    font-weight: normal;
    line-height: 1.15;
    color: #1A1A1A;
    margin-bottom: 0;
}

.hero-new__title .highlight {
    color: #C9A84C;
    font-family: 'Luxera', serif;
}

.hero-new__subtext {
    font-size: 1rem;
    line-height: 1.7;
    color: #6B6B6B;
    margin-bottom: 0;
    max-width: 90%;
}

.hero-new__buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.hero-new__buttons a {
    text-decoration: none;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 99px;
    transition: all 0.3s ease;
}

@keyframes button-shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50% { transform: translateX(-2px); }
    20%, 40%, 60% { transform: translateX(2px); }
    70%, 100% { transform: translateX(0); }
}

.hero-new__buttons .btn-primary {
    background: #FFCC00;
    color: #1A1A1A;
    display: inline-block;
    animation: button-shake 1.2s infinite ease-in-out;
}

.hero-new__buttons .btn-primary:hover {
    background: #E6B800;
    animation: none;
}

.hero-new__buttons .btn-secondary {
    background: #FFFFFF;
    color: #C9A84C;
    border: 1px solid #C9A84C;
}

.hero-new__buttons .btn-secondary:hover {
    background: #f9f6f0;
}

.hero-new__features {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    color: #6B6B6B;
    flex-wrap: wrap;
}

.hero-new__features .divider {
    width: 1px;
    height: 16px;
    background: rgba(201,168,76,0.3);
}

.hero-new__media-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 480px;
    width: 100%;
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.hero-new__media-wrapper video,
.hero-new__media-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-new__overlay-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    z-index: 10;
}

.hero-new__overlay-badge p {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.hero-new__overlay-badge a {
    color: #C9A84C;
    font-size: 0.8rem;
    text-decoration: none;
    font-weight: 500;
}

.hero-new__overlay-badge a:hover {
    text-decoration: underline;
}

/* CARDS ROW */
.hero-new__cards-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 48px;
}

@media (min-width: 1024px) {
    .hero-new__cards-row {
        grid-template-columns: repeat(3, 1fr);
        margin-top: 64px;
    }
}

.hero-card {
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid rgba(201,168,76,0.2);
    overflow: hidden;
    display: flex;
    flex-direction: row;
    min-height: 100px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(201,168,76,0.1);
}

.hero-card__content {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.hero-card__content h3 {
    font-size: 1.1rem;
    color: #1A1A1A;
    margin-bottom: 8px;
    font-weight: 700;
}

.hero-card__content p {
    font-size: 0.8rem;
    color: #6B6B6B;
    line-height: 1.5;
    flex-grow: 1;
}

.hero-card__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #C9A84C;
    color: #FFFFFF;
    text-decoration: none;
    margin-top: auto;
    transition: transform 0.2s ease;
}

.hero-card__arrow:hover {
    transform: scale(1.1);
}

.hero-card__image {
    width: 40%;
    flex-shrink: 0;
}

.hero-card__image img,
.hero-card__image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* AMENITIES ROW */
.hero-new__amenities-wrapper {
    background: #000000;
    border-top: 1px solid rgba(201,168,76,0.15);
    margin-top: 64px;
    padding: 28px 0;
}

.hero-new__amenities-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .hero-new__amenities-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero-new__amenities-row {
        grid-template-columns: repeat(4, 1fr);
    }
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

@media (min-width: 1024px) {
    .amenity-item:not(:last-child) {
        border-right: 1px solid rgba(201,168,76,0.15);
        padding-right: 24px;
    }
}

.amenity-item__icon {
    font-size: 32px;
    line-height: 1;
    color: #C9A84C;
}

.amenity-item__text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #C9A84C;
    margin-bottom: 2px;
}

.amenity-item__text p {
    color: #ffffff;
}


small {
    font-weight: 300;
}

@media (max-width: 767px) {
  /* ── GLOBAL ── */
  body, html { overflow-x: hidden; }
  *, *::before, *::after { box-sizing: border-box; }
  section { padding: 48px 20px !important; }

  /* ─────────────────────────────────
     0. HERO BADGE MOBILE POS
  ───────────────────────────────── */
  .hero-new__overlay-badge {
      top: auto !important;
      bottom: 16px !important;
      left: auto !important;
      right: 16px !important;
  }

  /* ─────────────────────────────────
     0. AMENITIES SEPARATOR
  ───────────────────────────────── */
  .amenity-item {
      position: relative;
  }
  .amenity-item:not(:last-child)::after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      bottom: -12px;
      height: 1.5px;
      background-color: #C9A84C;
  }
  
  /* ─────────────────────────────────
     1. FEATURES / HIGHLIGHTS CARDS
  ───────────────────────────────── */
  .features-grid,
  .highlights-grid,
  .features-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    overflow-x: hidden !important;
  }
  .feature-card,
  .highlight-card {
    width: 100% !important;
    min-width: 0 !important;
    padding: 24px 20px !important;
    border-radius: 16px !important;
  }
  .feature-card h3,
  .highlight-card h3 {
    font-size: 1.1rem !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
  }
  /* ─────────────────────────────────
     2. FLOOR PLANS
  ───────────────────────────────── */
  .floor-plans-grid,
  .floorplan-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
  }
  .floorplan-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }
  .floorplan-card img {
    width: 100% !important;
    height: 220px !important;
    object-fit: contain !important;
    background: #f9f6f0 !important;
  }
  .floorplan-card h3 {
    font-size: 1.1rem !important;
    white-space: normal !important;
  }
  /* ─────────────────────────────────
     3. GALLERY
  ───────────────────────────────── */
  .gallery-grid {
    grid-template-columns: 1fr 1fr !important; /* 2 columns */
    gap: 8px !important;
  }
  .gallery-item,
  .gallery-grid img {
    width: 100% !important;
    height: 120px !important;
    object-fit: cover !important;
    border-radius: 8px !important;
  }
  .gallery-tabs {
    display: flex !important;
    justify-content: center !important;
    gap: 12px !important;
    margin-bottom: 20px !important;
  }

  /* ─────────────────────────────────
     5. ABOUT SECTION
  ───────────────────────────────── */
  .about-wrapper {
    flex-direction: column !important;
    gap: 24px !important;
  }
  .about-heading {
    font-size: clamp(1.6rem, 6vw, 2.2rem) !important;
    line-height: 1.25 !important;
  }
  .about-image {
    width: 100% !important;
    height: auto !important;
    border-radius: 12px !important;
  }
}

/* ===========================
   COMPARISON SECTION
   =========================== */
.comparison-section {
    padding-bottom: 0;
}
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 1024px) {
    .comparison-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: 32px;
    }
}

.comparison-main-card {
    background: #FAF9F5;
    border: 1px solid #C9A84C;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.comparison-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    color: #C9A84C;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.comparison-title {
    font-family: 'Luxera', serif;
    font-weight: normal;
    color: #1A1A1A;
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: 16px;
    line-height: 1.2;
}

.comparison-desc {
    color: #6B6B6B;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 32px;
}

.comparison-vs {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}
.comparison-vs .line {
    flex-grow: 1;
    height: 1px;
    background: #EBEBEB;
}
.comparison-vs .text {
    font-weight: 700;
    font-size: 0.9rem;
    color: #1A1A1A;
}

.comparison-bar-group {
    margin-bottom: 24px;
}
.comparison-bar-group:last-child {
    margin-bottom: 0;
}
.bar-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.95rem;
}
.bar-header .bar-label {
    color: #1A1A1A;
    text-transform: uppercase;
}
.bar-header .bar-value {
    color: #1A1A1A;
}
.bar-track {
    width: 100%;
    height: 12px;
    border-radius: 10px;
    background: #EBEBEB;
    overflow: hidden;
}
.bar-fill {
    height: 100%;
    border-radius: 10px;
}
.gray-fill { background: #999999; }
.gold-fill { background: #C9A84C; }

.highlight-group .bar-label,
.highlight-group .bar-value {
    color: #C9A84C;
}
.highlight-group .bar-track {
    background: rgba(201,168,76,0.2);
}

.comparison-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
@media (min-width: 600px) {
    .comparison-features {
        grid-template-columns: 1fr 1fr;
    }
}

.comp-feature-card {
    background: #FFFFFF;
    border: 1px solid #EBEBEB;
    border-left: 4px solid #C9A84C;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}
.comp-feature-card svg {
    margin-bottom: 12px;
}
.comp-feature-card h4 {
    font-size: 1.2rem;
    color: #1A1A1A;
    margin-bottom: 8px;
    font-weight: 600;
}
.comp-feature-card p {
    font-size: 0.9rem;
    color: #6B6B6B;
    line-height: 1.5;
}

@media (max-width: 991px) {
  .faq-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .faq-left-column {
    position: relative;
    top: 0;
  }
}
