:root {
    --gold: #A8793A;
    --dark: #1C1610;
    --cream: #FAF6F0;
    --ink-mid: #5A4A35;
    --accent: #8B2E2E;

    --gold-hi: rgba(168, 121, 58, .9);
    --gold-mid: rgba(168, 121, 58, .4);
    --gold-lo: rgba(168, 121, 58, .15);
    --gold-bg: rgba(168, 121, 58, .06);
    --dark-heavy: rgba(28, 22, 16, .97);
    --dark-veil: rgba(28, 22, 16, .55);
    --dark-soft: rgba(28, 22, 16, .08);
    --cream-hi: rgba(250, 246, 240, .97);
    --cream-dim: rgba(250, 246, 240, .35);

    --font: 'DM Sans', sans-serif;
    --nav-h: 72px;

    /* Validation colors */
    --valid-green: #22c55e;
    --error-red: #ef4444;
    --valid-green-bg: rgba(34, 197, 94, .08);
    --error-red-bg: rgba(239, 68, 68, .08);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-h)
}

body {
    font-family: var(--font);
    background: var(--cream);
    color: var(--dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: .018;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E")
}

* {
    scrollbar-width: none;
    -ms-overflow-style: none
}

*::-webkit-scrollbar {
    display: none
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-h);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    background: var(--cream-hi);
    border-bottom: 1px solid var(--gold-lo);
    box-shadow: 0 2px 24px var(--dark-soft);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0
}

.nav-logo-img {
    height: 44px;
    width: auto;
    object-fit: contain
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none
}

.nav-links a {
    font-size: .76rem;
    font-weight: 400;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ink-mid);
    text-decoration: none;
    transition: color .3s;
    position: relative
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width .4s
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::after {
    width: 100%
}

.nav-wa-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1.5px solid rgba(250, 246, 240, .5);
    border-color: var(--gold);
    color: var(--gold);
    padding: 9px 22px;
    font-family: var(--font);
    font-size: .74rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .3s;
    border-radius: 8px;
}

.nav-wa-btn:hover {
    background: var(--gold) !important;
    color: var(--cream) !important;
    border-color: var(--gold) !important
}

.nav-burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px
}

.nav-burger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--dark);
    transition: all .3s
}

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(28, 22, 16, .97) 0%, rgba(28, 22, 16, .78) 40%, rgba(28, 22, 16, .50) 65%, rgba(28, 22, 16, .30) 100%);
    z-index: 2;
    pointer-events: none;
}

@media (max-width: 769px) {
    .hero-bg::after {
        background: rgba(28, 22, 16, 0.78);
    }
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 1.2s ease, transform 8s ease-out;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

/* ── HERO LAYOUT (left content + right form) ── */
.hero-layout {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: calc(var(--nav-h) + 40px) 6% 80px;
}

/* ── HERO CONTENT (left) ── */
.hero-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

/* ── HERO LOCATION ── */
.hero-location-card {
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp .8s .7s forwards;
}

.hero-location-card-inner {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(28, 22, 16, .55);
    border: 1px solid rgba(168, 121, 58, .35);
    border-radius: 10px;
    padding: 10px 18px;
    backdrop-filter: blur(10px);
}

.hero-location-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-location-icon i {
    font-size: 1.1rem;
    color: var(--dark);
}

.hero-location-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-location-value {
    font-size: 1.1rem;
    color: rgba(250, 246, 240, .9);
    font-weight: 400;
    letter-spacing: .04em;
}

@media (max-width: 640px) {
    .hero-location-card-inner {
        padding: 8px 14px;
        gap: 8px;
    }

    .hero-location-icon {
        width: 22px;
        height: 22px;
    }

    .hero-location-icon i {
        font-size: .9rem;
    }

    .hero-location-value {
        font-size: .95rem;
    }
}

/* ── HERO HIGHLIGHT CARD ── */
.hero-highlight-card {
    margin-bottom: 26px;
    opacity: 0;
    animation: fadeUp .8s 1.0s forwards;
}

.hero-highlight-card-inner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #A8793A;
    border-radius: 8px;
    padding: 8px 7px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(250, 246, 240, .2);
    box-shadow: 0 0 8px rgba(168, 121, 58, .25), 0 2px 12px rgba(168, 121, 58, .1);
    animation: haloBreath 2.4s ease-in-out infinite;
}

.hero-highlight-card-inner::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -20%;
    width: 18%;
    height: 120%;
    background: linear-gradient(90deg, transparent, rgba(250, 246, 240, .55) 50%, transparent);
    transform: skewX(-18deg);
    animation: scanLine 2.4s ease-in-out infinite;
    z-index: 3;
}

.hero-highlight-card-inner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(250, 246, 240, .12) 0%, transparent 50%, rgba(28, 22, 16, .1) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-highlight-card-inner i,
.hero-highlight-card-inner span {
    position: relative;
    z-index: 2;
}

.hero-highlight-card-inner i {
    font-size: 1rem;
    color: var(--dark);
}

.hero-highlight-card-inner span {
    font-size: 1rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--dark);
    font-weight: 600;
}

@keyframes scanLine {
    0% {
        left: -20%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    65% {
        left: 110%;
        opacity: 1;
    }

    66% {
        opacity: 0;
    }

    100% {
        left: 110%;
        opacity: 0;
    }
}

@keyframes haloBreath {

    0%,
    100% {
        box-shadow: 0 0 8px rgba(168, 121, 58, .25), 0 2px 12px rgba(168, 121, 58, .1);
    }

    50% {
        box-shadow: 0 0 24px rgba(200, 151, 63, .6), 0 6px 36px rgba(168, 121, 58, .35);
    }
}

@media (max-width: 640px) {
    .hero-highlight-card-inner {
        padding: 6px 8px;
        gap: 8px;
    }

    .hero-highlight-card-inner span {
        font-size: .85rem;
    }
}

/* ── HERO SLIDER DOTS ── */
.hero-slide-dots {
    position: absolute;
    left: 50%;
    bottom: 36px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    z-index: 10;
}

.hero-dot {
    width: 28px;
    height: 3px;
    background: rgba(250, 246, 240, .25);
    cursor: pointer;
    transition: background .4s, width .4s;
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 3px;
}

.hero-dot::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0s;
}

.hero-dot.active {
    width: 48px;
    background: rgba(250, 246, 240, .15);
}

.hero-dot.active::after {
    transform: scaleX(1);
    transition: transform 5s linear;
}

.hero-rule {
    position: absolute;
    top: 0;
    right: 25%;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--gold-mid) 40%, var(--gold-bg) 100%);
    z-index: 2
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    opacity: 0;
    animation: fadeUp .8s .3s forwards
}

.hero-badge-builder {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    border: 1px solid var(--gold-mid);
    padding: 6px 18px 6px 12px;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.hero-badge-builder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(168, 121, 58, .22) 0%, rgba(168, 121, 58, .06) 100%);
}

.hero-badge-builder-emblem {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.hero-badge-builder-emblem i {
    font-size: .65rem;
    color: var(--cream)
}

.hero-badge-builder-text {
    font-size: .8rem;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--cream);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.hero-badge-prelaunch {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent);
    border: 1px solid rgba(139, 46, 46, .5);
    padding: 7px 14px;
    border-radius: 6px;
}

.hero-badge-prelaunch-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cream);
    animation: blink 1.4s ease-in-out infinite
}

.hero-badge-prelaunch-text {
    font-size: .85rem;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--cream);
    font-weight: 600;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

.hero-pre {
    font-size: clamp(.9rem, 1.6vw, 1.1rem);
    font-weight: 300;
    font-style: italic;
    color: rgba(250, 246, 240, .75);
    margin-bottom: 10px;
    opacity: 0;
    animation: fadeUp .8s .5s forwards
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 3.3rem);
    font-weight: 300;
    line-height: .95;
    color: var(--cream);
    margin-bottom: 15px;
    opacity: 0;
    animation: fadeUp .8s .6s forwards;
    letter-spacing: .015em
}

.hero-meta {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp .8s .85s forwards;
    background: rgba(28, 22, 16, .6);
    border: 1px solid var(--gold-mid);
    border-radius: 8px;
    backdrop-filter: blur(8px);
    width: fit-content;
    flex-wrap: wrap;
}

.hero-meta-item {
    font-size: .95rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(250, 246, 240, .9);
    font-weight: 400;
    padding: 11px 22px;
    white-space: nowrap
}

.hero-meta-item strong {
    color: var(--gold);
    font-weight: 600;
    display: block;
    font-size: .7rem;
    letter-spacing: .2em;
    margin-bottom: 2px
}

.hero-meta-sep {
    width: 1px;
    background: var(--gold-mid);
    flex-shrink: 0
}

.hero-stats-row {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp .8s .95s forwards;
    border: 1px solid rgba(250, 246, 240, .15);
    border-radius: 8px;
    background: rgba(250, 246, 240, .07);
    backdrop-filter: blur(16px);
    width: fit-content;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
    padding: 14px 28px;
    position: relative;
}

.hero-stat+.hero-stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(250, 246, 240, .12);
}

.hero-stat-num {
    font-size: 1.9rem;
    font-weight: 500;
    color: var(--cream);
    line-height: 1;
    display: block;
    letter-spacing: -.01em
}

.hero-stat-num span {
    font-size: .75rem;
}

.hero-stat-label {
    font-size: .58rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--cream-hi);
    display: block;
    margin-top: 6.5px
}

.hero-rera-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 26px;
    opacity: 0;
    animation: fadeUp .8s 1.0s forwards;
}

.hero-rera-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid rgba(168, 121, 58, .25);
    border-radius: 6px;
    padding: 6px 14px;
    backdrop-filter: blur(6px);
}

.hero-rera-label {
    font-size: .58rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--cream);
    font-weight: 600
}

.hero-rera-value {
    font-size: .72rem;
    color: rgba(250, 246, 240, .75);
    font-weight: 400;
    letter-spacing: .06em
}

.hero-rera-sep {
    width: 1px;
    height: 16px;
    background: var(--gold-mid)
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 14px;
    opacity: 0;
    animation: fadeUp .8s 1.1s forwards
}

/* ── HERO FORM (right side) ── */
.hero-form-wrap {
    flex-shrink: 0;
    width: 380px;
    opacity: 0;
    animation: fadeUp .9s 1.2s forwards;
}

.hero-form-card {
    background: rgba(250, 246, 240, 0.97);
    border: 1px solid var(--gold-mid);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(28, 22, 16, .35), 0 0 0 1px rgba(168, 121, 58, .08);
    position: relative;
}

.hero-form-top-accent {
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, rgba(190, 150, 80, 1) 50%, var(--gold) 100%);
    background-size: 200% 100%;
    animation: shimmerBar 2.5s linear infinite;
}

@keyframes shimmerBar {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.hero-form-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px 0;
    margin-bottom: 14px;
}

.hero-form-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-form-icon-wrap i {
    font-size: 1.1rem;
    color: var(--cream);
}

.hero-form-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: -.01em;
    line-height: 1.2;
    margin: 0;
}

.hero-form-subtitle {
    font-size: .72rem;
    color: var(--ink-mid);
    font-weight: 300;
    margin-top: 2px;
}

.hero-form-badges {
    display: flex;
    align-items: center;
    gap: 8px;
    /* Space between the two badges */
    padding: 0 24px 16px;
    width: 100%;
    box-sizing: border-box;
}

.hero-form-badge {
    display: flex;
    /* Changed to flex to allow inner centering */
    flex: 1;
    /* This forces both badges to stretch and share the width 50/50 */
    justify-content: center;
    /* Centers the text and icon inside the badge */
    align-items: center;
    gap: 5px;
    font-size: .7rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--ink-mid);
    background: var(--gold-bg);
    border: 1px solid var(--gold-lo);
    border-radius: 6px;
    padding: 6px 10px;
    white-space: nowrap;
    /* Ensures the text stays on one line */
}

.hero-form-badge i {
    color: var(--gold);
    font-size: .7rem;
}

.hero-form-body {
    padding: 0 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ── HERO FORM FIELD STYLES ── */
.hf-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .72rem;
    font-weight: 600;
    color: var(--ink-mid);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.hf-label i {
    color: var(--gold);
    font-size: .7rem;
    width: 14px;
}

.hf-input-wrap {
    position: relative;
}

.hf-input {
    width: 100%;
    padding: 12px 42px 12px 14px;
    border: 2px solid rgba(168, 121, 58, .15);
    border-radius: 10px;
    font-family: var(--font);
    font-size: .88rem;
    font-weight: 400;
    color: var(--dark);
    background: rgba(242, 235, 224, .5);
    outline: none;
    transition: border-color .3s, background .3s, box-shadow .3s;
}

.hf-input::placeholder {
    color: rgba(90, 74, 53, .45);
}

.hf-input:focus {
    border-color: var(--gold);
    background: var(--cream);
    box-shadow: 0 0 0 4px rgba(168, 121, 58, .1);
}

/* intl-tel-input override for hero form */
.hero-form-body .iti {
    width: 100%;
}

.hero-form-body .iti__flag-container {
    border-right: 1px solid var(--gold-lo);
}

.hero-form-body .iti__selected-dial-code {
    font-size: .8rem;
    color: var(--ink-mid);
}

.hero-form-body .iti--separate-dial-code .iti__selected-flag {
    background: rgba(168, 121, 58, .06);
    border-radius: 8px 0 0 8px;
}

/* hf consent */
.hf-consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.hf-consent input[type=checkbox] {
    margin-top: 2px;
    accent-color: var(--gold);
    flex-shrink: 0;
    width: 14px;
    height: 14px;
}

.hf-consent label {
    font-size: .62rem;
    line-height: 1.6;
    color: var(--ink-mid);
    cursor: pointer;
    opacity: .8;
}

/* hero submit button */
.hf-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--gold);
    color: var(--cream);
    border: none;
    border-radius: 10px;
    padding: 14px 20px;
    font-family: var(--font);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .35s;
    position: relative;
    overflow: hidden;
    margin-top: 4px;
}

.hf-submit-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(190, 150, 80, 1);
    transform: translateX(-101%);
    transition: transform .4s ease;
}

.hf-submit-btn:hover::after {
    transform: translateX(0);
}

.hf-submit-btn span,
.hf-submit-btn i {
    position: relative;
    z-index: 1;
}

.hf-submit-btn .btn-icon {
    transition: transform .3s;
}

.hf-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px var(--gold-mid);
}

.hf-submit-btn:hover .btn-icon {
    transform: translateX(4px);
}

.hf-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.hero-form-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 12px 24px;
    border-top: 1px solid var(--gold-lo);
    background: rgba(168, 121, 58, .03);
    font-size: .65rem;
    color: var(--ink-mid);
    opacity: .7;
    letter-spacing: .04em;
}

.hero-form-footer i {
    color: var(--gold);
    font-size: .7rem;
}

/* ── VALIDATION STYLES ── */

/* Fix the height and padding of the country code search bar */
.iti__search-input {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    height: auto !important;
    line-height: 1 !important;
    font-family: var(--font);
}

/* Generic input-wrapper state management */
.input-wrapper {
    position: relative;
}

.input-wrapper .error-icon,
.input-wrapper .success-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: .85rem;
    opacity: 0;
    transition: opacity .25s ease, transform .25s ease;
}

.input-wrapper .error-icon {
    color: var(--error-red);
}

.input-wrapper .success-icon {
    color: var(--valid-green);
}

/* For hf-input-wrap: icons positioned within */
.hf-input-wrap .error-icon,
.hf-input-wrap .success-icon {
    top: 50%;
    transform: translateY(-50%);
}

/* error state */
.input-wrapper.error .hf-input,
.input-wrapper.error .form-input {
    border-color: var(--error-red);
    background: var(--error-red-bg);
    animation: shake .4s cubic-bezier(.36, .07, .19, .97);
}

.input-wrapper.error .error-icon {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.input-wrapper.error .success-icon {
    opacity: 0;
}

/* success state */
.input-wrapper.success .hf-input,
.input-wrapper.success .form-input {
    border-color: var(--valid-green);
    background: var(--valid-green-bg);
}

.input-wrapper.success .success-icon {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.input-wrapper.success .error-icon {
    opacity: 0;
}

/* error message animation */
.input-wrapper .error-msg {
    font-size: .7rem;
    color: var(--error-red);
    margin-top: 4px;
    margin-left: 2px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .3s ease, opacity .3s ease, margin-top .3s ease;
    display: block;
}

.input-wrapper.error .error-msg {
    max-height: 40px;
    opacity: 1;
    margin-top: 5px;
}

/* Modal form labels */
.modal-box .input-wrapper label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .72rem;
    font-weight: 600;
    color: var(--ink-mid);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.modal-box .input-wrapper label i {
    color: var(--gold);
    font-size: .7rem;
    width: 14px;
}

/* Modal input wrapper icon positioning */
.modal-box .input-wrapper>.relative {
    position: relative;
}

.modal-box .input-wrapper .error-icon,
.modal-box .input-wrapper .success-icon {
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
}

/* iti overrides for modal form */
.modal-box .iti {
    width: 100%;
    display: block;
}

.modal-box .iti .form-input,
.modal-box .iti input {
    width: 100%;
    padding-left: 90px !important;
}

.modal-box .iti__flag-container {
    border-right: 1px solid var(--gold-lo);
}

.modal-box .iti--separate-dial-code .iti__selected-flag {
    background: rgba(242, 235, 224, .8);
    border-radius: 6px 0 0 6px;
}

/* Shake animation */
@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    15% {
        transform: translateX(-6px);
    }

    30% {
        transform: translateX(6px);
    }

    45% {
        transform: translateX(-4px);
    }

    60% {
        transform: translateX(4px);
    }

    75% {
        transform: translateX(-2px);
    }

    90% {
        transform: translateX(2px);
    }
}

/* Submit button icon */
.btn-form-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--gold);
    color: var(--cream);
    border: none;
    border-radius: 8px;
    padding: 15px;
    font-family: var(--font);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .35s;
    position: relative;
    overflow: hidden;
}

.btn-form-submit::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--dark);
    transform: translateX(-101%);
    transition: transform .4s ease;
}

.btn-form-submit:hover::after {
    transform: translateX(0);
}

.btn-form-submit span,
.btn-form-submit i {
    position: relative;
    z-index: 1;
}

.btn-form-submit .btn-icon {
    transition: transform .3s;
}

.btn-form-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px var(--dark-soft);
}

.btn-form-submit:hover .btn-icon {
    transform: translateX(4px);
}

.btn-form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* ── TICKER ── */
.ticker-wrap {
    background: var(--gold);
    overflow: hidden;
    white-space: nowrap;
    padding: 11px 0
}

.ticker-inner {
    display: inline-flex;
    animation: ticker 28s linear infinite
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 22px;
    font-size: .65rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--dark);
    font-weight: 500;
    padding: 0 28px
}

.ticker-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(28, 22, 16, .3)
}

@keyframes ticker {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* ── SECTIONS ── */
.section {
    padding: 60px 0;
}

.section-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 48px
}

.section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px
}

.section-label-line {
    width: 28px;
    height: 1px;
    background: var(--gold)
}

.section-label-text {
    font-size: .73rem;
    letter-spacing: .32em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500
}

.section-title {
    font-size: clamp(1.9rem, 3.8vw, 3.2rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 44px;
    letter-spacing: -.01em
}

.section-title span {
    color: var(--gold);
    font-weight: 400
}

/* ── OVERVIEW ── */
#overview {
    background: var(--cream)
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center
}

