/* ================================================
   ANANT RAJ AASHRAY II - COMPLETE WEBSITE STYLES
   ================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Cormorant+Garamond:wght@400;500;600&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
    --primary: #0a1628;
    --primary-light: #1a2d4a;
    --gold: #d4a853;
    --gold-light: #e8c87a;
    --gold-dark: #b8923f;
    --white: #ffffff;
    --cream: #faf7f2;
    --gray: #666666;
    --gray-light: #f5f5f5;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-accent: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;
    --shadow: 0 25px 60px rgba(0,0,0,0.12);
    --shadow-lg: 0 40px 80px rgba(0,0,0,0.18);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--primary);
    background: var(--white);
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
}

/* ================================================
   PRELOADER
   ================================================ */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--primary);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 20px;
}

.preloader-logo span {
    color: var(--gold);
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.2);
    border-radius: 3px;
    overflow: hidden;
}

.preloader-bar::after {
    content: '';
    display: block;
    width: 50%;
    height: 100%;
    background: var(--gold);
    animation: preload 1s ease-in-out infinite;
}

@keyframes preload {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(300%); }
}

/* ================================================
   NAVIGATION
   ================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 20px 5%;
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--primary);
    padding: 15px 5%;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
}

.navbar-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 55px;
    width: auto;
    transition: var(--transition);
}

.navbar.scrolled .logo-img {
    height: 45px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 600;
}

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

.logo-sub {
    font-size: 0.65rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--primary);
    padding: 12px 28px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212,168,83,0.4);
}

.nav-highlight {
    color: var(--gold) !important;
    font-weight: 600;
    position: relative;
}

.nav-highlight::before {
    content: '★';
    margin-right: 5px;
    font-size: 0.7em;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ================================================
   BUTTONS
   ================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 38px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold-dark));
    color: var(--primary);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(212,168,83,0.5);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--white);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212,168,83,0.1);
}

.btn-outline-dark {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline-dark:hover {
    background: var(--primary);
    color: var(--white);
}

/* ================================================
   SECTION STYLES
   ================================================ */
.section {
    padding: 100px 5%;
}

.section-dark {
    background: var(--primary);
}

.section-light {
    background: var(--white);
}

.section-cream {
    background: var(--cream);
}

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

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 20px;
}

.section-tag::before,
.section-tag::after {
    content: '';
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.section-tag::after {
    background: linear-gradient(90deg, var(--gold), transparent);
}

.section-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 15px;
}

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

.section-title.dark {
    color: var(--primary);
}

.section-subtitle {
    font-family: var(--font-accent);
    font-size: 1.3rem;
    font-style: italic;
}

.section-subtitle.light {
    color: rgba(255,255,255,0.7);
}

.section-subtitle.dark {
    color: var(--gray);
}

/* ================================================
   PAGE HEADER (Inner Pages)
   ================================================ */
.page-header {
    background: linear-gradient(135deg, rgba(10,22,40,0.7), rgba(26,45,74,0.6)), 
                url('../images/page-header-bg.jpg') center/cover fixed;
    padding: 180px 5% 100px;
    text-align: center;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.page-title-icon {
    height: 60px;
    width: auto;
    vertical-align: middle;
}

.page-header p {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    color: var(--gold);
    font-style: italic;
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(10,22,40,0.93), rgba(26,45,74,0.87)), 
                url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920') center/cover fixed;
    display: flex;
    align-items: center;
    padding: 140px 5% 80px;
}

.hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212,168,83,0.15);
    border: 1px solid rgba(212,168,83,0.5);
    color: var(--gold);
    padding: 12px 25px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 25px;
    border-radius: 30px;
}

.hero-badge::before {
    content: '';
    width: 10px;
    height: 10px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 15px;
}

.hero-title span {
    color: var(--gold);
    display: block;
}

.hero-title .hero-location {
    font-size: 0.5em;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 10px;
    font-family: var(--font-body);
    font-weight: 400;
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: 1.6rem;
    color: var(--gold-light);
    font-style: italic;
    margin-bottom: 25px;
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.9;
    margin-bottom: 35px;
    max-width: 520px;
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.hero-stat {
    padding-left: 20px;
    border-left: 3px solid var(--gold);
}

.hero-stat-value {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.6);
    margin-top: 5px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Price Card */
.price-card {
    background: rgba(10,22,40,0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212,168,83,0.3);
    padding: 45px;
    position: relative;
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold-dark));
}

.price-ribbon {
    position: absolute;
    top: 25px;
    right: -40px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: var(--white);
    padding: 10px 55px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
    box-shadow: 0 5px 20px rgba(239,68,68,0.4);
}

.price-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 8px;
}

.price-value {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    display: flex;
    align-items: flex-start;
}

.price-value span {
    font-size: 2rem;
    color: var(--gold);
    margin-right: 5px;
    margin-top: 12px;
}

.price-value small {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.6);
    margin-left: 8px;
    align-self: flex-end;
    margin-bottom: 12px;
}

.price-unit {
    color: rgba(255,255,255,0.8);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.price-features {
    margin-bottom: 30px;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255,255,255,0.9);
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 0.95rem;
}

.price-features li:last-child {
    border-bottom: none;
}

.check-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.rera-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(212,168,83,0.1);
    border: 1px solid rgba(212,168,83,0.3);
    padding: 12px 18px;
    font-size: 0.85rem;
    color: var(--gold);
    margin-top: 20px;
}

/* ================================================
   HIGHLIGHTS GRID
   ================================================ */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.highlight-card {
    background: #fff;
    border: 1px solid rgba(212,168,83,0.25);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold-dark));
    transform: scaleX(0);
    transition: var(--transition);
}

.highlight-card:hover::before {
    transform: scaleX(1);
}

.highlight-card:hover {
    transform: translateY(-15px);
    border-color: rgba(212,168,83,0.5);
    background: #fff;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.highlight-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: var(--transition);
}

.highlight-card:hover .highlight-icon {
    transform: rotateY(180deg);
}

.highlight-icon svg {
    width: 38px;
    height: 38px;
    fill: var(--primary);
}

.highlight-card h4 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.highlight-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ================================================
   ABOUT SECTION
   ================================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.exp-badge {
    position: absolute;
    bottom: 50px;
    left: -40px;
    background: var(--primary);
    padding: 30px 40px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(10,22,40,0.4);
}

.exp-badge span {
    display: block;
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.exp-badge small {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
}

.about-content .section-tag {
    justify-content: flex-start;
}

.about-content .section-tag::before {
    display: none;
}

.about-content .section-title {
    text-align: left;
}

.about-content p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 20px;
}

/* ================================================
   FLOOR PLAN
   ================================================ */
.floor-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.floor-image {
    background: var(--white);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.floor-image img {
    width: 100%;
    height: auto;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 35px;
}

.spec-box {
    background: var(--white);
    padding: 22px 25px;
    border-left: 4px solid var(--gold);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.spec-box:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.spec-box label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 5px;
}

.spec-box span {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
}

/* ================================================
   AMENITIES
   ================================================ */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.amenity-card {
    background: #fff;
    padding: 45px 30px;
    text-align: center;
    transition: var(--transition);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(212,168,83,0.15);
    position: relative;
    overflow: hidden;
}

.amenity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    border-radius: 0 0 4px 4px;
}

.amenity-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    border-color: var(--gold);
}

.amenity-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(212,168,83,0.15), rgba(212,168,83,0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
    border: 2px solid rgba(212,168,83,0.3);
}

.amenity-card:hover .amenity-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-color: var(--gold);
    transform: scale(1.1);
}

.amenity-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--gold-dark);
    transition: var(--transition);
}

.amenity-card:hover .amenity-icon svg {
    fill: var(--primary);
}

.amenity-card h4 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.amenity-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ================================================
   GALLERY
   ================================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(6) {
    grid-column: span 2;
    grid-row: span 2;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,22,40,0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
}

.gallery-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.gallery-item:hover .gallery-zoom {
    transform: translate(-50%, -50%) scale(1);
}

.gallery-zoom svg {
    width: 24px;
    height: 24px;
    fill: var(--primary);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10,22,40,0.98);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    animation: zoomIn 0.4s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: var(--gold);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

.lightbox-close svg {
    width: 22px;
    height: 22px;
    fill: var(--primary);
}

/* ================================================
   PAYMENT TABLE
   ================================================ */
.payment-table-wrapper {
    max-width: 950px;
    margin: 0 auto;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.payment-table-header {
    background: var(--primary);
    color: var(--white);
    padding: 40px;
    text-align: center;
}

.payment-table-header h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.payment-table-header p {
    font-family: var(--font-accent);
    font-size: 1.3rem;
    color: var(--gold);
    font-style: italic;
}

.payment-table {
    width: 100%;
    border-collapse: collapse;
}

.payment-table th {
    background: var(--cream);
    padding: 20px 25px;
    text-align: left;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    border-bottom: 3px solid var(--gold);
}

.payment-table td {
    padding: 20px 25px;
    border-bottom: 1px solid #f0ebe3;
    color: #333;
    font-size: 1rem;
    background: var(--white);
    transition: var(--transition);
}

.payment-table tr:hover td {
    background: var(--cream);
}

.payment-table tr:last-child td {
    border-bottom: none;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
}

.payment-table tr:last-child td:last-child {
    color: var(--gold);
}

/* ================================================
   EMI CALCULATOR
   ================================================ */
.emi-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.emi-form {
    background: var(--white);
    padding: 50px 45px;
    box-shadow: var(--shadow-lg);
}

.emi-form h3 {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 35px;
}

.input-group {
    margin-bottom: 35px;
}

.input-group label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 15px;
}

.input-group label span {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gold);
}

.range-slider {
    width: 100%;
    height: 10px;
    border-radius: 5px;
    background: linear-gradient(to right, var(--gold) 0%, #f0ebe3 0%);
    outline: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212,168,83,0.5);
    border: 3px solid var(--white);
    transition: var(--transition);
}

.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.range-slider::-moz-range-thumb {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    cursor: pointer;
    border: 3px solid var(--white);
}

.slider-range {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #999;
    margin-top: 8px;
}

.emi-result {
    background: var(--primary);
    padding: 50px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.emi-result::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212,168,83,0.1) 0%, transparent 60%);
}

.emi-result h3 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 40px;
    position: relative;
}

.emi-main {
    margin-bottom: 40px;
    position: relative;
}

.emi-main label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 10px;
}

.emi-value {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.emi-value span {
    font-size: 1.8rem;
    color: var(--gold);
    margin-right: 5px;
}

.emi-value small {
    font-size: 1rem;
    color: rgba(255,255,255,0.5);
    font-weight: 400;
}

.emi-breakdown {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    position: relative;
}

.breakdown-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 20px;
}

.breakdown-item label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 8px;
}

.breakdown-item span {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
}

/* ================================================
   LOCATION
   ================================================ */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.map-container {
    min-height: 500px;
    background: #e5e5e5;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: none;
}

.location-info h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 30px;
}

.location-features {
    display: grid;
    gap: 20px;
}

.location-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.location-feature:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--primary);
}

.location-feature h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-family: var(--font-body);
    font-weight: 600;
}

.location-feature p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.nearby-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.nearby-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(212,168,83,0.2);
    padding: 30px 25px;
    text-align: center;
    transition: var(--transition);
}

.nearby-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    background: rgba(212,168,83,0.1);
}

