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

:root {
    --primary-color: #000000; /* Elegant Pure Black */
    --accent-color: #111111; /* Vibrant Charcoal Black */
    --accent-hover: #333333;
    --accent-light: #F4F4F5; /* Subtle warm tint */
    --bg-light: #ffffff;
    --bg-grey: #FAFAFA; /* Ultra-subtle cool grey */
    --text-dark: #09090B;
    --text-muted: #71717A;
    --text-light: #fff;
    --font-main: 'Inter', 'Montserrat', sans-serif; /* Clean sans for body */
    --font-heading: 'Montserrat', sans-serif; /* Modern sans for headings to fit the black monochrome theme */
    --transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1); /* Smoothest luxury easing */
    --border-radius: 8px; /* Slightly softer rounded corners for modern clean UI */
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-main);
    line-height: 1.7;
    color: var(--text-dark);
    scroll-behavior: smooth;
    background-color: var(--bg-light);
}



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

.grey-bg {
    background-color: var(--bg-grey) !important;
}

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

.section::after {
    content: '';
    position: absolute;
    top: 0;
    left: calc(50% - 600px);
    width: 1px;
    height: 100%;
    background: rgba(0, 0, 0, 0.08); /* Sophisticated vertical anchor line */
    z-index: 0;
}

.section {
    border-bottom: 1px solid rgba(0, 0, 0, 0.03); /* Subtle horizontal separation */
}

.section::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 10%;
    width: 200px;
    height: 1px;
    background: rgba(0, 0, 0, 0.05); /* Architectural horizontal line */
    z-index: 0;
}

@media (max-width: 1200px) {
    .section::after { left: 20px; }
}

.grey-bg {
    background: linear-gradient(135deg, #f8faf9 0%, #ffffff 100%) !important;
}

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    letter-spacing: -1px;
    color: var(--text-dark);
    text-transform: capitalize;
    position: relative;
    z-index: 1;
}

.section-title::before {
    content: attr(data-number);
    position: absolute;
    top: -60px;
    left: -20px;
    font-size: 9rem;
    font-weight: 900;
    color: rgba(17, 17, 17, 0.08); /* Faint black numbering */
    z-index: -1;
    font-family: var(--font-heading);
    letter-spacing: -2px;
}

.section-title.center::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: var(--accent-color);
    margin: 25px auto 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* High-Performance Smooth Reveal */
.section, .reveal-element {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), 
                opacity 1.2s cubic-bezier(0.19, 1, 0.22, 1);
    will-change: transform, opacity;
}

.reveal {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
}

.stagger-reveal > * {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), 
                opacity 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.stagger-reveal.reveal > * {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.stagger-reveal.reveal > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-reveal.reveal > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-reveal.reveal > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-reveal.reveal > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-reveal.reveal > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-reveal.reveal > *:nth-child(6) { transition-delay: 0.6s; }
.stagger-reveal.reveal > *:nth-child(7) { transition-delay: 0.7s; }
.stagger-reveal.reveal > *:nth-child(8) { transition-delay: 0.8s; }


.section-title.center::after {
    margin: 15px auto;
}

/* Header & Nav */
header {
    background: var(--primary-color);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: height 0.3s ease;
}

header.scrolled {
    background: rgba(0, 0, 0, 0.99); /* Deep primary navy/black */
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border-bottom: 1px solid rgba(17, 17, 17, 0.1); /* Very subtle black line */
}

header.scrolled nav {
    height: 70px;
}


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

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

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

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: white; /* Changed to white for dark header */
    transition: 0.3s;
}

/* Nav Links Base */
.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--accent-color);
    transition: width 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Buttons */
.cta-btn {
    padding: 16px 40px;
    border: 1px solid var(--accent-color);
    background: var(--accent-color);
    color: #fff;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-block;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
}

.cta-btn:hover::before {
    left: 0;
}

header .cta-btn {
    background: var(--accent-hover);
    color: white;
    border-radius: 0;
}

header .cta-btn:hover {
    background: #fff;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.whatsapp-btn-header {
    font-size: 1.5rem;
    color: #ffffff; /* Changed to white */
    text-decoration: none;
    transition: 0.3s;
    display: flex;
    align-items: center;
}

.whatsapp-btn-header:hover {
    transform: scale(1.1);
    color: #25d366;
}

header .cta-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-content-wrapper picture {
    display: block;
    width: 100%;
    height: 100%;
    min-width: 100%;
}

.hero-content-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 400px;
    max-height: 90vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
    display: block;
    background: #fcfcfc;
}