.overview-image-wrap {
    position: relative
}

.overview-img-frame {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.overview-img-frame::before {
    content: '';
    position: absolute;
    inset: -1px;
    border: 1px solid var(--gold-lo);
    border-radius: 12px;
    z-index: 2;
    pointer-events: none
}

.overview-img-frame img {
    width: 100%;
    display: block;
    height: 600px;
    object-fit: cover;
    filter: brightness(.85);
    transition: transform .8s
}

.overview-img-frame:hover img {
    transform: scale(1.03)
}

.overview-corner-deco {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 70px;
    height: 70px;
    border-top: 1px solid var(--gold);
    border-right: 1px solid var(--gold);
    border-top-right-radius: 12px;
}

.overview-corner-deco-bl {
    position: absolute;
    bottom: -14px;
    left: -14px;
    width: 70px;
    height: 70px;
    border-bottom: 1px solid var(--gold);
    border-left: 1px solid var(--gold);
    border-bottom-left-radius: 12px;
}

#overview .section-title {
    font-size: clamp(1.6rem, 3vw, 2.8rem);
    margin-bottom: 18px
}

.overview-body {
    font-size: .9rem;
    line-height: 1.9;
    color: var(--ink-mid);
    font-weight: 300;
    margin-bottom: 20px
}

.overview-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--gold-lo);
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
}

.overview-spec {
    background: var(--cream);
    padding: 11px 12px
}

.overview-spec-val {
    font-size: 1.55rem;
    font-weight: 400;
    color: var(--gold);
    display: block;
    line-height: 1;
    margin-bottom: 4px
}

.overview-spec-key {
    font-size: .62rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--ink-mid)
}

/* ── PRICING ── */
#pricing {
    background: rgba(242, 235, 224, 1);
    position: relative;
    overflow: hidden
}

#pricing::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold-bg) 0%, transparent 70%);
    pointer-events: none
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.pricing-card {
    background: var(--cream);
    padding: 40px 28px 32px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--gold-lo);
    transition: transform .4s cubic-bezier(.25, .46, .45, .94), box-shadow .4s
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold);
    transition: width .5s cubic-bezier(.25, .46, .45, .94)
}

.pricing-card:hover::before {
    width: 100%
}

.pricing-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, var(--gold-bg) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .4s
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 52px var(--dark-soft)
}

.pricing-card:hover::after {
    opacity: 1
}

.pricing-type {
    font-size: 3rem;
    font-weight: 300;
    color: var(--ink-mid);
    line-height: 1;
    display: block;
    margin-bottom: 2px;
    transition: color .4s;
    letter-spacing: -.02em
}

.pricing-card:hover .pricing-type {
    color: var(--gold)
}

.pricing-bhk {
    font-size: .85rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    display: block;
    font-weight: 600
}

.pricing-area {
    font-size: .88rem;
    color: var(--ink-mid);
    letter-spacing: .05em;
    margin-bottom: 6px
}

.pricing-divider {
    width: 22px;
    height: 1px;
    background: var(--gold-hi);
    margin: 16px 0
}

.pricing-num {
    font-size: 2rem;
    font-weight: 500;
    color: var(--dark);
    display: block;
    margin-bottom: 4px;
    transition: color .4s;
    letter-spacing: -.02em
}

.pricing-num span {
    font-size: .85rem;
    font-weight: 500;
}

.pricing-card:hover .pricing-num {
    color: var(--gold)
}

.pricing-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
    width: 100%;
    padding: 11px 0;
    background: rgba(232, 221, 208, 1);
    border: 1px solid var(--gold-lo);
    border-radius: 8px;
    font-family: var(--font);
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--ink-mid);
    cursor: pointer;
    transition: background .3s, color .3s, border-color .3s;
    position: relative;
    z-index: 1
}

.pricing-cta i {
    font-size: .62rem;
    transition: transform .3s
}

.pricing-card:hover .pricing-cta {
    background: var(--gold);
    color: var(--cream);
    border-color: var(--gold)
}

.pricing-card:hover .pricing-cta i {
    transform: translateX(4px)
}

/* ── FLOOR PLANS ── */
#floorplan {
    background: var(--cream)
}

.floorplan-tabs {
    display: flex;
    gap: 16px;
    margin-bottom: 44px;
    border-bottom: 1px solid var(--gold-lo);
    overflow-x: auto;
}

.fp-tab {
    padding: 16px 36px;
    font-size: 0.95rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ink-mid);
    cursor: pointer;
    border: none;
    background: none;
    transition: all .3s;
    position: relative;
    font-family: var(--font);
    font-weight: 500
}

.fp-tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold);
    transition: width .4s
}

.fp-tab.active {
    color: var(--gold)
}

.fp-tab.active::after {
    width: 100%
}

.fp-content-wrap {
    position: relative;
    min-height: 480px;
}

.fp-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition: opacity .45s cubic-bezier(.4, 0, .2, 1), transform .45s cubic-bezier(.4, 0, .2, 1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.fp-content.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
    position: relative;
}

.fp-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid var(--gold-lo)
}

.fp-img-wrap img {
    width: 100%;
    display: block;
    height: 430px;
    object-fit: contain;
    background: rgba(242, 235, 224, 1);
}

.fp-detail-title {
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--dark);
    margin-bottom: 6px;
    letter-spacing: -.02em
}

.fp-detail-sub {
    font-size: .85rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    font-weight: 500;
}

.fp-specs-list {
    list-style: none;
    margin-bottom: 28px
}

.fp-specs-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(168, 121, 58, .08);
    font-size: 1.05rem
}

.fp-specs-list li span:first-child {
    color: var(--ink-mid);
    font-weight: 300
}

.fp-specs-list li span:last-child {
    color: var(--dark);
    font-weight: 500
}

.master-plan-wrap {
    border: 1px solid var(--gold-lo);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: zoom-in
}

.master-plan-wrap img {
    width: 100%;
    height: 600px;
    display: block;
    transition: transform .6s
}

.master-plan-wrap:hover img {
    transform: scale(1.03)
}

.plan-label {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(250, 246, 240, .92);
    backdrop-filter: blur(8px);
    border: 1px solid var(--gold-mid);
    border-radius: 6px;
    padding: 7px 14px;
    font-size: .6rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold)
}

/* ── AMENITIES ── */
#amenities {
    background: rgba(242, 235, 224, 1)
}

.amenities-header-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 72px;
    align-items: start;
    margin-bottom: 52px
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: var(--gold-lo);
    border-radius: 12px;
    overflow: hidden;
}

.amenity-cell {
    background: rgba(242, 235, 224, 1);
    padding: 32px 18px;
    text-align: center;
    transition: all .4s;
    position: relative;
    overflow: hidden
}

.amenity-cell::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--cream);
    opacity: 0;
    transition: opacity .4s
}

.amenity-cell:hover::after {
    opacity: 1
}

.amenity-cell:hover .amenity-icon {
    color: var(--gold);
    transform: translateY(-3px)
}

.amenity-cell:hover .amenity-name {
    color: var(--dark)
}

.amenity-icon {
    font-size: 1.4rem;
    color: var(--gold-mid);
    margin-bottom: 12px;
    display: block;
    transition: all .4s;
    position: relative;
    z-index: 1
}

.amenity-name {
    font-size: .7rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ink-mid);
    font-weight: 500;
    transition: color .4s;
    position: relative;
    z-index: 1
}

/* ── GALLERY ── */
#gallery {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

#gallery::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at 65% 25%, rgba(168, 121, 58, .08) 0%, transparent 55%)
}

.gallery-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 48px
}

.gallery-header {
    margin-bottom: 52px
}

.gallery-header .section-label-line {
    background: var(--gold)
}

.gallery-header .section-label-text {
    color: var(--gold)
}

.gallery-header .section-title {
    color: var(--cream);
    margin-bottom: 0
}

.gallery-header .section-title span {
    color: var(--gold)
}

.gal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 16px;
}

.gal-item {
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
    background: rgba(42, 32, 24, 1);
    border-radius: 12px;
    height: 280px;
}

.gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(.74) saturate(.82);
    transition: transform .9s cubic-bezier(.25, .46, .45, .94), filter .7s
}

.gal-item:hover img {
    transform: scale(1.08);
    filter: brightness(.55) saturate(.7)
}

.gal-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .6s cubic-bezier(.25, .46, .45, .94);
    z-index: 3
}

.gal-item:hover::before {
    transform: scaleX(1)
}

.gal-expand {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--gold-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(250, 246, 240, .55);
    font-size: .75rem;
    z-index: 3;
    opacity: 0;
    transform: scale(.5);
    transition: opacity .32s, transform .38s cubic-bezier(.34, 1.56, .64, 1), background .25s
}

.gal-item:hover .gal-expand {
    opacity: 1;
    transform: scale(1)
}

.gal-expand:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--cream)
}

/* ===== VIRTUAL TOUR SECTION ===== */
.vt-wrap {
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--gold-mid);
  box-shadow: 0 20px 60px var(--dark-veil);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.vt-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 72px var(--dark-heavy);
}

.vt-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.vt-wrap:hover .vt-bg {
  transform: scale(1.04);
}

.vt-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    var(--dark-heavy) 0%,
    var(--dark-veil) 40%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.vt-wrap:hover .vt-overlay {
  opacity: 1;
}

.vt-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* Play button */
.vt-play-btn {
  position: relative;
  width: 84px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.vt-wrap:hover .vt-play-btn {
  transform: scale(1.1);
}

.vt-play-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--gold-mid);
  background: var(--gold-mid);
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}

.vt-play-ring-2 {
  inset: -10px;
  border-color: var(--gold-hi);
  background: transparent;
  animation: vtPulse 2.5s ease-in-out infinite;
}

.vt-wrap:hover .vt-play-ring {
  background: var(--gold-hi);
  border-color: var(--gold-lo);
}

.vt-play-icon {
  position: relative;
  z-index: 2;
  font-size: 28px;
  color: var(--cream);
  margin-left: 5px;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  text-shadow: 0 0 20px var(--cream-dim);
}

.vt-wrap:hover .vt-play-icon {
  color: var(--cream);
  text-shadow: 0 0 30px var(--cream-dim);
}

@keyframes vtPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 0.2; }
}

/* Bottom bar — anchored to bottom of .vt-wrap */
.vt-bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 28px;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.5) 60%, transparent 100%);
  transition: background 0.4s ease, padding 0.3s ease;
}

.vt-wrap:hover .vt-bottom-bar {
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.65) 70%, transparent 100%);
  padding-bottom: 24px;
}

.vt-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 0;
}

/* Address pill with blur */
.vt-bottom-addr {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  font-size: 0.95rem;
  color: var(--cream);
  letter-spacing: 0.02em;
  background: rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  width: fit-content;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.vt-bottom-addr .fa {
  font-size: 20px;
  color: var(--gold-hi);
  flex-shrink: 0;
  transition: color 0.3s ease;
}

.vt-wrap:hover .vt-bottom-addr {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(0, 0, 0, 0.58);
  border-color: rgba(255, 255, 255, 0.13);
}

.vt-wrap:hover .vt-bottom-addr .fa {
  color: var(--gold-hi, #c9a96e);
}

/* Right side: Virtual Tour badge */
.vt-bottom-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  background: rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(var(--gold-mid-rgb, 180, 148, 82), 0.35);
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(var(--gold-mid-rgb, 180, 148, 82), 0.6);
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.vt-bottom-cta .fa {
  font-size: 10px;
  transition: transform 0.3s ease, color 0.3s ease;
  color: rgba(var(--gold-mid-rgb, 180, 148, 82), 0.6);
}

.vt-wrap:hover .vt-bottom-cta {
  border-color: var(--gold-hi, #c9a96e);
  color: var(--gold-hi, #c9a96e);
  background: rgba(0, 0, 0, 0.52);
}

.vt-wrap:hover .vt-bottom-cta .fa {
  color: var(--gold-hi, #c9a96e);
  transform: translateX(0) scale(1.15);
}

/* Divider line above bar */
.vt-bottom-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(180, 148, 82, 0.3), transparent);
  transition: opacity 0.3s ease;
}

.vt-wrap:hover .vt-bottom-bar::before {
  background: linear-gradient(to right, transparent, rgba(180, 148, 82, 0.6), transparent);
}

@media (max-width: 768px) {
  .vt-bottom-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .vt-bottom-cta {
    order: -1;
  }

  .vt-bottom-addr {
    white-space: normal;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .vt-bottom-bar { padding: 14px 18px; gap: 10px; }
  .vt-bottom-addr { font-size: 0.78rem; padding: 7px 12px; white-space: normal; }
  .vt-bottom-cta { padding: 7px 14px; font-size: 0.56rem; letter-spacing: 0.2em; }
  .vt-bottom-bar::before { left: 18px; right: 18px; }
}

@media (max-width: 600px) {
  .vt-wrap { height: 300px; }
  .vt-label-title { font-size: 1.3rem; }
  .vt-play-btn { width: 66px; height: 66px; }
  .vt-play-icon { font-size: 22px; }
}


/* ── LOCATION ── */
#location {
    background: rgba(242, 235, 224, 1)
}

.location-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    border: 1px solid var(--gold-lo);
    border-radius: 16px;
    box-shadow: 0 8px 40px var(--dark-soft);
    overflow: hidden
}

.location-map-side {
    position: relative;
    height: 480px;
    flex-shrink: 0
}

.location-map-side iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    filter: saturate(.8) brightness(1.05);
    display: block
}

.location-info-side {
    background: var(--cream);
    display: flex;
    flex-direction: column;
    height: 480px;
    overflow: hidden;
}

/* ── CONNECTIVITY TABS ── */
.conn-tabs-bar {
    display: flex;
    background: rgba(168, 121, 58, 0.05);
    padding: 6px;
    border-radius: 12px;
    gap: 6px;
    margin: 20px 24px 0;
    flex-shrink: 0;
    box-shadow: inset 0 2px 6px rgba(28, 22, 16, 0.02);
}

.conn-tab-btn {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 8px;
    border: none;
    background: transparent;
    border-radius: 8px;
    font-family: var(--font);
    cursor: pointer;
    position: relative;
    transition: all .35s cubic-bezier(.25, .46, .45, .94);
}

.conn-tab-btn.active {
    background: var(--cream);
    box-shadow: 0 4px 14px rgba(28, 22, 16, 0.06);
    transform: translateY(-2px);
}

.conn-tab-btn:hover:not(.active) {
    background: rgba(250, 246, 240, 0.8);
}

.conn-tab-icon {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    color: var(--ink-mid);
    transition: all .3s;
}

.conn-tab-btn.active .conn-tab-icon {
    color: var(--gold);
}

.conn-tab-label {
    font-size: .62rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ink-mid);
    font-weight: 600;
    transition: color .3s;
}

.conn-tab-btn.active .conn-tab-label {
    color: var(--gold);
}

/* ── CONNECTIVITY PANEL ── */
.conn-panels-wrap {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.conn-panel {
    position: absolute;
    inset: 0;
    padding: 20px 24px;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity .4s cubic-bezier(.4, 0, .2, 1), transform .4s cubic-bezier(.4, 0, .2, 1);
    overflow-y: auto;
}

.conn-panel.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
    position: absolute;
}

.conn-panel-heading {
    font-size: .62rem;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.conn-panel-heading::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gold-lo);
}

.conn-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 12px;
    border-bottom: 1px solid rgba(168, 121, 58, .07);
    border-radius: 8px;
    margin-bottom: 4px;
    transition: all .3s cubic-bezier(.25, .46, .45, .94);
}

.conn-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.conn-row:hover {
    background: rgba(168, 121, 58, 0.05);
    transform: translateX(6px);
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(28, 22, 16, 0.04);
}

.conn-row-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.conn-row-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-mid);
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(.25, .46, .45, .94), background 0.3s;
}

.conn-row:hover .conn-row-dot {
    background: var(--gold);
    transform: scale(1.5);
}

.conn-row-name {
    font-size: .9rem;
    color: var(--dark);
    font-weight: 400;
}

.conn-row-time {
    font-size: .78rem;
    color: var(--gold);
    font-weight: 600;
    background: var(--gold-bg);
    border: 1px solid var(--gold-lo);
    border-radius: 6px;
    padding: 4px 10px;
    letter-spacing: .04em;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.conn-row:hover .conn-row-time {
    background: var(--gold);
    color: var(--cream);
    border-color: var(--gold);
}

/* ── CONTACT BAND ── */
.contact-band {
    background: var(--dark);
    padding: 56px 0
}

.contact-band-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px
}

.contact-band-title {
    font-size: 2.1rem;
    font-weight: 300;
    color: var(--cream);
    line-height: 1.12;
    letter-spacing: -.01em
}

.contact-band-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--gold);
    color: var(--cream);
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-family: var(--font);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .35s;
    text-decoration: none;
    position: relative;
    overflow: hidden
}

.btn-gold::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(190, 150, 80, 1);
    transform: translateX(-101%);
    transition: transform .4s ease
}

.btn-gold:hover::after {
    transform: translateX(0)
}

.btn-gold span,
.btn-gold i {
    position: relative;
    z-index: 1
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px var(--gold-mid)
}

.btn-dark-solid {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--gold);
    color: var(--cream);
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-family: var(--font);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .35s;
    text-decoration: none
}

.btn-dark-solid:hover {
    background: rgba(190, 150, 80, 1);
    color: var(--dark);
    transform: translateY(-2px)
}

.btn-dark-outline {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: transparent;
    color: rgba(250, 246, 240, .7);
    border: 1.5px solid rgba(250, 246, 240, .2);
    padding: 14px 30px;
    border-radius: 8px;
    font-family: var(--font);
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .35s;
    text-decoration: none
}

.btn-dark-outline:hover {
    border-color: var(--gold);
    color: var(--gold)
}

/* ── FOOTER ── */
footer {
    background: var(--dark);
    border-top: 1px solid rgba(168, 121, 58, .12);
    padding: 32px 0
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.footer-disclaimer {
    font-size: .65rem;
    line-height: 1.8;
    color: rgba(250, 246, 240, 0.458);
    font-weight: 300;
}

.footer-bottom {
    width: 100%;
    max-width: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-builder,
.footer-rera {
    font-size: .63rem;
    letter-spacing: .08em;
    color: rgba(250, 246, 240, 0.458);
}

.footer-builder {
    position: relative;
    padding-right: 12px;
    margin-right: 12px;
}

.footer-builder::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background-color: rgba(250, 246, 240, 0.4);
}

.footer-rera {
    font-size: .6rem;
    letter-spacing: .1em;
    color: rgba(250, 246, 240, 0.458);
}

/* ── SIDEBAR ── */
.sidebar-fixed {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column
}

.sidebar-pill {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    padding: 16px 11px;
    font-size: .66rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-family: var(--font);
    background: var(--cream);
    border: 1px solid var(--gold-lo);
    border-right: none;
    border-radius: 8px 0 0 8px;
    color: var(--ink-mid);
    cursor: pointer;
    transition: all .3s;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: -4px 0 16px var(--dark-soft);
    font-weight: 600
}

.sidebar-pill:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--cream)
}

/* ── MOBILE NAV ── */
.mobile-nav-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(28, 22, 16, .98);
    border-top: 1px solid rgba(168, 121, 58, .14);
    padding: 0 0 max(0px, env(safe-area-inset-bottom))
}

.mobile-nav-bar-inner {
    display: flex
}

.mobile-nav-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 4px;
    font-size: .54rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(250, 246, 240, .42);
    border: none;
    background: none;
    cursor: pointer;
    text-decoration: none;
    transition: color .3s;
    font-family: var(--font);
    font-weight: 500
}

.mobile-nav-btn i {
    font-size: 1rem
}

.mobile-nav-btn:hover,
.mobile-nav-btn.highlight {
    color: var(--gold)
}

.mobile-nav-btn.wa-btn {
    background: #25D366;
    color: white
}

/* ── LIGHTBOX ── */
.lb-overlay {
    position: fixed;
    inset: 0;
    background: rgba(28, 22, 16, .97);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s
}

.lb-overlay.open {
    opacity: 1;
    pointer-events: all
}

.lb-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center
}

.lb-img {
    max-width: 88vw;
    max-height: 82vh;
    object-fit: contain;
    border: 1px solid var(--gold-lo);
    transform: scale(.92);
    transition: transform .4s cubic-bezier(.34, 1.56, .64, 1), opacity .25s;
    display: block;
    border-radius: 8px;
}

.lb-overlay.open .lb-img {
    transform: scale(1)
}

.lb-close-btn {
    position: fixed;
    top: 22px;
    right: 22px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--gold-mid);
    background: none;
    color: rgba(250, 246, 240, .6);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: all .3s
}

.lb-close-btn:hover {
    border-color: var(--gold);
    color: var(--gold)
}

.lb-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--gold-mid);
    background: var(--dark-veil);
    color: rgba(250, 246, 240, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: .9rem;
    transition: all .3s;
    z-index: 3010;
}

.lb-arrow:hover {
    border-color: var(--gold);
    color: var(--gold)
}

.lb-prev {
    left: 22px
}

.lb-next {
    right: 22px
}

.lb-counter {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: .62rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--cream-dim)
}

/* ── MODAL ── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: var(--dark-veil);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: all
}

.modal-box {
    background: var(--cream);
    border: 1px solid var(--gold-lo);
    border-radius: 16px;
    box-shadow: 0 28px 72px var(--dark-soft);
    width: 100%;
    max-width: 460px;
    padding: 38px;
    position: relative;
    transform: translateY(20px);
    transition: transform .4s cubic-bezier(.34, 1.56, .64, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.open .modal-box {
    transform: translateY(0)
}

.modal-top-bar {
    width: 32px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 28px
}

.modal-title {
    font-size: 1.85rem;
    font-weight: 300;
    color: var(--dark);
    margin-bottom: 5px;
    letter-spacing: -.01em
}

.modal-subtitle {
    font-size: .76rem;
    color: var(--ink-mid);
    margin-bottom: 32px;
    font-weight: 300
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    border: 1px solid var(--gold-lo);
    border-radius: 50%;
    background: none;
    color: var(--ink-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: .82rem;
    transition: all .3s
}

.modal-close:hover {
    border-color: var(--gold);
    color: var(--gold)
}

/* Modal form input-wrapper spacing */
.modal-box .input-wrapper {
    margin-bottom: 14px;
}

.form-group {
    margin-bottom: 14px
}

.form-input {
    width: 100%;
    background: rgba(242, 235, 224, 1);
    border: 2px solid var(--gold-lo);
    border-radius: 8px;
    color: var(--dark);
    padding: 13px 42px 13px 16px;
    font-family: var(--font);
    font-size: .86rem;
    font-weight: 300;
    outline: none;
    transition: border-color .3s, background .3s, box-shadow .3s;
    display: block;
}

.form-input::placeholder {
    color: var(--ink-mid);
    opacity: .6
}

.form-input:focus {
    border-color: var(--gold);
    background: var(--cream);
    box-shadow: 0 0 0 4px rgba(168, 121, 58, .1);
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 22px
}

.form-consent input[type=checkbox] {
    margin-top: 2px;
    accent-color: var(--gold);
    flex-shrink: 0
}

.form-consent label {
    font-size: .67rem;
    line-height: 1.6;
    color: var(--ink-mid);
    cursor: pointer;
    opacity: .8
}

/* ── MOBILE MENU ── */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(28, 22, 16, .98);
    z-index: 1100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all
}

.mobile-menu a {
    font-size: 2.2rem;
    font-weight: 300;
    color: rgba(250, 246, 240, .5);
    text-decoration: none;
    letter-spacing: .02em;
    transition: color .3s
}

.mobile-menu a:hover {
    color: var(--gold)
}

.mobile-menu-close {
    position: absolute;
    top: 22px;
    right: 20px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--gold-mid);
    background: none;
    color: rgba(250, 246, 240, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

/* ── SCROLL REVEAL ── */
.sr {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s ease, transform .8s ease
}

.sr.visible {
    opacity: 1;
    transform: translateY(0)
}

.sr-delay-1 {
    transition-delay: .1s
}

.sr-delay-2 {
    transition-delay: .2s
}

.sr-delay-3 {
    transition-delay: .35s
}

.sr-delay-4 {
    transition-delay: .5s
}

.sr-left {
    opacity: 0;
    transform: translateX(-28px);
    transition: opacity .8s, transform .8s
}

.sr-left.visible {
    opacity: 1;
    transform: translateX(0)
}

.sr-right {
    opacity: 0;
    transform: translateX(28px);
    transition: opacity .8s, transform .8s
}

.sr-right.visible {
    opacity: 1;
    transform: translateX(0)
}

/* ── SCROLL TO TOP BUTTON ── */
.scroll-top-btn {
    position: fixed;
    bottom: 40px;
    right: 50px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold);
    border: 1.5px solid rgba(250, 246, 240, 0.5);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 500;
    opacity: 0;
    transform: translateY(16px) scale(0.85);
    transition: opacity .45s cubic-bezier(.34,1.56,.64,1), transform .45s cubic-bezier(.34,1.56,.64,1), background .3s, border-color .3s, box-shadow .3s;
    pointer-events: none;
    overflow: hidden;
}

.scroll-top-btn.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.scroll-top-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--dark);
    transform: scale(0);
    transition: transform .4s cubic-bezier(.34,1.56,.64,1);
    z-index: 0;
}

.scroll-top-btn:hover::before {
    transform: scale(1);
}

.scroll-top-btn i {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    transition: transform .35s cubic-bezier(.34,1.56,.64,1), color .3s;
}

.scroll-top-btn:hover {
    border-color: rgba(250, 246, 240, 0.25);
    box-shadow: 0 8px 28px var(--gold-mid);
}

