:root {
    --color-bg: #FFFFFF;
    --color-cream: #F2F0EB;
    --color-text: #0A0A0A;
    --color-text-secondary: #6B6B6B;
    --color-accent: #B0894F;
    --color-dark: #0F0F0F;
    --color-white: #FFFFFF;
    --color-border: #E8E5DE;

    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;

    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.06);
    --border-radius: 16px;
    --pill-radius: 100px;
}

/* Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

.text-center {
    text-align: center;
}

.bg-cream {
    background-color: var(--color-cream);
}

.full-width {
    width: 100%;
}

/* Typography */
.section-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-body {
    color: var(--color-text-secondary);
    font-size: 1rem;
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: var(--pill-radius);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    border: 1px solid transparent;
    text-align: center;
}

.btn:hover {
    transform: scale(1.03);
}

.btn-black-pill {
    background-color: transparent;
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
}

.btn-black-pill:hover {
    background-color: var(--color-accent);
    color: var(--color-white);
}

.btn-black-outline {
    background-color: var(--color-accent);
    color: var(--color-white);
    border: 1px solid var(--color-accent);
}

.btn-black-outline:hover {
    background-color: transparent;
    color: var(--color-accent);
}

.btn-white-fill {
    background-color: var(--color-white);
    color: var(--color-accent);
}

.btn-white-outline {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.text-link {
    font-weight: 500;
    text-transform: lowercase;
    position: relative;
    display: inline-block;
}

.text-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--color-accent);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.text-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Layout Utilities */
.section-padding {
    padding: 80px 5%;
}

@media (min-width: 768px) {
    .section-padding {
        padding: 120px 5%;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo {
    height: 65px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
}

.desktop-nav {
    display: none;
}

@media (min-width: 1024px) {
    .desktop-nav {
        display: flex;
        gap: 2rem;
    }

    .desktop-nav a {
        font-size: 0.9rem;
        transition: color 0.3s ease;
    }

    .desktop-nav a:hover {
        color: var(--color-text-secondary);
    }
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-white);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.4s ease-in-out, visibility 0.4s ease-in-out;
    overflow: hidden;
    visibility: hidden;
}

.mobile-nav-overlay.active {
    transform: translateY(0);
    visibility: visible;
}

.close-menu-btn {
    position: absolute;
    top: 1.5rem;
    right: 5%;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.mobile-nav-links a {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-transform: lowercase;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 5% 5% 5%;
    color: var(--color-white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    /* Darkened for better text contrast */
    z-index: 1;
}

.hero-content {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.hero-tag {
    position: absolute;
    top: 100px;
    left: 0;
    font-size: 0.75rem;
    color: #e0e0e0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-bottom-left {
    max-width: 800px;
}

.hero-title {
    font-size: 4rem;
    color: var(--color-white);
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 6rem;
    }
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stat-card {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--color-cream);
    color: var(--color-text);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    display: none;
}

@media (min-width: 1024px) {
    .hero-stat-card {
        display: block;
    }
}

.hero-stat-card p {
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-stat-card hr {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 0.8rem 0;
}

/* Tickers */
.stats-ticker,
.reviews-ticker {
    width: 100%;
    background-color: var(--color-cream);
    height: 64px;
    display: flex;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.ticker-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

.ticker-content span {
    font-family: var(--font-body);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding-right: 20px;
}

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

    100% {
        transform: translateX(-50%);
    }
}

/* Split Layout (About) */
.split-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .split-layout {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.about-img {
    border-radius: var(--border-radius);
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.feature-bullets li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--color-text);
}

.feature-bullets i {
    font-size: 1.25rem;
    stroke-width: 1.5;
}

/* Features Carousel */
.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.carousel-arrows {
    display: flex;
    gap: 0.5rem;
}

.carousel-arrows button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background: transparent;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
}

.carousel-arrows button:hover {
    background-color: var(--color-white);
}

.carousel-container {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 2rem;
    scrollbar-width: none;
    /* Firefox */
}

.carousel-container::-webkit-scrollbar {
    display: none;
    /* Chrome */
}

.feature-card {
    min-width: 240px;
    height: 260px;
    /* cream section -> white card */
    padding: 1.5rem;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features.bg-cream .feature-card {
    background-color: var(--color-white);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-subtle);
}

.feature-card i {
    font-size: 40px;
    stroke-width: 1;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--color-text-secondary);
    font-size: 0.85rem;
}

/* Rooms Grid */
.rooms-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .rooms-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.room-card {
    background-color: var(--color-cream);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.room-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.room-card-content {
    padding: 2rem;
}

.room-card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.room-card-content p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
}

.room-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.badge {
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
    border: 1px solid var(--color-accent);
    border-radius: var(--pill-radius);
}

/* Gallery */
.gallery-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .gallery-layout {
        grid-template-columns: 2fr 1fr;
    }
}

.gallery-left img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    cursor: zoom-in;
}

.gallery-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gallery-right img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--border-radius);
    cursor: zoom-in;
}

.gallery-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gallery-strip img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
    cursor: zoom-in;
}

/* Location Map */
.map-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    width: 100%;
}

.map-img {
    width: 100%;
    height: auto;
    display: block;
}

.map-pills {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.map-pill {
    position: absolute;
    background: var(--color-white);
    color: var(--color-accent);
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    border: 0.5px solid var(--color-border);
    box-shadow: var(--shadow-subtle);
    transform: translate(-50%, -50%);
    white-space: nowrap;
}

/* Floor Plans */
.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 0.5rem 1.5rem;
    border-radius: var(--pill-radius);
    border: 1px solid var(--color-border);
    background: transparent;
    cursor: pointer;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.plan-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--border-radius);
}

@media (min-width: 992px) {
    .plan-split {
        grid-template-columns: 3fr 2fr;
        padding: 4rem;
    }
}

.plan-img-wrapper img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.spec-list {
    margin-bottom: 2rem;
}

.spec-list li {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 0.5rem;
}

.plan-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Stats Counter */
.flex-counter {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .flex-counter {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-body);
    font-size: 3rem;
    font-weight: 600;
    color: var(--color-text);
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin-top: 0.5rem;
}

/* Contact Form */
.contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-wrapper {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

/* Fix intl-tel-input width */
.iti {
    width: 100%;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    background: var(--color-bg);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

.form-status {
    margin-top: 1rem;
    font-size: 0.9rem;
    text-align: center;
}

.text-success {
    color: #2e7d32;
}

.text-error {
    color: #d32f2f;
}

/* Reviews */
.review-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

@media (min-width: 992px) {
    .review-split {
        grid-template-columns: 1fr 1fr;
    }
}

.review-img-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.review-img-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 1.5rem;
}

.star-rating {
    color: #0A0A0A;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.star-rating span {
    font-size: 1rem;
    margin-left: 0.5rem;
    font-weight: 500;
}

.review-quote {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 2rem;
}

.review-author {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

/* Footer */
.footer {
    position: relative;
    color: var(--color-white);
    padding: 80px 5% 0 5%;
    overflow: hidden;
}

.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.footer-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.8);
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-top {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-logo {
    height: 85px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-brand p,
.footer-contact p {
    color: #e0e0e0;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: var(--color-white);
    font-size: 1.5rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-social a:hover {
    opacity: 1;
}

.footer-mid {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    margin-bottom: 2rem;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-nav a {
    font-size: 0.85rem;
    color: #e0e0e0;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    padding-bottom: 2rem;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: #999;
    margin-bottom: 0.5rem;
}

/* Floating Elements */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: transform 0.3s;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

.mobile-bottom-bar {
    display: none;
}

@media (max-width: 767px) {
    .floating-whatsapp {
        display: none;
    }

    .mobile-bottom-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: var(--color-white);
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .mobile-bottom-bar a,
    .mobile-bottom-bar button {
        flex: 1;
        padding: 1rem 0;
        text-align: center;
        border: none;
        font-family: var(--font-body);
        font-size: 0.85rem;
        font-weight: 500;
        color: var(--color-white);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.3rem;
        transition: opacity 0.3s ease;
    }

    .mobile-bottom-bar a:active,
    .mobile-bottom-bar button:active {
        opacity: 0.8;
    }

    /* Call Button */
    .mobile-bottom-bar a:nth-child(1) {
        background-color: #1976D2;
    }

    /* WhatsApp Button */
    .mobile-bottom-bar a:nth-child(2) {
        background-color: #25D366;
    }

    /* Book Visit Button */
    .mobile-bottom-bar button {
        background-color: var(--color-accent);
    }

    .mobile-bottom-bar i {
        font-size: 1.4rem;
        margin-bottom: -2px;
    }
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--color-white);
    width: 90%;
    max-width: 480px;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.modal-subtext {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    text-align: center;
    margin-bottom: 2rem;
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.95);
    z-index: 4000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Pricing Grid & Card styles */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    background-color: var(--color-white);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 5px solid rgba(0, 0, 0, 0.12);
    /* Darkened from var(--color-border) for visibility */
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-subtle);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.pricing-area {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.pricing-amount {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 2rem;
}

/* Highlight Stat Cards in Highlights Carousel */
.stat-highlight-card {
    background-color: var(--color-accent) !important;
    color: var(--color-white) !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.stat-highlight-card h3 {
    color: var(--color-white) !important;
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 500;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.stat-highlight-card p {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.85rem;
}

.highlight-num {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}

/* Blurred Floorplan styles */
.floorplan-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.floorplan-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: filter 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.floorplan-img.blurred-image {
    filter: blur(16px);
}

.floorplan-unlock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(242, 240, 235, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    z-index: 5;
    padding: 1.5rem;
}

.floorplan-unlock-overlay i {
    font-size: 2.5rem;
    color: var(--color-text);
}

/* Unblurred states */
.floorplan-container.unlocked .floorplan-img.blurred-image {
    filter: blur(0px);
}

.floorplan-container.unlocked .floorplan-unlock-overlay {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* NEW Amenities Section (Celebrate Leisure) */

.amenities-layout {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .amenities-layout {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }
}

.amenities-left {
    flex: 0 0 40%;
    max-width: 500px;
}

.amenities-subtitle {
    font-size: 0.85rem;
    font-family: var(--font-heading);
    color: #B0894F;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: -0.5rem;
}

.amenities-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.amenities-desc {
    color: var(--color-text-secondary);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.amenities-desc em {
    color: var(--color-text);
    font-style: italic;
}

.amenities-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    border-top: 1px solid var(--color-border);
    padding-top: 2rem;
}

.a-stat {
    display: flex;
    flex-direction: column;
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.a-stat strong {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-text);
    font-weight: 600;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.amenities-right {
    flex: 0 0 55%;
    width: 100%;
}

.amenities-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.a-tab {
    background: transparent;
    border: 1px solid #B0894F;
    color: #B0894F;
    padding: 0.6rem 1.5rem;
    border-radius: var(--pill-radius);
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.a-tab.active,
.a-tab:hover {
    background: #B0894F;
    color: var(--color-white);
}

.amenities-grid-container {
    position: relative;
    min-height: 400px;
}

.amenities-grid {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(130px, auto);
    animation: fadeIn 0.4s ease forwards;
}

.amenities-grid.active {
    display: grid;
}

.a-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem 1rem;
    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    transition: background-color 0.3s ease;
}

.a-cell:hover:not(.empty) {
    background-color: var(--color-cream);
}

/* Fix borders for 3x3 grid */
.a-cell:nth-child(3n) {
    border-right: none;
}

.a-cell:nth-last-child(-n+3) {
    border-bottom: none;
}

.a-cell i {
    font-size: 2rem;
    color: #B0894F;
    margin-bottom: 0.8rem;
    stroke-width: 1.5;
}

.a-cell img.custom-svg-icon {
    width: 2rem;
    height: 2rem;
    margin-bottom: 0.8rem;
    display: block;
}

.a-cell span {
    font-size: 0.85rem;
    color: var(--color-text);
    font-weight: 500;
}

.a-cell.empty {
    border: none;
    /* or keep borders depending on exact design, reference site keeps borders blank */
    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.a-cell.empty:nth-child(3n) {
    border-right: none;
}

.a-cell.empty:nth-last-child(-n+3) {
    border-bottom: none;
}

/* ========================================= */
/* LOCATION SECTION (Split Layout)           */
/* ========================================= */
.location-section {
    padding: 6rem 0 0 0;
    /* Map bleeds out */
    overflow: hidden;
    position: relative;
}

.location-container {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    gap: 3rem;
}

@media (min-width: 992px) {
    .location-container {
        flex-direction: row;
        align-items: center;
        padding-right: 0;
        /* Let right side bleed */
    }
}

.location-nav {
    flex: 0 0 40%;
}

.location-categories {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.category-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: transparent;
    border: 1px solid var(--color-accent);
    border-radius: 50px;
    color: var(--color-text);
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    min-width: 250px;
}

.category-btn i {
    font-size: 1.4rem;
}

.category-btn:hover,
.category-btn.active {
    background: var(--color-accent);
    color: #fff;
    box-shadow: 0 4px 15px rgba(200, 169, 110, 0.3);
}

.location-map-visual {
    flex: 1;
    position: relative;
}

@media (max-width: 991px) {
    .location-map-visual {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        overflow: hidden; /* Prevent horizontal scroll */
    }

    .stylized-map {
        width: 115%;
        max-width: 115%;
        transform: translateX(-8%); /* Shift left to fix right-cutoff and left-blank gap */
    }

    .category-btn {
        width: 100%;
    }
}

.stylized-map {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: contrast(1.1) brightness(1.05); /* Removes off-white background */
}

/* Location Modals */
.location-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.location-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.location-modal {
    background: #fff;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.location-modal-overlay.active .location-modal {
    transform: translateY(0);
}

.close-location-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #f5f5f5;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 10;
    transition: background 0.3s;
}

.close-location-modal:hover {
    background: #e0e0e0;
}

.modal-category-title {
    font-size: 1.8rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    text-align: center;
}

.location-swiper {
    padding-bottom: 3rem;
}

.location-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-subtle);
}

.location-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.location-card:hover img {
    transform: scale(1.05);
}

.location-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem 1rem 1rem;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.location-card-title {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.location-card-distance {
    background: var(--color-accent);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
}

.location-next,
.location-prev {
    color: var(--color-accent);
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: var(--shadow-subtle);
}

.location-next:after,
.location-prev:after {
    font-size: 1.2rem;
}


/* Centered Hero Styles */
.hero-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.hero-tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    color: #fff;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    backdrop-filter: blur(4px);
}

.hero-centered .hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .hero-centered .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #f0f0f0;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 800px;
}

.hero-centered .hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-accent-fill {
    background-color: var(--color-accent);
    color: #fff;
    border: 1px solid var(--color-accent);
}

.btn-accent-fill:hover {
    background-color: transparent;
    color: var(--color-accent);
}


/* New Uniform Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--border-radius);
    cursor: zoom-in;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}


/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 0.5rem;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 1.3rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-text);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover,
.faq-question.active {
    color: var(--color-accent);
}

.faq-question i {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: var(--color-accent);
}

.faq-question.active i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--color-text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
}