File size: 63,954 Bytes
db54b83 |
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 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 |
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Drone Dash - Livraison par drone en Côte d'Ivoire</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>
@keyframes droneFloat {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-20px); }
}
.drone-float {
animation: droneFloat 3s ease-in-out infinite;
}
@keyframes droneFly {
0% { transform: translateX(-100%) rotate(0deg); }
100% { transform: translateX(100vw) rotate(5deg); }
}
.drone-fly {
animation: droneFly 15s linear infinite;
position: absolute;
top: 20%;
}
.section-title {
position: relative;
display: inline-block;
}
.section-title:after {
content: '';
position: absolute;
width: 100%;
height: 4px;
bottom: -8px;
left: 0;
background: linear-gradient(90deg, #3B82F6, #F97316);
border-radius: 2px;
}
.service-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.chatbot {
transition: all 0.3s ease;
}
.chatbot-hidden {
transform: translateY(100%);
opacity: 0;
}
</style>
</head>
<body class="font-sans bg-gray-50">
<!-- Navigation -->
<nav class="bg-white shadow-lg sticky top-0 z-50">
<div class="max-w-6xl mx-auto px-4">
<div class="flex justify-between">
<div class="flex space-x-7">
<div>
<a href="#" class="flex items-center py-4 px-2">
<img src="https://img.icons8.com/color/48/000000/drone.png" alt="Drone Dash Logo" class="h-10 w-10 mr-2">
<span class="font-semibold text-gray-900 text-2xl">Drone<span class="text-blue-600">Dash</span></span>
</a>
</div>
</div>
<div class="hidden md:flex items-center space-x-1">
<a href="#home" class="py-4 px-2 text-blue-600 font-semibold">Accueil</a>
<a href="#services" class="py-4 px-2 text-gray-500 hover:text-blue-600 transition duration-300">Services</a>
<a href="#process" class="py-4 px-2 text-gray-500 hover:text-blue-600 transition duration-300">Comment ça marche</a>
<a href="#fleet" class="py-4 px-2 text-gray-500 hover:text-blue-600 transition duration-300">Notre flotte</a>
<a href="#pricing" class="py-4 px-2 text-gray-500 hover:text-blue-600 transition duration-300">Tarifs</a>
<a href="#about" class="py-4 px-2 text-gray-500 hover:text-blue-600 transition duration-300">À propos</a>
<a href="#contact" class="py-4 px-2 text-gray-500 hover:text-blue-600 transition duration-300">Contact</a>
</div>
<div class="md:hidden flex items-center">
<button class="outline-none mobile-menu-button">
<svg class="w-6 h-6 text-gray-500" fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" viewBox="0 0 24 24" stroke="currentColor">
<path d="M4 6h16M4 12h16M4 18h16"></path>
</svg>
</button>
</div>
</div>
</div>
<div class="hidden mobile-menu">
<ul class="">
<li><a href="#home" class="block text-sm px-2 py-4 hover:bg-blue-600 hover:text-white transition duration-300">Accueil</a></li>
<li><a href="#services" class="block text-sm px-2 py-4 hover:bg-blue-600 hover:text-white transition duration-300">Services</a></li>
<li><a href="#process" class="block text-sm px-2 py-4 hover:bg-blue-600 hover:text-white transition duration-300">Comment ça marche</a></li>
<li><a href="#fleet" class="block text-sm px-2 py-4 hover:bg-blue-600 hover:text-white transition duration-300">Notre flotte</a></li>
<li><a href="#pricing" class="block text-sm px-2 py-4 hover:bg-blue-600 hover:text-white transition duration-300">Tarifs</a></li>
<li><a href="#about" class="block text-sm px-2 py-4 hover:bg-blue-600 hover:text-white transition duration-300">À propos</a></li>
<li><a href="#contact" class="block text-sm px-2 py-4 hover:bg-blue-600 hover:text-white transition duration-300">Contact</a></li>
</ul>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="relative bg-gradient-to-r from-blue-600 to-orange-500 text-white py-20 overflow-hidden">
<div class="drone-fly">
<img src="https://img.icons8.com/color/96/000000/drone.png" alt="Drone volant" class="w-16 h-16 drone-float">
</div>
<div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="relative z-10 flex flex-col md:flex-row 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-4">La livraison du futur, <span class="underline decoration-orange-300">aujourd'hui</span> en Côte d'Ivoire</h1>
<p class="text-xl mb-8">Drone Dash révolutionne la livraison avec des solutions rapides, écologiques et innovantes pour les particuliers et les entreprises.</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<a href="#pricing" class="bg-white text-blue-600 hover:bg-gray-100 font-bold py-3 px-6 rounded-full transition duration-300 text-center">Voir nos tarifs</a>
<a href="#contact" class="bg-transparent border-2 border-white hover:bg-white hover:text-blue-600 font-bold py-3 px-6 rounded-full transition duration-300 text-center">Nous contacter</a>
</div>
</div>
<div class="md:w-1/2 flex justify-center">
<img src="https://img.icons8.com/color/300/000000/drone-delivery.png" alt="Drone de livraison" class="w-64 h-64 drone-float">
</div>
</div>
</div>
</section>
<!-- Services Section -->
<section id="services" class="py-20 bg-white">
<div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">
<h2 class="text-3xl font-bold text-center mb-16 section-title">Nos Services</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
<div class="service-card bg-white rounded-lg shadow-md p-6 transition duration-300">
<div class="text-blue-600 mb-4">
<i class="fas fa-box-open text-4xl"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Livraison de colis</h3>
<p class="text-gray-600">Livraison rapide et sécurisée de vos colis dans toute la ville en moins de 30 minutes.</p>
</div>
<div class="service-card bg-white rounded-lg shadow-md p-6 transition duration-300">
<div class="text-orange-500 mb-4">
<i class="fas fa-pills text-4xl"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Médicaments urgents</h3>
<p class="text-gray-600">Transport rapide de médicaments et produits médicaux vers les hôpitaux et pharmacies.</p>
</div>
<div class="service-card bg-white rounded-lg shadow-md p-6 transition duration-300">
<div class="text-blue-600 mb-4">
<i class="fas fa-utensils text-4xl"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Livraison de repas</h3>
<p class="text-gray-600">Vos plats préférés livrés encore chauds directement à votre porte.</p>
</div>
<div class="service-card bg-white rounded-lg shadow-md p-6 transition duration-300">
<div class="text-orange-500 mb-4">
<i class="fas fa-shopping-basket text-4xl"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Courses express</h3>
<p class="text-gray-600">Faites vos courses sans vous déplacer, nous les livrons en un temps record.</p>
</div>
</div>
<div class="mt-16 bg-gray-100 rounded-xl p-6">
<h3 class="text-xl font-semibold mb-4 text-center">Zones de couverture</h3>
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-6 md:mb-0">
<img src="https://mapsvg.com/static/maps/geo-calendar/cote-divoire/ci-map.svg" alt="Carte de Côte d'Ivoire" class="w-full h-auto">
</div>
<div class="md:w-1/2 md:pl-8">
<ul class="space-y-3">
<li class="flex items-start">
<span class="flex-shrink-0 h-6 w-6 text-blue-600">
<i class="fas fa-map-marker-alt"></i>
</span>
<span class="ml-2 text-gray-700">Abidjan (Toutes communes)</span>
</li>
<li class="flex items-start">
<span class="flex-shrink-0 h-6 w-6 text-blue-600">
<i class="fas fa-map-marker-alt"></i>
</span>
<span class="ml-2 text-gray-700">Bouaké</span>
</li>
<li class="flex items-start">
<span class="flex-shrink-0 h-6 w-6 text-blue-600">
<i class="fas fa-map-marker-alt"></i>
</span>
<span class="ml-2 text-gray-700">Yamoussoukro</span>
</li>
<li class="flex items-start">
<span class="flex-shrink-0 h-6 w-6 text-blue-600">
<i class="fas fa-map-marker-alt"></i>
</span>
<span class="ml-2 text-gray-700">San Pedro</span>
</li>
<li class="flex items-start">
<span class="flex-shrink-0 h-6 w-6 text-blue-600">
<i class="fas fa-map-marker-alt"></i>
</span>
<span class="ml-2 text-gray-700">Korhogo</span>
</li>
</ul>
<p class="mt-4 text-gray-600">Nous étendons progressivement notre couverture à d'autres villes. Contactez-nous pour savoir si nous desservons votre région.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Process Section -->
<section id="process" class="py-20 bg-gray-50">
<div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">
<h2 class="text-3xl font-bold text-center mb-16 section-title">Comment ça marche</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="bg-white rounded-xl shadow-md overflow-hidden p-6">
<div class="text-center mb-4">
<div class="inline-flex items-center justify-center w-16 h-16 bg-blue-100 rounded-full text-blue-600 text-2xl font-bold mb-4">1</div>
<h3 class="text-xl font-semibold mb-2">Commande via application</h3>
<p class="text-gray-600">Téléchargez notre application, sélectionnez votre point de livraison et passez votre commande en quelques clics.</p>
</div>
<div class="flex justify-center">
<img src="https://img.icons8.com/color/96/000000/smartphone-tablet.png" alt="Application mobile" class="w-24 h-24">
</div>
</div>
<div class="bg-white rounded-xl shadow-md overflow-hidden p-6">
<div class="text-center mb-4">
<div class="inline-flex items-center justify-center w-16 h-16 bg-orange-100 rounded-full text-orange-600 text-2xl font-bold mb-4">2</div>
<h3 class="text-xl font-semibold mb-2">Préparation et chargement</h3>
<p class="text-gray-600">Nos équipes préparent votre colis avec soin et le chargent dans le drone pour un transport optimal.</p>
</div>
<div class="flex justify-center">
<img src="https://img.icons8.com/color/96/000000/package.png" alt="Préparation du colis" class="w-24 h-24">
</div>
</div>
<div class="bg-white rounded-xl shadow-md overflow-hidden p-6">
<div class="text-center mb-4">
<div class="inline-flex items-center justify-center w-16 h-16 bg-blue-100 rounded-full text-blue-600 text-2xl font-bold mb-4">3</div>
<h3 class="text-xl font-semibold mb-2">Livraison GPS</h3>
<p class="text-gray-600">Le drone décolle et suit un trajet optimisé pour vous livrer à l'emplacement GPS précis que vous avez indiqué.</p>
</div>
<div class="flex justify-center">
<img src="https://img.icons8.com/color/96/000000/drone-delivery.png" alt="Livraison par drone" class="w-24 h-24">
</div>
</div>
</div>
<div class="mt-12 bg-gradient-to-r from-blue-600 to-orange-500 rounded-xl p-8 text-white">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-6 md:mb-0">
<h3 class="text-2xl font-bold mb-4">Téléchargez notre application</h3>
<p class="mb-6">Disponible sur iOS et Android, notre application vous permet de suivre votre colis en temps réel et de programmer des livraisons récurrentes.</p>
<div class="flex space-x-4">
<a href="#" class="bg-black hover:bg-gray-800 text-white py-2 px-4 rounded-lg flex items-center">
<i class="fab fa-apple mr-2 text-xl"></i>
<div class="text-left">
<div class="text-xs">Télécharger sur</div>
<div class="font-semibold">App Store</div>
</div>
</a>
<a href="#" class="bg-black hover:bg-gray-800 text-white py-2 px-4 rounded-lg flex items-center">
<i class="fab fa-google-play mr-2 text-xl"></i>
<div class="text-left">
<div class="text-xs">Disponible sur</div>
<div class="font-semibold">Google Play</div>
</div>
</a>
</div>
</div>
<div class="md:w-1/2 flex justify-center">
<img src="https://img.icons8.com/color/300/000000/two-smartphones.png" alt="Application mobile" class="w-48 h-48">
</div>
</div>
</div>
</div>
</section>
<!-- Fleet Section -->
<section id="fleet" class="py-20 bg-white">
<div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">
<h2 class="text-3xl font-bold text-center mb-16 section-title">Notre Flotte</h2>
<div class="grid grid-cols-1 md:grid-cols-2 gap-12">
<div class="bg-gray-100 rounded-xl p-8">
<h3 class="text-2xl font-bold mb-6 text-center">Drone X-200</h3>
<div class="flex justify-center mb-8">
<img src="https://img.icons8.com/color/200/000000/drone.png" alt="Drone X-200" class="w-48 h-48 drone-float">
</div>
<div class="grid grid-cols-2 gap-4">
<div class="bg-white p-4 rounded-lg shadow-sm">
<div class="text-blue-600 mb-2">
<i class="fas fa-tachometer-alt text-2xl"></i>
</div>
<h4 class="font-semibold">Vitesse</h4>
<p class="text-gray-600">60 km/h</p>
</div>
<div class="bg-white p-4 rounded-lg shadow-sm">
<div class="text-orange-500 mb-2">
<i class="fas fa-map-marked-alt text-2xl"></i>
</div>
<h4 class="font-semibold">Autonomie</h4>
<p class="text-gray-600">30 km</p>
</div>
<div class="bg-white p-4 rounded-lg shadow-sm">
<div class="text-blue-600 mb-2">
<i class="fas fa-weight-hanging text-2xl"></i>
</div>
<h4 class="font-semibold">Capacité</h4>
<p class="text-gray-600">Jusqu'à 3 kg</p>
</div>
<div class="bg-white p-4 rounded-lg shadow-sm">
<div class="text-orange-500 mb-2">
<i class="fas fa-battery-three-quarters text-2xl"></i>
</div>
<h4 class="font-semibold">Batterie</h4>
<p class="text-gray-600">45 min de vol</p>
</div>
</div>
</div>
<div class="bg-gray-100 rounded-xl p-8">
<h3 class="text-2xl font-bold mb-6 text-center">Drone Cargo-500</h3>
<div class="flex justify-center mb-8">
<img src="https://img.icons8.com/color/200/000000/drone.png" alt="Drone Cargo-500" class="w-48 h-48 drone-float">
</div>
<div class="grid grid-cols-2 gap-4">
<div class="bg-white p-4 rounded-lg shadow-sm">
<div class="text-blue-600 mb-2">
<i class="fas fa-tachometer-alt text-2xl"></i>
</div>
<h4 class="font-semibold">Vitesse</h4>
<p class="text-gray-600">50 km/h</p>
</div>
<div class="bg-white p-4 rounded-lg shadow-sm">
<div class="text-orange-500 mb-2">
<i class="fas fa-map-marked-alt text-2xl"></i>
</div>
<h4 class="font-semibold">Autonomie</h4>
<p class="text-gray-600">25 km</p>
</div>
<div class="bg-white p-4 rounded-lg shadow-sm">
<div class="text-blue-600 mb-2">
<i class="fas fa-weight-hanging text-2xl"></i>
</div>
<h4 class="font-semibold">Capacité</h4>
<p class="text-gray-600">Jusqu'à 5 kg</p>
</div>
<div class="bg-white p-4 rounded-lg shadow-sm">
<div class="text-orange-500 mb-2">
<i class="fas fa-battery-three-quarters text-2xl"></i>
</div>
<h4 class="font-semibold">Batterie</h4>
<p class="text-gray-600">35 min de vol</p>
</div>
</div>
</div>
</div>
<div class="mt-12 bg-gradient-to-r from-blue-600 to-orange-500 rounded-xl p-8 text-white">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-2/3 mb-6 md:mb-0">
<h3 class="text-2xl font-bold mb-4">Technologie de pointe</h3>
<p class="mb-4">Nos drones sont équipés des dernières technologies pour assurer des livraisons sécurisées et précises :</p>
<ul class="space-y-2">
<li class="flex items-start">
<span class="flex-shrink-0 h-6 w-6 text-white">
<i class="fas fa-check-circle"></i>
</span>
<span class="ml-2">Système GPS haute précision</span>
</li>
<li class="flex items-start">
<span class="flex-shrink-0 h-6 w-6 text-white">
<i class="fas fa-check-circle"></i>
</span>
<span class="ml-2">Détection et évitement d'obstacles</span>
</li>
<li class="flex items-start">
<span class="flex-shrink-0 h-6 w-6 text-white">
<i class="fas fa-check-circle"></i>
</span>
<span class="ml-2">Caméras haute résolution</span>
</li>
<li class="flex items-start">
<span class="flex-shrink-0 h-6 w-6 text-white">
<i class="fas fa-check-circle"></i>
</span>
<span class="ml-2">Contrôle à distance 24/7</span>
</li>
<li class="flex items-start">
<span class="flex-shrink-0 h-6 w-6 text-white">
<i class="fas fa-check-circle"></i>
</span>
<span class="ml-2">Système de sécurité redondant</span>
</li>
</ul>
</div>
<div class="md:w-1/3 flex justify-center">
<img src="https://img.icons8.com/color/200/000000/technology.png" alt="Technologie drone" class="w-48 h-48">
</div>
</div>
</div>
</div>
</section>
<!-- Advantages Section -->
<section class="py-20 bg-gray-50">
<div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">
<h2 class="text-3xl font-bold text-center mb-16 section-title">Pourquoi choisir Drone Dash ?</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
<div class="bg-white rounded-xl shadow-md p-6 text-center">
<div class="text-blue-600 mb-4">
<i class="fas fa-bolt text-4xl"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Rapidité</h3>
<p class="text-gray-600">Livraison en moins de 30 minutes dans la plupart des cas, même aux heures de pointe.</p>
</div>
<div class="bg-white rounded-xl shadow-md p-6 text-center">
<div class="text-green-500 mb-4">
<i class="fas fa-leaf text-4xl"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Écologique</h3>
<p class="text-gray-600">Zéro émission de CO2, une solution respectueuse de l'environnement.</p>
</div>
<div class="bg-white rounded-xl shadow-md p-6 text-center">
<div class="text-orange-500 mb-4">
<i class="fas fa-map-marker-alt text-4xl"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Accessibilité</h3>
<p class="text-gray-600">Accès aux zones difficiles d'accès ou congestionnées par le trafic.</p>
</div>
<div class="bg-white rounded-xl shadow-md p-6 text-center">
<div class="text-blue-600 mb-4">
<i class="fas fa-shield-alt text-4xl"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Sécurité</h3>
<p class="text-gray-600">Colis transportés de manière sécurisée avec suivi en temps réel.</p>
</div>
</div>
</div>
</section>
<!-- Pricing Section -->
<section id="pricing" class="py-20 bg-white">
<div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">
<h2 class="text-3xl font-bold text-center mb-16 section-title">Nos Tarifs</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="bg-gray-100 rounded-xl shadow-md overflow-hidden">
<div class="px-6 py-8 text-center">
<h3 class="text-xl font-semibold mb-2">Livraison Standard</h3>
<div class="my-4">
<span class="text-4xl font-bold">3,500</span>
<span class="text-gray-600">FCFA</span>
</div>
<p class="text-gray-600 mb-6">Pour les colis jusqu'à 1kg dans un rayon de 5km</p>
<a href="#contact" class="bg-blue-600 hover:bg-blue-700 text-white font-bold py-2 px-6 rounded-full transition duration-300 inline-block">Commander</a>
</div>
<div class="bg-gray-200 px-6 py-4">
<ul class="space-y-2">
<li class="flex items-start">
<span class="flex-shrink-0 h-6 w-6 text-blue-600">
<i class="fas fa-check"></i>
</span>
<span class="ml-2 text-gray-700">Jusqu'à 1kg</span>
</li>
<li class="flex items-start">
<span class="flex-shrink-0 h-6 w-6 text-blue-600">
<i class="fas fa-check"></i>
</span>
<span class="ml-2 text-gray-700">Rayon de 5km</span>
</li>
<li class="flex items-start">
<span class="flex-shrink-0 h-6 w-6 text-blue-600">
<i class="fas fa-check"></i>
</span>
<span class="ml-2 text-gray-700">Livraison en 30 min</span>
</li>
</ul>
</div>
</div>
<div class="bg-gradient-to-r from-blue-600 to-orange-500 rounded-xl shadow-lg overflow-hidden text-white transform scale-105">
<div class="px-6 py-8 text-center">
<div class="absolute top-0 right-0 bg-yellow-400 text-gray-900 text-xs font-bold px-3 py-1 rounded-bl-lg">POPULAIRE</div>
<h3 class="text-xl font-semibold mb-2">Abonnement Pro</h3>
<div class="my-4">
<span class="text-4xl font-bold">25,000</span>
<span>FCFA</span>
</div>
<p class="mb-6">10 livraisons par mois (jusqu'à 2kg chacune)</p>
<a href="#contact" class="bg-white hover:bg-gray-100 text-blue-600 font-bold py-2 px-6 rounded-full transition duration-300 inline-block">S'abonner</a>
</div>
<div class="bg-blue-700 px-6 py-4">
<ul class="space-y-2">
<li class="flex items-start">
<span class="flex-shrink-0 h-6 w-6 text-white">
<i class="fas fa-check"></i>
</span>
<span class="ml-2">Jusqu'à 2kg par livraison</span>
</li>
<li class="flex items-start">
<span class="flex-shrink-0 h-6 w-6 text-white">
<i class="fas fa-check"></i>
</span>
<span class="ml-2">10 livraisons incluses</span>
</li>
<li class="flex items-start">
<span class="flex-shrink-0 h-6 w-6 text-white">
<i class="fas fa-check"></i>
</span>
<span class="ml-2">Rayon de 10km</span>
</li>
<li class="flex items-start">
<span class="flex-shrink-0 h-6 w-6 text-white">
<i class="fas fa-check"></i>
</span>
<span class="ml-2">Priorité sur les livraisons</span>
</li>
<li class="flex items-start">
<span class="flex-shrink-0 h-6 w-6 text-white">
<i class="fas fa-check"></i>
</span>
<span class="ml-2">Support dédié</span>
</li>
</ul>
</div>
</div>
<div class="bg-gray-100 rounded-xl shadow-md overflow-hidden">
<div class="px-6 py-8 text-center">
<h3 class="text-xl font-semibold mb-2">Livraison XL</h3>
<div class="my-4">
<span class="text-4xl font-bold">5,500</span>
<span class="text-gray-600">FCFA</span>
</div>
<p class="text-gray-600 mb-6">Pour les colis jusqu'à 3kg dans un rayon de 10km</p>
<a href="#contact" class="bg-blue-600 hover:bg-blue-700 text-white font-bold py-2 px-6 rounded-full transition duration-300 inline-block">Commander</a>
</div>
<div class="bg-gray-200 px-6 py-4">
<ul class="space-y-2">
<li class="flex items-start">
<span class="flex-shrink-0 h-6 w-6 text-blue-600">
<i class="fas fa-check"></i>
</span>
<span class="ml-2 text-gray-700">Jusqu'à 3kg</span>
</li>
<li class="flex items-start">
<span class="flex-shrink-0 h-6 w-6 text-blue-600">
<i class="fas fa-check"></i>
</span>
<span class="ml-2 text-gray-700">Rayon de 10km</span>
</li>
<li class="flex items-start">
<span class="flex-shrink-0 h-6 w-6 text-blue-600">
<i class="fas fa-check"></i>
</span>
<span class="ml-2 text-gray-700">Livraison en 45 min</span>
</li>
</ul>
</div>
</div>
</div>
<div class="mt-12 bg-gray-100 rounded-xl p-8">
<h3 class="text-xl font-semibold mb-4 text-center">Tarifs supplémentaires</h3>
<div class="overflow-x-auto">
<table class="min-w-full bg-white rounded-lg overflow-hidden">
<thead class="bg-gray-200">
<tr>
<th class="py-3 px-4 text-left">Distance supplémentaire</th>
<th class="py-3 px-4 text-left">Poids supplémentaire</th>
<th class="py-3 px-4 text-left">Livraison urgente (+20 min)</th>
</tr>
</thead>
<tbody class="divide-y divide-gray-200">
<tr>
<td class="py-3 px-4">+500 FCFA par km au-delà de 10km</td>
<td class="py-3 px-4">+1,000 FCFA par kg au-delà de 3kg</td>
<td class="py-3 px-4">+2,000 FCFA</td>
</tr>
</tbody>
</table>
</div>
<p class="mt-4 text-center text-gray-600">Nos tarifs sont transparents et sans frais cachés. Contactez-nous pour un devis personnalisé.</p>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-20 bg-gray-50">
<div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">
<h2 class="text-3xl font-bold text-center mb-16 section-title">À propos de nous</h2>
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0 md:pr-10">
<h3 class="text-2xl font-bold mb-4">Notre histoire</h3>
<p class="text-gray-600 mb-6">Drone Dash est née en 2022 de l'imagination de 7 jeunes entrepreneurs du Collège André Malraux en Côte d'Ivoire. Constatant les difficultés de livraison dans les grandes villes ivoiriennes, en particulier pendant les heures de pointe, ils ont imaginé une solution innovante utilisant la technologie des drones.</p>
<p class="text-gray-600 mb-6">Ce qui a commencé comme un projet scolaire est rapidement devenu une entreprise prometteuse, soutenue par des investisseurs locaux et des incubateurs technologiques.</p>
<p class="text-gray-600">Aujourd'hui, Drone Dash emploie 15 personnes à temps plein et opère une flotte de 25 drones, réalisant en moyenne 200 livraisons par jour dans la région d'Abidjan.</p>
</div>
<div class="md:w-1/2">
<div class="bg-white rounded-xl shadow-md overflow-hidden">
<img src="https://images.unsplash.com/photo-1582211594533-268f4f4ed4cf?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80" alt="Équipe Drone Dash" class="w-full h-64 object-cover">
<div class="p-6">
<h3 class="text-xl font-semibold mb-2">Notre mission</h3>
<p class="text-gray-600">Révolutionner la logistique en Côte d'Ivoire en proposant des solutions de livraison rapides, écologiques et accessibles à tous, tout en inspirant la jeune génération à innover et entreprendre.</p>
</div>
</div>
</div>
</div>
<div class="mt-12 bg-gradient-to-r from-blue-600 to-orange-500 rounded-xl p-8 text-white">
<h3 class="text-2xl font-bold mb-6 text-center">Notre équipe fondatrice</h3>
<div class="grid grid-cols-2 md:grid-cols-4 gap-6">
<div class="bg-white bg-opacity-20 rounded-lg p-4 text-center backdrop-filter backdrop-blur-sm">
<div class="w-20 h-20 mx-auto mb-3 rounded-full bg-white flex items-center justify-center text-blue-600 text-2xl font-bold">AK</div>
<h4 class="font-semibold">Amani Koné</h4>
<p class="text-sm opacity-90">CEO & Co-fondateur</p>
</div>
<div class="bg-white bg-opacity-20 rounded-lg p-4 text-center backdrop-filter backdrop-blur-sm">
<div class="w-20 h-20 mx-auto mb-3 rounded-full bg-white flex items-center justify-center text-blue-600 text-2xl font-bold">FT</div>
<h4 class="font-semibold">Fatou Traoré</h4>
<p class="text-sm opacity-90">CTO & Co-fondatrice</p>
</div>
<div class="bg-white bg-opacity-20 rounded-lg p-4 text-center backdrop-filter backdrop-blur-sm">
<div class="w-20 h-20 mx-auto mb-3 rounded-full bg-white flex items-center justify-center text-blue-600 text-2xl font-bold">KD</div>
<h4 class="font-semibold">Koffi Doumbia</h4>
<p class="text-sm opacity-90">Responsable Opérations</p>
</div>
<div class="bg-white bg-opacity-20 rounded-lg p-4 text-center backdrop-filter backdrop-blur-sm">
<div class="w-20 h-20 mx-auto mb-3 rounded-full bg-white flex items-center justify-center text-blue-600 text-2xl font-bold">AS</div>
<h4 class="font-semibold">Aïcha Sylla</h4>
<p class="text-sm opacity-90">Responsable Marketing</p>
</div>
</div>
<p class="mt-8 text-center opacity-90">"Nous croyons que l'innovation n'a pas d'âge. Avec de la passion, du travail et de la persévérance, même des collégiens peuvent créer des solutions qui changent la vie des gens." - L'équipe Drone Dash</p>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-20 bg-white">
<div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">
<h2 class="text-3xl font-bold text-center mb-16 section-title">Contactez-nous</h2>
<div class="flex flex-col md:flex-row">
<div class="md:w-1/2 mb-10 md:mb-0 md:pr-10">
<h3 class="text-2xl font-bold mb-4">Informations de contact</h3>
<p class="text-gray-600 mb-6">Nous sommes disponibles pour répondre à vos questions du lundi au samedi, de 8h à 18h.</p>
<div class="space-y-4">
<div class="flex items-start">
<div class="flex-shrink-0 h-10 w-10 rounded-full bg-blue-100 flex items-center justify-center text-blue-600">
<i class="fas fa-map-marker-alt"></i>
</div>
<div class="ml-4">
<h4 class="font-semibold">Adresse</h4>
<p class="text-gray-600">Rue des Entrepreneurs, Plateau<br>Abidjan, Côte d'Ivoire</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 h-10 w-10 rounded-full bg-blue-100 flex items-center justify-center text-blue-600">
<i class="fas fa-phone-alt"></i>
</div>
<div class="ml-4">
<h4 class="font-semibold">Téléphone</h4>
<p class="text-gray-600">+225 07 08 09 10 11<br>+225 01 02 03 04 05</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 h-10 w-10 rounded-full bg-blue-100 flex items-center justify-center text-blue-600">
<i class="fas fa-envelope"></i>
</div>
<div class="ml-4">
<h4 class="font-semibold">Email</h4>
<p class="text-gray-600">contact@dronedash.ci<br>support@dronedash.ci</p>
</div>
</div>
</div>
<div class="mt-8">
<h4 class="font-semibold mb-4">Suivez-nous</h4>
<div class="flex space-x-4">
<a href="#" class="h-10 w-10 rounded-full bg-blue-600 text-white flex items-center justify-center hover:bg-blue-700 transition duration-300">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="h-10 w-10 rounded-full bg-blue-400 text-white flex items-center justify-center hover:bg-blue-500 transition duration-300">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="h-10 w-10 rounded-full bg-pink-600 text-white flex items-center justify-center hover:bg-pink-700 transition duration-300">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="h-10 w-10 rounded-full bg-red-600 text-white flex items-center justify-center hover:bg-red-700 transition duration-300">
<i class="fab fa-youtube"></i>
</a>
</div>
</div>
</div>
<div class="md:w-1/2">
<div class="bg-gray-100 rounded-xl p-8">
<h3 class="text-xl font-semibold mb-6">Envoyez-nous un message</h3>
<form>
<div class="mb-4">
<label for="name" class="block text-gray-700 font-medium mb-2">Nom complet</label>
<input type="text" id="name" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-600 focus:border-transparent" placeholder="Votre nom">
</div>
<div class="mb-4">
<label for="email" class="block text-gray-700 font-medium mb-2">Email</label>
<input type="email" id="email" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-600 focus:border-transparent" placeholder="Votre email">
</div>
<div class="mb-4">
<label for="subject" class="block text-gray-700 font-medium mb-2">Sujet</label>
<select id="subject" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-600 focus:border-transparent">
<option value="">Sélectionnez un sujet</option>
<option value="delivery">Question sur une livraison</option>
<option value="pricing">Demande de tarifs</option>
<option value="partnership">Partenariat commercial</option>
<option value="other">Autre</option>
</select>
</div>
<div class="mb-6">
<label for="message" class="block text-gray-700 font-medium mb-2">Message</label>
<textarea id="message" rows="4" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-600 focus:border-transparent" placeholder="Votre message"></textarea>
</div>
<button type="submit" class="w-full bg-blue-600 hover:bg-blue-700 text-white font-bold py-3 px-4 rounded-lg transition duration-300">Envoyer le message</button>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- FAQ Section -->
<section class="py-16 bg-gray-50">
<div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">
<h2 class="text-3xl font-bold text-center mb-12 section-title">Questions fréquentes</h2>
<div class="max-w-3xl mx-auto">
<div class="bg-white rounded-xl shadow-md overflow-hidden mb-4">
<button class="faq-question w-full text-left px-6 py-4 font-medium text-lg focus:outline-none">
<div class="flex justify-between items-center">
<span>Comment puis-je suivre ma livraison ?</span>
<i class="fas fa-chevron-down transition-transform duration-300"></i>
</div>
</button>
<div class="faq-answer px-6 pb-4 hidden">
<p class="text-gray-600">Vous pouvez suivre votre livraison en temps réel via notre application mobile. Une fois votre commande passée, vous recevrez un lien de suivi par SMS et email qui vous permettra de voir la position du drone et l'estimation du temps de livraison.</p>
</div>
</div>
<div class="bg-white rounded-xl shadow-md overflow-hidden mb-4">
<button class="faq-question w-full text-left px-6 py-4 font-medium text-lg focus:outline-none">
<div class="flex justify-between items-center">
<span>Quelles sont les conditions météo pour les livraisons ?</span>
<i class="fas fa-chevron-down transition-transform duration-300"></i>
</div>
</button>
<div class="faq-answer px-6 pb-4 hidden">
<p class="text-gray-600">Nos drones peuvent opérer dans la plupart des conditions météorologiques, mais pour des raisons de sécurité, nous reportons les livraisons en cas de vents très forts (au-dessus de 40 km/h) ou de fortes pluies. Dans ce cas, nous vous contacterons pour reprogrammer la livraison ou vous proposer une alternative.</p>
</div>
</div>
<div class="bg-white rounded-xl shadow-md overflow-hidden mb-4">
<button class="faq-question w-full text-left px-6 py-4 font-medium text-lg focus:outline-none">
<div class="flex justify-between items-center">
<span>Comment le drone dépose-t-il mon colis ?</span>
<i class="fas fa-chevron-down transition-transform duration-300"></i>
</div>
</button>
<div class="faq-answer px-6 pb-4 hidden">
<p class="text-gray-600">Nos drones sont équipés d'un système de largage sécurisé. Le drone descend à environ 2 mètres du sol et dépose délicatement votre colis à l'endroit précis que vous avez indiqué. Pour les livraisons sur les balcons ou terrasses, nous utilisons un système de câble contrôlé à distance.</p>
</div>
</div>
<div class="bg-white rounded-xl shadow-md overflow-hidden mb-4">
<button class="faq-question w-full text-left px-6 py-4 font-medium text-lg focus:outline-none">
<div class="flex justify-between items-center">
<span>Puis-je annuler une livraison ?</span>
<i class="fas fa-chevron-down transition-transform duration-300"></i>
</div>
</button>
<div class="faq-answer px-6 pb-4 hidden">
<p class="text-gray-600">Vous pouvez annuler une livraison sans frais jusqu'à 10 minutes après avoir passé commande. Passé ce délai, des frais d'annulation peuvent s'appliquer selon l'avancement de la préparation. Une fois le drone en vol, l'annulation n'est plus possible.</p>
</div>
</div>
<div class="bg-white rounded-xl shadow-md overflow-hidden">
<button class="faq-question w-full text-left px-6 py-4 font-medium text-lg focus:outline-none">
<div class="flex justify-between items-center">
<span>Comment devenir livreur pour Drone Dash ?</span>
<i class="fas fa-chevron-down transition-transform duration-300"></i>
</div>
</button>
<div class="faq-answer px-6 pb-4 hidden">
<p class="text-gray-600">Nous recrutons régulièrement des opérateurs de drones certifiés. Les candidats doivent avoir au moins 18 ans, un certificat de pilotage de drone reconnu et réussir notre formation interne. Consultez notre page carrières ou envoyez-nous votre CV à recrutement@dronedash.ci</p>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-12">
<div class="max-w-6xl 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-xl font-bold mb-4">Drone<span class="text-blue-400">Dash</span></h3>
<p class="text-gray-400">La livraison du futur, aujourd'hui en Côte d'Ivoire. Rapide, écologique et innovante.</p>
</div>
<div>
<h4 class="font-semibold mb-4">Liens rapides</h4>
<ul class="space-y-2">
<li><a href="#home" class="text-gray-400 hover:text-white transition duration-300">Accueil</a></li>
<li><a href="#services" class="text-gray-400 hover:text-white transition duration-300">Services</a></li>
<li><a href="#pricing" class="text-gray-400 hover:text-white transition duration-300">Tarifs</a></li>
<li><a href="#about" class="text-gray-400 hover:text-white transition duration-300">À propos</a></li>
</ul>
</div>
<div>
<h4 class="font-semibold mb-4">Légal</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Conditions générales</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Politique de confidentialité</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Cookies</a></li>
</ul>
</div>
<div>
<h4 class="font-semibold mb-4">Newsletter</h4>
<p class="text-gray-400 mb-4">Abonnez-vous pour recevoir nos dernières actualités et offres.</p>
<form class="flex">
<input type="email" placeholder="Votre email" class="px-4 py-2 rounded-l-lg focus:outline-none text-gray-900 w-full">
<button type="submit" class="bg-blue-600 hover:bg-blue-700 px-4 py-2 rounded-r-lg transition duration-300">
<i class="fas fa-paper-plane"></i>
</button>
</form>
</div>
</div>
<div class="border-t border-gray-800 mt-8 pt-8 flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-400 text-sm">© 2023 Drone Dash. Tous droits réservés.</p>
<div class="flex space-x-6 mt-4 md:mt-0">
<a href="#" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-linkedin-in"></i>
</a>
</div>
</div>
</div>
</footer>
<!-- Chatbot -->
<div class="fixed bottom-6 right-6 z-50">
<div id="chatbot" class="chatbot chatbot-hidden bg-white rounded-xl shadow-xl w-80 overflow-hidden transition-all duration-300 ease-in-out">
<div class="bg-gradient-to-r from-blue-600 to-orange-500 p-4 text-white">
<div class="flex justify-between items-center">
<h3 class="font-bold">Drone Dash Assistant</h3>
<button id="close-chatbot" class="text-white hover:text-gray-200 focus:outline-none">
<i class="fas fa-times"></i>
</button>
</div>
</div>
<div class="p-4 h-64 overflow-y-auto">
<div class="mb-4">
<div class="bg-gray-100 rounded-lg p-3 inline-block max-w-xs">
<p class="text-sm">Bonjour ! Je suis l'assistant virtuel de Drone Dash. Comment puis-je vous aider aujourd'hui ?</p>
</div>
</div>
<div id="chatbot-messages" class="space-y-4"></div>
</div>
<div class="p-4 border-t border-gray-200">
<div class="flex">
<input id="chatbot-input" type="text" placeholder="Posez votre question..." class="flex-grow px-4 py-2 border border-gray-300 rounded-l-lg focus:outline-none focus:ring-2 focus:ring-blue-600 focus:border-transparent">
<button id="chatbot-send" class="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-r-lg transition duration-300">
<i class="fas fa-paper-plane"></i>
</button>
</div>
</div>
</div>
<button id="open-chatbot" class="bg-gradient-to-r from-blue-600 to-orange-500 text-white rounded-full w-16 h-16 shadow-lg hover:shadow-xl transition duration-300 focus:outline-none">
<i class="fas fa-comment-dots text-2xl"></i>
</button>
</div>
<!-- Back to Top Button -->
<button id="back-to-top" class="hidden fixed bottom-20 right-6 bg-gray-800 text-white w-12 h-12 rounded-full shadow-lg hover:bg-gray-900 transition duration-300 z-40 focus:outline-none">
<i class="fas fa-arrow-up"></i>
</button>
<script>
// Mobile menu toggle
const mobileMenuButton = document.querySelector('.mobile-menu-button');
const mobileMenu = document.querySelector('.mobile-menu');
mobileMenuButton.addEventListener('click', () => {
mobileMenu.classList.toggle('hidden');
});
// FAQ accordion
const faqQuestions = document.querySelectorAll('.faq-question');
faqQuestions.forEach(question => {
question.addEventListener('click', () => {
const answer = question.nextElementSibling;
const icon = question.querySelector('i');
answer.classList.toggle('hidden');
icon.classList.toggle('transform');
icon.classList.toggle('rotate-180');
});
});
// Chatbot functionality
const chatbot = document.getElementById('chatbot');
const openChatbot = document.getElementById('open-chatbot');
const closeChatbot = document.getElementById('close-chatbot');
const chatbotInput = document.getElementById('chatbot-input');
const chatbotSend = document.getElementById('chatbot-send');
const chatbotMessages = document.getElementById('chatbot-messages');
const chatbotResponses = {
"bonjour": "Bonjour ! Comment puis-je vous aider aujourd'hui concernant nos services de livraison par drone ?",
"salut": "Salut ! Prêt à découvrir la livraison du futur ? Que souhaitez-vous savoir ?",
"prix": "Nos tarifs commencent à 3,500 FCFA pour les livraisons standard jusqu'à 1kg dans un rayon de 5km. Vous pouvez voir tous nos tarifs sur la page <a href='#pricing' class='text-blue-600 font-medium'>Tarifs</a>.",
"tarif": "Nos tarifs varient selon le poids et la distance. La livraison standard (jusqu'à 1kg, 5km) coûte 3,500 FCFA. Nous proposons aussi des abonnements mensuels à partir de 25,000 FCFA pour 10 livraisons.",
"livraison": "Nos drones livrent généralement en moins de 30 minutes dans les zones couvertes. Vous pouvez suivre votre colis en temps réel via notre application mobile.",
"application": "Notre application est disponible sur l'<a href='#' class='text-blue-600 font-medium'>App Store</a> et <a href='#' class='text-blue-600 font-medium'>Google Play</a>. Elle vous permet de commander, suivre vos livraisons et gérer vos abonnements.",
"zone": "Nous couvrons actuellement Abidjan (toutes communes), Bouaké, Yamoussoukro, San Pedro et Korhogo. Nous étendons progressivement notre couverture.",
"contact": "Vous pouvez nous contacter par téléphone au +225 07 08 09 10 11, par email à contact@dronedash.ci, ou via le <a href='#contact' class='text-blue-600 font-medium'>formulaire de contact</a> sur notre site.",
"default": "Je n'ai pas compris votre demande. Voici quelques sujets sur lesquels je peux vous aider :<br>- Tarifs et abonnements<br- Zones de livraison<br>- Temps de livraison<br>- Comment commander<br>- Notre application mobile<br>Pouvez-vous reformuler votre question ?"
};
openChatbot.addEventListener('click', () => {
chatbot.classList.remove('chatbot-hidden');
chatbot.classList.add('opacity-100');
openChatbot.classList.add('hidden');
});
closeChatbot.addEventListener('click', () => {
chatbot.classList.add('chatbot-hidden');
chatbot.classList.remove('opacity-100');
openChatbot.classList.remove('hidden');
});
function addBotMessage(message) {
const messageDiv = document.createElement('div');
messageDiv.className = 'mb-4';
messageDiv.innerHTML = `
<div class="bg-gray-100 rounded-lg p-3 inline-block max-w-xs">
<p class="text-sm">${message}</p>
</div>
`;
chatbotMessages.appendChild(messageDiv);
chatbotMessages.scrollTop = chatbotMessages.scrollHeight;
}
function addUserMessage(message) {
const messageDiv = document.createElement('div');
messageDiv.className = 'mb-4 flex justify-end';
messageDiv.innerHTML = `
<div class="bg-blue-600 text-white rounded-lg p-3 inline-block max-w-xs">
<p class="text-sm">${message}</p>
</div>
`;
chatbotMessages.appendChild(messageDiv);
chatbotMessages.scrollTop = chatbotMessages.scrollHeight;
}
chatbotSend.addEventListener('click', () => {
const message = chatbotInput.value.trim().toLowerCase();
if (message) {
addUserMessage(message);
chatbotInput.value = '';
// Simple response logic
let response = chatbotResponses.default;
for (const [key, value] of Object.entries(chatbotResponses)) {
if (message.includes(key)) {
response = value;
break;
}
}
setTimeout(() => {
addBotMessage(response);
}, 500);
}
});
chatbotInput.addEventListener('keypress', (e) => {
if (e.key === 'Enter') {
chatbotSend.click();
}
});
// Back to top button
const backToTopButton = document.getElementById('back-to-top');
window.addEventListener('scroll', () => {
if (window.pageYOffset > 300) {
backToTopButton.classList.remove('hidden');
} else {
backToTopButton.classList.add('hidden');
}
});
backToTopButton.addEventListener('click', () => {
window.scrollTo({ top: 0, behavior: 'smooth' });
});
// 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) {
targetElement.scrollIntoView({
behavior: 'smooth'
});
// Close mobile menu if open
if (!mobileMenu.classList.contains('hidden')) {
mobileMenu.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://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=asriel1/dronedash" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |