Spaces:
Running
Running
File size: 33,665 Bytes
264118f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Swiss Apogee | Ultimate Epic Experiences</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">
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Montserrat:wght@300;400;600&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Montserrat', sans-serif;
background-color: #f8f8f8;
}
.serif {
font-family: 'Playfair Display', serif;
}
.hero-gradient {
background: linear-gradient(135deg, #0a2540 0%, #1a365d 100%);
}
.luxury-card {
transition: all 0.3s ease;
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.luxury-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.nav-link {
position: relative;
}
.nav-link:after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -2px;
left: 0;
background-color: #c0a062;
transition: width 0.3s ease;
}
.nav-link:hover:after {
width: 100%;
}
.ai-chat-btn {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% {
box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
}
70% {
box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
}
100% {
box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
}
}
</style>
</head>
<body class="text-gray-800">
<!-- Navigation -->
<nav class="bg-white shadow-md fixed w-full z-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-20 items-center">
<div class="flex items-center">
<div class="flex-shrink-0 flex items-center">
<div class="w-10 h-10 rounded-full bg-blue-900 flex items-center justify-center text-white serif font-bold text-xl">SA</div>
<span class="ml-3 text-xl serif font-bold text-blue-900">Swiss Apogee</span>
</div>
</div>
<div class="hidden md:block">
<div class="ml-10 flex items-center space-x-8">
<a href="#" class="nav-link text-blue-900 hover:text-blue-700 px-3 py-2 text-sm font-medium">Home</a>
<a href="#" class="nav-link text-blue-900 hover:text-blue-700 px-3 py-2 text-sm font-medium">Experiences</a>
<a href="#" class="nav-link text-blue-900 hover:text-blue-700 px-3 py-2 text-sm font-medium">Concierge</a>
<a href="#" class="nav-link text-blue-900 hover:text-blue-700 px-3 py-2 text-sm font-medium">About</a>
<a href="#" class="nav-link text-blue-900 hover:text-blue-700 px-3 py-2 text-sm font-medium">Contact</a>
</div>
</div>
<div class="flex items-center space-x-4">
<button class="hidden md:block bg-blue-900 hover:bg-blue-800 text-white px-4 py-2 rounded-md text-sm font-medium transition duration-300">
Request Access
</button>
<button class="md:hidden text-blue-900">
<svg class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"></path>
</svg>
</button>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="hero-gradient pt-32 pb-20 text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="md:flex items-center justify-between">
<div class="md:w-1/2 mb-12 md:mb-0">
<h1 class="serif text-4xl md:text-5xl lg:text-6xl font-bold leading-tight mb-6">
Ultimate Epic Experiences
</h1>
<p class="text-lg md:text-xl mb-8 opacity-90">
The Tesla of Travel Intelligence. Emotionally aware, neurologically intelligent journeys crafted exclusively for the global elite.
</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<button class="bg-gradient-to-r from-yellow-600 to-yellow-800 hover:from-yellow-700 hover:to-yellow-900 text-white px-8 py-3 rounded-md text-lg font-medium transition duration-300 shadow-lg">
Begin Your Journey
</button>
<button class="border-2 border-white hover:bg-white hover:text-blue-900 text-white px-8 py-3 rounded-md text-lg font-medium transition duration-300">
Discover More
</button>
</div>
</div>
<div class="md:w-1/2 relative">
<div class="relative">
<img src="https://images.unsplash.com/photo-1520250497590-5c13d77e79c9?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Luxury Travel" class="rounded-lg shadow-2xl w-full h-auto">
<div class="absolute -bottom-6 -right-6 bg-white p-4 rounded-lg shadow-xl luxury-card hidden md:block">
<div class="flex items-center">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-headset text-blue-900 text-xl"></i>
</div>
<div>
<p class="text-sm text-gray-500">AI Concierge</p>
<p class="font-semibold text-blue-900">Ready to assist</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- AI Features Section -->
<section class="py-20 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="serif text-3xl md:text-4xl font-bold text-blue-900 mb-4">Neurological-Emotional AI Architecture</h2>
<p class="text-lg text-gray-600 max-w-3xl mx-auto">
Our self-learning orchestration engine understands your preferences, emotions, and desires to craft perfect journeys.
</p>
</div>
<div class="grid md:grid-cols-3 gap-8">
<div class="luxury-card bg-gray-50 p-8 rounded-xl">
<div class="bg-blue-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-brain text-blue-900 text-2xl"></i>
</div>
<h3 class="serif text-xl font-bold text-blue-900 mb-3">Adaptive Memory</h3>
<p class="text-gray-600 mb-4">
Our AI remembers your preferences, past experiences, and emotional responses to continuously refine your journey.
</p>
<a href="#" class="text-blue-900 font-medium flex items-center">
Learn more <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
<div class="luxury-card bg-gray-50 p-8 rounded-xl">
<div class="bg-blue-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-heart text-blue-900 text-2xl"></i>
</div>
<h3 class="serif text-xl font-bold text-blue-900 mb-3">Emotional Intelligence</h3>
<p class="text-gray-600 mb-4">
Detects subtle emotional cues to adjust recommendations in real-time, ensuring every moment resonates with you.
</p>
<a href="#" class="text-blue-900 font-medium flex items-center">
Learn more <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
<div class="luxury-card bg-gray-50 p-8 rounded-xl">
<div class="bg-blue-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-robot text-blue-900 text-2xl"></i>
</div>
<h3 class="serif text-xl font-bold text-blue-900 mb-3">Self-Evolving</h3>
<p class="text-gray-600 mb-4">
Continuously learns from global travel patterns and your personal journey history to anticipate your needs.
</p>
<a href="#" class="text-blue-900 font-medium flex items-center">
Learn more <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</div>
</section>
<!-- Experience Types -->
<section class="py-20 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="serif text-3xl md:text-4xl font-bold text-blue-900 mb-4">Signature Experiences</h2>
<p class="text-lg text-gray-600 max-w-3xl mx-auto">
Curated by our AI concierge based on thousands of elite traveler preferences and emotional responses.
</p>
</div>
<div class="grid md:grid-cols-2 lg:grid-cols-4 gap-6">
<div class="luxury-card bg-white rounded-xl overflow-hidden">
<img src="https://images.unsplash.com/photo-1533107862482-0e6974b06ec4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Private Aviation" class="w-full h-48 object-cover">
<div class="p-6">
<h3 class="serif text-xl font-bold text-blue-900 mb-2">Private Aviation</h3>
<p class="text-gray-600 mb-4 text-sm">
Seamless private jet experiences with AI-optimized routing and personalized in-flight amenities.
</p>
<div class="flex justify-between items-center">
<span class="text-blue-900 font-medium">From €15,000</span>
<button class="text-blue-900 hover:text-blue-700">
<i class="fas fa-arrow-right"></i>
</button>
</div>
</div>
</div>
<div class="luxury-card bg-white rounded-xl overflow-hidden">
<img src="https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Alpine Retreats" class="w-full h-48 object-cover">
<div class="p-6">
<h3 class="serif text-xl font-bold text-blue-900 mb-2">Alpine Retreats</h3>
<p class="text-gray-600 mb-4 text-sm">
Exclusive chalets with AI-curated wellness programs and private mountain experiences.
</p>
<div class="flex justify-between items-center">
<span class="text-blue-900 font-medium">From €8,500</span>
<button class="text-blue-900 hover:text-blue-700">
<i class="fas fa-arrow-right"></i>
</button>
</div>
</div>
</div>
<div class="luxury-card bg-white rounded-xl overflow-hidden">
<img src="https://images.unsplash.com/photo-1520250497590-5c13d77e79c9?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Cultural Immersions" class="w-full h-48 object-cover">
<div class="p-6">
<h3 class="serif text-xl font-bold text-blue-900 mb-2">Cultural Immersions</h3>
<p class="text-gray-600 mb-4 text-sm">
Private access to cultural landmarks and bespoke experiences with local experts.
</p>
<div class="flex justify-between items-center">
<span class="text-blue-900 font-medium">From €12,000</span>
<button class="text-blue-900 hover:text-blue-700">
<i class="fas fa-arrow-right"></i>
</button>
</div>
</div>
</div>
<div class="luxury-card bg-white rounded-xl overflow-hidden">
<img src="https://images.unsplash.com/photo-1544551763-46a013bb70d5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Yacht Expeditions" class="w-full h-48 object-cover">
<div class="p-6">
<h3 class="serif text-xl font-bold text-blue-900 mb-2">Yacht Expeditions</h3>
<p class="text-gray-600 mb-4 text-sm">
AI-optimized routes with personalized crew selections for your perfect maritime journey.
</p>
<div class="flex justify-between items-center">
<span class="text-blue-900 font-medium">From €25,000</span>
<button class="text-blue-900 hover:text-blue-700">
<i class="fas fa-arrow-right"></i>
</button>
</div>
</div>
</div>
</div>
<div class="text-center mt-12">
<button class="border-2 border-blue-900 hover:bg-blue-900 hover:text-white text-blue-900 px-8 py-3 rounded-md text-lg font-medium transition duration-300">
View All Experiences
</button>
</div>
</div>
</section>
<!-- AI Concierge Section -->
<section class="py-20 bg-blue-900 text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="md:flex items-center">
<div class="md:w-1/2 mb-12 md:mb-0 md:pr-12">
<h2 class="serif text-3xl md:text-4xl font-bold mb-6">Your AI Travel Concierge</h2>
<p class="text-lg opacity-90 mb-8">
Our neurologically intelligent concierge learns from every interaction, remembering your preferences, emotional responses, and subtle cues to craft journeys that resonate deeply with you.
</p>
<div class="space-y-6">
<div class="flex items-start">
<div class="bg-blue-800 p-3 rounded-full mr-4 flex-shrink-0">
<i class="fas fa-microphone text-xl"></i>
</div>
<div>
<h4 class="font-bold text-lg mb-1">Voice & Chat Interface</h4>
<p class="opacity-90">Natural conversations in 20+ languages with emotional tone analysis.</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-blue-800 p-3 rounded-full mr-4 flex-shrink-0">
<i class="fas fa-lightbulb text-xl"></i>
</div>
<div>
<h4 class="font-bold text-lg mb-1">Predictive Suggestions</h4>
<p class="opacity-90">Anticipates your needs before you ask based on behavioral patterns.</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-blue-800 p-3 rounded-full mr-4 flex-shrink-0">
<i class="fas fa-sync-alt text-xl"></i>
</div>
<div>
<h4 class="font-bold text-lg mb-1">Dynamic Itinerary Healing</h4>
<p class="opacity-90">Automatically adjusts plans in real-time based on disruptions and your mood.</p>
</div>
</div>
</div>
</div>
<div class="md:w-1/2 relative">
<div class="bg-white rounded-xl shadow-2xl overflow-hidden">
<div class="bg-gray-100 p-4 flex items-center">
<div class="w-3 h-3 rounded-full bg-red-500 mr-2"></div>
<div class="w-3 h-3 rounded-full bg-yellow-500 mr-2"></div>
<div class="w-3 h-3 rounded-full bg-green-500 mr-2"></div>
<div class="ml-auto text-gray-500 text-sm">Swiss Apogee AI</div>
</div>
<div class="p-6">
<div class="flex mb-4">
<div class="w-10 h-10 rounded-full bg-blue-100 flex items-center justify-center mr-3">
<i class="fas fa-robot text-blue-900"></i>
</div>
<div class="bg-gray-100 rounded-lg p-4 max-w-xs">
<p class="text-gray-800">Good evening, Mr. Al-Farsi. I noticed you enjoyed the private vineyard tour last month. Would you like me to arrange something similar in Tuscany next week?</p>
<p class="text-xs text-gray-500 mt-2">Today, 8:42 PM</p>
</div>
</div>
<div class="flex justify-end mb-4">
<div class="bg-blue-900 text-white rounded-lg p-4 max-w-xs">
<p>That sounds perfect. Can you include a cooking class with local truffles?</p>
<p class="text-xs text-blue-200 mt-2">Today, 8:43 PM</p>
</div>
</div>
<div class="flex mb-4">
<div class="w-10 h-10 rounded-full bg-blue-100 flex items-center justify-center mr-3">
<i class="fas fa-robot text-blue-900"></i>
</div>
<div class="bg-gray-100 rounded-lg p-4 max-w-xs">
<p class="text-gray-800">Excellent choice! I've secured a private session with Chef Moretti at his Michelin-starred restaurant. Based on your preference for intimate settings, I've arranged for just 6 guests.</p>
<p class="text-xs text-gray-500 mt-2">Today, 8:44 PM</p>
</div>
</div>
<div class="flex justify-end mb-4">
<div class="bg-blue-900 text-white rounded-lg p-4 max-w-xs">
<p>Perfect. You know me so well!</p>
<p class="text-xs text-blue-200 mt-2">Today, 8:45 PM</p>
</div>
</div>
<div class="border-t pt-4">
<div class="flex items-center bg-gray-100 rounded-full px-4 py-2">
<input type="text" placeholder="Type your message..." class="bg-transparent w-full focus:outline-none text-gray-800">
<button class="text-blue-900 ml-2">
<i class="fas fa-paper-plane"></i>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="py-20 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="serif text-3xl md:text-4xl font-bold text-blue-900 mb-4">Our Elite Travelers</h2>
<p class="text-lg text-gray-600 max-w-3xl mx-auto">
Hear from those who have experienced the Swiss Apogee difference.
</p>
</div>
<div class="grid md:grid-cols-3 gap-8">
<div class="luxury-card bg-gray-50 p-8 rounded-xl">
<div class="flex items-center mb-6">
<div class="w-16 h-16 rounded-full overflow-hidden mr-4">
<img src="https://images.unsplash.com/photo-1560250097-0b93528c311a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=687&q=80" alt="Sheikh Al-Farsi" class="w-full h-full object-cover">
</div>
<div>
<h4 class="serif font-bold text-blue-900">Sheikh Al-Farsi</h4>
<p class="text-sm text-gray-500">Private Investor</p>
</div>
</div>
<p class="text-gray-600 italic mb-6">
"The AI remembered my wife's preference for orchids and had them waiting in every suite. This level of attention is why we only use Swiss Apogee."
</p>
<div class="flex text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<div class="luxury-card bg-gray-50 p-8 rounded-xl">
<div class="flex items-center mb-6">
<div class="w-16 h-16 rounded-full overflow-hidden mr-4">
<img src="https://images.unsplash.com/photo-1544005313-94ddf0286df2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=688&q=80" alt="Madame Dubois" class="w-full h-full object-cover">
</div>
<div>
<h4 class="serif font-bold text-blue-900">Madame Dubois</h4>
<p class="text-sm text-gray-500">Luxury Brand CEO</p>
</div>
</div>
<p class="text-gray-600 italic mb-6">
"When my flight was delayed, the AI reorganized my entire itinerary before I even knew there was an issue. Pure magic."
</p>
<div class="flex text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<div class="luxury-card bg-gray-50 p-8 rounded-xl">
<div class="flex items-center mb-6">
<div class="w-16 h-16 rounded-full overflow-hidden mr-4">
<img src="https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=687&q=80" alt="Mr. Zhang" class="w-full h-full object-cover">
</div>
<div>
<h4 class="serif font-bold text-blue-900">Mr. Zhang</h4>
<p class="text-sm text-gray-500">Tech Entrepreneur</p>
</div>
</div>
<p class="text-gray-600 italic mb-6">
"The emotional intelligence is uncanny. It suggested activities I didn't know I wanted but turned out to be highlights of my trip."
</p>
<div class="flex text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-20 bg-gray-900 text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
<h2 class="serif text-3xl md:text-4xl font-bold mb-6">Ready for Your Ultimate Epic Experience?</h2>
<p class="text-xl opacity-90 max-w-3xl mx-auto mb-10">
Swiss Apogee is invite-only. Apply for access to the world's most intelligent travel platform.
</p>
<div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-6">
<button class="bg-gradient-to-r from-yellow-600 to-yellow-800 hover:from-yellow-700 hover:to-yellow-900 text-white px-8 py-3 rounded-md text-lg font-medium transition duration-300 shadow-lg">
Apply for Access
</button>
<button class="border-2 border-white hover:bg-white hover:text-gray-900 text-white px-8 py-3 rounded-md text-lg font-medium transition duration-300">
Speak to Our Concierge
</button>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-blue-900 text-white pt-16 pb-8">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid md:grid-cols-4 gap-12 mb-12">
<div>
<div class="flex items-center mb-6">
<div class="w-10 h-10 rounded-full bg-white flex items-center justify-center text-blue-900 serif font-bold text-xl">SA</div>
<span class="ml-3 text-xl serif font-bold">Swiss Apogee</span>
</div>
<p class="opacity-90 mb-4">
The Tesla of Travel Intelligence. Emotionally aware, neurologically intelligent journeys.
</p>
<div class="flex space-x-4">
<a href="#" class="opacity-90 hover:opacity-100"><i class="fab fa-instagram"></i></a>
<a href="#" class="opacity-90 hover:opacity-100"><i class="fab fa-linkedin-in"></i></a>
<a href="#" class="opacity-90 hover:opacity-100"><i class="fab fa-twitter"></i></a>
</div>
</div>
<div>
<h4 class="serif text-lg font-bold mb-6">Services</h4>
<ul class="space-y-3">
<li><a href="#" class="opacity-90 hover:opacity-100 hover:underline">Private Aviation</a></li>
<li><a href="#" class="opacity-90 hover:opacity-100 hover:underline">Luxury Accommodations</a></li>
<li><a href="#" class="opacity-90 hover:opacity-100 hover:underline">Exclusive Experiences</a></li>
<li><a href="#" class="opacity-90 hover:opacity-100 hover:underline">AI Concierge</a></li>
<li><a href="#" class="opacity-90 hover:opacity-100 hover:underline">B2B Solutions</a></li>
</ul>
</div>
<div>
<h4 class="serif text-lg font-bold mb-6">Company</h4>
<ul class="space-y-3">
<li><a href="#" class="opacity-90 hover:opacity-100 hover:underline">About Us</a></li>
<li><a href="#" class="opacity-90 hover:opacity-100 hover:underline">Our Technology</a></li>
<li><a href="#" class="opacity-90 hover:opacity-100 hover:underline">Testimonials</a></li>
<li><a href="#" class="opacity-90 hover:opacity-100 hover:underline">Careers</a></li>
<li><a href="#" class="opacity-90 hover:opacity-100 hover:underline">Contact</a></li>
</ul>
</div>
<div>
<h4 class="serif text-lg font-bold mb-6">Contact</h4>
<ul class="space-y-3">
<li class="flex items-start">
<i class="fas fa-map-marker-alt mt-1 mr-3 opacity-90"></i>
<span class="opacity-90">Zürich, Switzerland</span>
</li>
<li class="flex items-start">
<i class="fas fa-envelope mt-1 mr-3 opacity-90"></i>
<span class="opacity-90">concierge@swissapogee.com</span>
</li>
<li class="flex items-start">
<i class="fas fa-phone-alt mt-1 mr-3 opacity-90"></i>
<span class="opacity-90">+41 44 123 4567</span>
</li>
</ul>
</div>
</div>
<div class="border-t border-blue-800 pt-8 flex flex-col md:flex-row justify-between items-center">
<p class="text-sm opacity-90 mb-4 md:mb-0">
© 2023 Swiss Apogee. All rights reserved.
</p>
<div class="flex space-x-6">
<a href="#" class="text-sm opacity-90 hover:opacity-100 hover:underline">Privacy Policy</a>
<a href="#" class="text-sm opacity-90 hover:opacity-100 hover:underline">Terms of Service</a>
<a href="#" class="text-sm opacity-90 hover:opacity-100 hover:underline">Cookie Policy</a>
</div>
</div>
</div>
</footer>
<!-- AI Chat Button -->
<button class="ai-chat-btn fixed bottom-8 right-8 w-16 h-16 rounded-full bg-gradient-to-r from-blue-900 to-blue-700 text-white flex items-center justify-center shadow-xl z-50">
<i class="fas fa-comment-dots text-2xl"></i>
</button>
<script>
// Simple JavaScript for mobile menu toggle
document.addEventListener('DOMContentLoaded', function() {
const mobileMenuButton = document.querySelector('.md\\:hidden');
const navLinks = document.querySelector('.hidden.md\\:block');
mobileMenuButton.addEventListener('click', function() {
navLinks.classList.toggle('hidden');
navLinks.classList.toggle('block');
navLinks.classList.add('absolute', 'top-20', 'left-0', 'w-full', 'bg-white', 'shadow-md', 'py-4', 'px-8');
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
});
</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://enzostvs-deepsite.hf.space/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://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Traveler007/testtt" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |