Spaces:
Running
Running
File size: 39,031 Bytes
d6d9917 346d3be d6d9917 346d3be d6d9917 |
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 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 |
<!DOCTYPE html>
<html lang="ar" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>إيفا – المساعدة الذكية | دليل عسير الذكي</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">
<style>
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700;900&display=swap');
body {
font-family: 'Tajawal', sans-serif;
background-color: #f8f9fa;
}
.hero-gradient {
background: linear-gradient(135deg, #4f46e5 0%, #8b5cf6 100%);
}
.feature-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.language-badge {
transition: all 0.3s ease;
}
.language-badge:hover {
transform: scale(1.05);
}
.eva-avatar {
animation: float 6s ease-in-out infinite;
}
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-15px); }
100% { transform: translateY(0px); }
}
.chat-demo {
background: linear-gradient(135deg, #f5f7fa 0%, #e4e7eb 100%);
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.chat-bubble {
max-width: 80%;
border-radius: 18px;
position: relative;
padding: 12px 16px;
margin-bottom: 12px;
}
/* أنماط إضافية لشخصية إيفا */
#eva-assistant {
transform: translateX(0);
transition: transform 0.3s ease;
}
#eva-assistant.hidden {
transform: translateX(-120%);
}
#eva-chat {
scrollbar-width: thin;
scrollbar-color: #6366f1 #f1f1f1;
}
#eva-chat::-webkit-scrollbar {
width: 6px;
}
#eva-chat::-webkit-scrollbar-track {
background: #f1f1f1;
}
#eva-chat::-webkit-scrollbar-thumb {
background-color: #6366f1;
border-radius: 3px;
}
.chat-bubble:after {
content: '';
position: absolute;
bottom: -8px;
width: 0;
height: 0;
border-style: solid;
}
.eva-bubble {
background-color: #6366f1;
color: white;
margin-right: auto;
}
.eva-bubble:after {
right: 15px;
border-width: 10px 15px 0 0;
border-color: #6366f1 transparent transparent transparent;
}
.user-bubble {
background-color: #e5e7eb;
color: #111827;
margin-left: auto;
}
.user-bubble:after {
left: 15px;
border-width: 10px 0 0 15px;
border-color: #e5e7eb transparent transparent transparent;
}
.typing-indicator {
display: flex;
padding: 10px;
}
.typing-dot {
width: 8px;
height: 8px;
background-color: #9ca3af;
border-radius: 50%;
margin: 0 2px;
animation: typing 1.4s infinite ease-in-out;
}
.typing-dot:nth-child(1) { animation-delay: 0s; }
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing {
0%, 60%, 100% { transform: translateY(0); }
30% { transform: translateY(-5px); }
}
</style>
</head>
<body class="text-gray-800">
<!-- شخصية إيفا التفاعلية -->
<div id="eva-assistant" class="fixed bottom-6 left-6 z-50 w-72 bg-white rounded-xl shadow-xl overflow-hidden transition-all duration-300 transform hover:scale-105">
<div class="bg-indigo-600 text-white p-4 flex items-center">
<div class="w-12 h-12 rounded-full bg-white flex items-center justify-center mr-3">
<img src="https://via.placeholder.com/50?text=إيفا" alt="إيفا" class="w-10 h-10 rounded-full">
</div>
<div>
<h3 class="font-bold">إيفا المساعدة الذكية</h3>
<p class="text-xs opacity-90">متاحة لمساعدتك الآن</p>
</div>
<button id="eva-close" class="ml-auto text-white opacity-70 hover:opacity-100">
<i class="fas fa-times"></i>
</button>
</div>
<div id="eva-chat" class="p-4 bg-gray-50 h-48 overflow-y-auto">
<div class="chat-bubble eva-bubble">
مرحباً! أنا إيفا، مرشدتك الذكية في عسير. كيف يمكنني مساعدتك اليوم؟
</div>
</div>
<div class="p-3 bg-white border-t flex">
<input id="eva-input" type="text" placeholder="اكتب سؤالك..." class="flex-1 border rounded-l-lg px-3 py-2 focus:outline-none focus:ring-1 focus:ring-indigo-500">
<button id="eva-send" class="bg-indigo-600 text-white px-4 rounded-r-lg hover:bg-indigo-700">
<i class="fas fa-paper-plane"></i>
</button>
</div>
<div class="eva-actions grid grid-cols-2 gap-2 p-3 bg-gray-50">
<button class="eva-action bg-white text-indigo-600 px-3 py-2 rounded-lg text-sm font-medium hover:bg-indigo-50 border border-indigo-100">
<i class="fas fa-map-marked-alt mr-1"></i> اقترح مسارًا
</button>
<button class="eva-action bg-white text-indigo-600 px-3 py-2 rounded-lg text-sm font-medium hover:bg-indigo-50 border border-indigo-100">
<i class="fas fa-utensils mr-1"></i> مطاعم قريبة
</button>
</div>
</div>
<!-- شريط التنقل -->
<nav class="bg-white shadow-lg sticky top-0 z-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16">
<div class="flex items-center">
<a href="#" class="flex-shrink-0 flex items-center">
<img class="h-8 w-auto" src="https://via.placeholder.com/150x50?text=دليل+عسير" alt="دليل عسير الذكي">
</a>
</div>
<div class="hidden md:ml-6 md:flex md:items-center md:space-x-4 space-x-reverse">
<a href="#" class="text-gray-700 hover:text-indigo-600 px-3 py-2 text-sm font-medium">الرئيسية</a>
<a href="#" class="text-gray-700 hover:text-indigo-600 px-3 py-2 text-sm font-medium">الوجهات</a>
<a href="#" class="text-indigo-600 px-3 py-2 text-sm font-medium">إيفا المساعدة</a>
<a href="#" class="text-gray-700 hover:text-indigo-600 px-3 py-2 text-sm font-medium">الفعاليات</a>
<a href="#" class="text-gray-700 hover:text-indigo-600 px-3 py-2 text-sm font-medium">الأسئلة الشائعة</a>
</div>
<div class="flex items-center">
<button class="bg-indigo-600 text-white px-4 py-2 rounded-md text-sm font-medium hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500">
حمل التطبيق
</button>
</div>
</div>
</div>
</nav>
<!-- قسم البطل -->
<section class="hero-gradient text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-16 md:py-24">
<div class="grid grid-cols-1 md:grid-cols-2 gap-8 items-center">
<div class="text-center md:text-right space-y-6">
<h1 class="text-4xl md:text-5xl font-bold leading-tight">
مرشدتك الذكية إلى قلب عسير
</h1>
<p class="text-xl md:text-2xl opacity-90">
إيفا هي شخصية افتراضية تعتمد على الذكاء الاصطناعي لمرافقتك طوال رحلتك في عسير، وتقديم توصيات مخصصة بناءً على وقتك، اهتماماتك، وموقعك الحالي.
</p>
<div class="flex flex-col sm:flex-row gap-4 justify-center md:justify-start">
<button class="bg-white text-indigo-600 px-8 py-3 rounded-lg text-lg font-bold hover:bg-gray-100 transition duration-300 shadow-lg">
ابدأ الرحلة مع إيفا
</button>
<button class="border-2 border-white text-white px-8 py-3 rounded-lg text-lg font-bold hover:bg-white hover:bg-opacity-10 transition duration-300">
شاهد الفيديو التوضيحي
</button>
</div>
</div>
<div class="flex justify-center">
<div class="eva-avatar relative">
<img src="https://via.placeholder.com/400x500?text=صورة+إيفا" alt="إيفا المساعدة الذكية" class="w-full max-w-md rounded-lg shadow-2xl">
<div class="absolute -bottom-5 -right-5 bg-white text-indigo-600 px-4 py-2 rounded-full shadow-lg font-bold">
<i class="fas fa-robot mr-2"></i> الذكاء الاصطناعي
</div>
</div>
</div>
</div>
</div>
</section>
<!-- من هي إيفا؟ -->
<section class="py-16 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="text-3xl font-bold text-gray-900">من هي إيفا؟</h2>
<div class="w-24 h-1 bg-indigo-600 mx-auto mt-4"></div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-12 items-center">
<div>
<p class="text-lg text-gray-600 mb-6">
إيفا هي مزيج من الذكاء الاصطناعي والتفاعل الصوتي البشري، تتحدث إليك باللهجة المحلية أو اللغة التي تختارها، وتقدم لك تجربة سياحية ثقافية وغنية.
</p>
<div class="space-y-6">
<div class="flex items-start">
<div class="flex-shrink-0 bg-indigo-100 p-3 rounded-full text-indigo-600">
<i class="fas fa-comments text-xl"></i>
</div>
<div class="mr-4">
<h3 class="text-lg font-semibold text-gray-900">تفاعل طبيعي</h3>
<p class="text-gray-600">تتفاعل معك صوتيًا أو كتابيًا بسلاسة وكأنك تتحدث مع مرشد سياحي حقيقي.</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 bg-indigo-100 p-3 rounded-full text-indigo-600">
<i class="fas fa-route text-xl"></i>
</div>
<div class="mr-4">
<h3 class="text-lg font-semibold text-gray-900">تخصيص الرحلات</h3>
<p class="text-gray-600">تحلل تفضيلاتك لتبني جدول رحلات مخصص يناسب وقتك واهتماماتك.</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 bg-indigo-100 p-3 rounded-full text-indigo-600">
<i class="fas fa-map-marked-alt text-xl"></i>
</div>
<div class="mr-4">
<h3 class="text-lg font-semibold text-gray-900">إرشاد مباشر</h3>
<p class="text-gray-600">ترشدك مباشرة عبر الخريطة إلى أفضل الوجهات والمطاعم والفنادق.</p>
</div>
</div>
</div>
</div>
<div class="relative">
<img src="https://via.placeholder.com/500x350?text=إيفا+في+العمل" alt="إيفا تساعد السائح" class="rounded-lg shadow-xl w-full">
<div class="absolute -bottom-6 -left-6 bg-indigo-600 text-white px-6 py-3 rounded-lg shadow-lg">
<i class="fas fa-headset mr-2"></i> دعم على مدار الساعة
</div>
</div>
</div>
</div>
</section>
<!-- كيف تساعدك إيفا؟ -->
<section class="py-16 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="text-3xl font-bold text-gray-900">كيف تساعدك إيفا؟</h2>
<p class="text-xl text-gray-600 mt-4">اكتشف الميزات الذكية التي تجعل رحلتك في عسير لا تنسى</p>
<div class="w-24 h-1 bg-indigo-600 mx-auto mt-4"></div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- بطاقة 1 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-md transition duration-300 hover:shadow-lg">
<div class="bg-indigo-100 w-16 h-16 rounded-full flex items-center justify-center mb-6 mx-auto">
<i class="fas fa-map-signs text-indigo-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-center mb-4">اقتراح المسارات</h3>
<p class="text-gray-600 text-center">
توليد جدول سياحي بناءً على الوقت المتاح، حالة الطقس، والموقع الحالي لضمان تجربة مثالية.
</p>
</div>
<!-- بطاقة 2 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-md transition duration-300 hover:shadow-lg">
<div class="bg-indigo-100 w-16 h-16 rounded-full flex items-center justify-center mb-6 mx-auto">
<i class="fas fa-vr-cardboard text-indigo-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-center mb-4">الواقع المعزز</h3>
<p class="text-gray-600 text-center">
شرح المواقع التاريخية والأثرية عند توجيه كاميرا هاتفك إليها، مما يجعل الزيارة أكثر تفاعلية.
</p>
</div>
<!-- بطاقة 3 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-md transition duration-300 hover:shadow-lg">
<div class="bg-indigo-100 w-16 h-16 rounded-full flex items-center justify-center mb-6 mx-auto">
<i class="fas fa-headphones text-indigo-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-center mb-4">الوصف الصوتي</h3>
<p class="text-gray-600 text-center">
تقدم روايات تراثية بصوت أنثوي باللهجة النجدية أو الفصحى، مما يضيف بعدًا عاطفيًا للزيارة.
</p>
</div>
<!-- بطاقة 4 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-md transition duration-300 hover:shadow-lg">
<div class="bg-indigo-100 w-16 h-16 rounded-full flex items-center justify-center mb-6 mx-auto">
<i class="fas fa-bell text-indigo-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-center mb-4">التنبيهات الذكية</h3>
<p class="text-gray-600 text-center">
تنبهك لزحام الطرق، تغيّرات الطقس المفاجئة، أو فعاليات قريبة قد تهمك بناءً على اهتماماتك.
</p>
</div>
<!-- بطاقة 5 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-md transition duration-300 hover:shadow-lg">
<div class="bg-indigo-100 w-16 h-16 rounded-full flex items-center justify-center mb-6 mx-auto">
<i class="fas fa-child text-indigo-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-center mb-4">دعم الأطفال</h3>
<p class="text-gray-600 text-center">
محتوى مبسط وممتع للأطفال في المواقع السياحية، مع ألعاب تعليمية صغيرة لجذب انتباههم.
</p>
</div>
<!-- بطاقة 6 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-md transition duration-300 hover:shadow-lg">
<div class="bg-indigo-100 w-16 h-16 rounded-full flex items-center justify-center mb-6 mx-auto">
<i class="fas fa-language text-indigo-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-center mb-4">دعم متعدد اللغات</h3>
<p class="text-gray-600 text-center">
تتفاعل معك باللغة التي تختارها، سواء العربية بلهجاتها المختلفة أو الإنجليزية للسياح الأجانب.
</p>
</div>
</div>
</div>
</section>
<!-- جرب إيفا الآن -->
<section class="py-16 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12 items-center">
<div class="chat-demo p-6">
<h3 class="text-2xl font-bold text-center mb-6">جرب محادثة مع إيفا</h3>
<div class="space-y-4 mb-6">
<div class="chat-bubble eva-bubble">
مرحباً! أنا إيفا، مرشدتك الذكية في رحلتك بعسير. كيف يمكنني مساعدتك اليوم؟
</div>
<div class="chat-bubble user-bubble">
أريد زيارة عسير لمدة يومين، ما هي الأماكن التي تنصحني بها؟
</div>
<div class="chat-bubble eva-bubble">
رائع! بناءً على وقتك، أنصحك بزيارة:
<br><br>
1. قرية المفتاحة التشكيلية صباح اليوم الأول
<br>
2. منتزه السودة بعد الظهر
<br>
3. سوق الثلاثاء الشعبي في صباح اليوم الثاني
<br><br>
هل تفضل إضافة أماكن تاريخية أو طبيعية؟
</div>
<div class="typing-indicator">
<div class="typing-dot"></div>
<div class="typing-dot"></div>
<div class="typing-dot"></div>
</div>
</div>
<div class="relative">
<input type="text" placeholder="اكتب رسالتك..." class="w-full px-4 py-3 rounded-full border border-gray-300 focus:outline-none focus:ring-2 focus:ring-indigo-500">
<button class="absolute left-3 top-3 text-indigo-600">
<i class="fas fa-paper-plane"></i>
</button>
</div>
<div class="text-center mt-6">
<button class="bg-indigo-600 text-white px-8 py-3 rounded-lg font-bold hover:bg-indigo-700 transition duration-300">
ابدأ محادثة مع إيفا الآن
</button>
</div>
</div>
<div>
<h2 class="text-3xl font-bold mb-6">جرب إيفا الآن</h2>
<p class="text-lg text-gray-600 mb-8">
يمكنك البدء في تجربة إيفا مباشرة من خلال موقعنا أو عن طريق تحميل تطبيق دليل عسير الذكي. إيفا جاهزة لمساعدتك في تخطيط رحلتك وإرشادك إلى أفضل الوجهات في المنطقة.
</p>
<div class="mb-8">
<h3 class="text-xl font-semibold mb-4">شاهد كيف تعمل إيفا</h3>
<div class="aspect-w-16 aspect-h-9 bg-gray-200 rounded-lg overflow-hidden">
<div class="w-full h-full flex items-center justify-center bg-indigo-100 text-indigo-600">
<i class="fas fa-play-circle text-6xl"></i>
</div>
</div>
</div>
<div class="flex flex-wrap gap-4">
<button class="bg-indigo-600 text-white px-6 py-3 rounded-lg font-bold hover:bg-indigo-700 transition duration-300 flex items-center">
<i class="fas fa-download ml-2"></i> حمل التطبيق
</button>
<button class="border-2 border-indigo-600 text-indigo-600 px-6 py-3 rounded-lg font-bold hover:bg-indigo-50 transition duration-300 flex items-center">
<i class="fas fa-globe ml-2"></i> جرب على الويب
</button>
</div>
</div>
</div>
</div>
</section>
<!-- اللغات واللهجات -->
<section class="py-16 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-gray-900">اللغات واللهجات المدعومة</h2>
<p class="text-xl text-gray-600 mt-4">تحدث مع إيفا باللغة التي تفضلها</p>
<div class="w-24 h-1 bg-indigo-600 mx-auto mt-4"></div>
</div>
<div class="grid grid-cols-2 md:grid-cols-3 lg:grid-cols-5 gap-6">
<div class="language-badge bg-white p-6 rounded-xl shadow-md text-center hover:shadow-lg">
<div class="bg-indigo-100 w-20 h-20 rounded-full flex items-center justify-center mb-4 mx-auto">
<i class="fas fa-language text-indigo-600 text-3xl"></i>
</div>
<h3 class="text-lg font-bold">العربية الفصحى</h3>
<p class="text-gray-600 text-sm">لغة عربية فصيحة واضحة</p>
</div>
<div class="language-badge bg-white p-6 rounded-xl shadow-md text-center hover:shadow-lg">
<div class="bg-indigo-100 w-20 h-20 rounded-full flex items-center justify-center mb-4 mx-auto">
<i class="fas fa-comment-dots text-indigo-600 text-3xl"></i>
</div>
<h3 class="text-lg font-bold">اللهجة النجدية</h3>
<p class="text-gray-600 text-sm">لهجة محلية مألوفة</p>
</div>
<div class="language-badge bg-white p-6 rounded-xl shadow-md text-center hover:shadow-lg">
<div class="bg-indigo-100 w-20 h-20 rounded-full flex items-center justify-center mb-4 mx-auto">
<i class="fas fa-comments text-indigo-600 text-3xl"></i>
</div>
<h3 class="text-lg font-bold">اللهجة الجنوبية</h3>
<p class="text-gray-600 text-sm">لهجة أهل عسير الأصيلة</p>
</div>
<div class="language-badge bg-white p-6 rounded-xl shadow-md text-center hover:shadow-lg">
<div class="bg-indigo-100 w-20 h-20 rounded-full flex items-center justify-center mb-4 mx-auto">
<i class="fas fa-flag-usa text-indigo-600 text-3xl"></i>
</div>
<h3 class="text-lg font-bold">الإنجليزية</h3>
<p class="text-gray-600 text-sm">للسياح الأجانب</p>
</div>
<div class="language-badge bg-white p-6 rounded-xl shadow-md text-center hover:shadow-lg">
<div class="bg-indigo-100 w-20 h-20 rounded-full flex items-center justify-center mb-4 mx-auto">
<i class="fas fa-plus text-indigo-600 text-3xl"></i>
</div>
<h3 class="text-lg font-bold">لغات أخرى قريباً</h3>
<p class="text-gray-600 text-sm">نسعى لدعم المزيد</p>
</div>
</div>
</div>
</section>
<!-- الخصوصية والأمان -->
<section class="py-16 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-1 md:grid-cols-2 gap-12 items-center">
<div>
<h2 class="text-3xl font-bold mb-6">الخصوصية والأمان</h2>
<p class="text-lg text-gray-600 mb-8">
نولي خصوصيتك وأمان بياناتك أهمية قصوى. إيفا مصممة لتحترم خصوصيتك وتحمي معلوماتك الشخصية.
</p>
<div class="space-y-6">
<div class="flex items-start">
<div class="flex-shrink-0 bg-indigo-100 p-3 rounded-full text-indigo-600">
<i class="fas fa-shield-alt text-xl"></i>
</div>
<div class="mr-4">
<h3 class="text-lg font-semibold text-gray-900">لا تخزن بياناتك الشخصية</h3>
<p class="text-gray-600">إيفا لا تخزن محادثاتك أو معلوماتك الشخصية بعد انتهاء الجلسة.</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 bg-indigo-100 p-3 rounded-full text-indigo-600">
<i class="fas fa-lock text-xl"></i>
</div>
<div class="mr-4">
<h3 class="text-lg font-semibold text-gray-900">معالجة محلية</h3>
<p class="text-gray-600">جميع التوصيات تُعالج محليًا دون مشاركة بياناتك مع أطراف خارجية.</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 bg-indigo-100 p-3 rounded-full text-indigo-600">
<i class="fas fa-user-secret text-xl"></i>
</div>
<div class="mr-4">
<h3 class="text-lg font-semibold text-gray-900">خصوصية مضمونة</h3>
<p class="text-gray-600">نلتزم بأعلى معايير الحماية والخصوصية لكل المستخدمين.</p>
</div>
</div>
</div>
</div>
<div class="relative">
<img src="https://via.placeholder.com/500x350?text=الأمان+والخصوصية" alt="الأمان والخصوصية" class="rounded-lg shadow-xl w-full">
<div class="absolute -top-6 -right-6 bg-indigo-600 text-white px-6 py-3 rounded-lg shadow-lg">
<i class="fas fa-lock mr-2"></i> آمن وموثوق
</div>
</div>
</div>
</div>
</section>
<!-- دعوة للعمل -->
<section class="py-16 hero-gradient text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
<h2 class="text-3xl md:text-4xl font-bold mb-6">هل أنت مستعد لرحلتك في عسير مع إيفا؟</h2>
<p class="text-xl mb-8 max-w-3xl mx-auto">
حمل التطبيق الآن واجعل إيفا مرشدتك الشخصية في رحلتك لاكتشاف جمال عسير وثقافتها الغنية.
</p>
<div class="flex flex-col sm:flex-row gap-4 justify-center">
<button class="bg-white text-indigo-600 px-8 py-4 rounded-lg text-lg font-bold hover:bg-gray-100 transition duration-300 shadow-lg flex items-center justify-center">
<i class="fab fa-apple text-2xl ml-2"></i>
<div class="text-left">
<div class="text-xs">Download on the</div>
<div class="text-lg">App Store</div>
</div>
</button>
<button class="bg-white text-indigo-600 px-8 py-4 rounded-lg text-lg font-bold hover:bg-gray-100 transition duration-300 shadow-lg flex items-center justify-center">
<i class="fab fa-google-play text-2xl ml-2"></i>
<div class="text-left">
<div class="text-xs">Get it on</div>
<div class="text-lg">Google Play</div>
</div>
</button>
</div>
</div>
</section>
<!-- تذييل الصفحة -->
<footer class="bg-gray-900 text-white py-12">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<h3 class="text-lg font-semibold mb-4">دليل عسير الذكي</h3>
<p class="text-gray-400">
منصة سياحية ذكية تهدف إلى تقديم أفضل تجربة للسائح في منطقة عسير بالمملكة العربية السعودية.
</p>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">روابط سريعة</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">الرئيسية</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">الوجهات السياحية</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">الفعاليات</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">إيفا المساعدة</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">معلومات</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">عن المشروع</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">الأسئلة الشائعة</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">سياسة الخصوصية</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">شروط الاستخدام</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">تواصل معنا</h3>
<div class="flex space-x-4 space-x-reverse mb-4">
<a href="#" class="bg-gray-800 w-10 h-10 rounded-full flex items-center justify-center hover:bg-indigo-600">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="bg-gray-800 w-10 h-10 rounded-full flex items-center justify-center hover:bg-indigo-600">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="bg-gray-800 w-10 h-10 rounded-full flex items-center justify-center hover:bg-indigo-600">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="bg-gray-800 w-10 h-10 rounded-full flex items-center justify-center hover:bg-indigo-600">
<i class="fab fa-youtube"></i>
</a>
</div>
<p class="text-gray-400">
البريد الإلكتروني: <a href="mailto:info@aseerguide.sa" class="hover:text-white">info@aseerguide.sa</a>
</p>
</div>
</div>
<div class="border-t border-gray-800 mt-12 pt-8 text-center text-gray-400">
<p>© 2023 دليل عسير الذكي. جميع الحقوق محفوظة.</p>
</div>
</div>
</footer>
<script>
// يمكن إضافة تفاعلات جافاسكريبت هنا
document.addEventListener('DOMContentLoaded', function() {
// تأثيرات للبطاقات عند التمرير
const featureCards = document.querySelectorAll('.feature-card');
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.style.opacity = 1;
entry.target.style.transform = 'translateY(0)';
}
});
}, { threshold: 0.1 });
featureCards.forEach(card => {
card.style.opacity = 0;
card.style.transform = 'translateY(20px)';
card.style.transition = 'all 0.6s ease';
observer.observe(card);
});
// محاكاة الدردشة
const chatDemo = document.querySelector('.chat-demo');
const typingIndicator = document.querySelector('.typing-indicator');
// إخفاء مؤشر الكتابة بعد 3 ثوان
setTimeout(() => {
typingIndicator.style.display = 'none';
// إضافة رسالة جديدة
const newMessage = document.createElement('div');
newMessage.className = 'chat-bubble eva-bubble';
newMessage.textContent = 'يمكنك أيضًا الاستفسار عن مواعيد الفعاليات، أماكن الإقامة، أو المطاعم الموصى بها في المنطقة التي تزورها.';
typingIndicator.parentNode.insertBefore(newMessage, typingIndicator);
}, 3000);
// تأثيرات للغة عند التمرير
const languageBadges = document.querySelectorAll('.language-badge');
languageBadges.forEach((badge, index) => {
badge.style.opacity = 0;
badge.style.transform = 'scale(0.9)';
badge.style.transition = `all 0.5s ease ${index * 0.1}s`;
const badgeObserver = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.style.opacity = 1;
entry.target.style.transform = 'scale(1)';
}
});
}, { threshold: 0.1 });
badgeObserver.observe(badge);
});
});
</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=wasmdashai/sh-2" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |