/* === RESET & LUXURY COLOR PALETTE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    /* Core Palette */
    --brown-main: #661b00;
    --orange-main: #f0670c;
    --white: #ffffff;

    /* Galaxy Theme Browns */
    --galaxy-deep: #4f1a07;
    --galaxy-mid: #581f0a;
    --cream-bg: #FCFBF9;

    /* Text & Lines */
    --text-muted: #8A6D5F;
    --line-light: rgba(85, 32, 6, 0.1);
    --line-dark: rgba(255, 255, 255, 0.15);

    /* Shadows */
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
    --shadow-soft: 0 10px 30px rgba(85, 32, 6, 0.06);

    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--cream-bg);
    color: var(--brown-main);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
}

/* === TYPOGRAPHY & SPACING === */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 10;
}

section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.micro {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--orange-main);
    margin-bottom: 20px;
    background: rgba(240, 103, 12, 0.1);
    padding: 6px 15px;
    border-radius: 50px;
}

.heading-lg {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    color: var(--brown-main);
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 25px;
}

.heading-lg strong {
    font-weight: 800;
    display: block;
}

.heading-light {
    color: var(--white);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--brown-main);
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

h2.section-title.heading-light {
    color: #ffffff;
}

.container .dev-stat-item h3 {
    font-weight: 700;
    font-style: normal;
}

.section-title span {
    color: var(--orange-main);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 50px;
    font-weight: 400;
}

.body-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

/* === ELEGANT BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 45px;
    background: var(--orange-main);
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background: #d95a09;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(240, 103, 12, 0.4);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--orange-main);
    color: var(--orange-main);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--orange-main);
    color: var(--white);
}

/* === URGENCY BAR === */
.urgency-bar {
    background: var(--white);
    color: var(--brown-main);
    text-align: center;
    padding: 12px 5%;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 101;
    position: relative;
    letter-spacing: 0.5px;
}

.urgency-bar span {
    color: var(--orange-main);
    font-weight: 800;
}

/* === HEADER === */
header {
    position: absolute;
    top: 44px;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid var(--line-dark);
    transition: var(--transition);
}

header.sticky {
    position: fixed;
    top: 0;
    background: #4f1a07;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
    font-size: 51px;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo span {
    font-weight: 300;
    color: var(--orange-main);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hamburger-btn {
    background: rgb(255 255 255 / 0%);
    border: 1px solid rgb(0 0 0 / 0%);
    color: #ffffff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 2rem;
}

.hamburger-btn:hover {
    background: rgba(240, 103, 12, 0.2);
    border-color: var(--orange-main);
    color: var(--orange-main);
}

/* Full Screen Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #4f1a07;
    backdrop-filter: blur(20px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.menu-close {
    position: absolute;
    top: 30px;
    right: 5%;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.05);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.menu-close:hover {
    color: var(--orange-main);
    background: rgba(240, 103, 12, 0.1);
    transform: rotate(90deg);
}

.menu-links {
    list-style: none;
    text-align: center;
}

.menu-links li {
    margin-bottom: 30px;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.menu-overlay.active .menu-links li {
    transform: translateY(0);
    opacity: 1;
}

.menu-overlay.active .menu-links li:nth-child(1) {
    transition-delay: 0.1s;
}

.menu-overlay.active .menu-links li:nth-child(2) {
    transition-delay: 0.2s;
}

.menu-overlay.active .menu-links li:nth-child(3) {
    transition-delay: 0.3s;
}

.menu-overlay.active .menu-links li:nth-child(4) {
    transition-delay: 0.4s;
}

.menu-links a {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 300;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.menu-links a:hover {
    color: var(--orange-main);
    transform: scale(1.05);
}

/* === PURE TEXT GALAXY HERO === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--galaxy-deep);
    padding-top: 160px;
    padding-bottom: 80px;
    position: relative;
}

/* Faint Rotating Orbit Rings */
.orbit-ring {
    position: absolute;
    border: 1px solid rgba(240, 103, 12, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.ring-1 {
    width: clamp(600px, 70vw, 1000px);
    height: clamp(600px, 70vw, 1000px);
    animation: rotate 100s linear infinite;
}

.ring-2 {
    width: clamp(900px, 110vw, 1500px);
    height: clamp(900px, 110vw, 1500px);
    border-style: dashed;
    animation: rotate 150s linear infinite reverse;
    opacity: 0.4;
}

@keyframes rotate {
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Supernova Dust Particles */
.dust {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--orange-main);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--orange-main);
    opacity: 0;
    animation: floatUp 8s infinite ease-in-out;
}

@keyframes floatUp {
    0% {
        transform: translateY(100px) scale(0);
        opacity: 0;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-100px) scale(1.5);
        opacity: 0;
    }
}

/* Layout Grid for Hero */
.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-text-area {
    text-align: left;
}

.hero-text-area .body-text {
    margin: 0;
    max-width: 500px;
    color: rgba(255, 255, 255, 0.7);
}

.hero-pricing-badge {
    margin-top: 30px;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid var(--orange-main);
    backdrop-filter: blur(10px);
    display: inline-block;
    text-align: left;
}

.hero-pricing-badge p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.hero-pricing-badge h2 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
}

.hero-legacy-text {
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
}

/* === HERO FORM WRAPPER & FLOATING ASTRO === */
.hero-form-container {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    z-index: 10;
}

.floating-astro {
    top: -100px;
    margin-bottom: -11px;
    right: -30px;
    height: auto;
    z-index: 999;
    pointer-events: none;
}

@keyframes floatAstro {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(3deg);
    }
}

