@font-face {
    font-family: head;
    src: url(/assets/fonts/gilroy/Gilroy-SemiBold.ttf);
}


@font-face {
    font-family: para;
    src: url(/assets/fonts/urbanist/Urbanist-VariableFont_wght.ttf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

::-webkit-scrollbar {
    width: 0px;
}

::-webkit-scrollbar-track {
    background: #050505;
}

::-webkit-scrollbar-thumb {
    background: #D2AE6D;
}

html,
body {
    background-color: #050505;
    color: #ffffff;
    font-family: 'para', sans-serif;
    overflow-x: hidden;
}

/* Typography Defaults */
h1,
h2,
h3,
h4,
.head-font {
    font-family: 'head', sans-serif;
    font-weight: 600;
}

p,
.para-font {
    font-family: 'para', sans-serif;
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* GSAP Smooth Wrapper Fixes */
#smooth-wrapper {
    overflow: hidden;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

#smooth-content {
    overflow: visible;
    width: 100%;
}


/* --- Page Transition Wrapper --- */
.main-page-trans-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #050505;
    /* Deep black/charcoal */
    z-index: 3000;
    /* Must be higher than Navbar (1000) and Menu (2000) */

    display: flex;
    justify-content: center;
    align-items: center;

    /* The Animation Logic */
    transform: translateY(0);
    /* Default: Covers screen */
    transition: transform 1.2s cubic-bezier(0.87, 0, 0.13, 1);
    /* "Premium" ease */
    will-change: transform;
}

/* State: When page is fully loaded, slide this UP */
.main-page-trans-overlay-hidden {
    transform: translateY(-100%);
}

/* State: When leaving, we reset to bottom and slide UP to cover */
.main-page-trans-overlay-entering {
    transform: translateY(0);
}

/* --- Optional: Logo Fade Effect inside transition --- */
.main-page-trans-logo {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Hide logo faster than the curtain slides so it doesn't look weird */
.main-page-trans-overlay-hidden .main-page-trans-logo {
    opacity: 0;
    transform: scale(0.9);
}

@media (hover: hover) and (pointer: fine) {

    .cursor-dot,
    .cursor-outline {
        position: fixed;
        top: 0;
        left: 0;
        transform: translate(-50%, -50%);
        border-radius: 50%;
        z-index: 9999;
        pointer-events: none;
        /* Crucial: clicks must pass through the cursor */
    }

    .cursor-dot {
        width: 8px;
        height: 8px;
        background-color: #D2AE6D;
    }

    .cursor-outline {
        width: 40px;
        height: 40px;
        border: 1px solid rgba(197, 160, 33, 0.5);
        transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
    }

    /* State when hovering over a link or button */
    .cursor-active .cursor-outline {
        width: 70px;
        height: 70px;
        background-color: rgba(197, 160, 33, 0.1);
        border-color: #D2AE6D;
    }
}

/* Hide default cursor only on desktop */
@media (hover: hover) {

    body,
    a,
    button {
        cursor: none;
    }
}

/* --- 1. Main Navbar (Transparent & Fixed) --- */
.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    box-sizing: border-box;
    z-index: 1000;
    font-family: 'para', sans-serif;
    /* Your font */
    background: transparent;
    /* Allows Hero to show through */
    transition: all 0.4s ease;
}

/* Scrolled State (Optional: Adds dark bg on scroll) */
.nav-active {
    height: 80px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

/* --- 2. Logo Styling --- */
.logo img {
    height: 85px;
    width: auto;
    transition: height 0.4s ease;
}

.nav-active .logo img {
    height: 60px;
}

/* --- 3. Hamburger Toggle Button --- */
.menu-toggle {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    color: #fff;
    z-index: 1001;
    /* Above navbar */
}

.menu-text {
    font-size: 0.9rem;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s;
}

.hamburger {
    width: 30px;
    height: 14px;
    /* distinct separation */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.hamburger span {
    display: block;
    height: 2px;
    background-color: #fff;
    transition: width 0.3s, background-color 0.3s;
}

.hamburger span:nth-child(1) {
    width: 100%;
}

.hamburger span:nth-child(2) {
    width: 70%;
}

/* Hover Effect for Toggle */
.menu-toggle:hover .menu-text {
    color: #ffd23e;
}

.menu-toggle:hover .hamburger span {
    width: 100%;
    background-color: #ffd23e;
}

/* --- 4. The Overlay (Desktop Sidebar Logic) --- */
.menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 450px;
    /* Sidebar width */
    background: #111;
    z-index: 2000;
    padding: 80px 50px;
    box-sizing: border-box;

    /* Animation Logic: Slide from Right */
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

@media(max-width: 1550px) {
    .menu-overlay {
        padding: 20px 50px;
    }
}

/* Active State (Open) */
.menu-overlay.open {
    transform: translateX(0);
}

/* Close Button Styling */
.close-btn {
    position: absolute;
    top: 40px;
    right: 5%;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;
}

.close-btn:hover {
    color: #ffd23e;
    transform: rotate(90deg);
}

/* --- 5. Navigation Links & Animations --- */
.nav-links {
    list-style: none;
    padding: 0;
    margin: 40px 0;
}

.nav-links li {
    margin-bottom: 25px;
    overflow: hidden;
    /* For text reveal effect */
}

.nav-link {
    display: block;
    font-family: 'head', sans-serif;
    /* Your heading font */
    font-size: 2rem;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;

    /* Initial State for Animation */
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease, color 0.3s;
}

/* Staggered Animation Delay for links */
.menu-overlay.open .nav-link {
    transform: translateY(0);
    opacity: 1;
}

/* Delays - creates the waterfall effect */
.menu-overlay.open li:nth-child(1) .nav-link {
    transition-delay: 0.1s;
}

.menu-overlay.open li:nth-child(2) .nav-link {
    transition-delay: 0.2s;
}

.menu-overlay.open li:nth-child(3) .nav-link {
    transition-delay: 0.3s;
}

.menu-overlay.open li:nth-child(4) .nav-link {
    transition-delay: 0.4s;
}

.menu-overlay.open li:nth-child(5) .nav-link {
    transition-delay: 0.5s;
}

.menu-overlay.open li:nth-child(6) .nav-link {
    transition-delay: 0.6s;
}

.menu-overlay.open li:nth-child(7) .nav-link {
    transition-delay: 0.7s;
}

.menu-overlay.open li:nth-child(8) .nav-link {
    transition-delay: 0.8s;
}

.nav-link:hover {
    color: #ffd23e;
    transform: translateX(10px) !important;
    /* Slight nudge right on hover */
}

/* Footer in Menu */
.menu-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    color: #888;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.5s 0.9s;
    /* Delayed fade in */
}

.menu-overlay.open .menu-footer {
    opacity: 1;
}

/* --- 6. Responsive (Mobile - Slide from Top) --- */
@media (max-width: 992px) {
    .nav-container {
        height: 90px;
    }

    .nav-active {
        height: 75px;
    }

    /* Hide the text "MENU" on mobile to save space */
    .menu-text {
        display: none;
    }

    /* Change Menu Overlay to Full Screen from Top */
    .menu-overlay {
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        right: auto;
        padding-top: 120px;
        /* Space for close button */

        /* Reset Sidebar Transform */
        transform: translateY(-100%);
        /* Start above screen */
    }

    /* Mobile Active State */
    .menu-overlay.open {
        transform: translateY(0);
    }

    .nav-link {
        font-size: 2.2rem;
    }

    /* Larger touch targets */
}




.main-whatsapp-fixed-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    /* Fixed to bottom left as requested */
    z-index: 9999;
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.main-whatsapp-btn-container {
    background-color: #C5A021;
    /* Your Gold theme color */
    color: #000;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 10px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.main-whatsapp-btn-container i {
    font-size: 30px;
}

.main-whatsapp-btn-text {
    font-family: 'head', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Hover Effect */
.main-whatsapp-fixed-btn:hover {
    transform: scale(1.08) translateY(-5px);
}

/* Mobile Tweak - Shrink text on small screens to keep it minimal */
@media (max-width: 768px) {
    .main-whatsapp-fixed-btn {
        bottom: 20px;
        right: 20px;
    }

    .main-whatsapp-btn-text {
        display: none;
        /* Shows only the icon on mobile to stay clean */
    }

    .main-whatsapp-btn-container {
        padding: 15px;
        border-radius: 50%;
        width: fit-content;
    }
}





.swiper {
    overflow: visible !important;
}



.hero {
    position: relative;
    width: 100%;
    height: 106vh;
    /* Extra height for scroll parallax */
    overflow: hidden;
    background-color: #050505;
    display: flex;
    align-items: center;
    background-image: url(/assets/images/banner/main-shreevandana-hero-2.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
}

@media(max-width: 1370px){
    .hero{
        height: 106vh;
    }
}

/* .hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #0000007e;
} */

.hero-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 150px 80px 0px 80px;
    position: relative;
}

/* The Image Frame */
.hero-visual {
    position: absolute;
    top: 50%;
    right: 60px;
    transform: translateY(-50%);
    width: 55%;
    height: 100vh;
    z-index: 1;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    clip-path: inset(0 0 0 0);
    /* Used for reveal */
}

.hero-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.1);
    scale: 1.2;
    /* Pre-scaled for GSAP zoom-out */
}

/* Text Content Positioning */
.hero-content {
    position: relative;
    z-index: 2;
    pointer-events: none;
    display: flex;
    justify-content: space-between;
    /* Allows clicks to pass to the image if needed */
}

.hero-content a {
    pointer-events: auto;
    /* Re-enable for button */
}

.hero-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.h-badge {
    font-family: 'para', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 5px;
    color: #D2AE6D;
    display: block;
    margin-bottom: 20px;
}

.h-title {
    font-family: 'head', sans-serif;
    font-size: 80px;
    line-height: 0.85;
    text-transform: uppercase;
}

.h-sub-title {
    font-size: head;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 25px;
}

.t-line {
    display: block;
    overflow: hidden;
}

.gold-text {
    color: #D2AE6D;
    /* margin-left: 0.5em; */
}

/* Bottom Content Row */
.hero-footer {
    /* margin-top: 60px; */
    display: flex;
    flex-direction: column;
    /* align-items: flex-end; */
    gap: 80px;
}

.h-desc {
    font-family: 'para', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 600px;
}

.h-cta-box {
    display: flex;
    gap: 20px;
}

/* Button Styling */
.h-explore-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    width: fit-content;
    background-color: #ffffff;
    padding: 5px 10px 5px 15px;
    border-radius: 50px;
    transition: all 0.4s ease;
    opacity: 0;
    border: 2px solid #ffffff;
}

.btn-circle {
    width: 45px;
    height: 45px;
    border: 1px solid #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 24px;
    transition: all 0.4s ease;
}

.btn-label {
    font-family: 'head', sans-serif;
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #000;
    transition: all 0.4s ease;
}

.h-explore-btn:hover {
    background-color: #000;
    border: 2px solid #C5A021;
}

.h-explore-btn:hover .btn-label {
    color: #fff;
}

.h-explore-btn:hover .btn-circle {
    background: #D2AE6D;
    color: #000;
    border: 1px solid #D2AE6D;
    transform: rotate(45deg);
}

.brochure-btn {
    background-color: #D2AE6D;
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.brochure-btn:hover {
    background-color: #C5A021;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(234, 228, 69, 0.3);
}

.brochure-btn:active {
    transform: translateY(0);
    box-shadow: none;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 1024px) {
    footer {
        padding: 80px 5% 40px 5%;
    }

    .hero {
        height: auto;
        padding: 150px 0 100px;
        background-size: cover;
        height: 100vh;
    }

    .hero-overlay {
        height: 110%;
    }

    .hero-container {
        padding: 170px 30px 80px 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        /* height: 40%; */
        position: relative;
        top: 10%;
        z-index: 100;
        overflow: visible;
    }

    .h-title {
        font-size: 60px;
    }

    .hero-visual {
        position: relative;
        width: 100%;
        height: 400px;
        right: 0;
        transform: none;
        margin-top: 50px;
        order: 2;
    }

    .hero-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
        display: none;
    }

    .gold-text {
        margin-left: 0;
    }
}




.tech-spec-section {
    padding: 160px 0;
    background-color: #050505;
    color: #fff;
    overflow: hidden;
}

.tech-spec-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.tech-spec-header-box {
    margin-bottom: 100px;
}


.tech-spec-badge {
    font-family: 'para', sans-serif;
    font-size: 11px;
    letter-spacing: 5px;
    color: #D2AE6D;
    display: block;
    margin-bottom: 15px;
    font-weight: 700;
}

.tech-spec-main-title {
    font-family: 'head', sans-serif;
    font-size: 70px;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 30px;
}

.tech-spec-subheading {
    font-family: 'para', sans-serif;
    font-size: 25px;
    line-height: 1.6;
    letter-spacing: 0.6px;
    color: rgba(255, 255, 255, 0.6);
}

.gold-text {
    color: #D2AE6D;
}



/* Row Styling */
.tech-spec-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-spec-row.reverse {
    flex-direction: row-reverse;
}

.tech-spec-content {
    flex: 1;
}

.tech-spec-visual {
    flex: 1;
    overflow: hidden;
    border-radius: 4px;
    height: 450px;
    position: relative;
}

.tech-spec-img-wrapper {
    width: 100%;
    height: 100%;
    /* Taller for parallax effect */
    position: absolute;
    top: -10%;
}

.tech-spec-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}


.tech-spec-lead {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.tech-spec-index {
    font-family: 'head', sans-serif;
    font-size: 16px;
    color: #D2AE6D;
    font-weight: 600;
}

.tech-spec-label {
    font-size: 40px;
    text-transform: uppercase;
    font-family: 'head', sans-serif;
}

.tech-spec-detail {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .tech-spec-section {
        padding: 80px 0px;
    }

    .tech-spec-row,
    .tech-spec-row.reverse {
        flex-direction: column;
        gap: 40px;
        padding: 60px 0;
    }

    .tech-spec-visual {
        width: 100%;
        height: 300px;
    }

    .tech-spec-container {
        padding: 0 20px;
    }

    .tech-spec-main-title {
        font-size: 35px;
    }

    .tech-spec-label {
        font-size: 30px;
    }

    .tech-spec-detail {
        font-size: 18px;
    }
}











.pa-section {
    padding: 140px 50px;
    background-color: #050505;
    color: #fff;
    overflow-x: hidden;
    height: fit-content;
}

.pa-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 0px;
}

.pa-header {
    margin-bottom: 80px;
}

.pa-badge {
    font-family: sans-serif;
    font-size: 11px;
    letter-spacing: 4px;
    color: #D2AE6D;
    text-transform: uppercase;
}

.pa-main-title {
    font-family: 'head', sans-serif;
    font-size: clamp(35px, 5vw, 60px);
    margin: 15px 0;
    text-transform: uppercase;
}

.gold-text {
    color: #D2AE6D;
}

.pa-subheading {
    font-family: 'para', sans-serif;
    font-size: 22px;
    color: rgba(255, 255, 255, 0.5);
    max-width: 700px;
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 40px;
}

.pa-facilities-title {
    font-family: 'head', sans-serif;
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 60px;
    text-align: center;
    text-transform: uppercase;
}

.pa-mt-indoor {
    margin-top: 120px;
}

/* Desktop Grid Logic */
@media (min-width: 901px) {
    .pa-grid-logic {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr);
        gap: 80px 40px;
        /* Reset Swiper Flex */
        transform: none !important;
        width: 100% !important;
    }


    .pa-card:nth-child(2) {
        margin-top: 120px;
    }

    .pa-card:nth-child(5) {
        margin-top: 120px;
    }

    .pa-card:nth-child(8) {
        margin-top: 120px;
    }

    .pa-pagination {
        display: none !important;
    }
}

/* Card Styling */
.pa-card {
    transition: transform 0.4s ease;
}

.pa-img-wrapper {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: #111;
    position: relative;
    margin-bottom: 25px;
}

.pa-img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    position: absolute;
    top: -10%;
    will-change: transform;
}

.pa-label {
    font-family: 'head', sans-serif;
    font-size: 30px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 15px;
}

.pa-label span {
    font-size: 11px;
    color: #D2AE6D;
}

/* Mobile Swiper Specifics */
@media (max-width: 900px) {
    .pa-section {
        padding: 80px 0px;
    }

    .pa-container {
        padding: 0 20px;
    }

    .pa-mt-indoor {
        margin-top: 80px;
    }

    .pa-img-wrapper {
        aspect-ratio: 1/1;
    }

    .pa-pagination {
        position: relative !important;
        margin-top: 30px !important;
        bottom: 0 !important;
    }

    .swiper-pagination-bullet {
        background: #D2AE6D !important;
    }
}



