:root {
    --bg: #fdfdfb;
    --bg-soft: #f5f3ef;
    --bg-card: #ffffff;
    --ink: #2b2622;
    --ink-2: #453d35;
    --muted: #8a8277;
    --line: #e7e2d8;
    --line-strong: #d8d1c2;
    --gold: #b08d57;
    --gold-2: #cda16b;
    --gold-dark: #8a6a3a;
    --white: #ffffff;
    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: "Montserrat", "Helvetica Neue", Arial, sans-serif;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--sans);
    color: var(--ink-2);
    background: var(--bg);
    overflow-x: hidden;
    line-height: 1.7;
    font-weight: 400;
}

::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    background: var(--bg-soft);
}

::-webkit-scrollbar-thumb {
    background: var(--line-strong);
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ---------- Buttons ---------- */
.btn-gold {
    display: inline-block;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 0.74rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--white);
    background: linear-gradient(120deg, var(--gold), var(--gold-2));
    border: 1px solid transparent;
    border-radius: 2px;
    padding: 0.85rem 2rem;
    cursor: pointer;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.btn-gold::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(-110%) skewX(-18deg);
    transition: transform 0.5s ease;
}

.btn-gold:hover::after {
    transform: translateX(110%) skewX(-18deg);
}

.btn-gold:hover {
    box-shadow: 0 14px 30px -12px rgba(176, 141, 87, 0.7);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

.btn-outline {
    display: inline-block;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 0.74rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-dark);
    border: 1px solid var(--gold);
    border-radius: 2px;
    background: transparent;
    padding: 0.8rem 1.9rem;
    cursor: pointer;
    transition: all 0.35s ease;
    text-align: center;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

/* ---------- Top strip ---------- */
.top-strip {
    background: var(--bg-soft);
    color: var(--muted);
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    padding: 0.5rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.top-strip span i {
    color: var(--gold);
    margin-right: 0.4rem;
}

.top-strip .top-strip-rera {
    color: var(--gold-dark);
    letter-spacing: 0.08em;
}

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background: rgba(255, 255, 255, 0.85);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    border-bottom-color: var(--line);
    box-shadow: 0 12px 30px -22px rgba(43, 38, 34, 0.45);
}

.navbar-custom {
    padding: 0.85rem 0;
}

.brand-logo {
    height: 44px;
    width: auto;
    transition: height 0.3s ease;
}

.navbar-custom .navbar-nav .nav-link {
    font-family: var(--sans);
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-2);
    padding: 0.6rem 1rem;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-custom .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0.25rem;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.navbar-custom .navbar-nav .nav-link:hover::after,
.navbar-custom .navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-custom .navbar-toggler {
    border: none;
    color: var(--ink);
    font-size: 1.4rem;
    padding: 0.2rem 0.5rem;
}

.navbar-custom .navbar-toggler:focus {
    box-shadow: none;
}

/* Offcanvas mobile nav */
.mobile-nav .offcanvas-header {
    background: var(--white);
    border-bottom: 1px solid var(--line);
}

.offcanvas-logo {
    height: 38px;
}

.off-close {
    opacity: 0.6;
}

.mobile-nav .offcanvas-body {
    background: var(--white);
}

.mobile-links .mobile-link {
    display: block;
    color: var(--ink-2);
    font-size: 0.84rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
    transition: all 0.3s ease;
}

.mobile-links .mobile-link:hover {
    color: var(--gold-dark);
    padding-left: 0.5rem;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    height: 600px;
    max-height: 600px;
    min-height: 480px;
    overflow: hidden;
    background: var(--bg);
}

.hero .carousel,
.hero .carousel-inner,
.hero .carousel-item {
    height: 100%;
}

.hero .carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}



.hero .carousel-indicators {
    z-index: 8;
}

.hero .carousel-indicators [data-bs-target] {
    width: 34px;
    height: 3px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.25);
}

.hero .carousel-indicators .active {
    background: var(--gold-2);
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
    width: 9%;
    z-index: 8;
}

.hero .carousel-control-prev-icon,
.hero .carousel-control-next-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(29, 24, 22, 0.28);
    background-size: 42% 42%;
}

/* ---------- Sections base ---------- */
section {
    position: relative;
}

.sec-heading {
    margin-bottom: 3rem;
}

.sec-title {
    font-family: var(--serif);
    font-weight: 600;
    font-size: clamp(2.3rem, 4vw, 3.4rem);
    line-height: 1.12;
    color: var(--ink);
    margin: 0.7rem 0 0;
}

.sec-title em,
.modal-title em {
    font-style: italic;
    font-weight: 500;
    color: var(--gold-dark);
}

.sec-desc {
    color: var(--muted);
    font-size: 1.02rem;
    margin-top: 1.4rem;
    max-width: 620px;
}

.sec-desc-lg {
    color: var(--muted);
    font-size: 1.05rem;
    margin-top: 1.6rem;
    max-width: 720px;
}

.sec-tagline {
    font-family: var(--sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    color: var(--gold-dark);
    margin-top: 1rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold-dark);
}

.eyebrow-line {
    display: inline-block;
    width: 42px;
    height: 1px;
    background: var(--gold);
}

/* ---------- Overview ---------- */
.section-overview {
    padding: 6.5rem 0;
    background:
        radial-gradient(circle at 0% 20%, rgba(176, 141, 87, 0.07) 0, transparent 42%),
        var(--white);
    border-bottom: 1px solid var(--line);
}

.overview-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem 2rem;
    margin-top: 2.4rem;
}

.opoint {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    font-family: var(--sans);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ink-2);
    letter-spacing: 0.03em;
}

.opoint i {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    color: var(--gold-dark);
    font-size: 1rem;
    background: var(--bg);
}

.overview-img {
    margin: 0;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px -35px rgba(43, 38, 34, 0.45);
    border: 1px solid var(--line);
}

.overview-img::after {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 8px;
    pointer-events: none;
}

.overview-img img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
}

.overview-img figcaption {
    position: absolute;
    left: 2rem;
    bottom: 2rem;
    right: 2rem;
    z-index: 2;
}

.overview-img figcaption b {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--white);
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.overview-img figcaption small {
    display: block;
    font-family: var(--sans);
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

/* ---------- Configuration ---------- */
.section-config {
    padding: 6.5rem 0;
    background:
        radial-gradient(circle at 100% 10%, rgba(176, 141, 87, 0.06) 0, transparent 40%),
        var(--bg-soft);
}

.config-tabs {
    gap: 0.5rem;
    margin-bottom: 3.2rem;
}

.config-tabs .nav-link {
    font-family: 'Cinzel', 'Times New Roman', Times, serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--muted);
    border: 1px solid var(--line-strong);
    border-radius: 40px;
    padding: 0.55rem 2.2rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.config-tabs .nav-link.active {
    background: var(--ink);
    color: var(--gold-2);
    border-color: var(--ink);
}

.config-tabs .nav-link:hover {
    border-color: var(--gold);
}

.config-card {
    background: var(--white);
    border-radius: 14px;
    padding: 2.5rem 2.4rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    box-shadow: 0 24px 50px -38px rgba(43, 38, 34, 0.35);
}

.config-type {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 2.4rem;
    color: var(--ink);
}

.config-size {
    font-family: var(--sans);
    font-size: 0.9rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin: 0.2rem 0 1.2rem;
}

.config-size i {
    margin-right: 0.4rem;
}

.config-line {
    height: 1px;
    background: linear-gradient(90deg, var(--gold), var(--line));
    margin-bottom: 1.4rem;
}

.config-info {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: grid;
    gap: 0.9rem;
}

.config-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    color: var(--ink-2);
    font-size: 0.95rem;
    font-weight: 500;
}

.config-info li i {
    color: var(--gold);
    margin-top: 0.25rem;
}

.floorplan {
    margin: 0;
    position: relative;
}

.floorplan-btn {
    position: relative;
    display: block;
    width: 100%;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 25px 60px -35px rgba(43, 38, 34, 0.5);
    border: 1px solid var(--line);
}

.floorplan-btn img {
    transition: transform 0.8s ease;
    width: 100%;
}

.floorplan-btn:hover img {
    transform: scale(1.05);
}

.floorplan-hint {
    position: absolute;
    left: 50%;
    bottom: 1.2rem;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.6rem 1.2rem;
    border-radius: 40px;
    white-space: nowrap;
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 24px -10px rgba(0, 0, 0, 0.35);
    transition: all 0.3s ease;
}

.floorplan-btn:hover .floorplan-hint {
    background: var(--gold);
    color: var(--white);
}

/* ---------- Amenities ---------- */
.section-amenities {
    padding: 7rem 0 6rem;
    background: var(--white);
    overflow: hidden;
}

.amenity-nav {
    display: inline-flex;
    gap: 0.6rem;
}

.arrow-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    background: var(--bg);
    color: var(--ink-2);
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.35s ease;
}

.arrow-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.amenity-strip {
    display: flex;
    gap: 1.4rem;
    overflow-x: auto;
    padding: 2.5rem 0 3rem 6vw;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.amenity-strip::-webkit-scrollbar {
    display: none;
}

.amenity-card {
    position: relative;
    flex: 0 0 300px;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    box-shadow: 0 24px 50px -35px rgba(43, 38, 34, 0.4);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.amenity-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 34px 60px -32px rgba(43, 38, 34, 0.5);
}

.amenity-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.9s ease;
}

.amenity-card:hover img {
    transform: scale(1.08);
}

.amenity-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(29, 24, 22, 0.78) 100%);
}

.amenity-name {
    position: absolute;
    left: 1.3rem;
    bottom: 1.1rem;
    color: var(--white);
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    z-index: 2;
}

.amenity-name b {
    color: var(--gold-2);
    display: block;
}

@media (min-width: 1200px) {
    .amenity-name {
        writing-mode: vertical-rl;
        letter-spacing: 0.4em;
        right: 1.2rem;
        bottom: auto;
        top: 1.2rem;
        left: auto;
        font-size: 1.05rem;
    }
}

/* ---------- Full width image band ---------- */
.full-img-band {
    width: 100%;
    height: min(70vh, 620px);
    overflow: hidden;
    line-height: 0;
}

.full-img-band img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ---------- Gallery ---------- */
.section-gallery {
    padding: 7rem 0;
    background:
        radial-gradient(circle at 100% 20%, rgba(176, 141, 87, 0.06) 0, transparent 40%),
        var(--bg-soft);
}

.gallery-tabs {
    gap: 0.6rem;
    margin-top: 2.4rem;
}

.gallery-tabs .nav-link {
    font-family: var(--sans);
    font-weight: 600;
    font-size: 0.76rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
    border: 1px solid var(--line-strong);
    border-radius: 40px;
    padding: 0.6rem 2rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.gallery-tabs .nav-link.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.gallery-grid a {
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    line-height: 0;
    border: 1px solid var(--line);
    box-shadow: 0 16px 40px -30px rgba(43, 38, 34, 0.5);
}

.gallery-grid a::after {
    content: "\f00e";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--white);
    background: rgba(29, 24, 22, 0.45);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.gallery-grid a:hover::after {
    opacity: 1;
}

.gallery-grid img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.gallery-grid a:hover img {
    transform: scale(1.06);
}

/* ---------- Location ---------- */
.section-location {
    padding: 7rem 0;
    background:
        radial-gradient(circle at 90% 90%, rgba(176, 141, 87, 0.06) 0, transparent 40%),
        var(--white);
}

.location-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1.6rem;
}

.location-points li {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
}

.loc-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    background: var(--bg-soft);
    color: var(--gold-dark);
    font-size: 1.05rem;
}

.location-points p {
    color: var(--muted);
    font-size: 0.98rem;
    margin: 0.2rem 0 0;
}

.location-points strong {
    color: var(--ink);
}

.map-frame {
    position: relative;
    display: block;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 30px 60px -38px rgba(43, 38, 34, 0.45);
}

.map-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 70%, rgba(29, 24, 22, 0.6) 100%);
}

.map-frame img {
    width: 100%;
    transition: transform 0.7s ease;
}

.map-frame:hover img {
    transform: scale(1.04);
}

.map-hint {
    position: absolute;
    left: 50%;
    bottom: 1.4rem;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--white);
    font-family: var(--sans);
    font-weight: 600;
    font-size: 0.74rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.65rem 1.4rem;
    border-radius: 40px;
    white-space: nowrap;
    z-index: 2;
    box-shadow: 0 10px 26px -12px rgba(0, 0, 0, 0.4);
}

.map-hint i {
    margin-right: 0.4rem;
}

/* ---------- About ---------- */
.section-about {
    padding: 7rem 0;
    background: var(--bg-soft);
}

.about-img-wrap {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 30px 60px -38px rgba(43, 38, 34, 0.45);
}

.about-img-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    right: -1rem;
    bottom: 2.2rem;
    background: var(--gold);
    color: var(--white);
    border-radius: 8px;
    padding: 1.2rem 1.5rem;
    box-shadow: 0 18px 40px -15px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.about-badge strong {
    font-family: var(--serif);
    font-size: 2.6rem;
    line-height: 1;
}

.about-badge span {
    font-family: var(--sans);
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    line-height: 1.5;
}

.about-sign {
    margin-top: 2rem;
    padding-top: 1.6rem;
    border-top: 1px solid var(--line-strong);
}

.about-sign span {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 600;
    font-style: italic;
    color: var(--gold-dark);
    display: block;
}

.about-sign small {
    font-family: var(--sans);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ---------- Contact ---------- */
.section-contact {
    padding: 6rem 0;
    background: var(--white);
}

.contact-inner {
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 3rem;
    background: var(--bg-soft);
    box-shadow: 0 30px 70px -45px rgba(43, 38, 34, 0.4);
}

.contact-note {
    color: var(--muted);
    margin: 1rem 0 0;
    max-width: 380px;
}

/* ---------- Forms ---------- */
.lead-form {
    position: relative;
    z-index: 1;
}

.form-field {
    margin-bottom: 1.05rem;
}

.f-label {
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-2);
    margin-bottom: 0.35rem;
    display: block;
}

.f-label span {
    color: var(--gold-dark);
}

.lead-form .form-control {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--line-strong);
    border-radius: 0;
    padding: 0.5rem 0;
    font-family: var(--sans);
    font-size: 0.95rem;
    color: var(--ink);
    transition: border-color 0.3s ease;
}

.lead-form .form-control:focus {
    box-shadow: none;
    border-bottom-color: var(--gold);
    background: transparent;
}

.lead-form .form-control::placeholder {
    color: #b6ada0;
    font-size: 0.88rem;
}

.lead-form .invalid-feedback {
    font-size: 0.75rem;
}

.lead-form .was-validated .form-control:invalid {
    border-bottom-color: #c05b3f;
}

.form-checks {
    margin: 1rem 0 1.2rem;
    display: grid;
    gap: 0.5rem;
}

.form-check-label {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.55;
}

.lead-form .form-check-input {
    border-radius: 2px;
    border-color: var(--line-strong);
    margin-top: 0.22rem;
}

.lead-form .form-check-input:checked {
    background-color: var(--gold);
    border-color: var(--gold);
}

.hp-field {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--bg-soft);
    color: var(--muted);
    font-size: 0.85rem;
    border-top: 1px solid var(--line);
}

.footer-top {
    padding: 4.5rem 0 3rem;
    border-bottom: 1px solid var(--line);
}

.footer-logo {
    height: 42px;
    margin-bottom: 1.2rem;
}

.footer-addr {
    color: var(--muted);
    line-height: 1.9;
    max-width: 340px;
}

.footer-addr i {
    color: var(--gold-dark);
    margin-right: 0.5rem;
}

.footer-heading {
    font-family: var(--sans);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 1.3rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.65rem;
}

.footer-links a {
    color: var(--muted);
    font-size: 0.88rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold-dark);
    padding-left: 0.4rem;
}

.footer-cta-txt {
    margin-bottom: 1.2rem;
    max-width: 300px;
}

.footer-disclaimer {
    padding: 2.2rem 0;
    border-bottom: 1px solid var(--line);
}

.footer-disclaimer p {
    font-size: 0.72rem;
    line-height: 1.9;
    color: #9a9185;
    margin: 0;
}

.footer-disclaimer a {
    color: var(--gold-dark);
    text-decoration: underline;
}

.footer-bottom {
    padding: 1.6rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    font-size: 0.78rem;
    color: #9a9185;
}

.footer-bottom .made-by {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom .made-by img {
    height: 16px;
    opacity: 0.75;
}



/* ---------- Floating buttons ---------- */
.float-stack {
    position: fixed;
    left: 1.4rem;
    bottom: 1.4rem;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.float-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    border: none;
    cursor: pointer;
    border-radius: 50px;
    padding: 0.85rem 1.4rem;
    font-family: var(--sans);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: all 0.35s ease;
    box-shadow: 0 16px 40px -18px rgba(43, 38, 34, 0.5);
}

.float-order {
    background: var(--white);
    color: var(--ink-2);
    border: 1px solid var(--line);
}

.float-order i {
    color: var(--gold-dark);
}

.float-primary {
    background: var(--gold);
    color: var(--white);
}

.float-primary i {
    color: var(--white);
}

.float-btn:hover {
    transform: translateY(-3px);
}

.to-top {
    position: fixed;
    right: 1.2rem;
    bottom: 1.2rem;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--gold-dark);
    font-size: 1rem;
    cursor: pointer;
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    box-shadow: 0 12px 30px -14px rgba(43, 38, 34, 0.5);
}

.to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ---------- WhatsApp ---------- */
.wa-fab {
    position: fixed;
    right: 1.2rem;
    bottom: 5.6rem;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    z-index: 1050;
    box-shadow: 0 14px 34px -12px rgba(37, 211, 102, 0.7);
    transition: transform 0.3s ease, background 0.3s ease;
    animation: waPulse 2.2s infinite;
}

.wa-fab i {
    position: relative;
    z-index: 1;
}

@keyframes waPulse {
    0% {
        box-shadow: 0 14px 34px -12px rgba(37, 211, 102, 0.7), 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 14px 34px -12px rgba(37, 211, 102, 0.7), 0 0 0 18px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 14px 34px -12px rgba(37, 211, 102, 0.7), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.wa-fab:hover {
    background: #1ebe5b;
    transform: scale(1.08);
    animation-play-state: paused;
}

.wa-tip {
    position: absolute;
    right: calc(100% + 0.7rem);
    top: 50%;
    transform: translateY(-50%);
    background: var(--ink);
    color: var(--bg);
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.45rem 0.9rem;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 26px -10px rgba(0, 0, 0, 0.5);
}

.wa-fab:hover .wa-tip {
    opacity: 1;
    visibility: visible;
}

/* ---------- Mobile CTA ---------- */
.mobile-cta {
    display: none;
}

@media (max-width: 991.98px) {
    .float-stack {
        display: none;
    }

    .wa-fab {
        right: 1rem;
        bottom: calc(58px + 1rem);
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }

    .wa-tip {
        display: none;
    }

    .mobile-cta {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1050;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        background: var(--white);
        border-top: 1px solid var(--line);
    }

    .mobile-cta-btn {
        border: none;
        background: transparent;
        color: var(--ink-2);
        font-family: var(--sans);
        font-weight: 600;
        font-size: 0.76rem;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        padding: 1.05rem 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.55rem;
        cursor: pointer;
    }

    .mobile-cta-btn i {
        color: var(--gold-dark);
    }

    .mobile-cta-btn.alt {
        background: var(--bg-soft);
        border-right: 1px solid var(--line);
    }

    body {
        padding-bottom: 58px;
    }
}

/* ---------- Popup Modal ---------- */
.popup-modal .modal-dialog {
    max-width: 420px;
}

.popup-modal .modal-content {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    position: relative;
    border: 1px solid var(--line);
    box-shadow: 0 40px 90px -45px rgba(43, 38, 34, 0.5);
}

.modal-pop-head {
    background: var(--bg-soft);
    border-bottom: 1px solid var(--line);
    padding: 0.9rem 1.3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.modal-logo {
    height: 38px;
}

.modal-close {
    background: var(--white);
    border: 1px solid var(--line);
    color: var(--ink-2);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.popup-modal .modal-body {
    padding: 1.5rem 1.7rem 1.7rem;
    position: relative;
}

.popup-modal .modal-title {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 1.55rem;
    color: var(--ink);
    margin: 0.4rem 0 0.2rem;
}

.modal-sub {
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 1.1rem;
}

.modal-note {
    font-size: 0.68rem;
    color: #a49b8d;
    text-align: center;
    margin: 0.8rem 0 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .hero {
        height: 600px;
        max-height: 600px;
        min-height: 0;
    }

    .contact-inner {
        padding: 2rem;
    }

    .about-badge {
        right: 0.8rem;
    }

    .overview-img img {
        height: 440px;
    }
}

@media (max-width: 767.98px) {
    .top-strip {
        gap: 0.4rem;
        padding: 0.45rem 0.8rem;
        text-align: center;
    }

    .top-strip .top-strip-rera {
        display: none;
    }

    .overview-points {
        grid-template-columns: 1fr;
    }

    .gallery-grid img {
        height: 180px;
    }

    .section-overview,
    .section-config,
    .section-gallery {
        padding: 4.5rem 0;
    }

    .section-amenities,
    .section-location,
    .section-about {
        padding: 5rem 0;
    }

    .amenity-card {
        flex: 0 0 240px;
        height: 340px;
    }

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

    .overview-img img {
        height: 380px;
    }

    .contact-inner {
        padding: 1.6rem;
    }

    .popup-modal .modal-body {
        padding: 1.3rem 1.4rem 1.5rem;
    }
}

/* ============================================================
   Monarch Suites additions
   ============================================================ */

/* Paragraph justification */
p { text-align: justify; }

/* 2 / 2.5 / 3 BHK config headings - Cinzel */
.config-type {
    font-family: 'Cinzel', 'Times New Roman', Times, serif;
    font-style: normal;
    font-weight: 600;
    font-size: 2.5rem;
    line-height: 1.15;
    letter-spacing: 0.04em;
    color: var(--gold-dark);
}
.config-type::after {
    content: "";
    display: block;
    width: 42px;
    height: 2px;
    margin-top: 0.55rem;
    background: var(--gold);
}

/* Starting price chip */
.config-price {
    display: inline-block;
    font-family: var(--sans);
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--gold-dark);
    background: rgba(176, 141, 87, 0.12);
    border: 1px solid rgba(176, 141, 87, 0.4);
    padding: 0.4rem 0.95rem;
    border-radius: 40px;
    margin: 0 0 1.2rem;
}

/* Mobile hero: show full banner (contain fit) so text is not cropped */
@media (max-width: 767.98px) {
    .hero {
        height: auto;
        min-height: 0;
        background: var(--bg-soft);
    }

    .hero .carousel,
    .hero .carousel-inner,
    .hero .carousel-item {
        position: relative;
        height: auto;
    }

    .hero .carousel-item img {
        height: auto;
        object-fit: contain;
        object-position: center;
    }

    .hero .carousel-indicators {
        bottom: 6px;
    }
}

/* RERA QR in contact section (compact) */
.contact-rera {
    margin-top: 2.4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
    text-align: center;
}

.rera-qr-small {
    width: 100px;
    height: 100px;
    object-fit: contain;
    padding: 4px;
    background: #fff;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
}

.rera-qr-num {
    font-family: var(--sans);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--gold-dark);
    margin: 0.7rem 0 0.4rem;
    text-align: center;
}

.rera-qr-disclaimer {
    font-family: var(--sans);
    font-size: 0.7rem;
    line-height: 1.7;
    color: var(--muted);
    max-width: 680px;
    margin: 0 auto;
}

.rera-qr-disclaimer a {
    color: var(--gold-dark);
}

@media (max-width: 767.98px) {
    .contact-rera {
        margin-top: 1.8rem;
        padding-top: 1.6rem;
    }

    .rera-qr-small {
        width: 90px;
        height: 90px;
    }
}
