@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* --- TYPOGRAPHY PRESETS --- */
@font-face {
    font-family: 'Teramo';
    src: local('Teramo Poster Bold'), local('Teramo-PosterBold'), local('Teramo Poster'), url('fonts/Teramo-PosterBold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
}

/* --- LUXURY DESIGN SYSTEM VARIABLES --- */
:root {
    --bg-primary: #ffffff;
    /* Pure White Background */
    --bg-secondary: #f7f8fa;
    /* Soft Light Grey contrasting background */
    --bg-card: #ffffff;
    /* Clean White Card Background */
    --accent-gold: #209181;
    /* Deep Teal (primary action/accent) */
    --accent-gold-rgb: 32, 145, 129;
    --accent-bronze: #71AB94;
    /* Sage Green (secondary action/accent) */
    --text-white: #1a1b1f;
    /* Dark Charcoal (primary text) */
    --text-muted: #5e626a;
    /* Slate Grey (secondary/muted text) */
    --input-bg: #ffffff;
    --input-border: rgba(32, 145, 129, 0.3);
    --input-focus: #209181;
    --whatsapp-green: #25d366;
    --shadow-luxury: 0 15px 40px rgba(0, 0, 0, 0.06);
    --shadow-glow: 0 0 25px rgba(32, 145, 129, 0.08);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- BASE STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-white);
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    background: linear-gradient(90deg, #114e44 0%, #09332c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: fit-content;
    margin-left: 0;
    margin-right: 0;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.text-center h1,
.text-center h2,
.text-center h3,
.text-center h4,
.text-center h5,
.text-center h6 {
    margin-left: auto;
    margin-right: auto;
}

h1 {
    font-size: 4rem;
    line-height: 1.25;
}

h2 {
    font-size: 2.8rem;
    line-height: 1.3;
    letter-spacing: 1px;
}

h3 {
    font-size: 2rem;
    line-height: 1.4;
}

h4 {
    font-size: 1.4rem;
    line-height: 1.4;
}

p {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

/* --- CUSTOM SCROLLBAR --- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-bronze);
}

/* --- CONTAINER & UTILITIES --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 40px 0;
}

.bg-primary {
    background-color: var(--bg-primary) !important;
}

.bg-secondary {
    background-color: var(--bg-secondary) !important;
}

.text-center {
    text-align: center;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gold-gradient-text {
    background: linear-gradient(90deg, #114e44 0%, #09332c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.gold-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), transparent);
    margin: 15px auto 25px;
    border: none;
}

.gold-line.left {
    margin: 15px 0 25px 0;
}

/* --- HEADER / NAVIGATION --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.header.scrolled {
    background: var(--bg-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(181, 140, 84, 0.15);
}

.nav-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    transition: var(--transition-smooth);
}

.header.scrolled .nav-container {
    height: 75px;
}

.logo img {
    height: 48px;
    display: block;
    transition: var(--transition-smooth);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 1002;
}

.nav-links {
    position: absolute;
    top: calc(100% - 10px);
    right: 24px;
    height: auto;
    width: 320px;
    max-width: calc(100vw - 48px);
    background: var(--accent-gold);
    /* Deep teal background matching the page theme */
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;
    list-style: none;
    padding: 30px;
    transform: translateY(15px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    z-index: 1001;
}

.nav-links.active {
    transform: translateY(5px);
    opacity: 1;
    pointer-events: all;
}

.nav-links a {
    font-size: 1.35rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.9);
    display: block;
    width: 100%;
    padding: 4px 0;
    transition: var(--transition-smooth);
}

.nav-links a::after {
    display: none;
}

.nav-links a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.btn-nav {
    background: #1a1b1f;
    /* Dark background like Cabin Buy Template button */
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: inline-block;
    text-align: center;
    transition: var(--transition-smooth);
}

.btn-nav:hover {
    background: var(--accent-gold);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(32, 145, 129, 0.3);
}

.btn-brochure-nav {
    background: transparent;
    color: #1a1b1f;
    border: 2px solid #1a1b1f;
    padding: 10px 24px;
}

.btn-brochure-nav:hover {
    background: var(--accent-gold);
    color: #ffffff;
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(32, 145, 129, 0.3);
}

/* --- MENU BUTTON & BURGER --- */
.menu-btn-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    border: none;
    padding: 10px 24px;
    border-radius: 100px;
    cursor: pointer;
    background: rgba(26, 27, 31, 0.85);
    /* Dark charcoal translucent background */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
    z-index: 1002;
}

.menu-btn-wrap:hover {
    background: rgba(26, 27, 31, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.menu-btn-text {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.5px;
    color: #ffffff;
    user-select: none;
}

.burger {
    display: block;
    cursor: pointer;
}

.burger div {
    width: 16px;
    height: 2px;
    background-color: #ffffff;
    margin: 4px 0;
    transition: all 0.3s ease;
}

.burger.toggle .line1 {
    transform: rotate(-45deg) translate(-4px, 4px);
}

.burger.toggle .line2 {
    opacity: 0;
}

.burger.toggle .line3 {
    transform: rotate(45deg) translate(-4px, -4px);
}

@media screen and (min-width: 992px) {
    .nav-links {
        position: static !important;
        width: auto !important;
        max-width: none !important;
        background: transparent !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 32px !important;
        padding: 0 !important;
        transform: none !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        z-index: auto !important;
    }

    .nav-links a {
        font-size: 1rem !important;
        font-weight: 600 !important;
        color: var(--text-white) !important;
        padding: 0 !important;
        transition: var(--transition-smooth) !important;
    }

    .nav-links a:hover {
        color: var(--accent-gold) !important;
        transform: none !important;
    }

    .menu-btn-wrap {
        display: none !important;
    }
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 100px;
    display: flex;
    align-items: center;
    background: url('https://www.hallmarkbuilders.in/images/skyrena/skyrena-banner.png') no-repeat center center/cover;
    overflow: hidden;
}

.hero-mobile-banner {
    display: none;
}

.hero-grid {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

.hero .lead-form-container {
    width: 100%;
    max-width: 480px;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    max-width: 550px;
    color: var(--text-muted);
}



/* --- LEAD CAPTURE FORM --- */
.lead-form-container {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(32, 145, 129, 0.2);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-luxury);
    position: relative;
    z-index: 5;
}

.lead-form-container h3 {
    font-size: 2rem;
    margin-bottom: 5px;
    color: var(--text-white);
}

.lead-form-container p {
    font-size: 0.95rem;
    margin-bottom: 25px;
    color: var(--text-muted);
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 6px;
    padding: 16px 20px;
    color: var(--text-white);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--input-focus);
    box-shadow: 0 0 10px rgba(32, 145, 129, 0.15);
    background: #ffffff;
}

.form-label {
    position: absolute;
    left: 20px;
    top: 16px;
    color: var(--text-muted);
    transition: var(--transition-smooth);
    pointer-events: none;
    font-size: 0.95rem;
}

.form-control:focus~.form-label,
.form-control:not(:placeholder-shown)~.form-label {
    top: -10px;
    left: 15px;
    font-size: 0.75rem;
    padding: 0 8px;
    background: var(--bg-card);
    color: var(--accent-gold);
    border-radius: 3px;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-bronze) 100%);
    border: none;
    color: var(--bg-primary);
    padding: 16px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(162, 123, 76, 0.3);
    transition: var(--transition-smooth);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 168, 128, 0.5);
}

.form-disclaimer {
    font-size: 0.72rem !important;
    line-height: 1.4;
    margin-top: 15px;
    color: rgba(90, 95, 105, 0.85);
}

/* --- OVERVIEW & STATS --- */
.overview-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
    align-items: center;
}

.overview-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    gap: 16px;
    justify-items: stretch;
    align-items: stretch;
}

.overview-stats-grid .stat-card {
    transform: none;
    margin-top: 0;
    width: 100%;
    height: 100%;
    min-height: 135px;
    box-sizing: border-box;
}

.overview-stats-grid .stat-card:hover {
    transform: translateY(-5px);
}

.stat-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(197, 168, 128, 0.3);
    box-shadow: var(--shadow-glow);
}

.stat-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 5px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card p {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- PROGRESS SECTION --- */
.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 24px;
}

.btn-outline-gold {
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.btn-outline-gold:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
}

/* --- PROGRESS CAROUSEL --- */
.progress-carousel-wrapper {
    position: relative;
    width: 100%;
    margin-top: 24px;
    display: flex;
    align-items: center;
}

.progress-carousel-track-container {
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
    position: relative;
    z-index: 1;
}

.progress-carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.progress-carousel-item {
    flex: 0 0 calc((100% - 20px) / 2);
    min-width: 0;
    box-sizing: border-box;
}

.progress-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.progress-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(32, 145, 129, 0.25);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.progress-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--accent-gold);
}

.progress-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.progress-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.progress-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.progress-card:hover .progress-img-wrapper img {
    transform: scale(1.08);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.play-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--bg-primary);
    font-size: 1.5rem;
    box-shadow: 0 0 20px rgba(32, 145, 129, 0.4);
    transition: var(--transition-smooth);
}

.progress-img-wrapper:hover .play-overlay {
    opacity: 1;
}

.progress-img-wrapper:hover .play-icon {
    transform: scale(1.1);
}

.progress-info {
    padding: 16px;
}

.progress-info h4 {
    font-size: 1.3rem;
    margin-bottom: 0;
}

.progress-info p {
    font-size: 0.9rem;
    margin: 0;
}

/* --- HIGHLIGHTS SECTION WITH TABS --- */
.highlights-tab-container {
    width: 100%;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.highlights-tabs-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border-bottom: 2px solid rgba(32, 145, 129, 0.1);
    padding-bottom: 12px;
}

.tab-nav-btn {
    background: transparent;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    transition: var(--transition-smooth);
}

.tab-nav-num {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-bronze);
    font-family: 'Poppins', sans-serif;
}

.tab-nav-text {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-muted);
    font-family: 'Poppins', sans-serif;
}

.tab-nav-btn::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-gold);
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tab-nav-btn.active .tab-nav-text {
    color: var(--accent-gold);
}

.tab-nav-btn.active::after {
    transform: scaleX(1);
    transform-origin: left center;
}

.highlights-tab-content-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: center;
    min-height: auto;
}

.highlights-tab-media-column {
    position: relative;
    width: 100%;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-luxury);
    border: 1px solid rgba(32, 145, 129, 0.12);
}

.highlight-tab-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.6s ease, transform 0.6s ease;
    z-index: 1;
}

.highlight-tab-image.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.highlight-tab-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.highlights-tab-text-column {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}

.highlight-tab-pane {
    grid-area: 1 / 1 / 2 / 2;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1), transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.5s ease;
}

.highlight-tab-pane.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.highlight-tag {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 12px;
}

.highlight-title {
    font-size: 2.2rem;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 16px;
    line-height: 1.3;
}

.highlight-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0;
}

/* Mobile responsive styles */
@media screen and (max-width: 768px) {
    .highlights-tabs-nav {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
        border-bottom: none;
        padding-bottom: 0;
    }

    .tab-nav-btn {
        justify-content: center;
        background: var(--bg-secondary);
        border-radius: 8px;
        padding: 14px;
        border: 1px solid rgba(32, 145, 129, 0.1);
    }

    .tab-nav-btn::after {
        display: none;
    }

    .tab-nav-btn.active {
        background: var(--accent-gold);
    }

    .tab-nav-btn.active .tab-nav-text,
    .tab-nav-btn.active .tab-nav-num {
        color: #ffffff;
    }

    .highlights-tab-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        min-height: auto;
    }

    .highlights-tab-media-column {
        height: 280px;
    }

    .highlight-title {
        font-size: 1.6rem;
    }
}