.hero-img {
    width: 100%;
    height: auto;
    min-width: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Subtle vignette focus for the primary exterior shot */
    background: radial-gradient(circle at center, transparent 40%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    align-items: center;
    color: white;
}





/* Contact Section (Centered Form) */
.contact-header {
    margin-bottom: 40px;
}

.contact-header p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.centered-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: var(--border-radius);
    border: 1px solid #e0e6e3;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Project Highlights Section */
.highlights-section {
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.highlights-container-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* slightly wider */
    gap: 40px; /* More breathing room */
    margin-top: 60px;
}

.highlight-box {
    background: #fff;
    padding: 50px 40px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--border-radius);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: var(--transition);
}

.highlight-box:hover {
    transform: translateY(-8px);
    border-color: rgba(17, 17, 17, 0.3); /* Subtle black border on hover */
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.06);
}

.h-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.highlight-box h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.highlight-box p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Rest of About... */
.highlights {
    list-style: none;
    margin-top: 30px;
}

.highlights li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Project Info Grid */
.project-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 15px;
    margin-top: 35px;
}

.info-box {
    background: #fdfdfd;
    padding: 15px;
    border: 1px solid #eee;
    transition: var(--transition);
}

.info-box:hover {
    border-color: var(--accent-color);
}

.info-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.info-value {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
}

.about-image img {
    width: 100%;
    height: 650px; /* Increased height for premium editorial look */
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: -20px 20px 0 var(--accent-light), -21px 21px 0 var(--accent-color); /* Architectural offset frame */
}

/* Configurations Section */
.configurations {
    background-color: #fff;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-top: -30px;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.config-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.config-card {
    background: white;
    padding: 60px 45px;
    text-align: center;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.config-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.06);
    border-color: rgba(17, 17, 17, 0.3);
}

.config-card:hover .config-icon {
    background: var(--accent-color);
    color: #fff;
    transform: rotateY(360deg);
}

.config-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin: 0 auto 30px;
    background: #fdfdfd;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #f5f5f5;
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.config-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.config-card p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1rem;
}

