:root {
    --primary-color: #ffffff;
    --accent-color: #e31e24;
    /* Red arrow color from image */
    --text-color: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --bg-dark: #1a1a1a;
    --font-serif: 'Playfair Display';
    --font-sans: 'Poppins', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    background-color: #ffffff;
    /* Changed to white to fix black flash */
    color: #ffffff;
    /* Default text color changed to dark for white background */
    overflow-x: hidden;
    line-height: 1.6;
}

#text {
    background-color: #FFF9F1;
    display: none;
}

/* Desktop / Mobile Video Toggle */
.desktop-video {
    display: block;
}

.mobile-video {
    display: none;
}

@media (max-width: 768px) {
    .desktop-video {
        display: none;
    }

    .mobile-video {
        display: block;
    }
    .hide-mobile{
    display: none;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Move content to bottom */
    align-items: center;
    text-align: center;
    padding-bottom: 10vh;
    /* Add spacing from bottom */
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

/* Navbar / Logo */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-color);
}

.brand-name {
    font-size: 14px;
    letter-spacing: 6px;
    font-weight: 300;
    opacity: 0.9;
}

.project-name {
    font-family: var(--font-serif);
    font-size: 56px;
    font-weight: 500;
    line-height: 0.8;
    margin: 5px 0;
    letter-spacing: 4px;
    text-transform: none;
    display: flex;
    align-items: flex-end;
}

.red-dot {
    position: relative;
    color: var(--text-color);
}

.red-dot::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

.tagline {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
    padding-top: 5px;
}

.tagline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 1px;
    background-color: var(--text-color);
    opacity: 0.5;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 0 20px;
    color: #ffffff;
    margin-top: 20rem;
    /* Restore white text for hero visibility */
}

.rera-id {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 300;
    opacity: 0.8;
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: clamp(48px, 10vw, 100px);
    line-height: 0.92;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 20px;
}

.mobile-break{
    display: none;
}

.price-starting {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Enquire Button */
.enquire-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #fff5f5;
    /* Revealed red-tinted BG */
    color: #ffffff;
    padding: 6px 6px 6px 30px;
    border-radius: 50px;
    border: none;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    margin: 0 auto;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
    border: 2px solid #EF4136;
}

/* The Red Pill (Default State) - Slides right toward orb */
.enquire-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #EF4136;
    z-index: -1;
    transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
    border-radius: 50px;
}

/* The White Pill (Hover Reveal) - Also slides right from the left */
.enquire-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #fff5f5;
    z-index: -2;
    transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
    border-radius: 50px;
}

.enquire-btn span {
    transition: color 0.4s ease;
    position: relative;
    z-index: 2;
}

.arrow-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
    transition: all 0.4s cubic-bezier(0.76, 0, 0.24, 1);
    position: relative;
    z-index: 2;
    overflow: hidden;
    background-color: transparent;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* The White Orb (Default state) - Sinks/slides right and fades */
.arrow-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: -1;
    transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.5s ease;
}

/* The Red that fills the circle - Sinks in from center */
.arrow-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #EF4136;
    transition: all 0.7s cubic-bezier(0.76, 0, 0.24, 1);
    z-index: -2;
    border-radius: 50%;
    transform: scale(0);
}

.arrow-icon svg path {
    stroke: #EF4136;
    transition: stroke 0.4s ease;
}

/* Hover Effect */
.enquire-btn:hover {
    color: #292121;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(239, 65, 54, 0.2);
}

.enquire-btn:hover::before {
    transform: translateX(100%) scale(0.9);
    opacity: 0.5;
}

.enquire-btn:hover::after {
    transform: translateX(100%);
}

.enquire-btn:hover .arrow-icon {
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.1);
}

.enquire-btn:hover .arrow-icon svg path {
    stroke: #ffffff;
}

.enquire-btn:hover .arrow-icon::after {
    transform: translateX(100%);
    opacity: 0;
}

.enquire-btn:hover .arrow-icon::before {
    transform: scale(1);
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 100;
}

.enquire-tab {
    background: #fffcfcd0;
    backdrop-filter: blur(10px);
    padding: 20px 10px;
    border-radius: 12px 0 0 12px;
    cursor: pointer;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    border: 1px solid #000000;
    color: #000000;
    border-right: none;
    transition: var(--transition);
}