/* --- VIDEO WALKTHROUGH --- */
.walkthrough-section {
    width: 100%;
    overflow: hidden;
    padding: 40px 0 0 0;
}

.walkthrough-video-wrapper {
    position: relative;
    width: 80%;
    margin: 24px auto 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-luxury);
    border: 1px solid rgba(32, 145, 129, 0.15);
    aspect-ratio: 16/9;
    background: #000000;
}

.walkthrough-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- AMENITIES --- */
.amenities-carousel-wrapper {
    position: relative;
    width: 100%;
    margin-top: 24px;
    display: flex;
    align-items: center;
}

.amenities-carousel-track-container {
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
    position: relative;
    z-index: 1;
}

.amenities-carousel-track {
    display: flex;
    width: 300%;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.amenities-carousel-slide {
    width: 33.333%;
    padding: 0 15px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.amenity-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(32, 145, 129, 0.12);
    border-radius: 12px;
    padding: 16px 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}

.amenity-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    background: var(--bg-card);
    box-shadow: var(--shadow-glow);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}

.amenity-card img {
    width: 48px;
    height: 48px;
    margin-bottom: 8px;
    filter: invert(41%) sepia(82%) saturate(405%) hue-rotate(124deg) brightness(88%) contrast(87%);
    transition: var(--transition-smooth);
}

.amenity-card:hover img {
    transform: scale(1.1);
    filter: invert(61%) sepia(21%) saturate(543%) hue-rotate(107deg) brightness(94%) contrast(88%);
}

.amenity-card p {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-white);
    margin: 0;
}

.carousel-control.amenities-prev {
    left: -65px;
}

.carousel-control.amenities-next {
    right: -65px;
}

.amenities-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.amenities-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(32, 145, 129, 0.25);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.amenities-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--accent-gold);
}

@media screen and (max-width: 1200px) {
    .carousel-control.amenities-prev {
        left: -20px;
    }

    .carousel-control.amenities-next {
        right: -20px;
    }
}

@media screen and (max-width: 992px) {
    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 576px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .carousel-control.amenities-prev {
        left: -10px;
        width: 44px;
        height: 44px;
    }

    .carousel-control.amenities-next {
        right: -10px;
        width: 44px;
        height: 44px;
    }
}



/* --- GALLERY CAROUSEL --- */
.gallery-carousel-wrapper {
    position: relative;
    width: 100%;
    margin-top: 24px;
    display: flex;
    align-items: center;
}

.gallery-carousel-track-container {
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
    /* Space for shadows/glows */
    position: relative;
    z-index: 1;
}

.gallery-carousel-track {
    display: flex;
    gap: 15px;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.gallery-carousel-item {
    flex: 0 0 calc((100% - 30px) / 3);
    /* 3 items per row on desktop */
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 280px;
    border: 1px solid rgba(197, 168, 128, 0.15);
    background: var(--bg-card);
    box-shadow: var(--shadow-luxury);
    cursor: pointer;
    transition: box-shadow 0.6s ease;
}

.gallery-carousel-item:hover {
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.6s ease;
}

.gallery-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-carousel-item:hover img {
    transform: scale(1.06);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 9, 11, 0.75);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    transition: var(--transition-smooth);
    color: var(--accent-gold);
}

.gallery-item-overlay i {
    font-size: 2rem;
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

.gallery-item-overlay span {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

.gallery-carousel-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-carousel-item:hover .gallery-item-overlay i,
.gallery-carousel-item:hover .gallery-item-overlay span {
    transform: translateY(0);
}

/* Controls */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(15, 17, 21, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(197, 168, 128, 0.3);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 25;
    pointer-events: auto;
    transition: var(--transition-smooth);
}

.carousel-control:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
    box-shadow: var(--shadow-glow);
    border-color: var(--accent-gold);
}

.carousel-control.prev {
    left: -27px;
}

.carousel-control.next {
    right: -27px;
}

.carousel-control:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

/* Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(32, 145, 129, 0.25);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--accent-gold);
}

/* --- LIGHTBOX OVERLAY --- */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 9, 11, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 3000;
    /* Higher than other sticky elements and headers */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    position: relative;
    max-width: 85vw;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-overlay.active .lightbox-content {
    transform: scale(1);
}

#lightboxImage {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 8px;
    border: 1px solid rgba(197, 168, 128, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.lightbox-caption {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    color: #ffffff;
    font-size: 0.95rem;
    font-family: 'Manrope', sans-serif;
}

#lightboxCaptionText {
    font-weight: 600;
    color: #ffffff;
}

#lightboxCounter {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Lightbox Controls */
.lightbox-close-btn {
    position: absolute;
    top: 30px;
    right: 40px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 3010;
}

.lightbox-close-btn:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
    border-color: var(--accent-gold);
    transform: scale(1.1);
}

.lightbox-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--transition-smooth);
    z-index: 3010;
}

.lightbox-control:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-glow);
}

.lightbox-control.prev {
    left: 40px;
}

.lightbox-control.next {
    right: 40px;
}

@media screen and (max-width: 992px) {
    .gallery-carousel-item {
        flex: 0 0 calc((100% - 20px) / 2);
        /* 2 items per row */
        height: 240px;
    }

    .carousel-control.prev {
        left: -15px;
    }

    .carousel-control.next {
        right: -15px;
    }
}

@media screen and (max-width: 768px) {
    .lightbox-control {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .lightbox-control.prev {
        left: 15px;
    }

    .lightbox-control.next {
        right: 15px;
    }

    .lightbox-close-btn {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .lightbox-caption {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 576px) {
    .gallery-carousel-item {
        flex: 0 0 100%;
        /* 1 item per row */
        height: 220px;
    }

    .carousel-control.prev {
        left: 5px;
    }

    .carousel-control.next {
        right: 5px;
    }

    .carousel-control {
        width: 42px;
        height: 42px;
    }
}

.testimonial-carousel-wrapper {
    position: relative;
    width: 100%;
    margin-top: 24px;
    display: flex;
    align-items: center;
}

.testimonial-carousel-track-container {
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
    position: relative;
    z-index: 1;
}

.testimonial-carousel-track {
    display: flex;
    gap: 16px;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.testimonial-carousel-item {
    flex: 0 0 calc((100% - 32px) / 3);
    min-width: 0;
    box-sizing: border-box;
}

.testimonial-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 24px 20px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: border-color 0.4s ease;
}

.testimonial-card:hover {
    border-color: rgba(32, 145, 129, 0.25);
    transform: translateY(-5px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.testimonial-card::before {
    content: '“';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 6rem;
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    color: rgba(32, 145, 129, 0.12);
    line-height: 1;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-gold);
}

.testimonial-author-info h4 {
    font-size: 1.1rem;
    margin: 0;
}

.testimonial-author-info span {
    font-size: 0.8rem;
    color: var(--accent-gold);
}

.rating-stars {
    color: #f1c40f;
    font-size: 0.8rem;
    margin-top: 4px;
}

.testimonial-card p {
    font-size: 0.92rem;
    font-style: italic;
    line-height: 1.7;
    margin: 0;
    flex-grow: 1;
}

.testimonial-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(32, 145, 129, 0.25);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.testimonial-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--accent-gold);
}

/* --- LOCATION & ACCESSIBILITY --- */
.location-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    align-items: center;
    margin-top: 24px;
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(32, 145, 129, 0.2);
    box-shadow: var(--shadow-luxury);
}

.map-wrapper img {
    width: 100%;
    display: block;
}

.access-table {
    width: 100%;
    border-collapse: collapse;
}

.access-table tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.access-table tr:last-child {
    border-bottom: none;
}

.access-table td {
    padding: 16px 8px;
}

.access-table td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

.access-table td:last-child {
    text-align: right;
    color: var(--accent-gold);
    font-weight: 700;
}

/* --- FINANCIAL PARTNERS SECTION --- */
.financial-partners-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 32px;
    align-items: start;
    width: 100%;
}

