<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Falcon Flair - Premium Rent A Car Dubai</title>
<meta name="description" content="Dubai'nin en prestijli araç kiralama hizmeti. Mercedes AMG, Audi RS3, BMW M440i ve daha fazlası.">
<script src="https://cdn.tailwindcss.com"></script>
<style>
* { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
.hero-gradient { background: linear-gradient(135deg, #0f2626 0%, #1a3d3d 100%); }
.car-card:hover img { transform: scale(1.1); }
</style>
</head>
<body class="bg-[#1a3d3d]">
<header class="bg-[#0f2626] shadow-lg sticky top-0 z-50">
<div class="container mx-auto px-4 py-4">
<div class="flex items-center justify-between">
<div class="w-32 h-16 bg-[#1a3d3d] rounded flex items-center justify-center">
<span class="text-[#c9a961] text-2xl font-bold tracking-wider leading-tight">FALCON<br/>FLAIR</span>
</div>
<nav class="hidden md:flex space-x-8">
<a href="#home" class="text-[#c9a961] hover:text-white transition">Ana Sayfa</a>
<a href="#fleet" class="text-[#c9a961] hover:text-white transition">Araçlarımız</a>
<a href="#booking-section" class="text-[#c9a961] hover:text-white transition">Rezervasyon</a>
<a href="#contact" class="text-[#c9a961] hover:text-white transition">İletişim</a>
</nav>
<button onclick="toggleMenu()" class="md:hidden text-[#c9a961]">
<svg class="w-7 h-7" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"/>
</svg>
</button>
</div>
</div>
</header>
<section id="home" class="relative h-screen flex items-center justify-center hero-gradient">
<div class="absolute inset-0 bg-black opacity-40"></div>
<div class="relative z-10 text-center px-4">
<h1 class="text-5xl md:text-7xl font-bold text-[#c9a961] mb-6">FALCON FLAIR</h1>
<p class="text-xl md:text-3xl text-white mb-8">Premium Araç Kiralama Deneyimi</p>
<p class="text-lg text-gray-300 mb-12 max-w-2xl mx-auto">Dubai'nin en prestijli araçlarını, konforlu ve güvenli bir deneyimle kiralayın</p>
<a href="#fleet" class="inline-flex items-center bg-[#c9a961] text-[#0f2626] px-8 py-4 rounded-lg text-lg font-semibold hover:bg-[#d4b76e] transition transform hover:scale-105">
Araçları Keşfet
<svg class="ml-2 w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"/></svg>
</a>
</div>
</section>
<section id="fleet" class="py-20 bg-[#1a3d3d]">
<div class="container mx-auto px-4">
<h2 class="text-4xl md:text-5xl font-bold text-center text-[#c9a961] mb-4">Araç Filomuz</h2>
<p class="text-center text-gray-300 mb-16 text-lg">Premium ve lüks araçlarımızı keşfedin</p>
<div id="cars-grid" class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"></div>
</div>
</section>
<div id="car-modal" class="fixed inset-0 bg-black bg-opacity-80 z-50 hidden items-center justify-center p-4" onclick="closeModal(event)">
<div class="bg-[#0f2626] rounded-2xl max-w-4xl w-full max-h-[90vh] overflow-y-auto" onclick="event.stopPropagation()">
<div class="relative">
<img id="modal-image" src="" alt="" class="w-full h-96 object-cover rounded-t-2xl">
<button onclick="closeModal()" class="absolute top-4 right-4 bg-[#c9a961] text-[#0f2626] p-3 rounded-full hover:bg-[#d4b76e]">
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12"/></svg>
</button>
</div>
<div class="p-8">
<h2 id="modal-name" class="text-4xl font-bold text-[#c9a961] mb-4"></h2>
<div id="modal-price" class="text-3xl font-bold text-white mb-6"></div>
<div class="mb-6">
<h3 class="text-xl font-semibold text-[#c9a961] mb-3">Teknik Özellikler</h3>
<div id="modal-specs" class="grid grid-cols-2 gap-3"></div>
</div>
<div class="mb-8">
<h3 class="text-xl font-semibold text-[#c9a961] mb-3">Özellikler</h3>
<div id="modal-features" class="grid grid-cols-2 gap-3"></div>
</div>
<button onclick="bookCar()" class="w-full bg-[#c9a961] text-[#0f2626] py-4 rounded-lg text-lg font-bold hover:bg-[#d4b76e] transition">Bu Aracı Rezerve Et</button>
</div>
</div>
</div>
<section id="booking-section" class="py-20 bg-[#0f2626]">
<div class="container mx-auto px-4 max-w-3xl">
<h2 class="text-4xl md:text-5xl font-bold text-center text-[#c9a961] mb-4">Rezervasyon</h2>
<p class="text-center text-gray-300 mb-12 text-lg">Hızlı ve kolay rezervasyon yapın</p>
<div class="bg-[#1a3d3d] rounded-2xl p-8 shadow-2xl">
<form id="booking-form" class="space-y-6" onsubmit="submitBooking(event)">
<div>
<label class="block text-[#c9a961] mb-2 font-semibold">Adınız Soyadınız</label>
<input type="text" id="name" required class="w-full bg-[#0f2626] text-white p-4 rounded-lg border border-[#c9a961]/30 focus:border-[#c9a961] focus:outline-none" placeholder="Adınızı girin">
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<div>
<label class="block text-[#c9a961] mb-2 font-semibold">E-posta</label>
<input type="email" id="email" required class="w-full bg-[#0f2626] text-white p-4 rounded-lg border border-[#c9a961]/30 focus:border-[#c9a961] focus:outline-none" placeholder="ornek@email.com">
</div>
<div>
<label class="block text-[#c9a961] mb-2 font-semibold">Telefon</label>
<input type="tel" id="phone" required class="w-full bg-[#0f2626] text-white p-4 rounded-lg border border-[#c9a961]/30 focus:border-[#c9a961] focus:outline-none" placeholder="+971 XX XXX XXXX">
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<div>
<label class="block text-[#c9a961] mb-2 font-semibold">Alış Tarihi</label>
<input type="date" id="pickup-date" required class="w-full bg-[#0f2626] text-white p-4 rounded-lg border border-[#c9a961]/30 focus:border-[#c9a961] focus:outline-none">
</div>
<div>
<label class="block text-[#c9a961] mb-2 font-semibold">İade Tarihi</label>
<input type="date" id="return-date" required class="w-full bg-[#0f2626] text-white p-4 rounded-lg border border-[#c9a961]/30 focus:border-[#c9a961] focus:outline-none">
</div>
</div>
<div>
<label class="block text-[#c9a961] mb-2 font-semibold">Araç Seçimi</label>
<select id="car-select" required class="w-full bg-[#0f2626] text-white p-4 rounded-lg border border-[#c9a961]/30 focus:border-[#c9a961] focus:outline-none">
<option value="">Araç seçiniz</option>
</select>
</div>
<button type="submit" class="w-full bg-[#c9a961] text-[#0f2626] py-4 rounded-lg text-lg font-bold hover:bg-[#d4b76e] transition transform hover:scale-105 flex items-center justify-center">
<svg class="w-6 h-6 mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z"/></svg>
Rezervasyon Yap
</button>
</form>
</div>
</div>
</section>
<section id="contact" class="py-20 bg-[#1a3d3d]">
<div class="container mx-auto px-4">
<h2 class="text-4xl md:text-5xl font-bold text-center text-[#c9a961] mb-4">İletişim</h2>
<p class="text-center text-gray-300 mb-16 text-lg">Bizimle iletişime geçin</p>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 max-w-5xl mx-auto">
<div class="bg-[#0f2626] p-8 rounded-xl text-center hover:shadow-lg hover:shadow-[#c9a961]/20 transition">
<svg class="mx-auto mb-4 text-[#c9a961] w-12 h-12" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z"/></svg>
<h3 class="text-xl font-semibold text-[#c9a961] mb-2">Telefon</h3>
<p class="text-gray-300">+971 XX XXX XXXX</p>
</div>
<div class="bg-[#0f2626] p-8 rounded-xl text-center hover:shadow-lg hover:shadow-[#c9a961]/20 transition">
<svg class="mx-auto mb-4 text-[#c9a961] w-12 h-12" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"/></svg>
<h3 class="text-xl font-semibold text-[#c9a961] mb-2">E-posta</h3>
<p class="text-gray-300">info@falconflair.ae</p>
</div>
<div class="bg-[#0f2626] p-8 rounded-xl text-center hover:shadow-lg hover:shadow-[#c9a961]/20 transition">
<svg class="mx-auto mb-4 text-[#c9a961] w-12 h-12" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17.657 16.657L13.414 20.9a1.998 1.998 0 01-2.827 0l-4.244-4.243a8 8 0 1111.314 0z"/><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 11a3 3 0 11-6 0 3 3 0 016 0z"/></svg>
<h3 class="text-xl font-semibold text-[#c9a961] mb-2">Adres</h3>
<p class="text-gray-300">Dubai, UAE</p>
</div>
</div>
</div>
</section>
<footer class="bg-[#0f2626] py-8">
<div class="container mx-auto px-4 text-center">
<p class="text-[#c9a961] text-lg mb-2">FALCON FLAIR</p>
<p class="text-gray-400">© 2024 Falcon Flair Rent A Car. Tüm hakları saklıdır.</p>
</div>
</footer>
<script>
const cars = [
{id: 1, name: "Mercedes C 43 AMG", price: 499, image: "https://images.unsplash.com/photo-1618843479313-40f8afb4b4d8?w=800&q=80", specs: ["V6 Biturbo", "390 HP", "0-100: 4.6s", "Automatic"], features: ["Premium Interior", "AMG Performance", "Sport Exhaust", "LED Lights"]},
{id: 2, name: "Mercedes CLE 53 AMG", price: 699, image: "https://images.unsplash.com/photo-1617814076367-b759c7d7e738?w=800&q=80", specs: ["Inline-6 Turbo", "443 HP", "0-100: 4.2s", "AMG Speedshift"], features: ["AMG Line", "Panoramic Roof", "Burmester Sound", "360 Camera"]},
{id: 3, name: "Mercedes A35 AMG", price: 399, image: "https://images.unsplash.com/photo-1606664515524-ed2f786a0bd6?w=800&q=80", specs: ["2.0L Turbo", "306 HP", "0-100: 4.7s", "4MATIC"], features: ["AMG Styling", "Sport Seats", "Digital Cockpit", "LED Performance"]},
{id: 4, name: "Audi RS3 Gray", price: 699, image: "https://images.unsplash.com/photo-1610768764270-790fbec18178?w=800&q=80", specs: ["5-Cylinder Turbo", "400 HP", "0-100: 3.8s", "Quattro AWD"], features: ["RS Sport Suspension", "Matrix LED", "Virtual Cockpit", "RS Exhaust"]},
{id: 5, name: "Audi RS3 Black", price: 699, image: "https://images.unsplash.com/photo-1614162692292-7ac56d7f7f1e?w=800&q=80", specs: ["5-Cylinder Turbo", "400 HP", "0-100: 3.8s", "Quattro AWD"], features: ["Carbon Package", "Sport Seats Plus", "B&O Sound", "Night Vision"]},
{id: 6, name: "BMW M440i", price: 599, image: "https://images.unsplash.com/photo-1555215695-3004980ad54e?w=800&q=80", specs: ["Inline-6 Turbo", "382 HP", "0-100: 4.5s", "xDrive AWD"], features: ["M Sport Package", "Harman Kardon", "Adaptive Suspension", "Head-Up Display"]},
{id: 7, name: "Jetour 7 Seater Black", price: 350, image: "https://images.unsplash.com/photo-1519641471654-76ce0107ad1b?w=800&q=80", specs: ["7 Seats", "Spacious", "Modern Design", "Automatic"], features: ["Family Comfort", "Large Boot", "Safety Systems", "Climate Control"]},
{id: 8, name: "Jetour Gray Hybrid 460 HP", price: 350, image: "https://images.unsplash.com/photo-1542362567-b07e54358753?w=800&q=80", specs: ["Hybrid", "460 HP", "Eco Mode", "AWD"], features: ["Fuel Efficient", "Power & Economy", "Advanced Tech", "Premium Interior"]},
{id: 9, name: "Jetour G700 Gray", price: 650, image: "https://images.unsplash.com/photo-1533473359331-0135ef1b58bf?w=800&q=80", specs: ["Luxury SUV", "Powerful", "7 Seats", "Premium"], features: ["Executive Class", "Massage Seats", "Panoramic Roof", "Advanced Safety"]},
{id: 10, name: "Deepal G318", price: 350, image: "https://images.unsplash.com/photo-1552519507-da3b142c6e3d?w=800&q=80", specs: ["Modern SUV", "Efficient", "Tech-Forward", "Automatic"], features: ["Smart Systems", "Comfortable", "Digital Dashboard", "Safety First"]},
{id: 11, name: "Leopard 8 Black", price: 699, image: "https://images.unsplash.com/photo-1549399542-7e3f8b79c341?w=800&q=80", specs: ["8 Seats", "Luxury MPV", "Premium", "Powerful"], features: ["VIP Seating", "Entertainment System", "Executive Comfort", "Advanced Features"]},
{id: 12, name: "Rox 01 VIP Black", price: 650, image: "https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=800&q=80", specs: ["VIP Class", "Premium", "Luxury", "Advanced"], features: ["Executive Package", "Premium Materials", "Advanced Tech", "Comfort Plus"]},
{id: 13, name: "Rox 01 VIP Gray", price: 650, image: "https://images.unsplash.com/photo-1494976388531-d1058494cdd8?w=800&q=80", specs: ["VIP Class", "Premium", "Luxury", "Advanced"], features: ["Business Class", "Sophisticated Design", "Top Safety", "Premium Audio"]}
];
let selectedCarId = null;
document.addEventListener('DOMContentLoaded', function() {
renderCars();
populateCarSelect();
});
function renderCars() {
const grid = document.getElementById('cars-grid');
grid.innerHTML = cars.map(car => `
<div class="car-card bg-[#0f2626] rounded-xl overflow-hidden shadow-2xl hover:shadow-[#c9a961]/20 transition-all duration-300 transform hover:-translate-y-2">
<div class="relative h-64 overflow-hidden">
<img src="${car.image}" alt="${car.name}" class="w-full h-full object-cover transition-transform duration-500">
<div class="absolute top-4 right-4 bg-[#c9a961] text-[#0f2626] px-4 py-2 rounded-lg font-bold text-lg">${car.price} AED/Day</div>
</div>
<div class="p-6">
<h3 class="text-2xl font-bold text-[#c9a961] mb-4">${car.name}</h3>
<div class="grid grid-cols-2 gap-2 mb-4">
${car.specs.map(spec => `<span class="text-sm text-gray-300 bg-[#1a3d3d] px-3 py-1 rounded">${spec}</span>`).join('')}
</div>
<button onclick="openModal(${car.id})" class="w-full bg-[#c9a961] text-[#0f2626] py-3 rounded-lg font-semibold hover:bg-[#d4b76e] transition">Detayları Gör</button>
</div>
</div>
`).join('');
}
function populateCarSelect() {
const select = document.getElementById('car-select');
cars.forEach(car => {
const option = document.createElement('option');
option.value = car.id;
option.textContent = `${car.name} - ${car.price} AED/Day`;
select.appendChild(option);
});
}
function openModal(carId) {
const car = cars.find(c => c.id === carId);
if (!car) return;
selectedCarId = carId;
document.getElementById('modal-image').src = car.image;
document.getElementById('modal-name').textContent = car.name;
document.getElementById('modal-price').textContent = `${car.price} AED/Day`;
document.getElementById('modal-specs').innerHTML = car.specs.map(spec => `<div class="bg-[#1a3d3d] p-3 rounded-lg text-gray-300">${spec}</div>`).join('');
document.getElementById('modal-features').innerHTML = car.features.map(feature => `<div class="flex items-center text-gray-300"><svg class="text-[#c9a961] mr-2 w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"/></svg>${feature}</div>`).join('');
document.getElementById('car-modal').classList.remove('hidden');
document.getElementById('car-modal').classList.add('flex');
}
function closeModal(event) {
if (event && event.target !== event.currentTarget) return;
document.getElementById('car-modal').classList.add('hidden');
document.getElementById('car-modal').classList.remove('flex');
}
function bookCar() {
if (selectedCarId) {
document.getElementById('car-select').value = selectedCarId;
closeModal();
document.getElementById('booking-section').scrollIntoView({ behavior: 'smooth' });
}
}
function toggleMenu() {
const menu = document.getElementById('mobile-menu');
menu.classList.toggle('hidden');
menu.classList.toggle('flex');
}
function submitBooking(event) {
event.preventDefault();
const car = cars.find(c => c.id == document.getElementById('car-select').value);
alert(`Rezervasyon Başarılı!\n\nAraç: ${car.name}\nFiyat: ${car.price} AED/Gün\n\nEn kısa sürede sizinle iletişime geçeceğiz!`);
document.getElementById('booking-form').reset();
}
</script>
</body>
</html>