.enquire-tab span {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.whatsapp-btn {
    /* background: #25D366; */
    backdrop-filter: blur(10px);
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px 0 0 12px;
    cursor: pointer;
    border: 1px solid #25D366;
    ;
    border-right: none;
    transition: var(--transition);
}

.enquire-tab:hover {
    background: rgba(234, 156, 156, 0.9);
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .hero {
        justify-content: center;
        padding-bottom: 0;
    }

    .project-name {
        font-size: 36px;
    }

    .main-title {
        font-size: 48px;
        line-height: 1.3;
    }

    .price-starting {
        font-size: 18px;
    }

    .floating-actions {
        top: auto;
        bottom: 20px;
        transform: none;
        flex-direction: row;
        right: 20px;
    }

    .enquire-tab {
        display: none;
    }

    .whatsapp-btn {
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-break {
        display: block;
    }
}

/* Project Features Section */
.project-features {
    background-color: white;
    padding: 60px 0;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.features-banner {
    max-width: 1200px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.features-banner-inner {
    overflow: hidden;
}

.features-banner-img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 1.5s ease;
}

.features-banner:hover .features-banner-img {
    transform: scale(1.06);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 20px;
    padding: 0 20px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    padding: 20px;
}

.feature-icon {
    color: #555;
    transition: transform 0.6s ease, color 0.6s ease;
}

.feature-item:hover .feature-icon {
    transform: translateY(-5px);
    color: var(--accent-color);
}

.feature-text {
    display: flex;
    flex-direction: column;
}

.feature-value {
    font-size: 18px;
    font-weight: 500;
    color: #333;
}

.feature-label {
    font-size: 12px;
    color: #888;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-divider {
    width: 1px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    .features-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px 12px;
    }
}

@media (max-width: 600px) {
    .project-features {
        padding: 40px 0;
    }

    .features-banner {
        margin: 0 auto 30px;
        padding: 0 12px;
    }

 

    .features-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 8px;
        padding: 0 12px;
    }

    .feature-item {
        padding: 10px 6px;
        gap: 10px;
    }

    .feature-icon svg,
    .feature-icon img {
        width: 32px;
        height: 32px;
    }

    .feature-value {
        font-size: 14px;
        line-height: 1.3;
    }

    .feature-label {
        font-size: 10px;
        letter-spacing: 0.5px;
    }
}

/* Biophilic Section */
.biophilic-section {
    background-color: #FFFCFC;
    padding: 80px 0;
    overflow: hidden;
}

.biophilic-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.biophilic-title {
    font-family: var(--font-serif);
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 400;
}

.biophilic-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 20px;
}

.stat-item {
    text-align: center;
    min-width: 150px;
}

.stat-value {
    display: block;
    font-family: var(--font-sans);
    font-size: 36px;
    font-weight: 400;
    color: #333;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.1);
}

/* Carousel Wrapper with Cloud Effect */
.carousel-wrapper {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
}

/* Side gradient clouds removed */

@keyframes carousel-marquee {
    from {
        transform: translateX(0);
    }

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

.carousel-track {
    display: flex;
    /* Removed gap to fix infinite loop math; using margin-right on items instead */
    padding: 20px 0;
    width: max-content;
    animation: carousel-marquee 120s linear infinite;
    will-change: transform;
    /* Hardware acceleration to prevent jitter */
    transform: translateZ(0);
    backface-visibility: hidden;
}

.carousel-track.is-paused {
    animation-play-state: paused;
}

.carousel-item {
    flex: 0 0 75vw;
    max-width: 900px;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #000;
    /* Using margin-right instead of gap for seamless infinite loop math */
    margin-right: 20px;
    /* Ensure hardware acceleration for smooth movement */
    transform: translateZ(0);
}

.carousel-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* Hardware acceleration and stability to reduce jitter during loop */
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

@media (max-width: 992px) {
    .carousel-item {
        flex: 0 0 85vw;
        height: 300px;
    }
}


@media (max-width: 992px) {
    .biophilic-stats {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 40px;
    }

    .stat-divider {
        width: 100px;
        height: 1px;
        background-color: #E4D5B5;
        align-self: center;
    }

    .carousel-item {
        flex: 0 0 85vw;
        height: 300px;
    }
}

/* Quotes Section */
.quotes-section {
    position: relative;
    height: 80vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: #000;
}

.section-video {
    position: absolute;
    top: 40%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.6;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 20%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.quotes-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.quote-text {
    font-family: var(--font-sans);
    font-size: clamp(24px, 4vw, 42px);
    line-height: 1.4;
    font-weight: 200;
    color: #fff;
    letter-spacing: 0.5px;
}

.quote-text-mobile {
    display: none;
}


@media screen and (max-width: 480px) {
    .qquote-text-mobile {
        font-size: 18px;
        font-family: var(--font-sans);
        line-height: 1.4;
        font-weight: 200;
        color: #fff;
        letter-spacing: 0.5px;
    }
}

/* Architect Section */
.architect-section {
    background-color: #fff;
    padding: 100px 0;
    color: #333;
}

.architect-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 0 20px;
}

.architect-text {
    flex: 1;
}

.section-title {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 34px;
    margin-bottom: 30px;
    line-height: 1.2;
    color: #1a1a1a;
}

.architect-note p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
    text-align: left;
}