.financial-funding-column {
    display: flex;
    flex-direction: column;
}

.financial-banks-column {
    display: flex;
    flex-direction: column;
}

.financial-banks-column .banks-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 0;
}

.financial-funding-column .funding-board {
    margin: 0;
    width: 100%;
}

.financial-subheading {
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 8px;
}

.financial-subtext-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.5;
}

@media screen and (max-width: 992px) {
    .financial-partners-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .financial-funding-column .funding-board {
        margin: 0 auto;
    }
}

/* --- PROJECT FUNDING SECTION --- */
.funding-board {
    max-width: 550px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(142, 111, 72, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.funding-board:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(32, 145, 129, 0.15);
    border-color: var(--accent-gold);
}

.funding-header {
    background-color: #1d5f9f;
    /* Tata blue */
    color: #ffffff;
    padding: 24px 30px;
    text-align: center;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: 1px;
    line-height: 1.4;
}

.funding-body {
    background-color: #cbd92a;
    /* Tata Capital lime green */
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.funding-body img {
    max-width: 260px;
    height: auto;
    display: block;
}

.funding-subtext {
    color: #1d5f9f;
    /* Match the Tata blue text */
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: center;
}

/* --- AFFILIATED BANKS --- */
.banks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.bank-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    box-shadow: var(--shadow-luxury);
    border: 1px solid rgba(32, 145, 129, 0.15);
    transition: border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}

.bank-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(32, 145, 129, 0.25);
    border-color: var(--accent-gold);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}

.bank-card img {
    max-width: 90%;
    max-height: 48px;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.bank-card:hover img {
    transform: scale(1.05);
}

/* Responsive grid adjustments */
@media screen and (max-width: 992px) {
    .banks-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    .banks-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .bank-card {
        height: 90px;
        padding: 15px;
    }

    .bank-card img {
        max-height: 40px;
    }
}

@media screen and (max-width: 480px) {
    .funding-header {
        font-size: 1.05rem;
        padding: 18px 20px;
    }

    .funding-body {
        padding: 35px 20px;
    }

    .funding-subtext {
        font-size: 1.15rem;
    }

    .banks-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .bank-card {
        height: 80px;
        padding: 10px;
    }

    .bank-card img {
        max-height: 35px;
    }
}

/* --- OTHER PROJECTS --- */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.project-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.project-img-wrapper {
    height: 300px;
    overflow: hidden;
}

.project-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.project-card:hover .project-img-wrapper img {
    transform: scale(1.06);
}

.project-info {
    padding: 20px;
}

.project-info h4 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.project-info p {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* --- FOOTER --- */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(32, 145, 129, 0.2);
    padding: 50px 0 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-col h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-gold);
}

.footer-logo {
    height: 52px;
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-links-list {
    list-style: none;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-links-list a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-contact-item i {
    color: var(--accent-gold);
    margin-top: 4px;
}

.footer-social-icons {
    display: flex;
    gap: 16px;
    margin-top: 15px;
}

.footer-social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-social-icons a:hover {
    background: var(--accent-gold);
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-bottom p {
    font-size: 0.8rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-bottom-links a:hover {
    color: var(--accent-gold);
}

/* --- STICKY / FLOATING GLOBAL CTA ELEMENTS --- */
.sticky-left-tab {
    position: fixed;
    left: 0;
    top: 50%;
    transform: rotate(-90deg) translateX(-50%);
    transform-origin: left top;
    z-index: 999;
}

.btn-sticky-left {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-bronze) 100%);
    color: var(--bg-primary);
    border: none;
    padding: 12px 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.8rem;
    border-radius: 0 0 8px 8px;
    /* Curved on bottom, flat on top */
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
}

.btn-sticky-left:hover {
    padding-bottom: 16px;
    /* Expand to the right */
}

.sticky-right-stack {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.sticky-icon-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 1.4rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    position: relative;
    transition: var(--transition-smooth);
}

.sticky-icon-btn.whatsapp {
    background: var(--whatsapp-green);
}

.sticky-icon-btn.call {
    background: var(--bg-card);
    border: 1px solid rgba(32, 145, 129, 0.3);
    color: var(--accent-gold);
}

.sticky-icon-btn.enquire {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-bronze) 100%);
    color: #ffffff;
}

