// Initialize property data (would normally come from API) const propertyData = { title: "Oceanview Luxury Villa", price: "$12,500,000", address: "123 Coastal Drive, Malibu, CA", description: "Perched atop exclusive coastal cliffs, this architectural masterpiece offers panoramic ocean vistas from every vantage point. The property spans 12,000 sqft with 7 bedrooms, 9 baths, and expansive living spaces designed for grand entertaining.", specs: { bedrooms: 7, bathrooms: 9, area: "12,000 sqft", year: 2022 }, amenities: [ "Infinity Pool", "Home Theater", "Wine Cellar", "Smart Home", "Gym", "Chef's Kitchen", "Elevator", "Guest House", "Helipad" ], features: [ "Direct Beach Access", "Solar Panels", "Waterfront", "Mountain View", "Gated Community", "Private Dock" ] }; // Slider images (would normally come from API) const sliderImages = [ "http://static.photos/real-estate/1200x630/1", "http://static.photos/real-estate/1200x630/2", "http://static.photos/real-estate/1200x630/3", "http://static.photos/real-estate/1200x630/4" ]; // Similar properties (would normally come from API) const similarProperties = [ { id: 1, title: "Hillside Estate", price: "$9,850,000", image: "http://static.photos/real-estate/640x360/5", specs: "6 BD | 8 BA | 10,500 sqft" }, { id: 2, title: "Modern Penthouse", price: "$7,200,000", image: "http://static.photos/real-estate/640x360/6", specs: "5 BD | 6 BA | 6,800 sqft" }, { id: 3, title: "Gated Mansion", price: "$15,750,000", image: "http://static.photos/real-estate/640x360/7", specs: "8 BD | 10 BA | 15,000 sqft" } ]; // Export data for components to use window.appData = { propertyData, sliderImages, similarProperties };