.architect-note strong {
    color: #1a1a1a;
    font-weight: 600;
}

.architect-visual {
    flex: 1;
}

.video-wrapper {
    position: relative;
    width: 530px;
    height: 530px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    opacity: 1;
}

.rounded-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.architect-info {
    position: relative;
    transform: translate(0%, -170%);
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.architect-info h3 {
    font-size: 20px;
    font-weight: 500;
}

.architect-info p {
    font-size: 14px;
    opacity: 0.9;
}

/* Appointment Section */
.appointment-section {
    background-color: #fcfaf6;
    /* Off-white / Cream */
    padding: 100px 0;
    color: #333;
}

.appointment-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 100px;
    padding: 0 20px;
}

.appointment-visual {
    flex: 1;
}

.appointment-video-frame {
    position: relative;
    width: 530px;
    height: 530px;
    border-radius: 30px;
    overflow: hidden;
    /* Blue border from image */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    opacity: 1;
}

.appointment-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.appointment-overlay {
    /* position: absolute; */
    /* top: 50%; */
    /* left: 50%; */
    transform: translate(-50%, -50%);
    text-align: center;
}

.appointment-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.appointment-tag {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.appointment-form-side {
    flex: 1;
}

.form-title {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 18px 25px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-sans);
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.submit-btn {
    background-color: var(--accent-color);
    color: #fff;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #b3161b;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(227, 30, 36, 0.3);
}

@media (max-width: 992px) {

    .architect-container,
    .appointment-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .video-wrapper,
    .appointment-video-frame {
        width: 100%;
        max-width: 630px;
        height: auto;
        aspect-ratio: 1/1;
        margin: 0 auto;
    }
}

/* Scroll Animations */
section {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.architect-text,
.architect-visual,
.appointment-visual,
.appointment-form-side {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

section.is-visible .architect-text,
section.is-visible .appointment-visual {
    opacity: 1;
    transition-delay: 0.2s;
}

section.is-visible .architect-visual,
section.is-visible .appointment-form-side {
    opacity: 1;
    transition-delay: 0.4s;
}

/* Legacy Section */
.legacy-section {
    padding: 100px 0 0;
    background-color: #fff;
    overflow: hidden;
}

.legacy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.legacy-logo {
    max-width: 180px;
    margin-bottom: 30px;
}

.legacy-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #333;
}

.legacy-title .accent-text {
    color: var(--accent-color);
}

.legacy-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

.legacy-divider {
    width: 60px;
    height: 2px;
    background-color: var(--accent-color);
    margin-bottom: 30px;
}

.legacy-text {
    font-size: 18px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
}

.legacy-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.legacy-banner {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.legacy-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .legacy-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .legacy-title {
        font-size: 36px;
    }

    .legacy-banner {
        height: 250px;
    }
}

/* Showcase & Banner Sections */
.showcase-section {
    background-color: #ffffff;
    padding: 0;
    overflow: hidden;
}

.showcase-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    /* align-items: stretch; */
    /* min-height: 684px; */
}

.showcase-content {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px 5% 30px 10%;
}

.showcase-logo {
    margin: 0px;
}



.logo-img {
    height: 66px;
    width: auto;
}

.showcase-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(24px, 2vw, 38px);
    line-height: 1.2;
    color: #474747;
    margin-bottom: 12px;
    font-weight: 700;
}

.showcase-title .accent-text {
    color: #F68C59;
    display: block;
}

.showcase-body {
    font-size: 16px;
    text-align: left;
    line-height: 1.8;
    color: #474747;
}

.showcase-body p {
    margin-bottom: 18px;
}

.showcase-body .lead-text {
    font-weight: 600;
}

.showcase-image {
    flex: 0 0 50%;
    /* align-self: stretch; */
}