.scroll-top-btn:hover i {
    color: var(--gold);
    transform: translateY(-2px);
}

.scroll-top-btn svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    z-index: 0;
}

.scroll-top-btn svg circle {
    fill: none;
    stroke: rgba(250, 246, 240, 0.55);
    stroke-width: 2;
    stroke-dasharray: 138;
    stroke-dashoffset: 138;
    stroke-linecap: round;
    transition: stroke-dashoffset .1s linear, stroke .3s;
}

.scroll-top-btn:hover svg circle {
    stroke: var(--gold-mid);
}

@media (max-width: 768px) {
    .scroll-top-btn {
        bottom: 70px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
}

/* ── RESPONSIVE ── */
@media (min-width: 1025px) {
    .mobile-overview-img {
        display: none;
    }
}

@media(max-width:1200px) {
    .hero-form-wrap {
        width: 340px;
    }
}

@media(max-width:1024px) {
    #overview .section-title {
        margin-bottom: 35px;
    }

    .mobile-overview-img {
        display: block;
        margin-bottom: 35px;
    }

    .mobile-overview-img .overview-img-frame img {
        height: auto;
        max-height: 400px;
    }

    .overview-grid>.overview-image-wrap:not(.mobile-overview-img) {
        display: none;
    }

    .hero-meta {
        width: 100%;
    }

    .hero-meta-item {
        white-space: normal;
        word-wrap: break-word;
        flex: 1 1 auto;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .amenities-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .overview-grid {
        grid-template-columns: 1fr
    }

    .gallery-inner {
        padding: 0 24px
    }

    .hero-stats-row {
        flex-wrap: wrap;
        width: 100%;
    }

    .fp-content {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .location-grid {
        grid-template-columns: 1fr
    }

    /* Hero form: stack below content on tablet */
    .hero-layout {
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 60px;
    }

    .hero-form-wrap {
        width: 100%;
        max-width: 520px;
        align-self: center;
    }
}

@media(max-width:768px) {
    nav {
        padding: 0 18px
    }

    .nav-links,
    .nav-wa-btn {
        display: none
    }

    .nav-burger {
        display: flex
    }

    .section-inner {
        padding: 0 18px
    }

    .section {
        padding: 50px 0
    }

    .hero {
        min-height: 100svh;
        align-items: flex-start;
    }

    .hero-pre {
        margin-bottom: 5px;
    }

    .hero-layout {
        flex-direction: column;
        align-items: flex-start;
        padding: calc(var(--nav-h) + 20px) 18px 100px;
        gap: 28px;
    }

    .hero-content {
        width: 100%;
    }

    .hero-form-wrap {
        width: 100%;
        max-width: 100%;
    }

    .hero-rule {
        display: none
    }

    .hero-title {
        font-size: clamp(1rem, 10vw, 3.5rem);
        margin-bottom: 20px;
        line-height: 1.2em;
    }

    .hero-meta {
        flex-wrap: wrap;
        width: 100%
    }

    .hero-meta-item {
        padding: 10px 16px;
        flex: 1;
        min-width: 120px
    }

    .hero-meta-sep {
        display: none
    }

    .hero-stat {
        flex: 1;
        padding: 12px 16px
    }

    .hero-stat-num {
        font-size: 1.2rem
    }

    .hero-rera-badge {
        margin-bottom: 20px
    }

    .hero-slide-dots {
        left: 50%;
        bottom: 30px;
        gap: 10px;
        transform: translateX(-50%);
    }

    .hero-dot {
        width: 22px;
    }

    .hero-dot.active {
        width: 38px;
    }

    .hero-ctas {
        width: 100%;
    }

    .fp-content {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .pricing-grid {
        grid-template-columns: 1fr 1fr
    }

    .location-map-side {
        height: 260px
    }

    .location-info-side {
        height: 380px;
    }

    .btn-dark-solid,
    .btn-dark-outline {
        padding: 12px 20px;
        font-size: .68rem
    }

    .footer-inner {
        flex-direction: column;
        gap: 16px;
        padding: 0 18px
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }

    .footer-builder {
        padding-right: 0;
        margin-right: 0;
    }

    .footer-builder::after {
        display: none;
    }

    body {
        padding-bottom: 0;
    }

    footer {
        padding-bottom: 80px;
    }

    .sidebar-fixed {
        display: none
    }

    .mobile-nav-bar {
        display: block
    }

    .amenities-header-row {
        grid-template-columns: 1fr;
        gap: 18px
    }

    .amenities-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .gallery-inner {
        padding: 0 16px
    }

    .lb-prev {
        left: 10px
    }

    .lb-next {
        right: 10px
    }

    .conn-tabs-bar {
        margin: 16px 16px 0;
    }

    .conn-tab-label {
        display: none;
    }

    .conn-tab-btn {
        padding: 10px 4px;
        flex-direction: column;
        gap: 4px;
    }

    .conn-tab-btn.active {
        transform: translateY(0);
    }
}

@media(max-width:640px) {
    .contact-band-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 18px;
        gap: 24px
    }

    .btn-dark-solid,
    .btn-gold {
        width: 100%;
        justify-content: center;
    }

    .hero-meta {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        gap: 1px;
    }

    .hero-meta-item {
        width: 100%;
        min-width: unset;
        flex: unset;
        white-space: normal;
        word-wrap: break-word;
    }

    .hero-stats-row {
        width: 100%
    }

    .modal-title {
        font-size: 1.35rem;
    }

    .master-plan-wrap img {
        height: auto;
        max-height: 400px;
    }

    .modal-box {
        margin: 0 16px;
        padding: 28px 22px
    }

    .fp-tab {
        padding: 6px 10px;
        font-size: 0.75rem;
    }

    .fp-img-wrap img {
        height: auto;
        max-height: 300px;
    }
}

@media(max-width:480px) {
    .pricing-grid {
        grid-template-columns: 1fr
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .modal-box {
        margin: 0 16px;
        padding: 28px 22px
    }

    .gal-grid {
        grid-template-columns: 1fr;
    }

    .hero-meta {
        width: 100%
    }

    .hero-meta-item {
        min-width: 100px;
        flex: 1
    }

    .contact-band-inner {
        padding: 0 16px
    }

    .btn-dark-solid,
    .btn-dark-outline {
        width: 100%;
        justify-content: center
    }

    .contact-band-actions {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        width: 100%;
    }

    .hero-badge {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .hero-badge-builder,
    .hero-badge-prelaunch {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 389px) {
    .fp-tab {
        padding: 6px 8px;
        font-size: 0.75rem;
    }

    .overview-spec-val {
        font-size: 1.35rem;
    }
}