.home-oa-section {
    padding: 120px 0;
    background-color: #050505;
    color: #fff;
}

.home-oa-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 0px;
}

/* Blueprint Header Line */
.home-oa-top-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
}

.home-oa-serial {
    font-family: monospace;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.2);
}

.home-oa-line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.home-oa-category-tag {
    font-family: 'head', sans-serif;
    font-size: 50px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #D2AE6D;
    margin: 0;
}

/* Flex Layout */
.home-oa-blueprint-table {
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.home-oa-column {
    padding: 50px 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

/* The 50% Column */
.home-oa-col-main {
    flex: 2;
    background: rgba(255, 255, 255, 0.01);
}

/* The 25% Columns */
.home-oa-col-side {
    flex: 1;
}

.home-oa-column:last-child {
    border-right: none;
}

.home-oa-col-header {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(210, 174, 109, 0.1);
    padding-bottom: 20px;
}

.home-oa-index {
    font-family: 'head', sans-serif;
    font-size: 20px;
    color: #D2AE6D;
}

.home-oa-col-title {
    font-family: 'head', sans-serif;
    font-size: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Internal Dual List Logic */
.home-oa-dual-list {
    display: flex;
    gap: 40px;
}

.home-oa-dual-list .home-oa-list {
    flex: 1;
}

.home-oa-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.home-oa-item {
    font-family: 'para', sans-serif;
    font-size: 25px;
    color: rgba(255, 255, 255, 0.756);
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
    line-height: 1.4;
    transition: color 0.3s ease;
    font-weight: 600;
}

/* Architectural Bullet Point */
.home-oa-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border: 1px solid #D2AE6D;
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.home-oa-item:hover {
    color: #fff;
}

.home-oa-item:hover::before {
    background: #D2AE6D;
    transform: rotate(45deg) scale(1.2);
}

/* Mobile: Stack them */
@media (max-width: 1024px) {
    .home-oa-top-bar {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .home-oa-blueprint-table {
        flex-direction: column;
    }

    .home-oa-column {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .home-oa-dual-list {
        flex-direction: column;
        gap: 0;
    }

    .home-oa-category-tag {
        font-size: 35px;
        text-align: center;
    }

    .home-oa-item {
        font-size: 20px;
    }
}




.location-amenity-section {
    background-color: hsl(0, 0%, 2%);
    overflow: hidden;
    padding: 0px 0px 0px 40px;
}

.location-amenity-wrapper {
    display: flex;
    /* height: 100vh; */
}

.location-amenity-map-side {
    flex: 1.2;
    /* height: 100%; */
}

.location-amenity-map-frame {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-amenity-iframe {
    width: 100%;
    height: 50%;
    border: none;
}

.location-amenity-info-side {
    flex: 1.5;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #050505;
    overflow-y: auto;
}

.location-amenity-header {
    margin-bottom: 40px;
}

.location-amenity-badge {
    font-size: 10px;
    letter-spacing: 4px;
    color: #D2AE6D;
    text-transform: uppercase;
}

.location-amenity-main-title {
    font-family: 'head', sans-serif;
    font-size: 42px;
    margin-top: 10px;
    text-transform: uppercase;
}

/* The Grid System */
.location-amenity-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Two columns */
    gap: 30px;
}

.location-amenity-box {
    border-left: 1px solid rgba(210, 174, 109, 0.2);
    padding-left: 20px;
}

.location-amenity-group-title {
    font-family: 'head', sans-serif;
    font-size: 35px;
    text-transform: uppercase;
    color: #D2AE6D;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.location-amenity-group-title span {
    opacity: 0.4;
    margin-right: 5px;
}

.location-amenity-list {
    list-style: none;
    padding: 0;
}

.location-amenity-list li {
    font-family: 'para', sans-serif;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.87);
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    padding-right: 10px;
}

.location-amenity-list li em {
    font-style: normal;
    color: #fff;
    font-weight: 600;
    font-size: 20px;
}

/* Responsive: Stack on mobile */
@media (max-width: 1024px) {
    .location-amenity-section {
        padding: 80px 10px;
    }

    .location-amenity-wrapper {
        height: auto;
        flex-direction: column;
    }

    .location-amenity-map-side {
        height: 100%;
    }

    .location-amenity-iframe {
        height: 100%;
    }

    .location-amenity-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .location-amenity-info-side {
        padding: 40px 0px 0px 0px;
    }

    .location-amenity-main-title {
        font-size: 35px;
    }

    .location-amenity-group-title {
        font-size: 25px;
    }
}


.fp-section {
    padding: 100px 0 140px;
    /* Little more padding at bottom for new layout */
    background: #050505;
    color: #fff;
    overflow: hidden;
}

.fp-container {
    max-width: 1400px;
    /* Increased max-width for bigger image impact */
    margin: 0 auto;
    padding: 0 30px;
}

.fp-header {
    margin-bottom: 60px;
    text-align: center;
}

.fp-badge {
    font-size: 11px;
    letter-spacing: 4px;
    color: #D2AE6D;
    text-transform: uppercase;
}

.fp-main-title {
    font-family: 'head', sans-serif;
    font-size: clamp(40px, 5vw, 70px);
    text-transform: uppercase;
    line-height: 1.1;
    margin: 15px 0 20px;
}

.gold-text {
    color: #D2AE6D;
}

.fp-subheading {
    font-family: 'para', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
    max-width: 600px;
    margin: 0 auto;
}

/* Navigation */
.fp-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 20px;
}

.fp-tab {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    padding: 10px 0;
    cursor: pointer;
    position: relative;
    outline: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 150px;
}

.fp-tab-label {
    font-family: 'head', sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.fp-tab.active .fp-tab-label {
    color: #D2AE6D;
}

.fp-progress-track {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.fp-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: #D2AE6D;
}

/* --- NEW MAIN DISPLAY LAYOUT --- */
.fp-main-display {
    display: flex;
    flex-direction: column;
    /* Stack them verticaly */
    gap: 50px;
}

/* Visual Area - TOP & BIGGER */
.fp-visual-area {
    width: 100%;
}

.fp-image-frame {
    position: relative;
    width: 100%;
    /* Cinematic Aspect Ratio for huge impact */
    aspect-ratio: 21 / 9;
    border-radius: 12px;
    background-color: #0a0a0a;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.fp-plan-img {
    position: absolute;
    width: 95%;
    height: 95%;
    object-fit: contain;
    opacity: 0;
    transform: scale(0.96);
    visibility: hidden;
    filter: invert(1) drop-shadow(0px 10px 15px rgba(0, 0, 0, 0.5));
}

.fp-plan-img.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Content Area - BOTTOM & CENTERED */
.fp-content-area {
    position: relative;
    width: 100%;
    min-height: 180px;
    /* Height for transitions */
    max-width: 900px;
    /* Prevent stretching on huge screens */
    margin: 0 auto;
    /* Center horizontally */
}

.fp-details-group {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(20px);
    text-align: center;
    /* Center align text */
}

.fp-details-group.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.fp-unit-title {
    font-family: 'head', sans-serif;
    font-size: 38px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

/* New wrapper to organize stats and CTA horizontally */
.fp-details-bottom-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.fp-stats-grid {
    display: flex;
    gap: 40px;
    text-align: left;
}

.fp-stat {
    border-left: 2px solid #D2AE6D;
    padding-left: 15px;
}

.fp-stat-label {
    display: block;
    font-family: 'para', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.fp-stat-val {
    font-family: 'head', sans-serif;
    font-size: 24px;
    color: #fff;
}

.fp-stat-val small {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

.fp-cta-wrapper {
    /* Resetting absolute position from previous version */
    position: relative;
    bottom: auto;
    left: auto;
}

.fp-cta-btn {
    display: inline-block;
    padding: 15px 35px;
    border: 1px solid #D2AE6D;
    color: #D2AE6D;
    text-decoration: none;
    font-family: 'head', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.fp-cta-btn:hover {
    background: #D2AE6D;
    color: #000;
}

/* Responsive: Adjust for smaller screens */
@media (max-width: 991px) {
    .fp-image-frame {
        aspect-ratio: 16/9;
        /* Slightly taller on laptops */
    }

    .fp-details-bottom-row {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .fp-nav {
        flex-wrap: wrap;
        gap: 15px;
    }

    .fp-tab {
        width: calc(50% - 15px);
    }

    .fp-image-frame {
        aspect-ratio: 4/3;
        /* Taller on mobile to see details */
        padding: 15px;
    }

    /* Stack content vertically on mobile */
    .fp-details-bottom-row {
        flex-direction: column;
        gap: 30px;
    }

    .fp-stats-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        /* 2x2 grid for stats */
        gap: 20px;
        width: 100%;
    }

    .fp-stat {
        border-left: none;
        border-top: 2px solid #D2AE6D;
        padding-top: 10px;
        padding-left: 0;
        text-align: center;
    }

    .fp-content-area {
        min-height: 400px;
    }

    .fp-unit-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .fp-plan-img{
        width: 100%;
        height: 100%;
    }
}


.home-gallery-section {
    padding: 100px 0;
    background: #050505;
    overflow: hidden;
    width: 100%;
}

.home-gallery-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.home-gallery-wrapper {
    display: flex;
    gap: 20px;
    will-change: transform;
}

.gallery-item {
    flex: 0 0 80%;
    /* Mobile width */
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* DESKTOP: 2x2 Grid Appearance */
@media (min-width: 992px) {
    .home-gallery-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
    }

    .home-gallery-wrapper {
        display: contents;
        /* Allows children to participate in the container's grid */
    }

    .gallery-item {
        flex: none;
        width: 100%;
        height: 100%;
    }

    .gallery-item.cloned {
        display: none !important;
    }
}

/* MOBILE: Carousel Spacing */
@media (max-width: 991px) {
    .home-gallery-section {
        padding: 50px 0;
    }

    .row-2 {
        margin-top: 10px;
    }
}

.pt-section {
    padding: 150px 0;
    background: #050505;
    position: relative;
    overflow: hidden;
}

.pt-header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 60px;
}

.pt-badge {
    font-family: 'para', sans-serif;
    font-size: 11px;
    letter-spacing: 4px;
    color: #D2AE6D;
}

.pt-main-title {
    font-family: 'head', sans-serif;
    font-size: 48px;
    margin-bottom: 20px;
}

.pt-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 100px 0;
}

/* SVG River Path */
.pt-svg-path {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
}

.pt-path-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 2;
}

.pt-path-active {
    fill: none;
    stroke: #D2AE6D;
    stroke-width: 3;
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    /* Controlled by JS */
}

/* Station Layout */
.pt-station {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 200px;
    gap: 50px;
}

.pt-station[data-side="left"] {
    flex-direction: row-reverse;
    text-align: right;
}

.pt-station-visual {
    flex: 1;
    height: 450px;
    overflow: hidden;
    /* Organic Shape */
    /* clip-path: polygon(10% 0, 100% 0%, 90% 100%, 0% 100%); */
    transition: clip-path 0.8s ease;
}

.pt-station:hover .pt-station-visual {
    /* clip-path: polygon(0% 0%, 90% 0%, 100% 100%, 10% 100%); */
}

.pt-station-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: transform 1s ease;
}

.pt-station:hover .pt-station-img {
    transform: scale(1.1);
}

.pt-station-info {
    flex: 1;
}

.pt-date {
    font-family: 'head', sans-serif;
    font-size: 60px;
    color: transparent;
    -webkit-text-stroke: 1px #ffe1aa;
    display: block;
    line-height: 1;
}

.pt-label {
    font-family: 'head', sans-serif;
    font-size: 30px;
    color: #fff;
    margin: 20px 0;
}

.pt-text {
    font-family: 'para', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    max-width: 500px;
}

.pt-station[data-side="left"] {
    margin-left: auto;
}

.pt-station[data-side="left"] .pt-text {
    margin-left: auto;
}

/* Mobile */
@media (max-width: 768px) {

    .pt-section {
        padding: 80px 10px;
    }

    .pt-station {
        flex-direction: column !important;
        text-align: left !important;
        gap: 20px;
        margin-bottom: 100px;
    }

    .pt-station-visual {
        width: 100%;
        max-height: 350px !important;
        clip-path: none !important;
    }

    .pt-text {
        margin-left: 0 !important;
    }

    .pt-svg-path {
        display: none;
    }

    .pt-main-title {
        font-size: 35px;
        text-align: center;
    }

    /* Hide complex SVG on mobile for performance */
}



.cta-immersive {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-family: 'para', sans-serif;
    background-image: url(/assets/images/banner/cta-bg.jpg);
    background-size: cover;
    background-position: center;
}

.cta-overlay {
    background-color: #00000066;
    height: 100%;
    width: 100%;
    position: absolute;
}

/* Immersive Background */
/* .cta-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-image {
    width: 100%;
    height: 100%;
    background-image: url('/assets/images/banner/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    transform: scale(1.2);
    filter: brightness(0.5);
} */

/* Content Wrapper */
.cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 60px;
}

/* DrawSVG Frame */
.cta-frame-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-tag {
    font-family: 'head', sans-serif;
    color: #D2AE6D;
    letter-spacing: 5px;
    font-size: 0.9rem;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
    opacity: 0;
}

.cta-heading {
    font-family: 'head', sans-serif;
    color: #ffffff;
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

.cta-desc {
    color: #ffffff;
    font-size: 25px;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(30px);
    font-weight: 600;
}

.cta-btn {
    display: inline-block;
    padding: 20px 45px;
    background-color: #D2AE6D;
    color: #000;
    text-decoration: none;
    font-family: 'head', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: transform 0.3s ease;
    opacity: 0;
}

.cta-btn:hover {
    transform: scale(1.05);
}


@media(max-width: 768px) {
    .cta-heading {
        font-size: 30px;
    }

    .cta-desc {
        line-height: 1.3;
        font-size: 20px;
    }
}



footer {
    color: #ffffff;
    padding: 120px 5% 40px 5%;
    font-family: 'para', sans-serif;
    position: relative;
    overflow: hidden;
}

/* Decorative SVG Line for DrawSVG */
.footer-line-svg {
    position: absolute;
    top: 0;
    left: 5%;
    width: 90%;
    height: 2px;
}

.f-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
}

/* SplitText Target */


.f-brand span {
    color: #D2AE6D;
    display: block;
    margin-top: 15px;
    font-family: 'head', sans-serif;
    letter-spacing: 4px;
    font-size: 0.9rem;
    opacity: 0;
    /* Animated via GSAP */
}

.f-brand p {
    margin-top: 40px;
    max-width: 520px;
    line-height: 1.6;
    color: #888;
    font-size: 1.1rem;
    opacity: 0;
    font-weight: 600;
    /* Animated via GSAP */
}

.f-title {
    font-family: 'head', sans-serif;
    font-size: 0.8rem;
    color: #D2AE6D;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    display: block;
}

.f-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.f-links li {
    margin-bottom: 18px;
    overflow: hidden;
    /* For link slide-up effect */
}

.f-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    display: inline-block;
    transition: color 0.3s ease;
}

.f-links a:hover {
    color: #D2AE6D;
}

.c-info {
    margin-bottom: 30px;
}

.c-info p {
    margin: 5px 0 0 0;
    font-size: 1.1rem;
}

.f-bottom {
    margin-top: 100px;
    padding-top: 30px;
    border-top: 1px solid #1a1a1a;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #ffffff;
}

.f-legal a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 20px;
    font-size: 15px;
}

/* Watermark for ScrollTrigger Parallax */
.f-watermark {
    font-family: 'head', sans-serif;
    font-size: 120px;
    -webkit-text-stroke: 2px #111;
    text-transform: uppercase;
    line-height: 0.7;
    margin-top: 40px;
    text-align: center;
    white-space: nowrap;
    will-change: transform;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

@media (max-width: 992px) {
    .f-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .f-brand h2 {
        font-size: 3rem;
    }

    .f-watermark {
        font-size: 30px;
    }

    .f-legal a {
        font-size: 15px;
        margin-left: 10px;
    }
}




.main-contact-section {
    padding: 140px 0;
    background-color: #050505;
}

.main-contact-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.main-contact-header {
    text-align: center;
    margin-bottom: 90px;
}

.main-contact-badge {
    font-family: 'para', sans-serif;
    font-size: 11px;
    letter-spacing: 5px;
    color: #C5A021;
    display: block;
    margin-bottom: 20px;
}

.main-contact-title {
    font-family: 'head', sans-serif;
    font-size: clamp(32px, 5vw, 54px);
    text-transform: uppercase;
    color: #fff;
    line-height: 1.1;
}

.main-contact-gold {
    color: #D2AE6D;
}

.main-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px 40px;
}

.main-contact-full {
    grid-column: span 2;
}

.main-contact-group {
    display: flex;
    flex-direction: column;
}

.main-contact-label {
    font-family: 'head', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.921);
    margin-bottom: 15px;
}

.main-contact-input,
.main-contact-textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid #D2AE6D;
    padding: 12px 0;
    color: #fff;
    font-family: 'para', sans-serif;
    font-size: 17px;
    outline: none;
    transition: all 0.4s ease;
}

.main-contact-select-wrapper {
    position: relative;
    width: 100%;
}

.main-contact-select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 0;
    color: #fff;
    font-family: 'para', sans-serif;
    font-size: 17px;
    outline: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23C5A021'%3E%3Cpath d='M12 16L6 10H18L12 16Z'%3E%3Cpath%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 20px;
    transition: all 0.4s ease;
}

.main-contact-input:focus,
.main-contact-select:focus,
.main-contact-textarea:focus {
    border-color: #C5A021;
}

.main-contact-select option {
    background-color: #111;
    color: #fff;
}

.main-contact-textarea {
    min-height: 120px;
    resize: none;
}

.main-contact-checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
}

.main-contact-checkbox {
    accent-color: #C5A021;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.main-contact-check-label {
    font-family: 'para', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
}

.main-contact-action {
    margin-top: 80px;
    text-align: center;
}

.main-contact-submit {
    background: #D2AE6D;
    color: #000;
    border: none;
    padding: 22px 80px;
    font-family: 'head', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.main-contact-submit:hover {
    background: #fff;
    letter-spacing: 5px;
    transform: translateY(-5px);
}

@media (max-width: 850px) {
    .main-contact-section {
        padding: 80px 0px;
    }

    .main-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .main-contact-full {
        grid-column: span 1;
    }

    .main-contact-container {
        padding: 0 30px;
    }
}


.main-contact-details-section {
    padding: 140px 0;
    background-color: #050505;
}

.main-contact-details-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
}

.main-contact-details-row {
    display: flex;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 80px 0;
    gap: 60px;
}

.main-contact-details-row:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.main-contact-details-category {
    flex: 1;
}

.main-contact-details-number {
    font-family: 'head', sans-serif;
    font-size: 14px;
    color: #C5A021;
    letter-spacing: 5px;
    display: block;
    margin-bottom: 20px;
}

.main-contact-details-label {
    font-family: 'head', sans-serif;
    font-size: clamp(24px, 3vw, 36px);
    color: #fff;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 50px;
}

.main-contact-details-logo-0 {
    width: 25%;
}


.main-contact-details-logo-1 {
    width: 40%;
}

.main-contact-details-logo-2 {
    width: 40%;
}

.main-contact-details-info {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.main-contact-details-item {
    display: flex;
    flex-direction: column;
}

.main-contact-details-tag {
    font-family: 'para', sans-serif;
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.827);
    margin-bottom: 10px;
}

.main-contact-details-value {
    font-family: 'para', sans-serif;
    font-size: clamp(18px, 2.5vw, 28px);
    /* Big and Readable */
    color: #fff;
    text-decoration: none;
    transition: color 0.4s ease;
    word-break: break-all;
}

.main-contact-details-value:hover {
    color: #C5A021;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .main-contact-details-section {
        padding: 80px 0px;
    }

    .main-contact-details-row {
        flex-direction: column;
        gap: 40px;
        padding: 60px 0;
    }

    .main-contact-details-info {
        gap: 30px;
    }
}


/* Preloader full screen */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0d0d0d;
    /* change bg */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Spinner */
.loader {
    width: 60px;
    height: 60px;
    border: 6px solid #333;
    border-top: 6px solid #ffd700;
    /* gold */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}





.floor-plan-hero-section {
    position: relative;
    height: 100vh;
    background-color: #050505;
    display: flex;
    align-items: center;
    padding: 0 10%;
    overflow: hidden;
}

.floor-plan-hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floor-plan-hero-bg-img {
    object-fit: cover;
    width: 100%;
    height: 100vh;
}

.floor-plan-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0.8) 0%, rgba(5, 5, 5, 0.2) 100%);
}

/* Content adjustment to sit above BG */
.floor-plan-hero-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 150px 0px 100px 0px;
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
}

.floor-plan-hero-title {
    font-family: 'head', sans-serif;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.1;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    /* Helps text pop against BG */
}

.floor-plan-hero-subtitle {
    font-family: 'para', sans-serif;
    font-size: 18px;
    color: #C5A021;
    letter-spacing: 2px;
    margin-bottom: 60px;
}

.floor-plan-hero-bottom {
    display: flex;
    gap: 40px;
}

.floor-plan-hero-line {
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
    height: 0;
    /* Animated by GSAP */
}

.floor-plan-hero-info {
    max-width: 500px;
}

.floor-plan-hero-para {
    font-family: 'para', sans-serif;
    font-size: 22px;
    line-height: 1.7;
    color: rgb(255, 255, 255);
    margin-bottom: 35px;
    font-weight: 600;
}

.floor-plan-hero-btn {
    font-family: 'head', sans-serif;
    font-size: 18px;
    letter-spacing: 3px;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #C5A021;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.floor-plan-hero-btn:hover {
    color: #C5A021;
}

@media (max-width: 768px) {
    .floor-plan-hero-container {
        flex-direction: column;
        padding: 80px 20px;
    }

    .floor-plan-hero-bottom {
        flex-direction: column;
        gap: 20px;
    }

    .floor-plan-hero-line {
        display: none;
    }
}


.main-floor-plan-section {
    padding: 100px 0;
    background-color: #050505;
}