.showcase-image img {
    width: 100%;
    height: 100%;
    /* object-fit: contain; */
    display: block;
}

.bottom-banner-section {
    width: 100%;
    line-height: 0;
    /* Remove any inline spacing */
}

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


@media (max-width: 992px) {
    .showcase-container {
        flex-direction: column;
        /* padding: 0 20px; */
        text-align: center;
    }



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

/* Location Section */
.location-section {
    padding: 100px 0;
    background-color: #fff;
    text-align: center;
}

.location-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #333;
    margin-bottom: 20px;
}

.location-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    max-width: 800px;
    margin: 0 auto 60px;
}

.map-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    background-color: #f0f0f0;
    /* Placeholder color */
}

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

/* @media (max-width: 480px) {
    .location-section {
        padding: 0;
    }
} */

/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
    align-items: flex-end;
}

.enquire-now-btn {
    background-color: #999;
    color: #fff;
    padding: 25px 12px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 12px 0 0 12px;
    transition: background-color 0.3s;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.enquire-now-btn:hover {
    background-color: #e67575;
}

.whatsapp-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px 0 0 12px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, background-color 0.3s;
}

.whatsapp-btn img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    /* Make it white */
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background-color: #e9f2ec;
    ;
    /* Darker green on hover */
}

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

    .location-subtitle {
        font-size: 16px;
    }

    .floating-actions {
        bottom: 20px;
        top: auto;
        transform: none;
        right: 10px;
    }
}

/* Location Section */
.location-section {
    padding: 50px 0 0 0;
    background-color: #ffffff;
    text-align: center;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-section .section-title {
    margin-bottom: 60px;
}

.location-section .container {
    max-width: 1200px;
}

.map-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-container img {
    width: 100%;
    height: auto;
    /* border-radius: 20px; */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    display: block;
    transition: var(--transition);
}


@media (max-width: 992px) {
    .location-section {
        padding: 80px 0;
    }

    .map-container {
        padding: 0 20px;
    }

    .map-container img {
        /* border-radius: 15px; */
    }
}

/* Map Section Typography */
.section-title-map {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 44px;
    line-height: 1;
    /* 100% */
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.section-title-map-body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    /* 100% */
    text-align: center;
    color: #666;
    max-width: 934px;
    margin: 0 auto 40px;
}

/* Get Directions Button */
.directions-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background-color: #f5f9e8;
    /* Revealed white BG */
    color: #ffffff;
    padding: 6px 6px 6px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    margin-top: 40px;
    transition: all 0.4s ease;
    border: 2px solid #98b417;
    overflow: hidden;
    z-index: 1;
}

/* The Green Pill (Default State) - Slides right toward orb */
.directions-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #98b417;
    z-index: -1;
    transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
    border-radius: 50px;
}

/* The White Pill (Hover Reveal) - Also slides right from the left */
.directions-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #f5f9e8;
    z-index: -2;
    transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
    border-radius: 50px;
}

.directions-btn span {
    transition: color 0.4s ease;
    position: relative;
    z-index: 2;
}

.arrow-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
    transition: all 0.4s cubic-bezier(0.76, 0, 0.24, 1);
    position: relative;
    z-index: 2;
    overflow: hidden;
    background-color: transparent;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    /* Soft outer shadow */
}

/* The White Orb (Default state) - Sinks/slides right and fades */
.arrow-circle::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: -1;
    transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.5s ease;
}

/* The Green that fills the circle - Sinks in from center */
.arrow-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #98b417;
    transition: all 0.7s cubic-bezier(0.76, 0, 0.24, 1);
    z-index: -2;
    border-radius: 50%;
    transform: scale(0);
    /* Start from nothing in the center */
}

/* Hover Effect */
.directions-btn:hover {
    color: #0e311f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.directions-btn:hover::before {
    transform: translateX(100%) scale(0.9);
    /* Slide right and shrink slightly */
    opacity: 0.5;
    /* Fade out as it hits orb */
}

.directions-btn:hover::after {
    transform: translateX(100%);
    /* White slides in from left */
}

.directions-btn:hover .arrow-circle {
    color: #ffffff;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.1);
    /* Inset shadow for 'sinking' feel */
}

.directions-btn:hover .arrow-circle::after {
    transform: translateX(100%);
    opacity: 0;
}

.directions-btn:hover .arrow-circle::before {
    transform: scale(1);
    /* Green sinks/fills circle from center */
}

