Spaces:
Running
Running
please make a page of "Featured Properties" more bright and colorful and redable - Follow Up Deployment
15c2d93 verified | <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>LUXE Portugal | Tokenized Real Estate & Visa Services</title> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> | |
| <script> | |
| tailwind.config = { | |
| theme: { | |
| extend: { | |
| colors: { | |
| primary: '#6e45e2', | |
| secondary: '#88d3ce', | |
| accent: '#ff7bbd', | |
| dark: '#1a1a2e', | |
| glow: '#00f9ff', | |
| }, | |
| fontFamily: { | |
| sans: ['Montserrat', 'sans-serif'], | |
| }, | |
| } | |
| } | |
| } | |
| </script> | |
| <style> | |
| @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap'); | |
| .hero-gradient { | |
| background: linear-gradient(135deg, rgba(30,30,60,0.9) 0%, rgba(20,20,40,0.95) 100%); | |
| position: relative; | |
| overflow: hidden; | |
| } | |
| .hero-gradient::before { | |
| content: ''; | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| right: 0; | |
| bottom: 0; | |
| background: | |
| radial-gradient(circle at 20% 30%, rgba(110,69,226,0.3) 0%, transparent 30%), | |
| radial-gradient(circle at 80% 70%, rgba(255,123,189,0.3) 0%, transparent 30%); | |
| z-index: 0; | |
| } | |
| .property-card { | |
| transition: all 0.3s ease; | |
| border: 1px solid rgba(255,255,255,0.5); | |
| } | |
| .property-card:hover { | |
| transform: translateY(-8px); | |
| } | |
| .testimonial-card { | |
| transition: all 0.3s ease; | |
| } | |
| .testimonial-card:hover { | |
| background-color: #2a4365; | |
| color: white; | |
| } | |
| .crypto-badge { | |
| background: rgba(0,0,0,0.7); | |
| border: 1px solid #6e45e2; | |
| animation: pulse 2s infinite, glow 3s ease-in-out infinite alternate; | |
| backdrop-filter: blur(5px); | |
| } | |
| @keyframes pulse { | |
| 0% { transform: scale(1); } | |
| 50% { transform: scale(1.05); } | |
| 100% { transform: scale(1); } | |
| } | |
| @keyframes glow { | |
| 0% { box-shadow: 0 0 5px #6e45e2; } | |
| 100% { box-shadow: 0 0 20px #6e45e2; } | |
| } | |
| </style> | |
| </head> | |
| <body class="font-sans"> | |
| <!-- Navigation --> | |
| <nav class="bg-gray-900 border-b border-gray-800 sticky top-0 z-50 backdrop-blur-md"> | |
| <div class="max-w-7xl mx-auto px-4"> | |
| <div class="flex justify-between items-center h-16"> | |
| <div class="flex items-center space-x-4"> | |
| <div class="flex-shrink-0"> | |
| <span class="text-primary text-xl font-bold">LUXE Portugal</span> | |
| </div> | |
| </div> | |
| <div class="hidden md:flex items-center space-x-6"> | |
| <a href="#services" class="text-gray-700 hover:text-primary transition">Services</a> | |
| <a href="#properties" class="text-gray-700 hover:text-primary transition">Properties</a> | |
| <a href="#tokenization" class="text-gray-700 hover:text-primary transition">Tokenization</a> | |
| <a href="#visas" class="text-gray-700 hover:text-primary transition">Visa Support</a> | |
| <a href="#about" class="text-gray-700 hover:text-primary transition">About</a> | |
| <a href="#contact" class="text-gray-700 hover:text-primary transition">Contact</a> | |
| </div> | |
| <div class="hidden md:block"> | |
| <button class="bg-gradient-to-r from-primary to-accent hover:from-primary/90 hover:to-accent/90 text-white px-4 py-2 rounded-md transition-all hover:shadow-[0_0_10px_2px_rgba(110,69,226,0.5)]"> | |
| <span class="drop-shadow-[0_0_2px_rgba(255,255,255,0.3)]">Platform Login</span> | |
| </button> | |
| </div> | |
| <div class="md:hidden"> | |
| <button class="mobile-menu-button p-2 focus:outline-none"> | |
| <svg class="h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"> | |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" /> | |
| </svg> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Mobile menu --> | |
| <div class="mobile-menu hidden md:hidden bg-white shadow-lg"> | |
| <a href="#services" class="block py-2 px-4 text-sm hover:bg-gray-100">Services</a> | |
| <a href="#properties" class="block py-2 px-4 text-sm hover:bg-gray-100">Properties</a> | |
| <a href="#tokenization" class="block py-2 px-4 text-sm hover:bg-gray-100">Tokenization</a> | |
| <a href="#visas" class="block py-2 px-4 text-sm hover:bg-gray-100">Visa Support</a> | |
| <a href="#about" class="block py-2 px-4 text-sm hover:bg-gray-100">About</a> | |
| <a href="#contact" class="block py-2 px-4 text-sm hover:bg-gray-100">Contact</a> | |
| <div class="px-4 py-3"> | |
| <button class="bg-accent w-full text-white px-4 py-2 rounded-md">Platform Login</button> | |
| </div> | |
| </div> | |
| </nav> | |
| <!-- Hero Section --> | |
| <section class="hero-gradient text-white"> | |
| <div class="max-w-7xl mx-auto px-4 py-24 sm:px-6 lg:px-8"> | |
| <div class="md:flex items-center justify-between"> | |
| <div class="md:w-1/2 mb-10 md:mb-0"> | |
| <h1 class="text-4xl md:text-5xl font-bold mb-6">Luxury Living Meets Blockchain Innovation</h1> | |
| <p class="text-lg mb-8">Premium serviced accommodations with seamless visa support and fractional real estate ownership via blockchain tokens in Portugal's most desirable locations.</p> | |
| <div class="flex flex-col sm:flex-row space-y-3 sm:space-y-0 sm:space-x-4"> | |
| <button class="bg-accent hover:bg-white hover:text-primary px-6 py-3 rounded-md font-medium transition">Explore Properties</button> | |
| <button class="bg-white hover:bg-gray-100 text-primary px-6 py-3 rounded-md font-medium transition">Visa Consultation</button> | |
| </div> | |
| <div class="mt-8 flex items-center space-x-4"> | |
| <div class="flex -space-x-2"> | |
| <img class="inline-block h-10 w-10 rounded-full ring-2 ring-white" src="https://randomuser.me/api/portraits/women/11.jpg" alt="User"> | |
| <img class="inline-block h-10 w-10 rounded-full ring-2 ring-white" src="https://randomuser.me/api/portraits/men/22.jpg" alt="User"> | |
| <img class="inline-block h-10 w-10 rounded-full ring-2 ring-white" src="https://randomuser.me/api/portraits/women/33.jpg" alt="User"> | |
| </div> | |
| <div> | |
| <p class="text-sm">Trusted by 500+ digital nomads and investors</p> | |
| <div class="flex space-x-1"> | |
| <i class="fas fa-star text-yellow-300"></i> | |
| <i class="fas fa-star text-yellow-300"></i> | |
| <i class="fas fa-star text-yellow-300"></i> | |
| <i class="fas fa-star text-yellow-300"></i> | |
| <i class="fas fa-star text-yellow-300"></i> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="md:w-2/5 relative"> | |
| <div class="bg-white rounded-xl shadow-xl overflow-hidden"> | |
| <div class="relative"> | |
| <img src="https://images.unsplash.com/photo-1564013799919-ab600027ffc6?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Luxury Villa" class="w-full h-64 object-cover"> | |
| <div class="absolute bottom-4 left-4 bg-accent text-white px-3 py-1 rounded-full text-xs font-medium"> | |
| Fractional Ownership Available | |
| </div> | |
| </div> | |
| <div class="p-6"> | |
| <div class="flex justify-between items-start mb-4"> | |
| <div> | |
| <h3 class="text-xl font-bold text-gray-800">Modern Villa in Cascais</h3> | |
| <p class="text-gray-500"><i class="fas fa-map-marker-alt mr-1"></i> Cascais, Portugal</p> | |
| </div> | |
| <div class="bg-primary text-white px-3 py-1 rounded-full text-sm font-medium"> | |
| 15 Properties Left | |
| </div> | |
| </div> | |
| <div class="flex justify-between items-center mb-4"> | |
| <div> | |
| <span class="text-primary text-2xl font-bold">€500k</span> | |
| <span class="text-gray-500">per token share</span> | |
| </div> | |
| <div class="text-right"> | |
| <p class="text-sm text-gray-500">Projected ROI</p> | |
| <span class="text-green-500 font-bold">8-12%</span> | |
| </div> | |
| </div> | |
| <button class="w-full bg-primary hover:bg-secondary text-white py-2 rounded-md transition">Tokenize Your Portfolio</button> | |
| </div> | |
| </div> | |
| <div class="absolute -bottom-6 -right-6 bg-accent text-white px-4 py-2 rounded-full shadow-lg crypto-badge"> | |
| <div class="flex items-center"> | |
| <i class="fab fa-ethereum mr-2"></i> | |
| <span>Crypto Payments Accepted</span> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Services Section --> | |
| <section id="services" class="py-16 bg-gray-50"> | |
| <div class="max-w-7xl mx-auto px-4"> | |
| <div class="text-center mb-12"> | |
| <h2 class="text-3xl font-bold mb-4 text-gray-800">Our Comprehensive Services</h2> | |
| <p class="text-lg text-gray-600 max-w-3xl mx-auto">From luxury accommodations to blockchain-powered real estate investments, we provide end-to-end solutions for your Portugal journey.</p> | |
| </div> | |
| <div class="grid md:grid-cols-3 gap-8"> | |
| <!-- Service 1 --> | |
| <div class="bg-white p-8 rounded-lg shadow-md hover:shadow-lg transition"> | |
| <div class="w-16 h-16 bg-primary rounded-full flex items-center justify-center text-white mb-6 text-2xl"> | |
| <i class="fas fa-home"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-4 text-gray-800">Fully-Serviced Luxury Stays</h3> | |
| <p class="text-gray-600 mb-6">Premium serviced apartments and villas in Lisbon, Cascais and Costa da Caparica with all amenities included.</p> | |
| <div class="flex flex-col space-y-3"> | |
| <div class="flex items-center"> | |
| <i class="fas fa-check text-green-500 mr-2"></i> | |
| <span>Fully furnished properties</span> | |
| </div> | |
| <div class="flex items-center"> | |
| <i class="fas fa-check text-green-500 mr-2"></i> | |
| <span>Dedicated concierge service</span> | |
| </div> | |
| <div class="flex items-center"> | |
| <i class="fas fa-check text-green-500 mr-2"></i> | |
| <span>Preferred monthly rates</span> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Service 2 --> | |
| <div class="bg-white p-8 rounded-lg shadow-md hover:shadow-lg transition"> | |
| <div class="w-16 h-16 bg-primary rounded-full flex items-center justify-center text-white mb-6 text-2xl"> | |
| <i class="fas fa-passport"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-4 text-gray-800">Visa Concierge</h3> | |
| <p class="text-gray-600 mb-6">End-to-end D2/D7 visa processing with legal experts handling your application for residency in Portugal.</p> | |
| <div class="flex flex-col space-y-3"> | |
| <div class="flex items-center"> | |
| <i class="fas fa-check text-green-500 mr-2"></i> | |
| <span>Document preparation</span> | |
| </div> | |
| <div class="flex items-center"> | |
| <i class="fas fa-check text-green-500 mr-2"></i> | |
| <span>Embassy coordination</span> | |
| </div> | |
| <div class="flex items-center"> | |
| <i class="fas fa-check text-green-500 mr-2"></i> | |
| <span>Accommodation verification</span> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Service 3 --> | |
| <div class="bg-white p-8 rounded-lg shadow-md hover:shadow-lg transition"> | |
| <div class="w-16 h-16 bg-primary rounded-full flex items-center justify-center text-white mb-6 text-2xl"> | |
| <i class="fab fa-ethereum"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-4 text-gray-800">Tokenized Real Estate</h3> | |
| <p class="text-gray-600 mb-6">Fractional ownership of premium Portuguese properties using blockchain technology for seamless global investment.</p> | |
| <div class="flex flex-col space-y-3"> | |
| <div class="flex items-center"> | |
| <i class="fas fa-check text-green-500 mr-2"></i> | |
| <span>Invest as little as €5,000</span> | |
| </div> | |
| <div class="flex items-center"> | |
| <i class="fas fa-check text-green-500 mr-2"></i> | |
| <span>Trade on secondary market</span> | |
| </div> | |
| <div class="flex items-center"> | |
| <i class="fas fa-check text-green-500 mr-2"></i> | |
| <span>Receive rental income in crypto</span> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Properties Section --> | |
| <section id="properties" class="py-16 bg-gradient-to-b from-blue-50 to-white"> | |
| <div class="max-w-7xl mx-auto px-4"> | |
| <div class="mb-12 text-center"> | |
| <h2 class="text-4xl font-bold mb-4 text-primary">Featured Properties</h2> | |
| <p class="text-xl text-accent font-medium">Handpicked luxury residences with tokenization options available</p> | |
| </div> | |
| <div class="grid md:grid-cols-3 gap-10 mb-10"> | |
| <!-- Property 1 --> | |
| <div class="property-card bg-white rounded-xl overflow-hidden shadow-2xl transition-all duration-300 hover:shadow-[0_20px_25px_-5px_rgba(110,69,226,0.15)]"> | |
| <div class="relative"> | |
| <div class="h-48 bg-gradient-to-br from-primary to-accent flex items-center justify-center"> | |
| <img src="https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Property 1" class="w-full h-full object-cover"> | |
| </div> | |
| <div class="absolute top-4 right-4 bg-white/90 text-primary px-3 py-1 rounded-full text-xs font-bold shadow-md border border-white"> | |
| 🔥 Tokenized | |
| </div> | |
| <div class="absolute -bottom-3 right-4"> | |
| <div class="bg-white text-accent font-bold px-3 py-1 rounded-full text-sm shadow-lg border border-gray-100"> | |
| HOT DEAL | |
| </div> | |
| </div> | |
| </div> | |
| <div class="p-6 pt-8"> | |
| <div class="flex justify-between items-start mb-3"> | |
| <h3 class="text-2xl font-bold text-gray-900">Oceanview Penthouse</h3> | |
| <p class="text-primary text-xl font-bold">€1.2M</p> | |
| </div> | |
| <p class="text-accent mb-5 font-medium"><i class="fas fa-map-marker-alt mr-2"></i> Lisbon, Portugal</p> | |
| <div class="flex justify-between text-sm mb-5 px-1"> | |
| <span class="flex items-center text-gray-700"><i class="fas fa-bed mr-2 text-primary"></i> 3 Beds</span> | |
| <span class="flex items-center text-gray-700"><i class="fas fa-bath mr-2 text-primary"></i> 2 Baths</span> | |
| <span class="flex items-center text-gray-700"><i class="fas fa-ruler-combined mr-2 text-primary"></i> 180m²</span> | |
| </div> | |
| <p class="text-gray-700 mb-6 leading-relaxed">Stunning views of Tagus River with rooftop terrace and premium amenities. Perfect for digital nomads and investors.</p> | |
| <div class="flex justify-between items-center bg-gray-50 p-3 rounded-lg"> | |
| <button class="bg-gradient-to-r from-primary to-accent hover:from-accent hover:to-primary text-white px-5 py-2 rounded-lg font-bold transition-all hover:shadow-lg"> | |
| View Details | |
| </button> | |
| <span class="text-sm font-medium text-accent">From €50k</span> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Property 2 --> | |
| <div class="property-card bg-white rounded-xl overflow-hidden shadow-2xl transition-all duration-300 hover:shadow-[0_20px_25px_-5px_rgba(110,69,226,0.15)]"> | |
| <div class="relative"> | |
| <div class="h-48 bg-gradient-to-br from-amber-400 to-rose-500 flex items-center justify-center"> | |
| <img src="https://images.unsplash.com/photo-1512917774080-9991f1c4c750?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Property 2" class="w-full h-full object-cover"> | |
| </div> | |
| <div class="absolute top-4 right-4 bg-white/90 text-green-600 px-3 py-1 rounded-full text-xs font-bold shadow-md border border-white"> | |
| ✅ Available | |
| </div> | |
| <div class="absolute -bottom-3 right-4"> | |
| <div class="bg-white text-rose-500 font-bold px-3 py-1 rounded-full text-sm shadow-lg border border-gray-100"> | |
| NEW LISTING | |
| </div> | |
| </div> | |
| </div> | |
| <div class="p-6 pt-8"> | |
| <div class="flex justify-between items-start mb-3"> | |
| <h3 class="text-2xl font-bold text-gray-900">Modern Cliffside Villa</h3> | |
| <p class="text-primary text-xl font-bold">€2.5M</p> | |
| </div> | |
| <p class="text-accent mb-5 font-medium"><i class="fas fa-map-marker-alt mr-2"></i> Costa da Caparica, Portugal</p> | |
| <div class="flex justify-between text-sm mb-5 px-1"> | |
| <span class="flex items-center text-gray-700"><i class="fas fa-bed mr-2 text-primary"></i> 5 Beds</span> | |
| <span class="flex items-center text-gray-700"><i class="fas fa-bath mr-2 text-primary"></i> 4 Baths</span> | |
| <span class="flex items-center text-gray-700"><i class="fas fa-ruler-combined mr-2 text-primary"></i> 350m²</span> | |
| </div> | |
| <p class="text-gray-700 mb-6 leading-relaxed">Architectural masterpiece with infinity pool and direct beach access. Recently renovated with smart home technology.</p> | |
| <div class="flex justify-between items-center bg-gray-50 p-3 rounded-lg"> | |
| <button class="bg-gradient-to-r from-primary to-accent hover:from-accent hover:to-primary text-white px-5 py-2 rounded-lg font-bold transition-all hover:shadow-lg"> | |
| View Details | |
| </button> | |
| <span class="text-sm font-medium text-rose-500">Whole ownership</span> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Property 3 --> | |
| <div class="property-card bg-white rounded-xl overflow-hidden shadow-2xl transition-all duration-300 hover:shadow-[0_20px_25px_-5px_rgba(110,69,226,0.15)]"> | |
| <div class="relative"> | |
| <div class="h-48 bg-gradient-to-br from-emerald-400 to-sky-500 flex items-center justify-center"> | |
| <img src="https://images.unsplash.com/photo-1493809842364-78817add7ffb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Property 3" class="w-full h-full object-cover"> | |
| </div> | |
| <div class="absolute top-4 right-4 bg-white/90 text-primary px-3 py-1 rounded-full text-xs font-bold shadow-md border border-white"> | |
| ⭐ Featured | |
| </div> | |
| <div class="absolute -bottom-3 right-4"> | |
| <div class="bg-white text-emerald-500 font-bold px-3 py-1 rounded-full text-sm shadow-lg border border-gray-100"> | |
| HIGH DEMAND | |
| </div> | |
| </div> | |
| </div> | |
| <div class="p-6 pt-8"> | |
| <div class="flex justify-between items-start mb-3"> | |
| <h3 class="text-2xl font-bold text-gray-900">Historic Downtown Loft</h3> | |
| <p class="text-primary text-xl font-bold">€850k</p> | |
| </div> | |
| <p class="text-accent mb-5 font-medium"><i class="fas fa-map-marker-alt mr-2"></i> Chiado, Lisbon</p> | |
| <div class="flex justify-between text-sm mb-5 px-1"> | |
| <span class="flex items-center text-gray-700"><i class="fas fa-bed mr-2 text-primary"></i> 2 Beds</span> | |
| <span class="flex items-center text-gray-700"><i class="fas fa-bath mr-2 text-primary"></i> 2 Baths</span> | |
| <span class="flex items-center text-gray-700"><i class="fas fa-ruler-combined mr-2 text-primary"></i> 120m²</span> | |
| </div> | |
| <p class="text-gray-700 mb-6 leading-relaxed">Charming restored warehouse with high ceilings and designer finishes. Prime location steps from top restaurants.</p> | |
| <div class="flex justify-between items-center bg-gray-50 p-3 rounded-lg"> | |
| <button class="bg-gradient-to-r from-primary to-accent hover:from-accent hover:to-primary text-white px-5 py-2 rounded-lg font-bold transition-all hover:shadow-lg"> | |
| View Details | |
| </button> | |
| <span class="text-sm font-medium text-emerald-500">From €25k</span> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="text-center mt-10"> | |
| <button class="bg-gradient-to-r from-primary to-accent hover:from-accent hover:to-primary text-white px-8 py-4 rounded-xl font-bold text-lg transition-all hover:shadow-lg hover:scale-105"> | |
| Explore All Properties <i class="fas fa-arrow-right ml-2"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Tokenization Section --> | |
| <section id="tokenization" class="py-16 bg-gray-50"> | |
| <div class="max-w-7xl mx-auto px-4"> | |
| <div class="md:flex items-center"> | |
| <div class="md:w-1/2 mb-10 md:mb-0"> | |
| <h2 class="text-3xl font-bold mb-6 text-gray-800">Fractional Ownership Through Blockchain</h2> | |
| <p class="text-lg text-gray-600 mb-6">Our platform leverages Ethereum blockchain technology to democratize access to premium Portuguese real estate investments.</p> | |
| <div class="grid md:grid-cols-2 gap-6"> | |
| <div> | |
| <div class="flex items-start mb-4"> | |
| <div class="text-accent text-2xl mr-4"> | |
| <i class="fas fa-unlock-alt"></i> | |
| </div> | |
| <div> | |
| <h4 class="font-bold mb-1 text-gray-800">Smart Contract Security</h4> | |
| <p class="text-gray-600">All property tokens are backed by legally binding smart contracts audited by third parties.</p> | |
| </div> | |
| </div> | |
| </div> | |
| <div> | |
| <div class="flex items-start mb-4"> | |
| <div class="text-accent text-2xl mr-4"> | |
| <i class="fas fa-exchange-alt"></i> | |
| </div> | |
| <div> | |
| <h4 class="font-bold mb-1 text-gray-800">Secondary Market Trading</h4> | |
| <p class="text-gray-600">Buy and sell property tokens anytime on our regulated marketplace.</p> | |
| </div> | |
| </div> | |
| </div> | |
| <div> | |
| <div class="flex items-start mb-4"> | |
| <div class="text-accent text-2xl mr-4"> | |
| <i class="fas fa-euro-sign"></i> | |
| </div> | |
| <div> | |
| <h4 class="font-bold mb-1 text-gray-800">Dual Currency Support</h4> | |
| <p class="text-gray-600">Invest with crypto or traditional fiat through our compliant platform.</p> | |
| </div> | |
| </div> | |
| </div> | |
| <div> | |
| <div class="flex items-start mb-4"> | |
| <div class="text-accent text-2xl mr-4"> | |
| <i class="fas fa-home"></i> | |
| </div> | |
| <div> | |
| <h4 class="font-bold mb-1 text-gray-800">Liquidity for Owners</h4> | |
| <p class="text-gray-600">Property owners can tokenize assets for partial liquidity while retaining usage rights.</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="md:w-1/2 md:pl-12"> | |
| <div class="bg-white p-8 rounded-lg shadow-lg"> | |
| <h3 class="text-2xl font-bold mb-6 text-center text-gray-800">How Tokenization Works</h3> | |
| <div class="relative"> | |
| <!-- How it works steps --> | |
| <div class="border-l-2 border-primary pl-8 space-y-12"> | |
| <!-- Step 1 --> | |
| <div class="relative"> | |
| <div class="absolute -left-8 top-0 w-6 h-6 rounded-full bg-primary flex items-center justify-center text-white font-bold">1</div> | |
| <h4 class="font-bold mb-2 text-gray-800">Property Selection & Due Diligence</h4> | |
| <p class="text-gray-600">Our team vets premium properties in prime Portuguese locations.</p> | |
| </div> | |
| <!-- Step 2 --> | |
| <div class="relative"> | |
| <div class="absolute -left-8 top-0 w-6 h-6 rounded-full bg-primary flex items-center justify-center text-white font-bold">2</div> | |
| <h4 class="font-bold mb-2 text-gray-800">Tokenization Process</h4> | |
| <p class="text-gray-600">Legal and technical structuring to create fractional shares as tokens.</p> | |
| </div> | |
| <!-- Step 3 --> | |
| <div class="relative"> | |
| <div class="absolute -left-8 top-0 w-6 h-6 rounded-full bg-primary flex items-center justify-center text-white font-bold">3</div> | |
| <h4 class="font-bold mb-2 text-gray-800">Initial Offering</h4> | |
| <p class="text-gray-600">Tokens are offered for sale with detailed property prospectus.</p> | |
| </div> | |
| <!-- Step 4 --> | |
| <div class="relative"> | |
| <div class="absolute -left-8 top-0 w-6 h-6 rounded-full bg-primary flex items-center justify-center text-white font-bold">4</div> | |
| <h4 class="font-bold mb-2 text-gray-800">Secondary Trading</h4> | |
| <p class="text-gray-600">Investors can trade tokens on our regulated marketplace.</p> | |
| </div> | |
| <!-- Step 5 --> | |
| <div class="relative"> | |
| <div class="absolute -left-8 top-0 w-6 h-6 rounded-full bg-primary flex items-center justify-center text-white font-bold">5</div> | |
| <h4 class="font-bold mb-2 text-gray-800">Income Distribution</h4> | |
| <p class="text-gray-600">Rental income distributed automatically to token holders.</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Visa Section --> | |
| <section id="visas" class="py-16 bg-primary text-white"> | |
| <div class="max-w-7xl mx-auto px-4"> | |
| <div class="text-center mb-12"> | |
| <h2 class="text-3xl font-bold mb-4">Portugal Visa Services</h2> | |
| <p class="text-lg max-w-3xl mx-auto">Comprehensive legal support for your D2 (entrepreneur) or D7 (passive income) visa application to Portugal</p> | |
| </div> | |
| <div class="grid md:grid-cols-3 gap-8 mb-12"> | |
| <!-- Package 1 --> | |
| <div class="bg-white text-gray-800 rounded-lg overflow-hidden shadow-lg"> | |
| <div class="p-6 border-b"> | |
| <h3 class="text-xl font-bold mb-2">Basic Visa Package</h3> | |
| <p class="text-gray-600">For applicants who need minimal support</p> | |
| </div> | |
| <div class="p-6"> | |
| <div class="flex items-end mb-6"> | |
| <span class="text-4xl font-bold">€1,500</span> | |
| <span class="text-gray-500 ml-1">+VFS fees</span> | |
| </div> | |
| <ul class="space-y-3 mb-8"> | |
| <li class="flex items-center"> | |
| <i class="fas fa-check text-green-500 mr-2"></i> | |
| <span>Document checklist & review</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i class="fas fa-check text-green-500 mr-2"></i> | |
| <span>Application form guidance</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i class="fas fa-check text-green-500 mr-2"></i> | |
| <span>1 legal consultation</span> | |
| </li> | |
| <li class="flex items-center text-gray-400"> | |
| <i class="fas fa-times text-red-400 mr-2"></i> | |
| <span>Accommodation verification</span> | |
| </li> | |
| <li class="flex items-center text-gray-400"> | |
| <i class="fas fa-times text-red-400 mr-2"></i> | |
| <span>Embassy representation</span> | |
| </li> | |
| </ul> | |
| <button class="w-full bg-gray-200 hover:bg-gray-300 text-gray-800 py-2 rounded-md transition">Get Started</button> | |
| </div> | |
| </div> | |
| <!-- Package 2 --> | |
| <div class="bg-white text-gray-800 rounded-lg overflow-hidden shadow-lg transform scale-105"> | |
| <div class="bg-accent text-white p-2 text-center"> | |
| <p class="text-sm font-medium">MOST POPULAR</p> | |
| </div> | |
| <div class="p-6 border-b"> | |
| <h3 class="text-xl font-bold mb-2">Complete Visa Package</h3> | |
| <p class="text-gray-600">Full support with accommodation</p> | |
| </div> | |
| <div class="p-6"> | |
| <div class="flex items-end mb-6"> | |
| <span class="text-4xl font-bold">€4,800</span> | |
| <span class="text-gray-500 ml-1">+VFS fees</span> | |
| </div> | |
| <ul class="space-y-3 mb-8"> | |
| <li class="flex items-center"> | |
| <i class="fas fa-check text-green-500 mr-2"></i> | |
| <span>All Basic Package services</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i class="fas fa-check text-green-500 mr-2"></i> | |
| <span>Embassy appointment booking</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i class="fas fa-check text-green-500 mr-2"></i> | |
| <span>3 months accommodation included</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i class="fas fa-check text-green-500 mr-2"></i> | |
| <span>Unlimited legal consultations</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i class="fas fa-check text-green-500 mr-2"></i> | |
| <span>Personalized application strategy</span> | |
| </li> | |
| </ul> | |
| <button class="w-full bg-accent hover:bg-primary text-white py-2 rounded-md transition">Get Started</button> | |
| </div> | |
| </div> | |
| <!-- Package 3 --> | |
| <div class="bg-white text-gray-800 rounded-lg overflow-hidden shadow-lg"> | |
| <div class="p-6 border-b"> | |
| <h3 class="text-xl font-bold mb-2">Premium Visa Package</h3> | |
| <p class="text-gray-600">VIP service for high-net-worth individuals</p> | |
| </div> | |
| <div class="p-6"> | |
| <div class="flex items-end mb-6"> | |
| <span class="text-4xl font-bold">€9,500</span> | |
| <span class="text-gray-500 ml-1">+VFS fees</span> | |
| </div> | |
| <ul class="space-y-3 mb-8"> | |
| <li class="flex items-center"> | |
| <i class="fas fa-check text-green-500 mr-2"></i> | |
| <span>All Complete Package services</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i class="fas fa-check text-green-500 mr-2"></i> | |
| <span>6 months luxury accommodation</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i class="fas fa-check text-green-500 mr-2"></i> | |
| <span>Dedicated visa specialist</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i class="fas fa-check text-green-500 mr-2"></i> | |
| <span>Expedited processing</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i class="fas fa-check text-green-500 mr-2"></i> | |
| <span>Business networking opportunities</span> | |
| </li> | |
| </ul> | |
| <button class="w-full bg-gray-200 hover:bg-gray-300 text-gray-800 py-2 rounded-md transition">Contact Our Team</button> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="text-center"> | |
| <p class="text-lg mb-6">Not sure which package is right for you?</p> | |
| <button class="bg-white hover:bg-gray-100 text-primary px-6 py-3 rounded-md font-medium transition">Get a Free Consultation</button> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Testimonials Section --> | |
| <section class="py-16"> | |
| <div class="max-w-7xl mx-auto px-4"> | |
| <div class="text-center mb-12"> | |
| <h2 class="text-3xl font-bold mb-4 text-gray-800">Success Stories</h2> | |
| <p class="text-lg text-gray-600 max-w-3xl mx-auto">What our clients say about their experience with LUXE Portugal</p> | |
| </div> | |
| <div class="grid md:grid-cols-3 gap-8"> | |
| <!-- Testimonial 1 --> | |
| <div class="testimonial-card bg-white p-8 rounded-lg shadow-md border border-gray-200"> | |
| <div class="flex items-center mb-6"> | |
| <img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Client 1" class="w-16 h-16 rounded-full mr-4"> | |
| <div> | |
| <h4 class="font-bold">Sarah Johnson</h4> | |
| <p class="text-gray-500">Digital Nomad from USA</p> | |
| <div class="flex space-x-1"> | |
| <i class="fas fa-star text-yellow-300"></i> | |
| <i class="fas fa-star text-yellow-300"></i> | |
| <i class="fas fa-star text-yellow-300"></i> | |
| <i class="fas fa-star text-yellow-300"></i> | |
| <i class="fas fa-star text-yellow-300"></i> | |
| </div> | |
| </div> | |
| </div> | |
| <p class="text-gray-600 italic">"The visa process seemed overwhelming until I found LUXE. Their team handled everything from document preparation to accommodation verification. I'm now happily living in Lisbon with residency sorted!"</p> | |
| </div> | |
| <!-- Testimonial 2 --> | |
| <div class="testimonial-card bg-white p-8 rounded-lg shadow-md border border-gray-200"> | |
| <div class="flex items-center mb-6"> | |
| <img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Client 2" class="w-16 h-16 rounded-full mr-4"> | |
| <div> | |
| <h4 class="font-bold">Michael Chen</h4> | |
| <p class="text-gray-500">Crypto Investor from Singapore</p> | |
| <div class="flex space-x-1"> | |
| <i class="fas fa-star text-yellow-300"></i> | |
| <i class="fas fa-star text-yellow-300"></i> | |
| <i class="fas fa-star text-yellow-300"></i> | |
| <i class="fas fa-star text-yellow-300"></i> | |
| <i class="fas fa-star text-yellow-300"></i> | |
| </div> | |
| </div> | |
| </div> | |
| <p class="text-gray-600 italic">"As someone who prefers crypto investments, LUXE's tokenized real estate platform was perfect. I bought fractional shares in two Lisbon properties and receive rental income directly in ETH. The smart contracts work flawlessly."</p> | |
| </div> | |
| <!-- Testimonial 3 --> | |
| <div class="testimonial-card bg-white p-8 rounded-lg shadow-md border border-gray-200"> | |
| <div class="flex items-center mb-6"> | |
| <img src="https://randomuser.me/api/portraits/women/68.jpg" alt="Client 3" class="w-16 h-16 rounded-full mr-4"> | |
| <div> | |
| <h4 class="font-bold">Elena Petrov</h4> | |
| <p class="text-gray-500">Property Owner from Russia</p> | |
| <div class="flex space-x-1"> | |
| <i class="fas fa-star text-yellow-300"></i> | |
| <i class="fas fa-star text-yellow-300"></i> | |
| <i class="fas fa-star text-yellow-300"></i> | |
| <i class="fas fa-star text-yellow-300"></i> | |
| <i class="fas fa-star text-yellow-300"></i> | |
| </div> | |
| </div> | |
| </div> | |
| <p class="text-gray-600 italic">"Tokenizing my Cascais villa provided liquidity I needed while keeping my summer usage rights. The LUXE team managed the legal and technical aspects perfectly. Now I have investors worldwide sharing in my property."</p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- About Section --> | |
| <section id="about" class="py-16 bg-gray-50"> | |
| <div class="max-w-7xl mx-auto px-4"> | |
| <div class="md:flex items-center"> | |
| <div class="md:w-2/5 mb-10 md:mb-0"> | |
| <img src="https://images.unsplash.com/photo-1529310399837-ed4748c85f89?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Our Team" class="rounded-lg shadow-lg w-full"> | |
| </div> | |
| <div class="md:w-3/5 md:pl-12"> | |
| <h2 class="text-3xl font-bold mb-6 text-gray-800">About LUXE Portugal</h2> | |
| <p class="text-lg text-gray-600 mb-6">We're revolutionizing luxury real estate in Portugal by combining premium property services with blockchain innovation.</p> | |
| <div class="grid md:grid-cols-2 gap-6 mb-8"> | |
| <!-- Mission --> | |
| <div class="bg-white p-6 rounded-lg shadow-md"> | |
| <div class="text-primary text-2xl mb-4"> | |
| <i class="fas fa-bullseye"></i> | |
| </div> | |
| <h4 class="font-bold mb-2 text-gray-800">Our Mission</h4> | |
| <p class="text-gray-600">Democratize access to premium Portuguese real estate while streamlining residency for global citizens through innovative technology solutions.</p> | |
| </div> | |
| <!-- Vision --> | |
| <div class="bg-white p-6 rounded-lg shadow-md"> | |
| <div class="text-primary text-2xl mb-4"> | |
| <i class="fas fa-eye"></i> | |
| </div> | |
| <h4 class="font-bold mb-2 text-gray-800">Our Vision</h4> | |
| <p class="text-gray-600">Become the leading blockchain-powered platform for fractional luxury real estate ownership and seamless relocation to Portugal.</p> | |
| </div> | |
| </div> | |
| <!-- Numbers --> | |
| <div class="bg-white p-6 rounded-lg shadow-md"> | |
| <div class="grid grid-cols-4 text-center"> | |
| <div> | |
| <p class="text-3xl font-bold text-primary">500+</p> | |
| <p class="text-gray-600">Clients Served</p> | |
| </div> | |
| <div> | |
| <p class="text-3xl font-bold text-primary">85%</p> | |
| <p class="text-gray-600">Visa Success Rate</p> | |
| </div> | |
| <div> | |
| <p class="text-3xl font-bold text-primary">€50M+</p> | |
| <p class="text-gray-600">Property Value</p> | |
| </div> | |
| <div> | |
| <p class="text-3xl font-bold text-primary">2021</p> | |
| <p class="text-gray-600">Founded</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- CTA Section --> | |
| <section class="py-16 bg-primary text-white"> | |
| <div class="max-w-7xl mx-auto px-4 text-center"> | |
| <h2 class="text-3xl font-bold mb-6">Ready to Experience Portugal the LUXE Way?</h2> | |
| <p class="text-xl mb-8 max-w-3xl mx-auto">Whether you're seeking a dream home, investment opportunity, or new residency, we're here to guide your Portugal journey.</p> | |
| <div class="flex flex-col sm:flex-row justify-center space-y-3 sm:space-y-0 sm:space-x-4"> | |
| <button class="bg-accent hover:bg-white hover:text-primary px-6 py-3 rounded-md font-medium transition">Book a Consultation</button> | |
| <button class="bg-white hover:bg-gray-100 text-primary px-6 py-3 rounded-md font-medium transition">Explore Platform</button> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Footer --> | |
| <footer id="contact" class="bg-gray-900 text-white py-12"> | |
| <div class="max-w-7xl mx-auto px-4"> | |
| <div class="grid md:grid-cols-4 gap-8"> | |
| <!-- Logo & About --> | |
| <div> | |
| <h3 class="text-xl font-bold mb-4">LUXE Portugal</h3> | |
| <p class="text-gray-400 mb-4">Premium real estate and visa services powered by blockchain technology.</p> | |
| <div class="flex space-x-4"> | |
| <a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-telegram text-xl"></i></a> | |
| <a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-twitter text-xl"></i></a> | |
| <a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-linkedin text-xl"></i></a> | |
| <a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-discord text-xl"></i></a> | |
| </div> | |
| </div> | |
| <!-- Quick Links --> | |
| <div> | |
| <h4 class="font-bold mb-4">Quick Links</h4> | |
| <ul class="space-y-2"> | |
| <li><a href="#services" class="text-gray-400 hover:text-white transition">Services</a></li> | |
| <li><a href="#properties" class="text-gray-400 hover:text-white transition">Properties</a></li> | |
| <li><a href="#tokenization" class="text-gray-400 hover:text-white transition">Tokenization</a></li> | |
| <li><a href="#visas" class="text-gray-400 hover:text-white transition">Visa Support</a></li> | |
| <li><a href="#about" class="text-gray-400 hover:text-white transition">About Us</a></li> | |
| </ul> | |
| </div> | |
| <!-- Contact --> | |
| <div> | |
| <h4 class="font-bold mb-4">Contact Us</h4> | |
| <ul class="space-y-3"> | |
| <li class="flex items-start"> | |
| <i class="fas fa-map-marker-alt mt-1 mr-3 text-gray-400"></i> | |
| <span class="text-gray-400">Avenida da Liberdade, 1100-321 Lisbon, Portugal</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i class="fas fa-phone-alt mr-3 text-gray-400"></i> | |
| <span class="text-gray-400">+351 123 456 789</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i class="fas fa-envelope mr-3 text-gray-400"></i> | |
| <span class="text-gray-400">info@luxeportugal.com</span> | |
| </li> | |
| </ul> | |
| </div> | |
| <!-- Newsletter --> | |
| <div> | |
| <h4 class="font-bold mb-4">Newsletter</h4> | |
| <p class="text-gray-400 mb-4">Subscribe to get updates on new properties, token offerings, and visa news.</p> | |
| <form class="flex"> | |
| <input type="email" placeholder="Your email" class="px-4 py-2 w-full rounded-l-md focus:outline-none text-gray-900"> | |
| <button class="bg-accent hover:bg-primary px-4 py-2 rounded-r-md transition"> | |
| <i class="fas fa-paper-plane"></i> | |
| </button> | |
| </form> | |
| <div class="mt-4 text-sm text-gray-500"> | |
| <i class="fab fa-ethereum"></i> <span>Pay with ETH, USDT and major cryptos</span> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center"> | |
| <p class="text-gray-500 mb-4 md:mb-0">© 2023 LUXE Portugal. All rights reserved.</p> | |
| <div class="flex space-x-6 text-sm"> | |
| <a href="#" class="text-gray-500 hover:text-white transition">Privacy Policy</a> | |
| <a href="#" class="text-gray-500 hover:text-white transition">Terms of Service</a> | |
| <a href="#" class="text-gray-500 hover:text-white transition">Cookies Policy</a> | |
| <a href="#" class="text-gray-500 hover:text-white transition">Security</a> | |
| </div> | |
| </div> | |
| <div class="text-xs text-gray-600 mt-6"> | |
| <p>Disclaimer: Real estate tokenization involves risks and is subject to applicable laws and regulations. All visa services are provided through our partner law firms. Crypto transactions are subject to KYC/AML compliance.</p> | |
| </div> | |
| </div> | |
| </footer> | |
| <!-- Mobile menu script --> | |
| <script> | |
| const btn = document.querySelector('.mobile-menu-button'); | |
| const menu = document.querySelector('.mobile-menu'); | |
| btn.addEventListener('click', () => { | |
| menu.classList.toggle('hidden'); | |
| }); | |
| // Smooth scrolling for anchor links | |
| document.querySelectorAll('a[href^="#"]').forEach(anchor => { | |
| anchor.addEventListener('click', function(e) { | |
| e.preventDefault(); | |
| const targetId = this.getAttribute('href'); | |
| if (targetId === '#') return; | |
| const targetElement = document.querySelector(targetId); | |
| if (targetElement) { | |
| window.scrollTo({ | |
| top: targetElement.offsetTop - 80, | |
| behavior: 'smooth' | |
| }); | |
| // Close mobile menu if open | |
| if (!menu.classList.contains('hidden')) { | |
| menu.classList.add('hidden'); | |
| } | |
| } | |
| }); | |
| }); | |
| </script> | |
| <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://deepsite.hf.co/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://deepsite.hf.co" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://deepsite.hf.co?remix=web3district/realestate" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
| </html> |