
        :root {
            --gold: #C49A3C;
            --gold-light: #E8C97A;
            --gold-dark: #9A7928;
            --white: #FFFFFF;
            --off-white: #F5F3EF;
            --cream: #EDE9DF;
            --charcoal: #2C3145;
            --dark: #1A1D2E;
            --mid: #5A5F72;
            --border: rgba(196, 154, 60, 0.25);
            --shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Lato', sans-serif;
            background: var(--off-white);
            color: var(--charcoal);
            overflow-x: hidden;
        }

        /* ── Scrollbar ── */

        ::-webkit-scrollbar {
            width: 6px;
        }

        ::-webkit-scrollbar-track {
            background: var(--cream);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--gold);
            border-radius: 3px;
        }

        /* ── Greek key pattern ── */

        .greek-border {
            height: 12px;
            background: var(--gold);
            background-image: repeating-linear-gradient( 90deg, transparent, transparent 6px, rgba(0, 0, 0, 0.15) 6px, rgba(0, 0, 0, 0.15) 7px);
        }

        /* ────────────── NAV ────────────── */

        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
            padding: 0 5%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
            transition: box-shadow .3s;
        }

        nav.scrolled {
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 14px;
            text-decoration: none;
            width: 13%;
        }

        .nav-logo img {
            width: 50%;
        }

        .nav-logo-text {
            line-height: 1;
        }

        .nav-logo-text span:first-child {
            font-family: 'Cinzel', serif;
            font-size: 13px;
            letter-spacing: 3px;
            color: var(--charcoal);
            display: block;
        }

        .nav-logo-text span:last-child {
            font-size: 10px;
            letter-spacing: 2px;
            color: var(--gold);
            text-transform: uppercase;
        }

        .nav-links {
            display: flex;
            gap: 32px;
            list-style: none;
        }

        .nav-links a {
            font-family: 'Lato', sans-serif;
            font-size: 12px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--charcoal);
            text-decoration: none;
            transition: color .2s;
        }

        .nav-links a:hover {
            color: var(--gold);
        }

        .nav-cta {
            padding: 10px 24px;
            background: var(--gold);
            color: #fff !important;
            letter-spacing: 2px;
            border-radius: 2px;
        }

        .nav-cta:hover {
            background: var(--gold-dark) !important;
            color: #fff !important;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .hamburger span {
            width: 24px;
            height: 2px;
            background: var(--charcoal);
            transition: .3s;
        }

        /* ────────────── HERO ────────────── */

        #hero {
            height: 100vh;
            background-image: url("https://magicpage-dev.propstory.com/ImageUploads/ravi%20temp/1nnx5eapkmp56qymj.webp") !important;
            background-repeat: no-repeat;
            background-size: cover;
            /* background: linear-gradient(160deg, #f8f6f2 0%, #ede9df 50%, #e8e3d8 100%); */
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
            padding-top: 72px;
        }

        .hero-name span,
        .hero-name,
        .hero-title,
        .hero-desc,
        .hero-subtitle {
            color: #fff !important;
        }

        /* Islamic lattice bg */

        #hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle at 15% 50%, rgba(196, 154, 60, 0.06) 0%, transparent 60%), radial-gradient(circle at 85% 20%, rgba(196, 154, 60, 0.04) 0%, transparent 50%);
        }

        .hero-lattice {
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 220px;
            background: repeating-conic-gradient(rgba(196, 154, 60, 0.06) 0% 25%, transparent 0% 50%) 0 0 / 20px 20px;
        }

        /* .hero-lattice::after {
      content: '';
      position: absolute; right: 0; top: 0; bottom: 0; width: 3px;
      background: linear-gradient(180deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
    } */

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 5%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 8px 16px;
            border: 1px solid var(--border);
            background: rgba(196, 154, 60, 0.06);
            border-radius: 2px;
            margin-bottom: 28px;
        }

        .hero-badge span {
            font-size: 10px;
            letter-spacing: 3px;
            color: var(--gold);
            text-transform: uppercase;
        }

        .hero-badge::before {
            content: '';
            width: 20px;
            height: 1px;
            background: var(--gold);
        }

        .hero-title {
            font-family: 'Cinzel', serif;
            font-size: clamp(14px, 2vw, 18px);
            letter-spacing: 5px;
            color: var(--charcoal);
            margin-bottom: 8px;
            text-transform: uppercase;
        }

        .hero-name {
            font-family: 'Cinzel', serif;
            font-size: clamp(52px, 7vw, 90px);
            font-weight: 700;
            line-height: 0.95;
            color: var(--charcoal);
            margin-bottom: 8px;
        }

        .hero-name span {
            color: var(--gold);
        }

        .hero-subtitle {
            font-family: 'Cinzel', serif;
            font-size: clamp(11px, 1.2vw, 14px);
            letter-spacing: 6px;
            color: var(--mid);
            margin-bottom: 32px;
            text-transform: uppercase;
        }

        .hero-divider {
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, var(--gold), var(--gold-light));
            margin-bottom: 24px;
        }

        .hero-desc {
            font-size: 15px;
            line-height: 1.8;
            color: var(--mid);
            max-width: 480px;
            margin-bottom: 40px;
        }

        .hero-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn-primary {
            padding: 15px 36px;
            background: var(--gold);
            color: #fff;
            font-family: 'Lato', sans-serif;
            font-size: 11px;
            letter-spacing: 3px;
            text-transform: uppercase;
            text-decoration: none;
            border: none;
            cursor: pointer;
            border-radius: 2px;
            transition: background .25s, transform .2s;
        }

        .btn-primary:hover {
            background: var(--gold-dark);
            transform: translateY(-2px);
        }

        .btn-outline {
            padding: 15px 36px;
            background: transparent;
            color: var(--charcoal);
            font-family: 'Lato', sans-serif;
            font-size: 11px;
            letter-spacing: 3px;
            text-transform: uppercase;
            border: 1px solid var(--charcoal);
            text-decoration: none;
            cursor: pointer;
            border-radius: 2px;
            transition: all .25s;
        }

        .btn-outline:hover {
            background: var(--charcoal);
            color: #fff;
        }

        /* Hero stats card */

        .hero-stats {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 4px;
            padding: 40px;
            box-shadow: var(--shadow);
            position: relative;
        }

        .hero-stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
        }

        .stats-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
        }

        .stat-item {
            text-align: center;
            padding: 20px 10px;
            border: 1px solid var(--border);
            border-radius: 2px;
        }

        .stat-num {
            font-family: 'Cormorant Garamond', serif;
            font-size: 48px;
            font-weight: 700;
            color: var(--gold);
            line-height: 1;
            margin-bottom: 6px;
        }

        .stat-label {
            font-size: 9px;
            letter-spacing: 2.5px;
            color: var(--mid);
            text-transform: uppercase;
        }

        .rera-badge {
            margin-top: 24px;
            padding: 12px 16px;
            background: rgba(44, 49, 69, 0.04);
            border-left: 3px solid var(--gold);
            font-size: 11px;
            color: var(--mid);
            line-height: 1.6;
        }

        .rera-badge strong {
            color: var(--charcoal);
            display: block;
            margin-bottom: 2px;
        }

        /* ────────────── SECTION GENERIC ────────────── */

        section {
            padding: 100px 5%;
        }

        .section-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-tag {
            display: inline-block;
            font-size: 10px;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 14px;
        }

        .section-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(36px, 5vw, 56px);
            font-weight: 600;
            line-height: 1.1;
            color: var(--charcoal);
        }

        .section-title em {
            color: var(--gold);
            font-style: italic;
        }

        .section-rule {
            width: 50px;
            height: 2px;
            background: var(--gold);
            margin: 20px auto 0;
        }

        /* ────────────── ABOUT ────────────── */

        #about {
            background: var(--white);
        }

        .about-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-text p {
            font-size: 16px;
            line-height: 1.9;
            color: var(--mid);
            margin-bottom: 20px;
        }

        .values-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-top: 36px;
        }

        .value-card {
            padding: 20px;
            border: 1px solid var(--border);
            border-radius: 2px;
            transition: border-color .2s, transform .2s;
        }

        .value-card:hover {
            border-color: var(--gold);
            transform: translateY(-3px);
        }

        .value-icon {
            font-size: 20px;
            margin-bottom: 8px;
        }

        .value-title {
            font-family: 'Cinzel', serif;
            font-size: 12px;
            letter-spacing: 1px;
            color: var(--charcoal);
            margin-bottom: 4px;
        }

        .value-desc {
            font-size: 12px;
            color: var(--mid);
            line-height: 1.5;
        }

        .about-visual {
            position: relative;
        }

        .arch-frame {
            background: linear-gradient(160deg, var(--cream), var(--off-white));
            border-radius: 120px 120px 0 0;
            border: 2px solid var(--border);
            padding: 50px 40px 60px;
            text-align: center;
            position: relative;
        }

        .arch-frame::before {
            content: '';
            position: absolute;
            inset: 8px;
            border-radius: 115px 115px 0 0;
            border: 1px solid var(--border);
            pointer-events: none;
        }

        .founder-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 22px;
            font-weight: 600;
            color: var(--charcoal);
            margin-bottom: 4px;
        }

        .founder-title {
            font-size: 11px;
            letter-spacing: 2px;
            color: var(--gold);
            text-transform: uppercase;
            margin-bottom: 24px;
        }

        .founder-quote {
            font-family: 'Cormorant Garamond', serif;
            font-size: 17px;
            font-style: italic;
            line-height: 1.7;
            color: var(--mid);
            border-left: 2px solid var(--gold);
            padding-left: 18px;
            text-align: left;
        }

        .mission-vision {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-top: 24px;
        }

        .mv-card {
            padding: 20px;
            background: var(--charcoal);
            color: #fff;
            border-radius: 2px;
        }

        .mv-card h4 {
            font-family: 'Cinzel', serif;
            font-size: 12px;
            letter-spacing: 2px;
            color: var(--gold);
            margin-bottom: 8px;
        }

        .mv-card p {
            font-size: 12px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.75);
        }

        /* ────────────── LOCATION ────────────── */

        #location {
            background: var(--off-white);
        }

        .location-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
            align-items: start;
        }

        .location-hero-text h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 38px;
            font-weight: 600;
            color: var(--charcoal);
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .location-hero-text h3 em {
            color: var(--gold);
            font-style: italic;
        }

        .location-hero-text p {
            font-size: 15px;
            line-height: 1.8;
            color: var(--mid);
            margin-bottom: 16px;
        }

        .loc-highlight {
            margin-top: 28px;
            padding: 20px 24px;
            background: var(--charcoal);
            color: #fff;
            border-left: 4px solid var(--gold);
            border-radius: 2px;
        }

        .loc-highlight p {
            font-size: 13px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.82);
            margin: 0;
        }

        .loc-highlight strong {
            color: var(--gold-light);
        }

        .location-map-placeholder {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 4px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .map-header {
            padding: 16px 20px;
            background: var(--charcoal);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .map-header span {
            font-size: 11px;
            letter-spacing: 2px;
            color: rgba(255, 255, 255, 0.7);
            text-transform: uppercase;
        }

        .map-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--gold);
        }

        .map-embed {
            width: 100%;
            height: 340px;
            background: #e8e3d8;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .map-embed iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .advantages-grid {
            max-width: 1200px;
            margin: 60px auto 0;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .adv-category {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 2px;
            overflow: hidden;
        }

        .adv-cat-header {
            padding: 14px 18px;
            background: var(--charcoal);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .adv-cat-icon {
            font-size: 16px;
            display: none;
        }

        .adv-cat-title {
            font-family: 'Cinzel', serif;
            font-size: 11px;
            letter-spacing: 2px;
            color: var(--gold);
        }

        .adv-cat-body {
            padding: 16px 18px;
        }

        .adv-item {
            display: flex;
            align-items: baseline;
            gap: 8px;
            padding: 6px 0;
            border-bottom: 1px solid rgba(196, 154, 60, 0.1);
            font-size: 12.5px;
            color: var(--mid);
        }

        .adv-item:last-child {
            border-bottom: none;
        }

        .adv-item span:first-child {
            font-size: 10px;
            color: var(--gold);
            flex-shrink: 0;
        }

        .adv-dist {
            margin-left: auto;
            font-size: 11px;
            color: var(--gold);
            font-weight: 700;
            white-space: nowrap;
        }

        /* ────────────── AMENITIES ────────────── */

        #amenities {
            background: var(--charcoal);
        }

        #amenities .section-title {
            color: var(--white);
        }

        #amenities .section-tag {
            color: var(--gold);
        }

        .amenities-intro {
            max-width: 700px;
            margin: 0 auto 60px;
            text-align: center;
            font-family: 'Cormorant Garamond', serif;
            font-size: 20px;
            font-style: italic;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.65);
        }

        .amenities-tabs {
            display: flex;
            justify-content: center;
            gap: 0;
            margin-bottom: 50px;
            border: 1px solid rgba(196, 154, 60, 0.3);
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 50px;
            border-radius: 2px;
            overflow: hidden;
        }

        .tab-btn {
            flex: 1;
            padding: 12px 20px;
            background: transparent;
            border: none;
            cursor: pointer;
            font-family: 'Lato', sans-serif;
            font-size: 10px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.5);
            transition: all .2s;
            border-right: 1px solid rgba(196, 154, 60, 0.3);
        }

        .tab-btn:last-child {
            border-right: none;
        }

        .tab-btn.active {
            background: var(--gold);
            color: #fff;
        }

        .amenities-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .amenity-panel {
            display: none;
        }

        .amenity-panel.active {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .amenity-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(196, 154, 60, 0.2);
            border-radius: 2px;
            padding: 28px 20px;
            text-align: center;
            transition: background .25s, transform .2s;
        }

        .amenity-card:hover {
            background: rgba(196, 154, 60, 0.08);
            transform: translateY(-4px);
        }

        .amenity-card-icon {
            font-size: 32px;
            margin-bottom: 14px;
        }

        .amenity-card-name {
            font-family: 'Cinzel', serif;
            font-size: 11px;
            letter-spacing: 1.5px;
            color: var(--gold);
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .amenity-card-desc {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.5);
            line-height: 1.5;
        }

        /* ────────────── GALLERY ────────────── */

        #gallery {
            background: var(--white);
        }

        .gallery-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: auto auto;
            gap: 12px;
        }

        .gallery-item {
            overflow: hidden;
            border-radius: 2px;
            background: var(--cream);
            /* aspect-ratio: 4/3; */
            cursor: pointer;
            position: relative;
        }

        .gallery-item.featured {
            grid-column: 1 / 3;
            aspect-ratio: 16/6;
        }
        .gallery-item img{
            height: 100%;
        }

        .gallery-item-inner {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Cormorant Garamond', serif;
            font-size: 16px;
            font-style: italic;
            color: var(--mid);
            transition: transform .4s ease;
            background: linear-gradient(135deg, var(--cream) 0%, #ddd8ce 100%);
            position: relative;
        }

        .gallery-item:hover .gallery-item-inner {
            transform: scale(1.04);
        }

        .gallery-label {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px 16px 12px;
            background: linear-gradient(transparent, rgba(26, 29, 46, 0.75));
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.9);
        }

        /* Room visual placeholders */

        .room-vis {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .room-vis svg {
            opacity: 0.35;
        }

        /* ────────────── MASTER PLAN ────────────── */

        #masterplan,
        #location,
        #about {
            background-image: url("	https://magicpage-dev.propstory.com/ImageUploads/ravi%20temp/1nnx5eapkmp55aibr.webp") !important;
        }

        .masterplan-wrap {
            max-width: 1200px;
            margin: 0 auto;
        }

        .plan-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 4px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .plan-header {
            padding: 24px 14px;
            background: var(--charcoal);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .success_msg,
        .error_msg {
            display: none;
            text-align: center;
            color: #9A7928;
        }

        .plan-header h3 {
            font-family: 'Cinzel', serif;
            font-size: 14px;
            letter-spacing: 3px;
            color: var(--gold);
        }

        .plan-tabs {
            display: flex;
            gap: 8px;
        }

        .plan-tab {
            padding: 8px;
            border: 1px solid rgba(196, 154, 60, 0.4);
            background: transparent;
            color: rgba(255, 255, 255, 0.6);
            font-size: 10px;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            border-radius: 2px;
            transition: all .2s;
        }

        .plan-tab.active {
            background: var(--gold);
            border-color: var(--gold);
            color: #fff;
        }

        .plan-content {
            padding: 40px;
            display: none;
        }

        .plan-content.active {
            display: block;
        }

        /* Stilt Floor diagram */

        .stilt-diagram {
            background: var(--off-white);
            border: 1px solid var(--border);
            border-radius: 4px;
            padding: 40px;
            position: relative;
        }

        .towers-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-top: 20px;
        }

        .tower-block {
            border: 2px solid var(--border);
            border-radius: 4px;
            padding: 24px;
            position: relative;
        }

        .tower-label {
            position: absolute;
            top: -12px;
            left: 20px;
            background: var(--charcoal);
            padding: 4px 12px;
            font-family: 'Cinzel', serif;
            font-size: 10px;
            letter-spacing: 2px;
            color: var(--gold);
            border-radius: 2px;
        }

        .amenity-dots {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-top: 12px;
        }

        .amenity-dot {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 11px;
            color: var(--mid);
        }

        .amenity-dot::before {
            content: '';
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--gold);
            flex-shrink: 0;
        }

        /* Floor plan grid */

        .floorplan-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .fp-card {
            border: 1px solid var(--border);
            border-radius: 2px;
            overflow: hidden;
        }

        .fp-header {
            padding: 12px 16px;
            background: var(--charcoal);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .fp-flat {
            font-family: 'Cinzel', serif;
            font-size: 11px;
            letter-spacing: 1.5px;
            color: var(--gold);
        }

        .fp-facing {
            font-size: 9px;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.5);
            border: 1px solid rgba(196, 154, 60, 0.3);
            padding: 2px 8px;
            border-radius: 10px;
        }

        .fp-body {
            padding: 16px;
        }

        .fp-diagram {
            background: var(--off-white);
            border: 1px dashed var(--border);
            border-radius: 2px;
            padding: 20px;
            margin-bottom: 12px;
            min-height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .fp-svg-room {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
        }

        .fp-info {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
        }

        .fp-info-item {
            padding: 8px 10px;
            background: var(--off-white);
            border-radius: 2px;
        }

        .fp-info-label {
            font-size: 9px;
            letter-spacing: 1px;
            color: var(--mid);
            text-transform: uppercase;
        }

        .fp-info-value {
            font-family: 'Cormorant Garamond', serif;
            font-size: 18px;
            font-weight: 600;
            color: var(--gold);
        }

        .fp-info-unit {
            font-size: 10px;
            color: var(--mid);
        }

        /* ────────────── SPECIFICATIONS ────────────── */

        #specs {
            background: var(--charcoal);
        }

        #specs .section-title {
            color: var(--white);
        }

        #specs .section-tag {
            color: var(--gold);
        }

        .specs-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .spec-card {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(196, 154, 60, 0.2);
            border-radius: 2px;
            overflow: hidden;
        }

        .spec-card-header {
            padding: 16px 20px;
            border-bottom: 1px solid rgba(196, 154, 60, 0.15);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .spec-icon {
            font-size: 20px;
        }

        .spec-cat {
            font-family: 'Cinzel', serif;
            font-size: 11px;
            letter-spacing: 2px;
            color: var(--gold);
        }

        .spec-items {
            padding: 12px 20px 20px;
        }

        .spec-item {
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 12.5px;
            color: rgba(255, 255, 255, 0.65);
            line-height: 1.5;
            display: flex;
            gap: 8px;
        }

        .spec-item:last-child {
            border-bottom: none;
        }

        .spec-item::before {
            content: '◆';
            font-size: 7px;
            color: var(--gold);
            margin-top: 5px;
            flex-shrink: 0;
        }

        /* ────────────── PAYMENT ────────────── */

        #payment {
            background: var(--white);
        }

        .payment-wrap {
            max-width: 800px;
            margin: 0 auto;
        }

        .payment-table {
            width: 100%;
            border-collapse: collapse;
            box-shadow: var(--shadow);
            border-radius: 4px;
            overflow: hidden;
        }

        .payment-table thead {
            background: var(--charcoal);
        }

        .payment-table thead th {
            padding: 18px 24px;
            font-family: 'Cinzel', serif;
            font-size: 11px;
            letter-spacing: 2px;
            color: var(--gold);
            text-align: left;
            text-transform: uppercase;
        }

        .payment-table tbody tr:nth-child(odd) {
            background: var(--off-white);
        }

        .payment-table tbody tr:nth-child(even) {
            background: var(--white);
        }

        .payment-table tbody tr:last-child {
            background: var(--charcoal);
        }

        .payment-table tbody td {
            padding: 16px 24px;
            font-size: 14px;
            color: var(--charcoal);
        }

        .payment-table tbody tr:last-child td {
            color: var(--gold);
            font-weight: 700;
            font-size: 15px;
        }

        .payment-pct {
            font-family: 'Cormorant Garamond', serif;
            font-size: 22px;
            font-weight: 600;
            color: var(--gold);
        }

        .payment-table tbody tr:last-child .payment-pct {
            color: var(--gold-light);
            font-size: 26px;
        }

        .stage-bar-wrap {
            margin-top: 40px;
        }

        .stage-bar-label {
            display: flex;
            justify-content: space-between;
            font-size: 11px;
            color: var(--mid);
            margin-bottom: 6px;
        }

        .stage-bar {
            height: 6px;
            background: var(--cream);
            border-radius: 3px;
            overflow: hidden;
            margin-bottom: 14px;
        }

        .stage-bar-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
            border-radius: 3px;
            transition: width 1s ease;
        }

        /* ────────────── CONTACT ────────────── */

        #contact {
            background: linear-gradient(160deg, var(--charcoal) 0%, #1A1D2E 100%);
            position: relative;
            overflow: hidden;
        }

        #contact::before {
            content: '';
            position: absolute;
            right: -100px;
            top: -100px;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(196, 154, 60, 0.08) 0%, transparent 70%);
        }

        .contact-grid {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 80px;
            align-items: center;
        }

        .contact-info h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 48px;
            font-weight: 600;
            line-height: 1.1;
            color: var(--white);
            margin-bottom: 20px;
        }

        .contact-info h2 em {
            color: var(--gold);
            font-style: italic;
        }

        .contact-info p {
            font-size: 15px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 36px;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .contact-detail {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .contact-detail-icon {
            width: 40px;
            height: 40px;
            border: 1px solid rgba(196, 154, 60, 0.4);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            flex-shrink: 0;
        }

        .contact-detail-text {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.5;
        }

        .contact-detail-text strong {
            color: var(--gold);
            display: block;
            font-size: 11px;
            letter-spacing: 1px;
            margin-bottom: 2px;
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(196, 154, 60, 0.25);
            border-radius: 4px;
            padding: 40px;
        }

        .contact-form h3 {
            font-family: 'Cinzel', serif;
            font-size: 14px;
            letter-spacing: 3px;
            color: var(--gold);
            margin-bottom: 28px;
            text-transform: uppercase;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-size: 10px;
            letter-spacing: 2px;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 13px 16px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(196, 154, 60, 0.25);
            color: #fff;
            font-family: 'Lato', sans-serif;
            font-size: 14px;
            border-radius: 2px;
            outline: none;
            transition: border-color .2s;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--gold);
        }

        .form-group input::placeholder {
            color: rgba(255, 255, 255, 0.3);
        }

        .form-group select option {
            background: var(--charcoal);
        }

        .form-group textarea {
            height: 90px;
            resize: none;
        }

        .form-submit {
            width: 100%;
            padding: 16px;
            background: var(--gold);
            color: #fff;
            border: none;
            cursor: pointer;
            font-family: 'Lato', sans-serif;
            font-size: 11px;
            letter-spacing: 3px;
            text-transform: uppercase;
            border-radius: 2px;
            transition: background .25s;
        }

        .form-submit:hover {
            background: var(--gold-dark);
        }

        /* ────────────── FOOTER ────────────── */

        footer {
            background: var(--dark);
            padding: 40px 5%;
            border-top: 1px solid rgba(196, 154, 60, 0.15);
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-rera {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.4);
            line-height: 1.7;
        }

        .footer-rera strong {
            color: var(--gold);
        }

        .footer-copy {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.3);
        }

        /* ────────────── SCROLL TOP ────────────── */

        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 999;
            width: 44px;
            height: 44px;
            background: var(--gold);
            border: none;
            cursor: pointer;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: #fff;
            opacity: 0;
            transition: opacity .3s, transform .2s;
            pointer-events: none;
        }

        .scroll-top.visible {
            opacity: 1;
            pointer-events: all;
        }

        .scroll-top:hover {
            transform: translateY(-3px);
        }

        /* ────────────── MODAL ────────────── */

        .modal-overlay {
            position: fixed;
            inset: 0;
            z-index: 9999;
            background: rgba(0, 0, 0, 0.85);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity .3s;
        }

        .modal-overlay.open {
            opacity: 1;
            pointer-events: all;
        }