/* Experience Rise Section */
.experience-section {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

.experience-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 400;
    margin-bottom: 50px;
    color: #333;
    text-align: center;
}

.experience-title-logo {
    height: 3.5em;
    width: auto;
    vertical-align: middle;
    display: inline-block;
    margin-bottom: 38px;
}

.experience-form {
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {

    .experience-title-logo {
        margin-bottom: 25px !important;
    }

    .experience-section,
    .experience-title {
        text-align: center;
    }

    .experience-form {
        margin: 0;
    }
}

.form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.form-group {
    flex: 1;
    position: relative;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px 25px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #333;
    background-color: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #EF4136;
    box-shadow: 0 0 0 4px rgba(239, 65, 54, 0.05);
}

.form-group input::placeholder {
    color: #aaa;
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 6px;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23AAA' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    pointer-events: none;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.submit-btn {
    margin-top: 20px;
    background-color: #EF4136;
    color: white;
    padding: 15px 45px;
    border-radius: 10px;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.76, 0, 0.24, 1);
    box-shadow: 0 4px 15px rgba(239, 65, 54, 0.3);
}

.submit-btn:hover {
    background-color: #d6382e;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(239, 65, 54, 0.4);
}

.submit-btn svg {
    transition: transform 0.3s ease;
}

.submit-btn:hover svg {
    transform: translateX(5px);
}

/* Footer Section */
.main-footer {
    background-color: #FFF9F1;
    color: #333;
    /* overflow: hidden; */
}

.footer-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: space-between;
    align-items: flex-start;
    padding: 60px 40px;
}

.footer-branding {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-logo-img {
    max-width: 280px;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .footer-logo-img {
        max-width: 220px;
    }

    .showcase-logo {
        margin: 0 auto 30px auto;
    }
}

.brand-name {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 3px;
    color: #444;
}

.brand-icon svg {
    width: 32px;
    height: 32px;
}

.tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    color: #888;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tagline::before {
    content: '';
    width: 60px;
    height: 1px;
    background-color: #98b417;
    opacity: 0.6;
}

.footer-contact {
    flex: 1;
}

.footer-contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 35px;
    display: inline-block;
    position: relative;
    color: #333;
}

.footer-contact-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 1px;
    background-color: #333;
    opacity: 0.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-icon {
    color: #333;
    margin-top: 4px;
    opacity: 0.8;
}

.contact-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.4;
    margin: 0;
    color: #444;
    letter-spacing: 0.2px;
}