.nearby-card .distance {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.nearby-card .unit {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 10px;
}

.nearby-card .place {
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
}

/* ================================================
   CONTACT SECTION
   ================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    background: var(--primary);
    padding: 50px 45px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212,168,83,0.15) 0%, transparent 70%);
}

.contact-info h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 15px;
    position: relative;
}

.contact-info > p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
    line-height: 1.7;
    position: relative;
}

.contact-details {
    display: grid;
    gap: 25px;
    position: relative;
}

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

.contact-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--primary);
}

.contact-item label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 5px;
}

.contact-item a,
.contact-item span {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 500;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--gold);
}

.contact-partner {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    position: relative;
}

.contact-partner h4 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 15px;
}

.contact-partner p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    line-height: 1.7;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 50px 45px;
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.contact-form > p {
    color: var(--gray);
    margin-bottom: 35px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 8px;
}

.form-group label .optional {
    font-weight: 400;
    color: #888;
    font-size: 0.85em;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #f0ebe3;
    background: var(--cream);
    font-family: var(--font-body);
    font-size: 1rem;
    color: #333;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(212,168,83,0.1);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border: none;
    color: var(--primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

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

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212,168,83,0.4);
}

/* ================================================
   CTA SECTION
   ================================================ */
.cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: 100px 5%;
    text-align: center;
}

.cta h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 15px;
}

.cta p {
    font-family: var(--font-accent);
    font-size: 1.4rem;
    color: var(--gold-light);
    font-style: italic;
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
    background: #050d18;
    padding: 80px 5% 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto 60px;
}

.footer-brand .logo-text {
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: block;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

.footer-social a:hover svg {
    fill: var(--primary);
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-family: var(--font-body);
    font-weight: 600;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    fill: var(--gold);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.footer-rera {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(212,168,83,0.1);
    border: 1px solid rgba(212,168,83,0.3);
    padding: 12px 20px;
}

.footer-rera svg {
    width: 20px;
    height: 20px;
    fill: var(--gold);
}

.footer-rera span {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 500;
}

/* ================================================
   FLOATING BUTTONS
   ================================================ */
.floating-buttons {
    position: fixed;
    right: 25px;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9990;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: var(--transition);
}

.floating-btn:hover {
    transform: translateY(-5px) scale(1.1);
}

.btn-whatsapp {
    background: #25d366;
}

.btn-call {
    background: var(--gold);
}

.btn-top {
    background: var(--primary);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.btn-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-btn svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

.btn-call svg {
    fill: var(--primary);
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */
@media (max-width: 1200px) {
    .highlights-grid,
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
    }
    
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(6) {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--primary);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 40px;
        gap: 25px;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        right: 0;
        box-shadow: -10px 0 40px rgba(0,0,0,0.5);
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-desc {
        margin: 0 auto 35px;
    }
    
    .about-grid,
    .floor-grid,
    .location-grid,
    .contact-grid,
    .emi-container {
        grid-template-columns: 1fr;
    }
    
    .exp-badge {
        left: 20px;
        bottom: 20px;
        padding: 20px 25px;
    }
    
    .exp-badge span {
        font-size: 2.5rem;
    }
    
    .about-content .section-tag {
        justify-content: center;
    }
    
    .about-content .section-title {
        text-align: center;
    }
    
    .about-content p {
        text-align: center;
    }
    
    .nearby-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 5%;
    }
    
    .hero {
        min-height: auto;
        padding: 140px 5% 60px;
    }
    
    .highlights-grid,
    .amenities-grid,
    .nearby-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 280px;
    }
    
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(6) {
        grid-column: span 1;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }
    
    .hero-stat {
        padding-left: 0;
        border-left: none;
        padding-top: 20px;
        border-top: 3px solid var(--gold);
        text-align: center;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .price-value {
        font-size: 3.5rem;
    }
    
    .price-card {
        padding: 30px;
    }
    
    .emi-value {
        font-size: 3rem;
    }
    
    .emi-breakdown {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .price-value {
        font-size: 3rem;
    }
    
    .btn {
        padding: 15px 28px;
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
    }
    
    .floating-btn svg {
        width: 24px;
        height: 24px;
    }
}