.btn-close{
    color: var(--gold) !important;
}
        .modal {
            background: var(--white);
            width: 100%;
            border-radius: 4px;
            overflow: hidden;
            transform: scale(0.9);
            transition: transform .3s;
        }

        .modal-overlay.open .modal {
            transform: scale(1);
        }

        .modal-header {
            padding: 20px 24px;
            background: var(--charcoal);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .modal-header h3 {
            font-family: 'Cinzel', serif;
            font-size: 13px;
            letter-spacing: 2px;
            color: var(--gold);
        }

        .modal-close {
            background: none;
            border: none;
            color: #fff;
            font-size: 20px;
            cursor: pointer;
        }

        

        .modal-body p {
            font-size: 14px;
            color: var(--mid);
            line-height: 1.7;
            margin-bottom: 16px;
        }

        .modal-success {
            text-align: center;
            padding: 20px 0;
        }

        .modal-success .check {
            font-size: 48px;
            margin-bottom: 12px;
        }

        .modal-success h4 {
            font-family: 'Cinzel', serif;
            font-size: 16px;
            color: var(--charcoal);
            margin-bottom: 8px;
        }

        .modal-success p {
            font-size: 14px;
            color: var(--mid);
        }

        /* ────────────── ANIMATIONS ────────────── */

        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity .7s ease, transform .7s ease;
        }

        .fade-up.visible {
            opacity: 1;
            transform: none;
        }

        .fade-up:nth-child(2) {
            transition-delay: .1s;
        }

        .fade-up:nth-child(3) {
            transition-delay: .2s;
        }

        .fade-up:nth-child(4) {
            transition-delay: .3s;
        }

        .d-md-block {
            display: block;
        }

        /* ────────────── RESPONSIVE ────────────── */

        @media (max-width: 900px) {
            .d-none {
                display: none;
            }
            .nav-logo {
                display: flex;
                align-items: center;
                gap: 14px;
                text-decoration: none;
                width: 16%;
            }
            .nav-logo img {
                width: 100%;
            }
            .values-grid {
                margin-top: -3rem;
            }
            .hero-content {
                grid-template-columns: 1fr;
            }
            .about-grid {
                grid-template-columns: 1fr;
            }
            .location-grid {
                grid-template-columns: 1fr;
            }
            .advantages-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .amenity-panel.active {
                grid-template-columns: repeat(2, 1fr);
            }
            .floorplan-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .specs-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .contact-grid {
                grid-template-columns: 1fr;
            }
            .gallery-grid {
                grid-template-columns: 1fr 1fr;
            }
            .gallery-item.featured {
                grid-column: 1 / 3;
            }
            nav .nav-links {
                display: none;
            }
            .hamburger {
                display: flex;
            }
        }

        @media (max-width: 600px) {
            .advantages-grid {
                grid-template-columns: 1fr;
            }
            .amenity-panel.active {
                grid-template-columns: 1fr 1fr;
            }
            .floorplan-grid {
                grid-template-columns: 1fr;
            }
            .specs-grid {
                grid-template-columns: 1fr;
            }
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            .gallery-item.featured {
                grid-column: 1;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }
            .values-grid {
                grid-template-columns: 1fr;
            }
            .mission-vision {
                grid-template-columns: 1fr;
            }
        }

        /* Mobile nav */

        .mobile-nav {
            position: fixed;
            top: 72px;
            left: 0;
            right: 0;
            z-index: 999;
            background: var(--white);
            border-bottom: 1px solid var(--border);
            padding: 20px 5%;
            display: none;
            flex-direction: column;
            gap: 16px;
        }

        .mobile-nav.open {
            display: flex;
        }

        .mobile-nav a {
            font-size: 12px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--charcoal);
            text-decoration: none;
            padding: 8px 0;
            border-bottom: 1px solid var(--border);
        }

        .mobile-nav a:last-child {
            border-bottom: none;
        }

        /* Sticky enquire strip on mobile */

        .sticky-strip {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 998;
            background: var(--charcoal);
            padding: 14px 20px;
            flex-direction: column;
            gap: 4px;
            border-top: 2px solid var(--gold);
        }
        .modal-header .btn-close{
            filter: invert(1);
        }
        dl, ol, ul{
            margin-bottom: 0;
        }
        @media (max-width: 600px) {
            .sticky-strip {
                display: flex;
            }
            section {
                padding: 70px 5%;
            }
        }

        .sticky-strip p {
            font-size: 10px;
            letter-spacing: 2px;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
            
        }

        .sticky-strip a {
            font-size: 16px;
            color: var(--gold);
            font-weight: 700;
            text-decoration: none;
        }
        #exampleModal{
            background: transparent !important; 
        }
        
        .sticky-strip {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

.sticky-strip .enquire-btn,
.sticky-strip .call-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 55px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
}

.enquire-btn {
    background: #d4af37; /* Gold */
}

.call-btn {
    background: #222;
}
.invert{
    filter: invert(1);
}

/* Hide on desktop if only needed for mobile */
@media (min-width: 768px) {
    .sticky-strip {
        display: none;
    }
}

@media (max-width:767px){

    .towers-layout{
        display:flex;
        flex-direction:column;
        gap:20px;
    }

    .tower-block{
        width:100%;
    }

}
@media(max-width:767px){

.plan-tabs{
    display:flex;
    overflow-x:auto;
    white-space:nowrap;
    gap:10px;
    padding-bottom:8px;
}

.plan-tabs::-webkit-scrollbar{
    display:none;
}

.plan-tab{
    flex:0 0 auto;
}
.stilt-diagram{
    padding:0 !important;
}
}