@keyframes floatUpDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.amenity-astro-left {
    position: absolute;
    left: 5%;
    top: -20px;
    width: 300px;
    height: auto;
    z-index: 10;
    pointer-events: none;
    animation: floatUpDown 6s ease-in-out infinite;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.5));
}

@keyframes floatAstroRight {

    0%,
    100% {
        transform: translateY(0) rotate(-5deg);
    }

    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

.amenity-astro-right {
    position: absolute;
    right: 5%;
    top: -20px;
    width: 300px;
    height: auto;
    z-index: 10;
    pointer-events: none;
    animation: floatAstroRight 6.5s ease-in-out infinite;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.5));
}

@media (max-width: 1024px) {
    .amenity-astro-left {
        width: 120px;
        left: -10px;
    }

    .amenity-astro-right {
        width: 120px;
        right: -10px;
    }
}

@media (max-width: 768px) {
    .amenity-astro-left {
        width: 160px;
        top: -30px;
    }

    .amenity-astro-right {
        width: 160px;
        top: -30px;
    }
}

/* === PREMIUM LIGHT THEMED HERO FORM === */
.hero-form-wrap {
    position: relative;
    z-index: 2;
    background: #fcfcfd;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 20px 40px 40px 40px;
    border-radius: 8px;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
}

.hero-form-wrap h3 {
    color: var(--brown-main);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.hero-form-wrap p.sub-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
    font-weight: 400;
}

/* Sleek, Borderless Light Inputs */
.form-group {
    position: relative;
    margin-bottom: 25px;
    text-align: left;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--line-light);
    color: var(--brown-main);
    font-size: 1.05rem;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
    border-radius: 0;
    font-weight: 500;
}

.form-group input::placeholder {
    color: #bbbbbb;
    font-weight: 400;
}

.form-group select {
    appearance: none;
    cursor: pointer;
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus {
    border-bottom-color: var(--orange-main);
    color: var(--brown-main);
}

.form-group i.icon {
    position: absolute;
    right: 0;
    top: 12px;
    color: var(--text-muted);
    font-size: 1.2rem;
    pointer-events: none;
    opacity: 0.5;
    transition: var(--transition);
}

.form-group input:focus~i.icon,
.form-group select:focus~i.icon {
    color: var(--orange-main);
    opacity: 1;
}

.trust-indicator {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.trust-indicator span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.trust-indicator i {
    color: var(--orange-main);
    font-size: 1.1rem;
}

/* === PROJECT OVERVIEW === */
.overview-section {
    background: var(--white);
    text-align: center;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 60px;
    border-top: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
}

.overview-item {
    padding: 60px 20px;
    text-align: center;
    border-right: 1px solid var(--line-light);
}

.overview-item:last-child {
    border-right: none;
}

.overview-item i {
    font-size: 2.5rem;
    color: var(--orange-main);
    margin-bottom: 20px;
    font-weight: 300;
}

.overview-item h4 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--brown-main);
    margin-bottom: 10px;
}

.overview-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === PRICING (GATED / LOCKED) === */
.pricing-section {
    background: var(--cream-bg);
    text-align: center;
}

.pricing-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid var(--line-light);
    text-align: left;
}

.pricing-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.pricing-row.reverse {
    grid-template-columns: 1fr 1.2fr;
}

.price-img-wrap {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.price-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(6px) grayscale(0.2);
    transition: var(--transition);
}

/* The Lock */
.lock-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.lock-icon {
    background: var(--white);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(240, 103, 12, 0.3);
    border: 2px solid var(--orange-main);
    margin-bottom: 15px;
    animation: pulseLock 2s infinite;
}

@keyframes pulseLock {
    0% {
        box-shadow: 0 0 0 0 rgba(240, 103, 12, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(240, 103, 12, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(240, 103, 12, 0);
    }
}

.lock-overlay span {
    background: var(--brown-main);
    color: var(--white);
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.price-info h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brown-main);
    margin-bottom: 20px;
}

.price-specs {
    list-style: none;
    margin-bottom: 40px;
}

.price-specs li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--line-light);
    font-weight: 500;
}

.price-specs i {
    color: var(--orange-main);
    font-size: 1.4rem;
}

.price-amt {
    font-size: 2rem;
    font-weight: 600;
    color: var(--orange-main);
    margin-bottom: 15px;
    line-height: 1;
}

.price-amt small {
    font-size: 1rem;
    color: var(--text-muted);
    display: block;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* === AMENITIES (EDGE-TO-EDGE) === */
.amenities-section {
    background: var(--galaxy-deep);
    color: var(--white);
    text-align: center;
}

.amenity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--line-dark);
    margin-top: 60px;
}

.amenity-item {
    position: relative;
    height: 450px;
    background: var(--galaxy-mid);
    overflow: hidden;
    cursor: pointer;
}

.amenity-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: var(--transition);
}

.amenity-item:hover img {
    opacity: 1;
    transform: scale(1.05);
}

.amenity-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 40px;
    width: 100%;
    background: linear-gradient(to top, var(--galaxy-deep), transparent);
    text-align: left;
}

.amenity-content i {
    font-size: 2.5rem;
    color: var(--orange-main);
    margin-bottom: 15px;
    font-weight: 300;
}

.amenity-content h4 {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 30px;
}

/* === LOCATION SECTION === */
.location-section {
    background: var(--white);
    text-align: center;
}

.loc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
    text-align: left;
}

.loc-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.loc-acc-item {
    border-bottom: 1px solid var(--line-light);
    padding-bottom: 5px;
}

.loc-acc-btn {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    padding: 15px 0;
    cursor: pointer;
    font-family: inherit;
}

.loc-acc-btn i.cat-icon {
    color: var(--orange-main);
    font-size: 1.5rem;
    margin-right: 15px;
}

.loc-acc-btn span.cat-title {
    flex-grow: 1;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--brown-main);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.loc-acc-btn i.toggle-icon {
    color: var(--orange-main);
    font-size: 1.2rem;
    transition: var(--transition);
}

.loc-acc-btn.active i.toggle-icon {
    transform: rotate(180deg);
}

.loc-acc-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-left: 45px;
}

.loc-inner-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 15px;
}

.loc-inner-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
    padding-bottom: 8px;
}

.loc-inner-list li:last-child {
    border-bottom: none;
}

.loc-inner-list span.time {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--orange-main);
    background: rgba(240, 103, 12, 0.1);
    padding: 4px 12px;
    border-radius: 50px;
}

.map-container {
    height: 500px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(0.2);
}

/* === ABOUT DEVELOPER / TRUST SECTION === */
.developer-section {
    background: var(--cream-bg);
    text-align: center;
    border-top: 1px solid var(--line-light);
}

.dev-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.dev-stat-item h3 {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--orange-main);
    line-height: 1;
    margin-bottom: 10px;
}

