/* Design System & Variables */
html {
    scroll-behavior: smooth;
}

:root {
    /* --primary-maroon: #800000; */
    --primary-maroon: #24110F;
    --primary-gold: #800000;
    /* Compatibility */
    --dark-maroon: #24110F;
    --light-maroon: #a00000;
    --bg-maroon: #800000;
    --dark-bg: #030a14;
    --deep-blue: #09131d;
    --text-white: #ffffff;
    --text-muted: #e0e0e0;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --maroon-gradient: linear-gradient(135deg, #800000 0%, #4d0000 100%);
    --gold-gradient: linear-gradient(135deg, #800000 0%, #4d0000 100%);
}

html {
    scroll-behavior: smooth;
}


/* ===== ACaslonPro Fonts ===== */

/* Regular */
@font-face {
    font-family: 'ACaslonPro';
    src: url('../font/ACaslonPro-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

/* Italic */
@font-face {
    font-family: 'ACaslonPro';
    src: url('../font/ACaslonPro-Italic.woff') format('woff');
    font-weight: 400;
    font-style: italic;
}

/* Semibold */
@font-face {
    font-family: 'ACaslonPro';
    src: url('../font/ACaslonPro-Semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}

/* Semibold Italic */
@font-face {
    font-family: 'ACaslonPro';
    src: url('../font/ACaslonPro-SemiboldItalic.woff') format('woff');
    font-weight: 600;
    font-style: italic;
}

/* Bold */
@font-face {
    font-family: 'ACaslonPro';
    src: url('../font/ACaslonPro-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

/* Bold Italic */
@font-face {
    font-family: 'ACaslonPro';
    src: url('../font/ACaslonPro-BoldItalic.woff') format('woff');
    font-weight: 700;
    font-style: italic;
}

/* Base Styles */
body {
    /* font-family: 'Alexandria', sans-serif; */
    font-family: "Montserrat", sans-serif;
    color: #333;
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
.brand-font {
    font-weight: 700;
    letter-spacing: -0.02em;
    /* font-family: 'Alexandria', sans-serif */
    font-family: 'ACaslonPro', serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'ACaslonPro', serif;
}

a {
    transition: var(--transition);
    text-decoration: none;
}

/* Navbar */
.navbar {
    padding: 20px 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
    /* background-color: var(--dark-bg); */
    background-color: var(--dark-maroon);
    padding: 15px 0;
}

.navbar-brand img {
    height: 60px;
}

.nav-link {
    color: var(--text-white) !important;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-left: 35px;
}

.nav-link:hover {
    color: white;
}

/* Hero Section */
.carousel-item {
    height: 100vh;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 1.2s ease-in-out;
}

/* .carousel-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
} */

#hero {
    height: 100vh;
    background: #000;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
}

/* Entry Animations for Active Slide */
.carousel-item.active .hero-title {
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.carousel-item.active .hero-location {
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.2s;
}

.carousel-item.active .btn-container {
    animation: fadeInUp 1.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.4rem;
    font-weight: 200;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #fff;
    opacity: 0;
    line-height: 1.1;
}

.hero-location {
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    opacity: 0;
}

.hero-location {
    color: white;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0;
    animation: slideInLeft 1.3s forwards;
}

.btn-container {
    opacity: 0;
}

.hero-cta .btn-hero-gold {

    /* background: var(--primary-maroon); */
    background: white;
    color: var(--primary-maroon);
    border: none;
    padding: 14px 28px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(128, 0, 0, 0.3);
}

.hero-cta .btn-hero-gold:hover {
    background: var(--maroon-gradient);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(128, 0, 0, 0.4);
    color: #fff;
}

.btn-gold {
    background: var(--maroon-gradient);
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(128, 0, 0, 0.2);
}

.btn-gold1 {
    background: var(--maroon-gradient);
    color: #fff;
    border: none;
    padding: 14px 25px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(128, 0, 0, 0.3);
}

.btn-gold:hover,
.btn-gold1:hover {
    background: var(--primary-maroon);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(128, 0, 0, 0.4);
}

.btn-gold,
.btn-gold1 {
    transition: all 0.3s ease;
}

.btn-outline-gold {
    border: 2px solid var(--primary-maroon);
    color: var(--primary-maroon);
    padding: 10px 30px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 600;
}

.btn-gold_menu {
    background: white;
    color: #000000;

}

/* Features Section */
.info-section {
    padding: 80px 0;
    background: #fff;
}

.feature-card {
    padding: 35px 25px;
    border-radius: 18px;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* background: #fff; */
    /* background: #fff9f9; */
    background: #fff9f9;
    border: 1px solid #f0f0f0;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(128, 0, 0, 0.1);
    border-color: var(--primary-maroon);
}

.feature-icon-box {
    width: 75px;
    height: 75px;
    background: #fff;
    color: var(--primary-maroon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.feature-icon-box i {
    font-size: 2rem;
    color: var(--primary-maroon);
}

.feature-card:hover .feature-icon-box {
    background: var(--primary-maroon);
    color: #fff;
    transform: rotateY(180deg);
}

.feature-card:hover .feature-icon-box i {
    color: #fff;
}

.feature-card h5 {
    color: #333;
    font-weight: 700;
}

.feature-card:hover h5 {
    color: var(--primary-maroon);
}

.section-title {
    text-align: center;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 50px;
    letter-spacing: 2px;
    font-size: 28px;
    color: #24110f;
}

.section-subtitle {
    color: #555;
    font-size: 16px;
    font-weight: 300;
    margin-top: 8px;
}

.section-title span {
    font-weight: 700;
    color: #000;
    position: relative;
    padding-bottom: 10px;
}

.section-title span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 1px;
    background-color: #dedede;
}

.no-after-border span::after {
    display: none;
}

.metro-walk-section {
    background-color: #ffffff;
    position: relative;
}

.metro-card {
    /* background: #fff; */
    background: #fff9f9;
    border: 1px solid #45000014;
    border-bottom: 3px solid var(--primary-maroon);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    height: 100%;
    padding: 10px 20px;
    text-align: center;
}

.metro-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
}

.icon-box {
    margin-bottom: 1.5rem;
    display: inline-block;
    /* padding: 15px; */
    border-radius: 50%;
    background: rgba(128, 0, 0, 0.05);
    transition: var(--transition);
    width: 60px;
    height: 60px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px auto;
    padding: 30px 0px;

}

.metro-card:hover .icon-box {
    /* background: rgba(128, 0, 0, 0.1); */
    transform: scale(1.1);
    background: var(--primary-maroon);
    color: #fff;
    transform: rotateY(180deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);

}

.metro-card-title {
    color: #222;
    margin-bottom: 1rem;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 15px;
}

.metro-card-title i {
    color: var(--primary-maroon);
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;

}

.metro-card-text {
    color: #6c757d;
    line-height: 1.8;
    font-size: 0.95rem;

}

.metro-description {
    color: #6c757d;
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.btn-genuine-link {
    display: inline-block;
    padding: 15px 40px;
    color: #fff;
    background: var(--primary-maroon);
    border: 2px solid var(--primary-maroon);
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(128, 0, 0, 0.2);
}

.btn-genuine-link:hover {
    background: transparent;
    color: var(--primary-maroon);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(128, 0, 0, 0.3);
}


.feature-card {
    text-align: center;
    padding: 40px 30px;
    border: none;
    background: #f8f9fa;
    height: 100%;
    transition: var(--transition);
    border-radius: 10px;
    box-shadow: 0px 4px 4px 0px #00000040;

}

.feature-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 38px;
    margin-bottom: 25px;
    /* filter: sepia(1) saturate(5) hue-rotate(10deg); */
}

.feature-card h5 {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

.features-description {
    max-width: 820px;
    font-size: 16px;
    color: #666;
    margin-top: -10px;
    margin-bottom: 0;
    line-height: 1.7;
}

.hero-arrow-btn {
    width: 60px;
    height: 100%;
    right: 0;
    opacity: 1;
    background: transparent;
    border: none;
    z-index: 10;
}

.hero-arrow-btn:hover .hero-arrow {
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.hero-arrow {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 28px;
    opacity: 1;
    transition: var(--transition);
}

.text-gold {
    color: var(--primary-gold);
}

/* Urban Destination */
.urban-section {
    background: url('../images/Urban-Destination.webp') no-repeat top center/cover;
    overflow: hidden;
    position: relative;
    color: #fff;
    min-height: 650px;
}

.urban-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(3, 10, 20, 0.95) 0%,
            rgba(3, 10, 20, 0.75) 38%,
            rgba(3, 10, 20, 0.25) 68%,
            rgba(3, 10, 20, 0.05) 100%);
    z-index: 0;
}

/* .urban-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #1e79ff 0%, #4bc6ff 100%);
    z-index: 2;
    pointer-events: none;
} */

.urban-section .row {
    position: relative;
    z-index: 1;
    width: 100%;
}

.urban-text {
    width: 100%;
}

.urban-kicker {
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #e8edf3;
}

.urban-title {
    font-size: 54px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 22px;
    color: white;
}

.urban-paragraph {
    font-size: 14.5px;
    line-height: 1.9;
    opacity: 0.95;
    max-width: 620px;
}

.urban-section .urban-text {
    padding-top: 30px;
    padding-bottom: 30px;
}

.urban-section .urban-paragraph {
    letter-spacing: 0;
}

@media (max-width: 991px) {
    .urban-title {
        font-size: 40px;
    }

    .urban-kicker {
        font-size: 18px;
    }

    .urban-paragraph {
        font-size: 13.5px;
        max-width: 100%;
    }

    .urban-section {
        min-height: 520px;
    }
}

@media (max-width: 576px) {
    .urban-title {
        font-size: 32px;
    }

    .urban-paragraph {
        font-size: 13px;
    }
}

.urban-section h5 {
    /* Matches `.urban-kicker` so legacy selectors don't override it */
    font-size: 22px;
    letter-spacing: 4px;
    margin-bottom: 0px;
    font-weight: 100;
}

.urban-section h2 {
    /* Matches `.urban-title` so legacy selectors don't override it */
    font-size: 32px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 600;
}

.urban-section h4 {
    margin-bottom: 22px;
    font-size: 16px;
    letter-spacing: 4px;
    margin-bottom: 20px;
    font-weight: 100;
}

.urban-text-col {
    background: linear-gradient(to right, #030a14 70%, rgba(3, 10, 20, 0.4) 100%);
    position: relative;
    z-index: 2;
    min-height: 500px;
}

.urban-img {
    object-fit: cover;
    height: 100%;
    min-height: 500px;
}

.leading-relaxed {
    line-height: 1.8;
}

@media (max-width: 991px) {
    .urban-text-col {
        background: #030a14;
        padding: 50px 20px;
    }
}

/* Floor Plan Section */
.floor-plan {
    background: url('../images/planned_spaces_dark-bg.png') no-repeat center center/cover;
    padding: 60px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.fp-image-container {
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    text-align: center;
}

.fp-image-container img {
    border-radius: 10px;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fp-slider-nav {
    margin-top: 15px;
}

.fp-slider-btn {

    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    cursor: pointer;
    background: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.fp-slider-btn i {
    color: var(--primary-maroon);
    font-size: 1.2rem;
}

/* .fp-slider-btn img {
    width: 18px;
} */

/* .fp-slider-btn:hover {
    transform: scale(1.1);
    background: #000;
} */

.fp-title-small {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 5px;
    color: #fff;
}

.fp-title-large {
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.fp-subtitle {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 40px;
    /* max-width: 500px; */
}

.fp-btn-outline {
    display: inline-block;
    padding: 6px 10px;
    border: 1px solid white;
    border-radius: 8px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 50px;
    background: rgba(128, 0, 0, 0.1);
}

.plan-item {
    margin-bottom: 35px;
}

.plan-item-title {
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
}

.plan-item-title::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 110px;
    /* Half-width underline as seen in design */
    height: 1.5px;
    background-color: white;
}

.plan-item-desc {
    font-size: 15px;
    opacity: 0.7;
    line-height: 1.4;
}

@media (max-width: 991px) {
    .fp-title-large {
        font-size: 40px;
    }

    .fp-title-small {
        font-size: 16px;
    }
}

/* Mixed Use Section */
.mixed-use {
    padding: 100px 0;
}

.mixed-use-intro {
    max-width: 980px;
    margin: 0 auto 40px;
}

.mixed-use-intro p {
    font-size: 16px;
    line-height: 1.35;
    color: #222 !important;
    margin-bottom: 22px;
    font-weight: 300;
}

.mixed-use-intro p:last-child {
    margin-bottom: 0;
}

.mixed-slider-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.mixed-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    background: #000;
}

.mixed-image-wrapper img {
    width: 100%;
    display: block;
    transition: opacity 0.35s ease-in-out;
}

.inner-border {
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    bottom: 30px;
    border: 1.5px solid var(--primary-maroon);
    pointer-events: none;
    z-index: 2;
}

.mixed-use {
    position: relative;
    overflow: hidden;
}

.side-decoration {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    /* width: 250px; */
    height: auto;
    opacity: 1;
    z-index: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.side-decoration.left {
    left: 10px;
}

.side-decoration.right {
    right: 10px;
}

@media (max-width: 1400px) {
    .side-decoration {
        width: 180px;
        left: -30px;
    }

    .side-decoration.right {
        right: -30px;
        left: auto;
    }
}

@media (max-width: 991px) {

    .mixed-use {
        padding: 60px 0 22px;
    }

    .side-decoration {
        display: none;
    }
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    /* border-radius: 50%; */
    background: #450000;
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: var(--transition);
    z-index: 5;
    cursor: pointer;
    border-radius: 50%;
}

.slider-btn i {
    font-size: 1.5rem;
    color: white;
}

/* .slider-btn img {
    width: 30px;
    height: 30px;
    object-fit: contain;
} */

.prev-btn {
    left: -70px;
    transform: translateY(-50%) rotate(180deg);
}

.next-btn {
    right: -70px;
}

@media (max-width: 1100px) {
    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    .inner-border {
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
    }
}

.mixed-slide-title {
    font-size: 34px;
    font-weight: 400;
    letter-spacing: 1px;

    text-transform: uppercase;
    color: #111;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

@media (max-width: 991px) {
    .mixed-slide-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .mixed-use-intro p {
        font-size: 18px;
        line-height: 1.5;
    }

    .mixed-slide-title {
        font-size: 26px;
    }
}

/* Location Section */
.location-section {
    padding: 120px 0;
    background: #fff;
}

.map-wrapper {
    background: #fff;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    height: 100%;
    overflow: hidden;
}

.location-card {
    background: #030a14;
    padding: 30px 40px;
    border-radius: 12px;
    color: #fff;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-card-title {
    font-size: 24px;
    font-weight: 100;
    letter-spacing: 2px;
    margin-bottom: 0px;
    opacity: 0.7;
}

.location-card-subtitle {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 0px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Branding Section */
.branding {
    position: relative;
    color: #fff;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.branding-content {
    width: 100%;
    z-index: 2;
}

.branding-title {
    font-size: 42px;
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 0px;
    opacity: 1;
}

.branding-subtitle {
    font-size: 34px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0px;
    display: flex;
    align-items: center;
}

.branding-subtitle span {
    color: var(--primary-maroon);
    color: white;
    font-family: "Montserrat", sans-serif;
    font-size: 26px;
}

.branding-line {
    height: 1.5px;
    background: var(--primary-maroon);
    width: 150px;
    margin-left: 10px;
    opacity: 0.7;
}

.branding-desc-col {
    padding-left: 60px;
}

.branding-desc {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 38px;
}

@media (max-width: 991px) {
    .branding-desc-col {
        padding-left: 15px;
        margin-top: 40px;
    }

    .branding-title {
        font-size: 32px;
    }

    .branding-subtitle {
        font-size: 30px;
    }

    .branding-line {
        width: 80px;
    }
}

@media (max-width: 576px) {
    .branding {
        min-height: 420px;
        padding: 40px 0;
        align-items: flex-start;
        background-position: center top !important;
    }

    .branding-content {
        padding: 0 18px;
    }

    .branding .row {
        flex-direction: column;
    }

    .branding-desc-col {
        padding-left: 0;
        margin-top: 18px;
    }

    .branding-title {
        font-size: 28px;
        letter-spacing: 3px;
    }

    .branding-subtitle {
        font-size: 24px;
        align-items: flex-start;
    }

    .branding-line {
        width: 90px;
        margin-left: 12px;
    }

    .branding-desc {
        font-size: 13px;
        line-height: 1.65;
        margin-bottom: 22px;
    }
}

.advantages-grid {
    display: flex;
    flex-wrap: wrap;
    /* margin-bottom: 40px; */
}

.advantage-item {
    flex: 0 0 33.33%;
    padding: 20px 10px;
    /* margin-bottom: 20px; */
    text-align: center;
}

/* .advantage-icon {
    width: 35px;
    height: auto;
    margin-bottom: 15px;
    margin-right: 0;
    Centred icons
} */

/* .advantage-text {
    font-size: 12px;
    line-height: 1.4;
    opacity: 0.8;
} */

.location-banner-gold {
    background: #fffdfd;
    color: #730000;
    padding: 15px 9px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-top: auto;
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    color: var(--primary-maroon);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.advantage-item:hover .advantage-icon {
    background: var(--primary-maroon);
    color: #fff;
    transform: rotateY(180deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 2px solid white;
}

.advantage-text {
    font-size: 13px;
    margin-top: 10px;
    color: #ffffff;
    font-weight: 500;
}

@media (max-width: 991px) {
    .advantage-item {
        flex: 0 0 50%;
    }

    .location-card-subtitle {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .advantage-item {
        flex: 0 0 100%;
    }
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background: #fff;
    color: #333;
}

.contact-section .section-subtitle {
    font-size: 15px;
    opacity: 0.8;
    margin-top: -30px;
    margin-bottom: 60px;
    color: black;
    font-weight: 400;
}

.contact-box {
    background: #030a14;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-img-col {
    flex: 0 0 50%;
    position: relative;
    min-height: 480px;
}

.contact-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-form-col {
    flex: 0 0 50%;
    padding: 60px 40px;
    background: #ffffff;
    color: #000000;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form-col h3 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.contact-form-col .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(26, 25, 25, 0.1);
    border-radius: 6px;
    padding: 15px;
    color: #fff;
    margin-bottom: 20px;
    font-size: 14px;
}

.contact-form-col .form-control::placeholder {
    color: var(--primary-maroon);
}

.contact-form-col .form-control:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-maroon);
}

.underline {
    width: 300px;
    height: 1px;
    background: white;
    margin: 0 auto 20px;
}

.contact-btn-gold {
    background: var(--primary-maroon);
    color: #fff;
    border: none;
    width: 100%;
    padding: 12px 14px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 20px;
    transition: var(--transition);
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(128, 0, 0, 0.3);
}

.contact-btn-gold:hover {
    background: #a00000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(128, 0, 0, 0.4);
}

.branding_img {
    height: 600px;
}


.count-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 100px;
    gap: 18px;
}


.count-box h5 {
    margin: 0;
    font-size: 44px;
    font-weight: 500;
    letter-spacing: 1px;
}

.count-box p {
    font-size: 18px;
    margin-bottom: 0;
}

.fetch p {
    max-width: 1080px;
    margin: auto;
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
}

.fetch h2 {
    font-size: 32px;
    text-transform: capitalize;
}

.know-more {
    background: #800000;
    color: white;
    font-size: 16px;
    font-weight: normal;
    padding: 10px 32px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s;
}


.who-foundation {
    background: var(--primary-maroon);
    padding: 80px 0;
    color: white;
}

.abs-who {
    position: absolute;
    top: 0;
}

.who-foundation .container {
    position: relative;
    z-index: 1;
}

.who-foundation h1 {
    font-size: 40px;
    font-weight: normal;
    text-transform: capitalize;
    margin-bottom: 12px;
}

.light-underline {
    background: white;
}

.underline {
    width: 300px;
    height: 1px;
    background: white;
    margin: 0 auto 20px;
}

.who-foundation #carouselExample {
    margin-top: 60px;
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.who-foundation .foundaiotnitems {
    display: flex;
    gap: 50px;
    align-items: center;
    max-width: 820px;
    margin: auto;
}

.who-foundation .foundaiotnitems div:nth-child(1) {
    width: 200px;
    flex: 0 0 200px;
}

figure {
    margin: 0 0 1rem;
}

.who-foundation .foundaiotnitems h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

.who-foundation .foundaiotnitems p {
    font-size: 16px;
}

.who-foundation button.carousel-control-prev {
    left: -60px;
}

.who-foundation .carousel-control-next img,
.who-foundation .carousel-control-prev img {
    width: 50px;
}

.who-foundation button.carousel-control-next {
    right: -70px;
}

.who-foundation .carousel-control-next img,
.who-foundation .carousel-control-prev img {
    width: 50px;
}

.who-foundation .foundaiotnitems img {
    width: 200px;
}

.who-foundation .carousel-item {
    height: auto;
    transition: transform 1.2s ease-in-out, opacity 1.2s ease-in-out;
}


@media (max-width: 991px) {
    .branding_img {
        height: 700px;
        opacity: 0.9;
    }

    .location-section {
        padding: 60px 0px 0px;
    }

    .contact-img-col,
    .contact-form-col {
        flex: 0 0 100%;
    }

    .contact-img-col {
        min-height: 300px;
    }
}

/* Responsiveness */
@media (max-width: 991px) {

    .contact-section {
        padding: 60px 0;
        background: #fff;
        color: #333;
    }

    .section-title span::after {
        width: 50px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .navbar {
        background: var(--dark-bg);
        padding: 10px 0;
    }

    .mixed-use-image {
        max-width: 100%;
    }

    .fp-image-container {
        margin-bottom: 30px;
    }
}

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

    .section-title {
        font-size: 1.8rem;
    }

    .contact-wrapper {
        padding: 30px;
    }

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

    .hero-content {
        padding-top: 100px;
        text-align: left;
        align-items: flex-start;
    }

    .hero-content .d-flex {
        justify-content: flex-start;
    }

    .hero-arrow {
        right: 20px;
        /* Bring the arrow closer to the edge on mobile */
    }

    .hero-cta {
        align-items: flex-start !important;
    }
}

@media (max-width: 576px) {

    .who-foundation button.carousel-control-prev {
        /* left: -60px; */
        left: 0px;
    }

    .who-foundation .foundaiotnitems {

        flex-wrap: wrap;
        justify-content: center;
    }

    #hero {
        min-height: 560px;
        height: 92vh;
    }

    .carousel-item {
        height: 92vh;
    }

    .hero-content {
        padding-top: 90px;
        padding-left: 22px;
        padding-right: 18px;
    }

    .hero-subtitle {
        font-size: 14px;
        letter-spacing: 0.8px;
    }

    .hero-title {
        font-size: 2.4rem;
        letter-spacing: 4px;
        line-height: 1.05;
        margin-bottom: 6px;
    }

    .hero-location {
        font-size: 12px;
        letter-spacing: 0.9px;
    }

    .hero-cta {
        gap: 12px;
    }

    .hero-cta .btn-hero-gold {
        font-size: 12px;
        padding: 12px 18px;
        min-width: 230px;
        text-align: center;
    }

    .hero-arrow-btn {
        display: none;
    }
}


.footer-main {
    background-color: #24110f;
    color: #ffffff;
    font-family: Arial, sans-serif;
    position: relative;
}

.footer-main h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-main p {
    font-size: 14px;
    margin-bottom: 5px;
    line-height: 1.6;
}

.footer-main .footer-logo h2 {
    color: #d4a34a;
    font-weight: bold;
    margin: 0;
}

.footer-main .footer-logo h3 {
    color: #d4a34a;
    letter-spacing: 2px;
}

/* Social */
.footer-main .social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #c26a2e;
    color: #fff;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 5px;
    transition: 0.3s;
}

.footer-main .social-icons a:hover {
    background-color: #e08a4c;
}

/* Bottom */
.footer-main .footer-bottom {
    border-top: 1px solid #6b2a2a;
    padding: 15px 0;
    font-size: 14px;
}

.footer-main .footer-bottom p {
    margin: 0;
}

.footer-logo img {
    width: 170px;
}


footer h3 {
    color: white;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 24px;
}

.underline {
    width: 300px;
    height: 1px;
    background: white;
    margin: 0 auto 20px;
}

/* footer h3+.underline {
    margin-bottom: 90px;
} */

footer h3 span {
    font-size: 26px;
    font-weight: 400;
    margin-top: 10px;
}

.qr-abs {
    position: absolute;
    right: 20px;
    top: 20px;
    /* max-width: 430px; */
}

.qr-abs img {
    width: 450px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-main .footer-bottom {
        text-align: center;
        gap: 10px;
    }
}




.kreeva-floor {
    position: relative;
    padding: 80px 0;
}

/* ===== IMAGE ===== */
.kreeva-floor .fp-image-container {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.kreeva-floor .plan-img {
    width: 100%;
    border-radius: 16px;
    transition: all 0.6s ease;
    filter: blur(10px) brightness(0.8);
    transform: scale(1.05);
    min-height: 560px;
    object-fit: cover;
    height: 560px;
    filter: blur(5px)
}

/* Active image clear */
.kreeva-floor .plan-img.active-img {
    filter: blur(5px) brightness(1);
    transform: scale(1);
}

/* ===== TEXT ===== */
.kreeva-floor .sub-title {
    font-size: 13px;
    letter-spacing: 3px;
    opacity: 1;
    text-transform: uppercase;
}

.kreeva-floor .main-title {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
    margin: 15px 0 25px;
}

/* ===== BUTTON ===== */
.kreeva-floor .floor-btn {
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 8px 22px;
    background: transparent;
    color: #fff;
    border-radius: 30px;
    margin-bottom: 35px;
    transition: 0.3s;
}

.kreeva-floor .floor-btn:hover {
    background: #fff;
    color: #000;
}

/* ===== PLAN ITEM ===== */
.kreeva-floor .plan-item {
    margin-bottom: 18px;
    cursor: pointer;
    transition: all 0.4s ease;
    padding: 12px;
    border-radius: 12px;
}

/* Glass effect */
.kreeva-floor .plan-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(6px);
}

/* Active */
.kreeva-floor .plan-item.active {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

/* ===== INNER FLEX ===== */
.kreeva-floor .plane_items-section {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

/* ===== ICON ===== */
.kreeva-floor .plane_icon {
    min-width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.kreeva-floor .plane_icon img {
    width: 22px;
    /* filter: invert(1); */
    transition: 0.3s;
}

/* Active Icon */
.kreeva-floor .plan-item.active .plane_icon {
    background: #fff;
}

.kreeva-floor .plan-item.active .plane_icon img {
    filter: invert(1);
}

/* ===== TEXT ===== */
.kreeva-floor .plan-item-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    position: relative;
}

/* Elegant underline */
.kreeva-floor .plan-item.active .plan-item-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #ffffff;
}

/* Description */
.kreeva-floor .plan-item p {
    font-size: 14px;
    opacity: 0.7;
    line-height: 1.6;
}





.btn-white-link {
    display: inline-block;
    color: var(--primary-maroon);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    box-shadow: rgba(128, 0, 0, 0.2) 0px 4px 15px;
    padding: 15px 40px;
    background: white;
    border: 2px solid var(--primary-maroon);
    border-radius: 4px;
    transition: var(--transition);
}

.btn-white-link:hover {
    background: var(--primary-maroon);
    color: white;
}



/* ===== Parent Section ===== */
.kreeva-collective {
    background: #ffffff;
    padding: 80px 0;
}

/* ===== Title ===== */
.kreeva-collective .cs-title {
    font-size: 34px;
    font-weight: 700;
    color: #000;
    letter-spacing: 1px;
}

/* Underline */
.kreeva-collective .cs-underline {
    width: 80px;
    height: 3px;
    background: var(--primary-maroon);
    margin-top: 12px;
    border-radius: 2px;
}

/* ===== Count Box ===== */
.kreeva-collective .count-box {
    padding: 25px 15px;
    transition: all 0.4s ease;
    border-radius: 12px;
}

/* Hover effect */
.kreeva-collective .count-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* ===== Numbers ===== */
.kreeva-collective .cs-count {
    color: var(--primary-maroon);
    font-weight: 800;
    font-size: 52px;
    margin-bottom: 10px;
    transition: 0.3s;
}

/* Animate number hover */
.kreeva-collective .count-box:hover .cs-count {
    transform: scale(1.05);
}

/* ===== Text ===== */
.kreeva-collective .cs-text {
    color: #111010;
    font-size: 15px;
    line-height: 0.5;
}

/* ===== Button ===== */
.kreeva-collective .cs-btn {
    background: var(--primary-maroon);
    color: #fff;
    padding: 12px 35px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

/* Button Hover */
.kreeva-collective .cs-btn:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
}


/* ================================================
   ENQUIRY MODAL — Premium Design
   ================================================ */

/* Backdrop */
#enquiryModal .modal-backdrop,
.modal-backdrop {
    backdrop-filter: blur(6px);
}

/* Modal Content */
.enquiry-modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.05);
    background: #ffffff;
    animation: modalSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.96);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Close Button */
.enquiry-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.06) !important;
    opacity: 1;
    transition: all 0.3s ease;
    filter: none;
}

.enquiry-modal-close:hover {
    background: rgba(0, 0, 0, 0.12) !important;
    transform: rotate(90deg);
}

/* Modal Header */
.enquiry-modal-header {
    text-align: center;
    padding: 30px 30px 30px;
    background: linear-gradient(145deg, var(--primary-maroon) 0%, #3d1a18 100%);
    color: rgb(255, 255, 255);
    position: relative;
}

.enquiry-modal-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    height: 40px;
    background: #ffffff;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

/* Close button visible on dark header */
.enquiry-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15) !important;
    opacity: 1 !important;
    filter: invert(1) grayscale(100%) brightness(200%);
    transition: all 0.3s ease;
    padding: 0;
}

.enquiry-modal-close:hover {
    background-color: rgba(255, 255, 255, 0.35) !important;
    transform: rotate(90deg) scale(1.1);
}


/* Modal Icon */
.enquiry-modal-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconPulse 2s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.enquiry-modal-icon i {
    font-size: 26px;
    color: #fff;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
    }
}

/* Modal Title */
.enquiry-modal-header .modal-title {
    font-family: 'ACaslonPro', serif;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 6px;
    color: #fff;
}

.enquiry-modal-subtitle {
    font-size: 13px;
    opacity: 0.85;
    margin-bottom: 0;
    font-weight: 300;
    letter-spacing: 0.3px;
}

/* Modal Body */
.enquiry-modal-body {
    padding: 30px 35px 40px !important;
}

/* Form Group */
.enquiry-form-group {
    margin-bottom: 20px;
}

.enquiry-form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #555;
    margin-bottom: 8px;
}

/* Input Wrapper with Icon */
.enquiry-input-wrap {
    position: relative;
}

.enquiry-input-wrap i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-maroon);
    font-size: 15px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.enquiry-input-wrap .form-control {
    padding: 14px 16px 14px 46px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    background: #fafafa;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.enquiry-input-wrap .form-control::placeholder {
    color: #aaa;
    font-weight: 300;
}

.enquiry-input-wrap .form-control:focus {
    border-color: var(--primary-maroon);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(36, 17, 15, 0.08);
    outline: none;
}

.enquiry-input-wrap .form-control:focus+i,
.enquiry-input-wrap .form-control:focus~i {
    opacity: 1;
}

/* Reverse icon position fix — icon comes before input */
.enquiry-input-wrap:has(.form-control:focus) i {
    opacity: 1;
    color: var(--primary-maroon);
}

/* Submit Button */
.enquiry-submit-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-maroon) 0%, #3d1a18 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-top: 8px;
    box-shadow: 0 6px 25px rgba(36, 17, 15, 0.25);
    font-family: 'Montserrat', sans-serif;
}

.enquiry-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(36, 17, 15, 0.35);
    background: linear-gradient(135deg, #3d1a18 0%, var(--primary-maroon) 100%);
}

.enquiry-submit-btn:active {
    transform: translateY(0);
}

.enquiry-submit-btn i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.enquiry-submit-btn:hover i {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 576px) {
    .enquiry-modal-body {
        padding: 20px 20px 30px !important;
    }

    .enquiry-modal-header {
        padding: 30px 20px 10px;
    }

    .enquiry-modal-header .modal-title {
        font-size: 22px;
    }

    .enquiry-input-wrap .form-control {
        padding: 12px 14px 12px 42px;
        font-size: 13px;
    }
}