.main-floor-plan-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.main-floor-plan-card {
    margin-bottom: 120px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 80px;
}

.main-floor-plan-card:last-child {
    border-bottom: none;
}

/* Image on Top - Making it huge and clear */
.main-floor-plan-visual {
    width: 100%;
    margin-bottom: 100px;
}

.main-floor-plan-img {
    width: 100%;
    height: 600px;
    /* height: 100%; */
}


/* Content Underneath */
.main-floor-plan-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

.main-floor-plan-header {
    display: flex;
    flex-direction: column;
}

.main-floor-plan-number {
    font-family: sans-serif;
    color: #C5A021;
    font-size: 14px;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.main-floor-plan-title {
    font-family: 'head', sans-serif;
    font-size: 35px;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.2;
}

.main-floor-plan-desc {
    font-family: 'para', sans-serif;
    font-size: 20px;
    color: #fff;
    line-height: 1.4;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .main-floor-plan-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .main-floor-plan-visual {
        padding: 0px;
        margin-bottom: 50px;
    }

    .main-floor-plan-title {
        font-size: 22px;
    }

    .main-floor-plan-img {
        height: 300px;
    }

    .main-floor-plan-card {
        padding-bottom: 0px;
    }
}



.terms-wrapper {
    padding-top: 180px;
    /* Space for fixed navbar */
    padding-bottom: 100px;
    max-width: 800px;
    /* Limits width for readability */
    margin: 0 auto;
    padding-left: 5%;
    padding-right: 5%;
}

/* Header Section */
.terms-header {
    text-align: center;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
}

.terms-header h1 {
    font-family: 'head', sans-serif;
    /* Your heading font */
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.terms-date {
    font-family: 'para', sans-serif;
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Content Section */
.terms-content section {
    margin-bottom: 50px;
}

.terms-content h3 {
    font-family: 'head', sans-serif;
    font-size: 1.4rem;
    color: #ffd23e;
    /* Your gold accent color */
    margin-bottom: 20px;
    text-transform: uppercase;
}

.terms-content p {
    font-family: 'para', sans-serif;
    font-size: 1.05rem;
    color: #bbb;
    margin: 0;
}

/* Back Link Button */
.terms-footer-link {
    margin-top: 80px;
    text-align: center;
}

.back-link {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.back-link:hover {
    background: #ffd23e;
    border-color: #ffd23e;
    color: #000;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .terms-wrapper {
        padding-top: 140px;
    }

    .terms-header h1 {
        font-size: 2.2rem;
    }

    .terms-content p {
        font-size: 0.95rem;
    }
}

.disclaimer {
    width: 100%;
    padding: 20px;
    background-color: #C5A021;
    border-radius: 24px;
}

.disclaimer p {
    color: #ffffff;
    font-size: 15px;
    font-family: para;
    font-weight: 600;
    /* max-width: 1200px; */
    text-align: left;
    letter-spacing: 1px;
}

.disclaimer-2 {
    width: 100%;
    padding: 20px;
    background-color: #C5A021;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.disclaimer-2 p {
    color: #ffffff;
    font-size: 15px;
    font-family: para;
    font-weight: 500;
    max-width: 1200px;
    text-align: left;
}

#brokernamediv {
    display: none;
}

#brokerphonenodiv {
    display: none;
}



/* Main Section Wrapper */
.contact-map-section {
    width: 100%;
    padding: 0;
    margin: 0;
    background-color: #fff;
    line-height: 0;
    /* Removes potential small gap at bottom of iframe */
}

/* Container for alignment/max-width control */
.contact-map-container {
    width: 100%;
    height: 700px;
    /* Fixed height for desktop */
    position: relative;
}

/* The Iframe itself */
.contact-map-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-map-container {
        height: 350px;
        /* Slightly shorter on mobile devices */
    }
}



.home-develop-section {
    padding: 140px 0;
    background-color: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.home-develop-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.home-develop-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: start;
}

/* Badge & Year Styling */
.home-develop-badge {
    color: #D2AE6D;
    font-size: 30px;
    letter-spacing: 5px;
    font-weight: 700;
    line-height: 0.6;
    display: block;
    margin-bottom: 40px;
}

.home-develop-experience {
    border-left: 2px solid #D2AE6D;
    padding-left: 30px;
    margin-top: 20px;
}

.home-develop-year {
    display: block;
    font-size: 80px;
    font-family: 'head', sans-serif;
    line-height: 1;
    color: #fff;
    opacity: 0.9;
}

.home-develop-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 3px;
}

/* Content Styling */
.home-develop-main-title {
    font-size: 50px;
    font-family: 'head', sans-serif;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 40px;
    color: #fff;
}

.home-develop-para {
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    max-width: 800px;
}

.home-develop-para strong {
    color: #fff;
    font-weight: 600;
}

/* Button Styling */
.home-develop-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    background: transparent;
    border: 1px solid #D2AE6D;
    color: #D2AE6D;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 700;
    transition: all 0.4s ease;
    margin-top: 20px;
}

.home-develop-btn i {
    font-size: 18px;
    transition: transform 0.4s ease;
}

.home-develop-btn:hover {
    background: #D2AE6D;
    color: #000;
}

.home-develop-btn:hover i {
    transform: translate(5px, -5px);
}

/* Responsive */
@media (max-width: 991px) {
    .home-develop-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .home-develop-container {
        padding: 0 20px;
    }

    .home-develop-main-title {
        font-size: 22px;
    }

    .home-develop-year {
        font-size: 60px;
    }

    .home-develop-section {
        padding: 80px 0;
    }

    .home-develop-para {
        font-size: 18px;
    }

    .home-develop-badge {
        line-height: 1.1;
        font-size: 25px;
    }
}