/* Media Queries for Footer & Experience */
@media (max-width: 991px) {
    .footer-container {
        flex-direction: column;
        gap: 60px;
        padding: 0 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .footer-contact-title {
        font-size: 30px;
    }
}

@media (max-width: 768px) {

    .experience-section,
    .experience-title {
        text-align: left;
    }

    .experience-form {
        margin: 0;
    }

    .experience-section {
        padding: 60px 20px;
    }

    .experience-title {
        font-size: 24px;
        margin-bottom: -20px;
    }

    .main-footer {
        padding: 30px 20px;
    }

    .footer-branding {
        gap: 30px;
    }

    .brand-name {
        font-size: 18px;
    }

    .contact-text p {
        font-size: 14px;
    }

    .directions-btn {
        font-size: 14px;
        padding: 5px 5px 5px 20px;
        gap: 15px;
    }

    .arrow-circle {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 767px) {

.features-banner-inner img{
border-radius:15px !important;
}

    /* Reduce left/right padding on mobile */
    .project-features {
        padding: 30px 10px;
    }

    .features-container {
        padding: 0 10px;
    }

    .biophilic-section {
        padding: 20px 10px;
    }

    .biophilic-container {
        padding: 0 10px;
    }

    .quotes-section {
        height: 50vh;
    }

    .architect-section {
        padding: 10px 10px;
    }

    .appointment-section {
        padding: 50px 10px;
    }

    .appointment-container {
        padding: 0 10px;
    }



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

    .location-section .container {
        padding: 0 15px;
    }

    .experience-section {
        padding: 20px 15px;
        text-align: center;
    }

    .experience-title {
        text-align: center;
        font-family: 'Playfair Display', serif;
        margin-bottom: -20px !important;
    }

    .footer-container {
        padding: 30px 15px;
    }

    /* Architect Section Mobile Adjustments */
    .architect-container {
        flex-direction: column-reverse;
        gap: 30px;
        padding: 0 18px;
    }

    .video-wrapper {
        width: 100%;
        height: auto;
        aspect-ratio: 1/1;
    }

    .architect-text {
        text-align: left;
    }

    .architect-section .section-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .architect-note p {
        font-size: 14px;
        line-height: 1.6;
    }

    /* Showcase Section Mobile Adjustments */
    .showcase-container {
        flex-direction: column-reverse;
        gap: 30px;
        padding: 0 20px;
    }

    .showcase-image {
        width: 100%;
    }

    .showcase-image img {
        max-width: 100%;
    }

    .showcase-content {
        padding: 0px !important;
        text-align: left;
    }

    .logo-img {
        height: 50px;
    }

    .showcase-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .showcase-body {
        font-size: 14px;
    }

    .showcase-body p {}

    .bottom-banner-section {
        margin-top: -1px;
        /* Avoid gap */
    }

    /* Location Section Mobile Adjustments */
    .location-section {
        padding: 40px 0 20px;
        display: block;
    }

    .section-title-map {
        font-size: 32px !important;
        margin-bottom: 15px !important;
        padding: 0 18px;
    }

    .section-title-map-body {
        font-size: 16px !important;
        line-height: 1.4 !important;
        margin-bottom: 30px !important;
        padding: 0 18px;
        max-width: 100% !important;
    }

    .map-container {
        max-width: 100% !important;
        padding: 0 0px !important;
        border-radius: 0px;

    }

    .map-container img {
        border-radius: 0px;
        /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); */
    }

    .directions-btn {
        margin-top: 30px;
    }
}

/* Enquire Overlay (vanilla — index.html) */
.enquire-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.enquire-overlay.show {
    display: flex;
}

.enquire-overlay-dialog {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    width: 100%;
    max-width: 480px;
    color: #ffffff;
    animation: overlayFadeIn 0.25s ease;
}

@keyframes overlayFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.enquire-overlay-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.enquire-overlay-title {
    font-family: var(--font-sans);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0;
}

.enquire-overlay-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s;
}

.enquire-overlay-close:hover {
    color: #ffffff;
}

.enquire-overlay-body {
    padding: 28px;
}

.enquire-overlay-body .form-group {
    margin-bottom: 16px;
}

.enquire-overlay-body .form-group input,
.enquire-overlay-body .form-group select {
    width: 100%;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    border-radius: 8px;
    padding: 14px 16px;
    font-family: var(--font-sans);
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.enquire-overlay-body .form-group input::placeholder {
    color: rgba(255, 255, 255, 0.45) !important;
}

.enquire-overlay-body input:focus,
.enquire-overlay-body select:focus {
    border-color: rgba(246, 140, 89, 0.6);
    box-shadow: 0 0 0 3px rgba(246, 140, 89, 0.15);
}

.enquire-overlay-body .form-group select {
    color: rgba(255, 255, 255, 0.45) !important;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.enquire-overlay-body .form-group select:not(:invalid),
.enquire-overlay-body .form-group select.has-value {
    color: #ffffff !important;
}

.enquire-overlay-body .select-wrapper::after {
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='rgba(255,255,255,0.5)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.enquire-overlay-body select option {
    background: #1a1a1a;
    color: #ffffff;
}

.enquire-overlay-body .submit-btn {
    width: 100%;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
}

/* Enquire Modal (Bootstrap — index-bootstrap.html) */
.enquire-modal-content {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    color: #ffffff;
}

.enquire-modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 28px 20px;
}

.enquire-modal-title {
    font-family: var(--font-sans);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
}

.enquire-modal-body {
    padding: 28px;
}

.enquire-modal-body .form-group {
    margin-bottom: 16px;
}

.enquire-modal-body .form-control,
.enquire-modal-body .form-select {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-radius: 8px;
    padding: 14px 16px;
}

.enquire-modal-body .form-control::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.enquire-modal-body .form-control:focus,
.enquire-modal-body .form-select:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(246, 140, 89, 0.6);
    box-shadow: 0 0 0 3px rgba(246, 140, 89, 0.15);
    color: #ffffff;
}

.enquire-modal-body .form-select {
    color: rgba(255, 255, 255, 0.45);
}

.enquire-modal-body .form-select option {
    background: #1a1a1a;
    color: #ffffff;
}

.enquire-modal-body .form-select option:not([disabled]) {
    color: #ffffff;
}

.enquire-modal-body .submit-btn {
    margin-top: 8px;
    justify-content: center;
    gap: 10px;
}