.dev-stat-item p {
    font-size: 1rem;
    color: var(--brown-main);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === FAQ SECTION === */
.faq-section {
    background: var(--white);
    border-top: 1px solid var(--line-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 50px;
}

.faq-item {
    border-bottom: 1px solid var(--line-light);
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--brown-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    font-family: inherit;
}

.faq-question i {
    color: var(--orange-main);
    transition: var(--transition);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.faq-answer p {
    padding-bottom: 15px;
}

/* === ABOUT THE PROJECT SECTION === */
.about-section {
    background: var(--cream-bg);
    border-top: 1px solid var(--line-light);
}

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

.about-text-col {
    text-align: left;
}

.about-text-col h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--brown-main);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.about-text-col h2 span {
    color: var(--orange-main);
}

.about-text-col p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 400;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.about-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-highlight-item i {
    color: var(--orange-main);
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.about-highlight-item span {
    font-size: 0.9rem;
    color: var(--brown-main);
    font-weight: 600;
    line-height: 1.4;
}

.about-img-col {
    position: relative;
}

.about-elevation-img {
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    display: block;
}

.about-elevation-placeholder {
    width: 100%;
    height: 580px;
    border-radius: 8px;
    background: linear-gradient(135deg, #e8d5cc 0%, #c9a090 40%, #4f1a07 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.about-elevation-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(255, 255, 255, 0.03) 30px, rgba(255, 255, 255, 0.03) 60px);
}

.about-elevation-placeholder i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.5);
}

.about-elevation-placeholder span {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.about-img-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--orange-main);
    color: var(--white);
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(240, 103, 12, 0.4);
    text-align: center;
    z-index: 2;
}

.about-img-badge strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.about-img-badge span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.85;
}

/* Gallery Grid */
.gallery-heading {
    text-align: center;
    margin-bottom: 50px;
}

/* === PROJECT VISUALS (TABBED LAYOUT) === */
.visuals-layout {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 40px;
    margin-top: 50px;
    justify-items: stretch;
}

.visuals-selector-wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.visuals-selector-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.visual-tab {
    background: var(--white);
    border: 1px solid var(--line-light);
    padding: 20px 10px;
    border-radius: 6px;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--brown-main);
    min-height: 110px;
}

.visual-tab i {
    font-size: 1.8rem;
    margin-bottom: 8px;
    font-weight: 300;
    color: var(--brown-main);
    transition: var(--transition);
}

.visual-tab span {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    opacity: 0.8;
}

.visual-tab:hover {
    border-color: var(--orange-main);
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

.visual-tab.active {
    background: var(--brown-main);
    border-color: var(--brown-main);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(102, 27, 0, 0.2);
}

.visual-tab.active i {
    color: var(--orange-main);
}

.visual-tab.active span {
    opacity: 1;
}

.btn-luxury {
    background: linear-gradient(135deg, #f0670c 0%, #661b00 100%);
    color: var(--white);
    border: none;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-luxury:hover {
    background: linear-gradient(135deg, #661b00 0%, #f0670c 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(102, 27, 0, 0.3);
}

.visuals-display {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #e0cec7;
    aspect-ratio: 16 / 10;
    height: 100%;
}

.visuals-display.lightbox-trigger {
    cursor: zoom-in;
    transition: var(--transition);
}

.visuals-display.lightbox-trigger:hover {
    transform: scale(1.01);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.visuals-display img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
    display: block;
}

.visuals-display-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px 30px;
    background: linear-gradient(to top, rgba(79, 26, 7, 0.9) 0%, transparent 100%);
    color: var(--white);
    text-align: left;
}

.visuals-display-caption h4 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

@media (max-width: 1024px) {
    .visuals-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .visuals-selector-wrap {
        order: 2;
    }

    .visuals-display {
        order: 1;
    }
}

@media (max-width: 480px) {
    .visuals-selector-grid {
        grid-template-columns: 1fr 1fr;
    }

    .visual-tab {
        padding: 20px 10px;
    }

    .visual-tab i {
        font-size: 1.6rem;
    }
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 3, 0, 0.95);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-inner {
    position: relative;
    max-width: 1200px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 25px;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: var(--orange-main);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--orange-main);
}

.lightbox-caption {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* === FOOTER === */
footer {
    background: var(--galaxy-deep);
    padding: 80px 0 40px;
    text-align: center;
    border-top: 1px solid var(--line-dark);
    position: relative;
    overflow: hidden;
}

.footer-logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-logo span {
    font-weight: 300;
    color: var(--orange-main);
}

.footer-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--line-dark);
    gap: 40px;
}

.footer-right-col {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.rera-box {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-align: left;
}

.footer-dev-col {
    text-align: right;
}

.footer-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.8;
    text-align: center;
}

/* === POPUP FORM (MATCHES HERO FORM) === */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 9, 2, 0.9);
    backdrop-filter: blur(5px);
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    padding: 20px;
}

.popup-overlay.active {
    display: flex;
    opacity: 1;
}

.popup-content {
    background: var(--white);
    width: 100%;
    max-width: 450px;
    padding: 50px 40px;
    border-radius: 8px;
    position: relative;
    box-shadow: var(--shadow-lg);
    border-top: 5px solid var(--orange-main);
    text-align: center;
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
}

.close-popup:hover {
    color: var(--orange-main);
}

.popup-content h2 {
    font-size: 1.8rem;
    color: var(--brown-main);
    margin-bottom: 10px;
    font-weight: 800;
}

.popup-content p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-weight: 400;
    font-size: 0.95rem;
}

.popup-content .form-group input {
    border-bottom-color: var(--line-light);
    color: var(--brown-main);
}

.popup-content .form-group input:focus {
    border-bottom-color: var(--orange-main);
}

/* === MOBILE STICKY CTA === */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    z-index: 900;
    box-shadow: 0 -5px 20px rgba(85, 32, 6, 0.1);
    border-top: 1px solid var(--line-light);
}

.mobile-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.mobile-cta .btn {
    border-radius: 0;
    padding: 18px 10px;
    font-size: 0.9rem;
    box-shadow: none;
    border: none;
}

.mobile-cta .btn-dark {
    background: var(--brown-main);
    color: var(--white);
}

#popupTitle {
    line-height: 36px;
}

/* === PAGE LOCK OVERLAY === */
.page-lock-overlay {
    position: fixed;
    inset: 0;
    background: var(--galaxy-deep);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 20px;
}

.page-lock-overlay .lock-box {
    max-width: 400px;
    width: 100%;
    padding: 40px 30px;
}

.page-lock-overlay .lock-box i {
    font-size: 3rem;
    color: var(--orange-main);
    margin-bottom: 20px;
}

.page-lock-overlay .lock-box h2 {
    color: var(--white);
    font-weight: 300;
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.page-lock-overlay .lock-box p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.page-lock-overlay .lock-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.page-lock-overlay .lock-input {
    padding: 15px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.2);
    color: var(--white);
    outline: none;
    text-align: center;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.page-lock-overlay .lock-error {
    color: #ff4d4d;
    font-size: 0.8rem;
    margin: 0;
    display: none;
}

/* === RESPONSIVE LAYOUT === */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
        padding-top: 80px;
    }

    .hero-text-area {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .overview-item:nth-child(2) {
        border-right: none;
    }

    .overview-item:nth-child(1),
    .overview-item:nth-child(2) {
        border-bottom: 1px solid var(--line-light);
    }

    .pricing-row,
    .pricing-row.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .pricing-row.reverse .price-img-wrap {
        order: -1;
    }

    .price-specs li {
        justify-content: center;
    }

    .amenity-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .loc-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-split {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-img-col {
        order: -1;
    }

    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.wide {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }

    .header-content .btn {
        display: none;
    }

    .call-link span {
        display: none;
    }

    /* Mobile Hero Adjustments */
    .hero {
        padding-top: 100px;
        padding-bottom: 50px;
        min-height: auto;
    }

    .hero-text-area {
        padding: 0 10px;
        text-align: center;
        align-items: center;
    }

    .hero-legacy-text {
        font-size: 0.75rem;
        margin-bottom: 15px;
    }

    .hero .micro {
        font-size: 0.7rem;
    }

    .heading-lg {
        font-size: 2.3rem;
    }

    .hero-text-area .body-text {
        font-size: 1rem;
        max-width: 100%;
        line-height: 1.5;
    }

    .hero-pricing-badge {
        border-left: none;
        border-top: 3px solid var(--orange-main);
        padding: 15px;
        margin-top: 25px;
        text-align: center;
    }

    .hero-pricing-badge h2 {
        font-size: 1.5rem;
    }

    .hero-form-wrap {
        padding: 35px 25px;
    }

    .overview-grid,
    .amenity-grid {
        grid-template-columns: 1fr;
    }

    .overview-item {
        border-right: none;
        border-bottom: 1px solid var(--line-light);
        padding: 40px 20px;
    }

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

    .price-img-wrap {
        height: 300px;
    }

    .amenity-item {
        height: 350px;
    }

    .map-container {
        height: 350px;
    }

    .dev-stats {
        flex-direction: column;
        gap: 30px;
    }

    .mobile-cta {
        display: block;
    }

    footer {
        padding-bottom: 100px;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .gallery-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .gallery-item.tall {
        grid-row: span 1;
    }

    .footer-top-row {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .footer-right-col {
        flex-direction: column;
        justify-content: center;
        gap: 30px;
    }

    .footer-dev-col {
        text-align: center;
    }

    .rera-box {
        text-align: center;
        flex-direction: column;
    }
}