.sticky-icon-btn:hover {
    transform: scale(1.1) translateX(-5px);
}

.sticky-icon-btn .tooltip {
    position: absolute;
    right: 70px;
    background: var(--bg-secondary);
    color: var(--text-white);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.sticky-icon-btn:hover .tooltip {
    opacity: 1;
}

/* --- LIGHTBOX & MODALS --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 9, 11, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    width: 100%;
    max-width: 500px;
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

.modal-overlay.active .modal-box {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-close-btn:hover {
    color: var(--accent-gold);
    transform: rotate(90deg);
}

.video-modal .modal-close-btn {
    color: #ffffff;
}

.video-modal .modal-close-btn:hover {
    color: var(--accent-gold);
}

/* Video Iframe Box Inside Modal */
.modal-overlay.video-modal .modal-box {
    max-width: 900px;
    aspect-ratio: 16/9;
}

.iframe-container {
    width: 100%;
    height: 100%;
    background: #000;
    border: 1px solid rgba(197, 168, 128, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* --- ANIMATION HELPERS --- */
.reveal-text {
    overflow: hidden;
    position: relative;
}

.gsap-reveal {
    opacity: 1;
    transform: none;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media screen and (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .amenities-grid {
        grid-template-columns: repeat(4, 1fr);
    }



    .testimonial-carousel-item {
        flex: 0 0 calc((100% - 24px) / 2);
    }
}

@media screen and (max-width: 768px) {
    .section-padding {
        padding: 40px 0;
    }

    .walkthrough-section {
        padding: 40px 0 0 0;
    }

    .nav-links {
        top: calc(100% - 10px);
        right: 16px;
        left: 16px;
        width: auto;
        padding: 24px;
        border-radius: 20px;
    }


    .hero {
        background: #ffffff !important;
        min-height: auto;
        padding-top: 110px;
        padding-bottom: 20px;
    }

    .hero-mobile-banner {
        display: block;
        width: 100%;
        margin-bottom: 20px;
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid rgba(32, 145, 129, 0.1);
        box-shadow: var(--shadow-luxury);
    }

    .hero-mobile-banner img {
        width: 100%;
        height: auto;
        display: block;
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 10px;
    }

    .hero .lead-form-container {
        max-width: 100%;
        background: #ffffff;
        border: 1px solid rgba(32, 145, 129, 0.1);
        box-shadow: none;
        padding: 24px;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }



    .overview-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .progress-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .progress-carousel-item {
        flex: 0 0 100%;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .highlight-card {
        height: 420px;
    }

    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .clubhouse-layout {
        grid-template-columns: 1fr;
    }

    .specs-layout {
        grid-template-columns: 1fr;
    }



    .testimonial-carousel-item {
        flex: 0 0 100%;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .sticky-left-tab {
        display: none !important;
    }

    .footer {
        padding-bottom: 100px !important;
    }

    .sticky-right-stack {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        transform: none;
        width: 100%;
        height: 70px;
        background: var(--bg-card);
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
        border-top: 1px solid rgba(32, 145, 129, 0.15);
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 10px 16px;
        gap: 12px;
        z-index: 1005;
    }

    .sticky-right-stack .sticky-icon-btn {
        flex: 1;
        width: auto;
        height: 48px;
        border-radius: 8px;
        border: none;
        font-size: 0.95rem;
        display: flex;
        flex-direction: row;
        gap: 8px;
        justify-content: center;
        align-items: center;
        box-shadow: none;
    }

    .sticky-right-stack .sticky-icon-btn.call {
        border: 1px solid rgba(32, 145, 129, 0.3);
    }

    .sticky-right-stack .sticky-icon-btn .tooltip {
        position: static;
        opacity: 1;
        pointer-events: auto;
        background: transparent;
        color: inherit;
        padding: 0;
        font-size: 0.85rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        box-shadow: none;
        border: none;
        text-transform: none;
    }

    .sticky-right-stack .sticky-icon-btn:hover {
        transform: none;
    }
}

@media screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }



    .lead-form-container {
        padding: 24px;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }



    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- ENTRY DISCLAIMER OVERLAY --- */
.disclaimer-overlay-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #08090b;
    /* Dark backdrop */
    z-index: 9999;
    /* Higher than everything else */
    display: none;
    justify-content: center;
    align-items: center;
    padding: 24px;
}

.disclaimer-overlay-wrapper.active {
    display: flex;
}

.disclaimer-overlay-box {
    background: rgba(26, 27, 31, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(197, 168, 128, 0.3);
    max-width: 600px;
    width: 100%;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), var(--shadow-glow);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: disclaimerFadeInScale 0.5s ease-out;
}

@keyframes disclaimerFadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.disclaimer-gold-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.disclaimer-overlay-box h2 {
    font-size: 2.2rem;
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.disclaimer-scroll-content {
    max-height: 250px;
    overflow-y: auto;
    text-align: left;
    padding-right: 15px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.disclaimer-scroll-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.disclaimer-scroll-content ul {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-muted);
    margin-left: 20px;
    margin-bottom: 15px;
}

.disclaimer-scroll-content li {
    margin-bottom: 8px;
}

/* Styled Scrollbar for disclaimer content */
.disclaimer-scroll-content::-webkit-scrollbar {
    width: 6px;
}

.disclaimer-scroll-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

.disclaimer-scroll-content::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 10px;
}

.disclaimer-action-buttons {
    display: flex;
    gap: 16px;
    width: 100%;
}

.btn-disclaimer-accept {
    flex: 1;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-bronze) 100%);
    border: none;
    color: var(--bg-primary);
    padding: 14px 24px;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(162, 123, 76, 0.3);
    transition: var(--transition-smooth);
}

.btn-disclaimer-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 168, 128, 0.5);
}

