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

:root {
    --primary: #b691a1;
    --primary-dark: #9f7889;
    --secondary: #6e3a55;
    --secondary-dark: #572d42;
    --bg: #f8fafc;
    --white: #ffffff;
    --text: #1e293b;
    --muted: #64748b;
    --border: #e2e8f0;
    --shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

/* Navigation */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: height 0.3s, background 0.3s;
}

.site-nav.scrolled {
    height: 65px;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text);
    transition: color 0.3s;
}

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

.nav-call {
    background: var(--primary);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 4px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 5% 80px;
    position: relative;
    gap: 50px;
}

.hero-media {
    position: absolute;
    inset: 0;
    background: url('images/hero.webp') center/cover no-repeat;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(110, 58, 85, 0.9), rgba(182, 145, 161, 0.4));
    z-index: -1;
}

.hero-content {
    color: var(--white);
    max-width: 650px;
}

.eyebrow {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(40px, 8vw, 80px);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-copy {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

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

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

/* Buttons */
.btn {
    padding: 15px 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--secondary);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
}

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

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

/* Lead Panel */
.lead-panel {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    width: 400px;
    box-shadow: var(--shadow);
}

.panel-kicker {
    font-size: 12px;
    font-weight: 800;
    color: var(--secondary);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.lead-panel h2 {
    font-size: 24px;
    margin-bottom: 25px;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 5px;
}

.form-group input,
.form-group select {
    width: 100%;
    height: 45px;
    padding: 0 15px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: #f1f5f9;
}

.contact-section {
    background: #f1f5f9;
    flex-direction: row;
}

.map-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.blurred-map {
    width: 100%;
    max-width: 500px;
    display: block;
    filter: blur(4px);
}

.location-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.form-submit {
    width: 100%;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}

/* Intro Section */
.intro-section,
.feature-section,
.contact-section,
.topview-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 5%;
}

.topview-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.topview-container img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.intro-section {
    flex-direction: row;
    gap: 80px;
}

.intro-image {
    flex: 1;
}

.intro-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.intro-copy {
    flex: 1;
}

.section-kicker {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.intro-copy h2, .section-head h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.stat-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 40px 0;
    border: 1px solid var(--border);
}

.stat-strip div {
    padding: 20px;
    text-align: center;
    border-right: 1px solid var(--border);
}

.stat-strip div:last-child {
    border-right: none;
}

.stat-strip strong {
    display: block;
    font-size: 28px;
    color: var(--primary);
}

.stat-strip span {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--muted);
}

/* Pricing Section */
.pricing-section {
    padding: 100px 5%;
    background: var(--white);
}

.section-head {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.price-card {
    background: var(--bg);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: transform 0.3s;
}

.price-card:hover {
    transform: translateY(-5px);
}

.price-img {
    margin-bottom: 20px;
}

.price-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    filter: blur(4px);
    transition: filter 0.3s;
}


.price-card p {
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    font-size: 14px;
}

.price-card h3 {
    font-size: 24px;
    margin: 10px 0;
}

.price-card strong {
    font-size: 32px;
    color: var(--secondary);
}

.price-card span {
    display: block;
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 25px;
}

.price-card button {
    width: 100%;
    padding: 12px;
    background: var(--primary);
    color: var(--white);
    border: none;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
}

/* Token Section */
.token-section {
    padding: 100px 5%;
    background: #f1f5f9;
}

.token-cards-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.token-card {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    width: 300px;
    border-top: 4px solid var(--primary);
}

.token-card.platinum {
    border-top: 4px solid var(--secondary);
}

.token-card h4 {
    font-size: 20px;
    color: var(--text);
    margin-bottom: 15px;
}

.token-card strong {
    display: block;
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 10px;
}

.token-card.platinum strong {
    color: var(--secondary);
}

.token-card span {
    font-size: 14px;
    color: var(--muted);
    font-weight: 600;
}

/* Amenities */
.amenities-section {
    padding: 100px 5%;
}

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

.amenities-grid div {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    border-bottom: 4px solid var(--primary);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.amenities-grid strong {
    display: block;
    font-size: 18px;
    margin-bottom: 10px;
}

.amenities-grid span {
    font-size: 14px;
    color: var(--muted);
}

.center-action {
    text-align: center;
    margin-top: 40px;
}

.amenity-btn {
    min-width: 250px;
}

/* Gallery */
.gallery-section {
    padding: 100px 5%;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: 200px;
    gap: 15px;
}

.gallery-item {
    padding: 0;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.gallery-item span {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s;
}

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

/* Contact Section */
.contact-section {
    padding: 100px 5%;
    display: flex;
    gap: 80px;
    background: #f1f5f9;
    flex-direction: row; /* Text Left, Form Right */
    align-items: center;
}

.contact-copy {
    flex: 1;
}

.contact-details {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
}

.contact-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.contact-form {
    flex: 1;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* FAQ Section */
.faq-section {
    padding: 100px 5%;
    background: var(--bg);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-question {
    padding: 20px;
    font-weight: 700;
    cursor: pointer;
    background: var(--white);
    color: var(--primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question::after {
    content: '+';
    font-size: 20px;
    transition: transform 0.3s;
}

.faq-answer {
    display: none;
    padding: 0 20px 20px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}



/* Footer */
footer {
    padding: 80px 5% 40px;
    background: var(--primary-dark);
    color: var(--white);
    text-align: center;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.footer-rera-info {
    text-align: left;
    font-size: 14px;
    line-height: 1.4;
}

.footer-rera-info p {
    margin: 2px 0;
}

.footer-qr {
    background: var(--white);
    padding: 5px;
    border-radius: 4px;
}

.footer-brand {
    font-size: 32px;
    font-weight: 800;
}

.footer-brand h6 {
    font-size: 16px;
    font-weight: 400;
    opacity: 0.8;
    margin-top: 5px;
    text-transform: none;
}

.footer-disclaimer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 11px;
    opacity: 0.6;
    max-width: 1000px;
    margin-inline: auto;
}

/* Popup */
.popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

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

.popup-box {
    background: var(--white);
    width: min(450px, 90%);
    padding: 40px;
    border-radius: 8px;
    position: relative;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

.popup-title {
    font-size: 24px;
    font-weight: 800;
}

.popup-sub {
    color: var(--muted);
    margin-bottom: 25px;
}

.popup-success {
    display: none;
    text-align: center;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 1500;
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: currentColor;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .lead-panel {
        width: 100%;
    }
    
    .intro-section, .contact-section {
        flex-direction: column;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .stat-strip {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