.config-card .cta-btn {
    border: 1.5px solid var(--accent-color); /* Black border instead of black */
    background: transparent;
    color: var(--text-dark);
    width: 100%;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.config-card .cta-btn:hover {
    background: var(--accent-color); /* Black background */
    color: #fff;
    border-color: var(--accent-color);
}

/* Property Card Specifics */
.property-card {
    padding: 0;
    overflow: hidden;
    text-align: left;
}

.property-image {
    height: 200px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.property-card:hover .property-image img {
    transform: scale(1.1);
}

.property-info {
    padding: 25px;
}

.property-info h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.location-tag {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 15px;
}

.location-tag i {
    color: var(--primary-color);
    margin-right: 5px;
}

.prop-detail-list {
    list-style: none;
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.prop-detail-list li {
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
}

.prop-detail-list li span {
    font-weight: 600;
    color: #444;
}

.price-tag {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 25px;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 0;
    height: 400px; /* Taller for editorial aspect ratio */
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

/* Amenities Grid */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.amenity-card {
    background: white;
    padding: 50px 40px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--border-radius);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: var(--transition);
}

.amenity-card:hover {
    transform: translateY(-10px);
    border-color: rgba(17, 17, 17, 0.3); /* Black hover border */
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.06);
}

.amenity-card .icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 30px;
    display: inline-block;
}

.amenity-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* Pricing Table */
.pricing-table-wrapper {
    overflow-x: auto;
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid #e0e6e3;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.pricing-table th, .pricing-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.pricing-table th {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

/* Location Advantages */
.location-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    list-style: none;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: white;
    padding: 25px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.location-item:hover {
    border-color: rgba(17, 17, 17, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    transform: translateY(-5px);
}

.location-item i {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-top: 5px;
}

.location-item h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.location-item p {
    font-size: 0.9rem;
    color: #777;
}

/* Testimonials Slider */
.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonials-slider .testimonial-card {
    flex: 0 0 100%;
    margin: 0;
    box-sizing: border-box;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.slider-btn:hover {
    background: #333;
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

/* FAQ Accordion */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-container {
    max-width: 900px;
    margin: 40px auto 0;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: rgba(17, 17, 17, 0.4); /* Black border for active FAQ */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.faq-question {
    padding: 25px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #fff;
}

.faq-question:hover {
    background: #fcfcfc;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.faq-icon i {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: var(--accent-color); /* Blue icons for FAQ */
}

.faq-item.active .faq-icon i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 800px; /* Large enough for long text */
    padding: 0 30px 25px;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .testimonials-slider {
        padding: 10px 0;
    }
}

/* Redesigned Premium Footer */
.footer {
    background: radial-gradient(circle at 50% 0%, rgba(15, 38, 71, 0.3) 0%, transparent 70%), 
                linear-gradient(135deg, var(--primary-color) 0%, #050a08 100%);
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.7);
    padding: 120px 0 60px;
    position: relative;
    border-top: 5px solid var(--accent-color);
    overflow: hidden;
}



.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
    display: block;
}

.brand-col p {
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-col h4 {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 30px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 30px;
    height: 2px;
    background: #ffffff;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

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

.footer-col ul li a {
    color: #aebdb4;
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.contact-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-info i {
    color: #ffffff;
    margin-top: 5px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* MahaRERA Badge */
.rera-container {
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 50px;
}

.rera-badge {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 100%;
}

.rera-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.rera-logo {
    height: 50px;
    filter: grayscale(1) brightness(2);
}

.rera-text p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.rera-text p strong {
    color: #fff;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 4px;
}

.rera-qr img {
    height: 70px;
    width: 70px;
    object-fit: contain;
    border-radius: 4px;
    background: #fff;
    padding: 4px;
}

.rera-text a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
}

.footer-disclaimer {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #777;
    margin-bottom: 40px;
    text-align: justify;
}

.footer-center-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.footer-logo {
    height: 120px;
    width: auto;
    object-fit: contain;
    margin: 0 auto 30px;
    display: block;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 20px 0 40px;
}



.footer-brand-rera {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

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

.footer-dev-logo span {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 10px;
}

.footer-dev-logo img {
    height: 100px;
    width: auto;
    background: #ffffff;
    padding: 15px 35px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: var(--transition);
}

.footer-dev-logo img:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.footer-credits {
    text-align: right;
}

.dev-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 5px;
}

.dev-text a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.85rem;
    margin-right: 25px;
    transition: var(--transition);
}

.legal-links a:hover {
    color: #fff;
}

.copy-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
}

/* Centralized mobile styles handled at the end of file */


/* Popup Styles - Premium Redesign */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9); /* Deep overlay focus */
    backdrop-filter: blur(15px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

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

.popup-content {
    background: #fff;
    width: 600px; /* Slightly wider for an airy form */
    max-width: 90%;
    max-height: 95vh;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
    box-shadow: 0 60px 120px rgba(0,0,0,0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideUp 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Popup Image Removed */

.popup-form-area {
    padding: 60px;
    position: relative;
    background: var(--bg-grey); /* Sharp light background */
}

.popup-logo {
    margin-bottom: 25px;
    text-align: center;
}

.popup-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: brightness(0); /* Force logo to be dark for light background */
}

.close-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-dark);
    line-height: 1;
    z-index: 20;
    transition: var(--transition);
}

.close-btn:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
}

.popup-form-area h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.popup-form-area p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 40px;
}

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

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-bottom-color: var(--accent-color);
}

.submit-btn {
    width: 100%;
    background: var(--primary-color);
    color: white;
    padding: 24px; /* More padding for a luxurious button */
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 15px;
}

.submit-btn:hover {
    background: var(--accent-color);
    letter-spacing: 6px;
}

/* Floating Buttons */
.floating-btn {
    position: fixed;
    bottom: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, background 0.3s;
    z-index: 1000;
}

.floating-btn.call {
    left: 30px;
    background: var(--accent-color);
}

.floating-btn.whatsapp {
    right: 30px;
    background: #25d366;
}

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

@media (max-width: 768px) {
    .floating-btn {
        display: none !important;
    }
}


/* Responsive */
/* Fixed Mobile Buttons */
.mobile-fixed-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    height: 50px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.m-cta {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
}

.m-cta.call {
    background-color: var(--primary-color);
    color: #ffffff;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.m-cta.whatsapp {
    background-color: #25d366;
    color: #ffffff;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.m-cta.enquire {
    background-color: var(--accent-color);
    color: #ffffff;
}

.m-cta.enquire {
    border-right: none;
}

.m-cta i {
    margin-right: 6px;
    font-size: 1rem;
    color: #ffffff;
}


.developed-by-badge {
    margin-bottom: 40px;
    display: inline-block;
}

.developer-logo-box {
    background: #fff;
    padding: 25px 40px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: var(--transition);
}

.developer-logo-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    border-color: var(--accent-color);
}

.developer-logo-box span {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #999;
    margin-bottom: 15px;
    font-weight: 600;
}

.developer-main-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.footer-developed-by {
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
}

.footer-developed-by span {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 15px;
}

.footer-developed-by img {
    height: 55px;
    width: auto;
    opacity: 0.9;
    transition: var(--transition);
}

.footer-developed-by img:hover {
    opacity: 1;
}

/* Stats Grid (About Developer) */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px 15px;
    background: #fff;
    border: 1px solid #f0f0f0;
    transition: var(--transition);
}

.stat-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.stat-item h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Location Grid Layout */
.location-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-top: 40px;
}

.map-container-box {
    border: 1px solid #f0f0f0;
    height: 100%;
}

.map-container-box iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    filter: grayscale(0.2) contrast(1.1);
}

/* Contact Card Premium */
.contact-card-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    background: white;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
    margin-top: 50px;
    overflow: hidden;
}