.btn-disclaimer-decline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-muted);
    padding: 14px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-disclaimer-decline:hover {
    background: rgba(255, 0, 0, 0.1);
    color: #ff4d4d;
    border-color: #ff4d4d;
}

/* --- FORM CHECKBOX STYLING --- */
.form-checkbox-group {
    margin-top: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    text-align: left;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.75rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.7) !important;
}

/* In the hero container which has white background or dark background */
.lead-form-container .checkbox-label {
    color: #5a5f69 !important;
    /* Dark text for light background forms (like Hero and popups) */
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
    accent-color: var(--accent-gold);
    width: 16px;
    height: 16px;
}

/* --- COOLDOWN DISABLED STATES --- */
.cooldown-disabled {
    cursor: not-allowed !important;
    opacity: 0.55 !important;
    pointer-events: none !important;
}

/* Adjustments on small screens */
@media screen and (max-width: 576px) {
    .disclaimer-overlay-box {
        padding: 24px 16px;
    }

    .disclaimer-overlay-box h2 {
        font-size: 1.8rem;
    }

    .disclaimer-action-buttons {
        flex-direction: column;
        gap: 12px;
    }
}

/* --- MOBILE ONLY VISIBILITY & RESPONSIVE HIDE --- */
@media screen and (min-width: 992px) {
    .mobile-only {
        display: none !important;
    }
}

@media screen and (max-width: 768px) {
    .btn-brochure-nav,
    .header-actions .trigger-enquiry {
        display: none !important;
    }
}