
:root {
    --electric-blue: #0055ff;
    --sunset-orange: #ff5e00;
    --vibrant-magenta: #ff007f;
    --urban-white: #f8f9fa;
    --skyline-navy: #0a1128;
    --mint-green: #00e676;
    
    --neon-gradient: linear-gradient(135deg, var(--electric-blue), var(--vibrant-magenta));
    --sunset-gradient: linear-gradient(135deg, var(--sunset-orange), var(--vibrant-magenta));
    
    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Inter', sans-serif;
}

body {
    font-family: var(--font-secondary);
    color: var(--urban-white);
    background-color: var(--skyline-navy);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .brand-font {
    font-family: var(--font-primary);
    font-weight: 700;
}

.text-gradient {
    background: var(--neon-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-sunset {
    background: var(--sunset-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navbar */
.navbar-custom {
    background: rgba(10, 17, 40, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1050;
}
.navbar-custom .nav-link {
    color: var(--urban-white);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: color 0.3s;
}
.navbar-custom .nav-link:hover {
    color: var(--mint-green);
}

/* Buttons */
.btn-neon {
    background: var(--neon-gradient);
    border: none;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.btn-neon:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 85, 255, 0.4);
    color: #fff;
}

.btn-outline-neon {
    background: transparent;
    border: 2px solid var(--electric-blue);
    color: var(--urban-white);
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}
.btn-outline-neon:hover {
    background: var(--electric-blue);
    color: #fff;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: -2;
    opacity: 0.6;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(10, 17, 40, 0.9) 0%, rgba(10, 17, 40, 0.3) 100%);
    z-index: -1;
}

/* Property Cards */
.property-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s, box-shadow 0.4s;
    backdrop-filter: blur(10px);
}
.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(0, 230, 118, 0.3);
}
.property-img {
    height: 250px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.6s;
}
.property-card:hover .property-img {
    transform: scale(1.05);
}
.property-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--mint-green);
}
.badge-neon {
    background: var(--neon-gradient);
    color: #fff;
}

/* Footer */
.footer-custom {
    background: #050814;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 80px;
}
.footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-link:hover {
    color: var(--sunset-orange);
}

/* Extended Styles for Premium Homepage */
.hero-section { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 140px; padding-bottom: 80px; }
.hero-content { position: relative; z-index: 10; padding: 0 5%; }
.hero-title { font-size: clamp(2.5rem, 5vw, 5rem); font-weight: 800; line-height: 1.1; letter-spacing: -2px; }
.hero-video-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; opacity: 0.5; }

.section-padding { padding: 120px 0; }
.section-title { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 700; line-height: 1.2; letter-spacing: -1px; margin-bottom: 2rem; }
.section-subtitle { font-size: 1.2rem; text-transform: uppercase; letter-spacing: 3px; color: var(--sunset-orange); font-weight: 600; margin-bottom: 1rem; display: block; }

/* Storytelling Section */
.story-marquee { white-space: nowrap; overflow: hidden; padding: 2rem 0; background: var(--electric-blue); transform: rotate(-2deg) scale(1.1); margin: 4rem 0; box-shadow: 0 20px 40px rgba(0,85,255,0.3); }
.story-marquee h2 { font-size: 4rem; color: #fff; margin: 0; text-transform: uppercase; font-weight: 800; display: inline-block; padding-right: 50px; }

/* Neighborhood Showcase */
.neighborhood-card { position: relative; border-radius: 30px; overflow: hidden; height: 500px; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); cursor: pointer; }
.neighborhood-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.neighborhood-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,17,40,0.9) 0%, transparent 100%); padding: 40px; display: flex; flex-direction: column; justify-content: flex-end; }
.neighborhood-card:hover img { transform: scale(1.1); }
.neighborhood-card:hover { transform: translateY(-15px); box-shadow: 0 30px 60px rgba(0,230,118,0.2); }
.neighborhood-title { font-size: 2.5rem; color: #fff; margin-bottom: 10px; font-weight: 700; transform: translateY(20px); transition: transform 0.4s ease; }
.neighborhood-stats { display: flex; gap: 20px; opacity: 0; transform: translateY(20px); transition: all 0.4s ease 0.1s; }
.neighborhood-card:hover .neighborhood-title, .neighborhood-card:hover .neighborhood-stats { transform: translateY(0); opacity: 1; }

/* Social Discovery */
.social-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.social-card { background: rgba(255,255,255,0.02); border-radius: 20px; padding: 20px; border: 1px solid rgba(255,255,255,0.05); }
.social-header { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.social-avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid var(--vibrant-magenta); }
.social-img-wrap { border-radius: 15px; overflow: hidden; margin-bottom: 20px; position: relative; }
.social-img-wrap img { width: 100%; height: 350px; object-fit: cover; transition: transform 0.5s ease; }
.social-card:hover .social-img-wrap img { transform: scale(1.05); }
.social-likes { display: flex; justify-content: space-between; color: var(--urban-white); font-weight: 500; }

/* Testimonials */
.testimonial-card { background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%); padding: 50px; border-radius: 30px; border: 1px solid rgba(255,255,255,0.05); position: relative; }
.quote-icon { font-size: 4rem; color: var(--electric-blue); opacity: 0.3; position: absolute; top: 30px; right: 40px; }
.testimonial-text { font-size: 1.5rem; line-height: 1.6; font-style: italic; margin-bottom: 30px; }

/* Stats/Investment */
.stat-box { text-align: center; padding: 40px; background: rgba(0,85,255,0.05); border-radius: 30px; border: 1px solid rgba(0,85,255,0.1); transition: all 0.3s; }
.stat-box:hover { background: rgba(0,85,255,0.1); transform: translateY(-10px); }
.stat-number { font-size: 4rem; font-weight: 800; color: var(--mint-green); margin-bottom: 10px; font-family: var(--font-primary); }

/* CTA Section */
.cta-section { background: var(--sunset-gradient); padding: 120px 0; border-radius: 40px; margin: 0 20px 100px; text-align: center; position: relative; overflow: hidden; }
.cta-bg-shape { position: absolute; width: 600px; height: 600px; background: rgba(255,255,255,0.1); border-radius: 50%; top: -300px; right: -200px; filter: blur(80px); }

/* Custom Dropdown Icon */
.navbar-custom .dropdown-toggle::after { display: none !important; }


/* Lenis required CSS */
html.lenis, html.lenis body { height: auto; width: 100vw; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-scrolling iframe { pointer-events: none; }