.contact-info-panel {
    background: var(--primary-color);
    color: white;
    padding: 80px 60px;
}

.contact-info-panel h2 {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.contact-detail-item .detail-icon {
    width: 60px;
    height: 60px;
    background: #1a1a1a;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ffffff; /* High contrast icon */
    margin-right: 25px;
    transition: var(--transition);
}

.contact-detail-item:hover .detail-icon {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.contact-detail-item .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 5px;
}

.contact-detail-item h4 {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Contact Form Panel */
.contact-form-panel {
    padding: 80px 70px;
    background: #fdfdfd;
}

.contact-form-panel h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 40px;
}

.contact-form-panel .form-group, 
.contact-form-panel .form-row {
    margin-bottom: 25px;
}

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

.contact-form-panel input, 
.contact-form-panel textarea {
    width: 100%;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid #e0e6e3;
    border-radius: var(--border-radius);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form-panel textarea {
    height: 150px;
    resize: none;
}

.contact-form-panel input:focus, 
.contact-form-panel textarea:focus {
    border-color: var(--accent-color);
    outline: none;
}

.submit-btn.highlight {
    background: var(--accent-color);
    color: #fff;
    border: none;
    padding: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn.highlight:hover {
    background: var(--primary-color);
    letter-spacing: 5px;
}

@media (max-width: 991px) {
    .contact-card-wrapper {
        grid-template-columns: 1fr;
    }
    
    .location-grid-layout {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 30px;
    }


    .about-grid {
        gap: 30px;
    }
}

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

    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .section-subtitle {
        margin-top: -20px;
        margin-bottom: 40px;
    }

    .contact-info-panel {
        padding: 50px 30px;
    }

    .contact-info-panel h2 {
        font-size: 2.22rem;
    }

    .contact-form-panel {
        padding: 40px 30px;
    }

    .contact-form-panel h3 {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    .contact-form-panel .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .faq-question {
        padding: 20px 25px;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 25px;
    }

    .faq-item.active .faq-answer {
        padding: 0 25px 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    .contact-info {
        justify-content: center;
    }

    .footer-developed-by {
        margin: 30px auto 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .legal-links {
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 5px;
    }

    .footer-credits {
        text-align: center;
    }

    .rera-badge {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 30px 20px;
        align-items: center;
    }

    .rera-info {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .rera-qr img {
        margin: 0 auto;
    }

    .mobile-fixed-cta {
        display: flex;
        background: white;
    }

    .map-container-box iframe {
        min-height: 350px;
    }

    body {
        padding-bottom: 60px; /* Space for fixed buttons */
    }

    nav {
        height: 70px;
    }

    .logo img {
        height: 45px;
    }

    .menu-toggle {
        display: flex;
        order: 2;
    }

    .nav-links {
        display: block;
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(26, 26, 26, 0.98);
        padding: 40px 0;
        text-align: center;
        z-index: 1001;
        transition: left 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        overflow-y: auto;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 0;
        padding: 15px 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        display: block;
    }

    .header-actions {
        order: 3;
        display: none; /* Enquire button in nav is redundant with fixed cta */
    }

    .hero {
        height: auto;
        margin-top: 70px;
    }

    .hero-content-wrapper {
        height: auto;
        min-height: auto;
    }



    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .highlights li {
        text-align: left;
    }

    .config-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

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

    .gallery-item {
        height: 200px;
        overflow: hidden;
    }
    
    .gallery-item img {
        transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    }
    
    .gallery-item:hover img {
        transform: scale(1.08);
    }


    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .location-list {
        grid-template-columns: 1fr;
    }


    .centered-form {
        padding: 30px 20px;
    }

    .popup-content {
        grid-template-columns: 1fr;
        max-height: 95vh;
        border-radius: 0;
    }

    .popup-image {
        display: none;
    }

    .popup-form-area {
        padding: 40px 25px;
    }

    .popup-form-area h2 {
        font-size: 1.8rem;
    }

    .contact-card-wrapper {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .faq-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .faq-question {
        padding: 18px 20px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }

    .map-container-box iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 250px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .pricing-table th, .pricing-table td {
        padding: 12px 10px;
        font-size: 0.85rem;
    }

    .m-cta span {
        font-size: 0.7rem;
    }

    .developed-by-badge {
        margin: 0 auto 25px;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .pricing-table-wrapper {
        overflow-x: auto;
    }
    
    .stat-item h3 {
        font-size: 2.2rem;
    }
}


/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #0d1a15;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.8s;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    width: 200px;
    height: auto;
    animation: loaderPulse 1.5s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%, 100% {
        opacity: 0.7;
        transform: scale(0.95);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-rera-simple {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1.5px;
    margin-top: 25px;
    font-weight: 500;
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
}
