File size: 41,866 Bytes
0d8f0cc | 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 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pro Bounce Party Rentals - Premium Inflatables in Paragould, AR</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=Poppins:wght@400;600;700&family=Chewy&display=swap');
:root {
--primary: #FF6B6B;
--secondary: #4ECDC4;
--accent: #FFE66D;
--dark: #292F36;
--light: #F7FFF7;
}
body {
font-family: 'Poppins', sans-serif;
background-color: #F7F7F7;
color: var(--dark);
}
.logo-font {
font-family: 'Chewy', cursive;
}
.bounce-animation {
animation: bounce 3s infinite;
}
@keyframes bounce {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-10px); }
}
.pulse-animation {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.05); }
100% { transform: scale(1); }
}
.testimonial-card {
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
transition: all 0.3s ease;
}
.testimonial-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.inventory-item {
transition: all 0.3s ease;
}
.inventory-item:hover {
transform: scale(1.03);
}
.ribbon {
position: absolute;
top: -10px;
right: -10px;
width: 100px;
height: 100px;
overflow: hidden;
}
.ribbon-content {
position: absolute;
display: block;
width: 150px;
padding: 10px 0;
background-color: var(--primary);
box-shadow: 0 5px 10px rgba(0,0,0,0.1);
color: white;
font-weight: bold;
font-size: 12px;
text-transform: uppercase;
text-align: center;
right: -35px;
top: 25px;
transform: rotate(45deg);
}
</style>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: '#FF6B6B',
secondary: '#4ECDC4',
accent: '#FFE66D',
dark: '#292F36',
light: '#F7FFF7',
},
fontFamily: {
chewy: ['"Chewy"', 'cursive'],
},
}
}
}
function toggleMenu() {
const menu = document.getElementById('mobile-menu');
menu.classList.toggle('hidden');
}
function validateForm() {
const form = document.getElementById('booking-form');
if (form.checkValidity()) {
alert('Thank you for your booking request! We will contact you shortly to confirm your reservation.');
form.reset();
}
}
</script>
</head>
<body>
<!-- Header with Logo -->
<header class="bg-gradient-to-r from-primary to-secondary py-6 shadow-lg">
<div class="container mx-auto px-4">
<div class="flex justify-between items-center">
<button class="md:hidden text-white text-2xl" onclick="toggleMenu()">
<i class="fas fa-bars"></i>
</button>
<!-- Logo -->
<div class="text-center flex-grow">
<h1 class="logo-font text-4xl md:text-5xl text-white bounce-animation">
<span class="text-accent">Pro</span>BouncePartyRentals
</h1>
<p class="text-white font-bold mt-2">Paragould, Arkansas • 870-476-8777</p>
</div>
<div class="w-8 md:hidden"></div> <!-- Spacer for mobile menu button -->
</div>
<!-- Mobile Menu -->
<div id="mobile-menu" class="hidden md:hidden bg-white rounded-lg mt-4 p-4">
<nav class="flex flex-col space-y-3">
<a href="#inventory" class="text-dark hover:text-primary font-bold">Our Inventory</a>
<a href="#pricing" class="text-dark hover:text-primary font-bold">Pricing</a>
<a href="#testimonials" class="text-dark hover:text-primary font-bold">Testimonials</a>
<a href="#safety" class="text-dark hover:text-primary font-bold">Safety</a>
<a href="#contact" class="text-dark hover:text-primary font-bold">Contact</a>
</nav>
</div>
<!-- Desktop Navigation -->
<nav class="hidden md:flex justify-center mt-6 space-x-8">
<a href="#inventory" class="text-white font-bold hover:text-accent transition duration-300">Our Inventory</a>
<a href="#pricing" class="text-white font-bold hover:text-accent transition duration-300">Pricing</a>
<a href="#testimonials" class="text-white font-bold hover:text-accent transition duration-300">Testimonials</a>
<a href="#safety" class="text-white font-bold hover:text-accent transition duration-300">Safety</a>
<a href="#contact" class="text-white font-bold hover:text-accent transition duration-300">Contact</a>
</nav>
</div>
</header>
<!-- Hero Section -->
<section class="bg-gradient-to-b from-secondary/20 to-primary/20 py-16">
<div class="container mx-auto px-4 text-center">
<div class="max-w-4xl mx-auto">
<h2 class="text-3xl md:text-5xl font-bold text-dark mb-6">
<span class="text-primary">Grand Opening!</span> Let's Make Your Next Party <span class="text-secondary">Unforgettable!</span>
</h2>
<p class="text-xl text-dark mb-10">
Premium bounce house rentals in Paragould, AR that guarantee laughter, joy, and non-stop fun for kids of all ages!
</p>
<div class="flex flex-wrap justify-center gap-4">
<a href="#inventory" class="bg-primary hover:bg-primary/90 text-white font-bold py-3 px-8 rounded-full shadow-lg transition duration-300 transform hover:scale-105">
See Our Inflatables
</a>
<a href="#contact" class="bg-accent hover:bg-accent/90 text-dark font-bold py-3 px-8 rounded-full shadow-lg transition duration-300 transform hover:scale-105">
Book Now
</a>
</div>
</div>
</div>
</section>
<!-- Safety Banner -->
<section id="safety" class="bg-dark text-white py-8">
<div class="container mx-auto px-4">
<div class="flex flex-col md:flex-row items-center justify-center gap-4">
<div class="flex items-center">
<i class="fas fa-shield-alt text-3xl text-accent mr-3"></i>
<h3 class="text-xl font-bold">100% Commercial Grade Inflatables</h3>
</div>
<div class="flex items-center">
<i class="fas fa-check-circle text-3xl text-secondary mr-3"></i>
<h3 class="text-xl font-bold">Safety Inspected Before Every Rental</h3>
</div>
<div class="flex items-center">
<i class="fas fa-truck text-3xl text-primary mr-3"></i>
<h3 class="text-xl font-bold">Professional Delivery & Setup</h3>
</div>
</div>
</div>
</section>
<!-- About Us -->
<section class="py-16 bg-light">
<div class="container mx-auto px-4">
<div class="max-w-4xl mx-auto text-center">
<h2 class="text-3xl md:text-4xl font-bold text-dark mb-6">
About <span class="text-primary">Pro Bounce Party Rentals</span>
</h2>
<p class="text-xl text-dark mb-8">
Founded with a passion for bringing joy to celebrations, we specialize in premium bounce house and party rentals in Paragould, Arkansas. Our mission is simple: to create unforgettable memories through safe, high-quality inflatables and exceptional customer service.
</p>
<div class="grid md:grid-cols-3 gap-8 mt-12">
<div class="bg-white p-6 rounded-lg shadow-md">
<div class="text-5xl text-primary mb-4">
<i class="fas fa-smile"></i>
</div>
<h4 class="font-bold text-xl mb-3">Customer Satisfaction</h4>
<p>We're not happy until you're thrilled with your rental experience.</p>
</div>
<div class="bg-white p-6 rounded-lg shadow-md">
<div class="text-5xl text-secondary mb-4">
<i class="fas fa-medal"></i>
</div>
<h4 class="font-bold text-xl mb-3">Top Quality</h4>
<p>Only commercial-grade, premium inflatables for the best experience.</p>
</div>
<div class="bg-white p-6 rounded-lg shadow-md">
<div class="text-5xl text-accent mb-4">
<i class="fas fa-clock"></i>
</div>
<h4 class="font-bold text-xl mb-3">Easy Booking</h4>
<p>Reserve your perfect inflatable in just minutes online or by phone.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Inventory Section -->
<section id="inventory" class="py-16">
<div class="container mx-auto px-4">
<h2 class="text-4xl font-bold text-center text-dark mb-12">
Our <span class="text-primary">Fun-Filled</span> Inventory
</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Item 1 -->
<div class="inventory-item bg-white rounded-lg overflow-hidden shadow-lg relative">
<div class="ribbon">
<span class="ribbon-content">Most Popular</span>
</div>
<img src="https://images.unsplash.com/photo-1560964645-5296b50974a1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80" alt="Deluxe Bounce House" class="w-full h-64 object-cover">
<div class="p-6">
<h3 class="text-2xl font-bold text-dark mb-2">Deluxe Bounce House</h3>
<p class="text-gray-600 mb-4">Our most popular bounce house with fun colors and safe, sturdy construction. Perfect for birthdays and family gatherings.</p>
<div class="flex justify-between items-center">
<div>
<span class="text-primary font-bold text-xl">$150</span>
<span class="text-gray-500">/ day</span>
</div>
<button class="bg-accent hover:bg-accent/90 text-dark font-bold py-2 px-4 rounded transition duration-300">
Book Now
</button>
</div>
</div>
</div>
<!-- Item 2 -->
<div class="inventory-item bg-white rounded-lg overflow-hidden shadow-lg">
<img src="https://images.unsplash.com/photo-1459745204708-99333437379b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1136&q=80" alt="Bounce House Slide Combo" class="w-full h-64 object-cover">
<div class="p-6">
<h3 class="text-2xl font-bold text-dark mb-2">Bounce House Slide Combo</h3>
<p class="text-gray-600 mb-4">Double the fun with this bounce house that includes an exciting slide. Hours of entertainment in one compact unit.</p>
<div class="flex justify-between items-center">
<div>
<span class="text-primary font-bold text-xl">$225</span>
<span class="text-gray-500">/ day</span>
</div>
<button class="bg-accent hover:bg-accent/90 text-dark font-bold py-2 px-4 rounded transition duration-300">
Book Now
</button>
</div>
</div>
</div>
<!-- Item 3 -->
<div class="inventory-item bg-white rounded-lg overflow-hidden shadow-lg">
<img src="https://images.unsplash.com/photo-1600545684385-9b9a2224ca61?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80" alt="Obstacle Course" class="w-full h-64 object-cover">
<div class="p-6">
<h3 class="text-2xl font-bold text-dark mb-2">Obstacle Course</h3>
<p class="text-gray-600 mb-4">Challenge friends to race through tunnels, climb walls, and slide to victory in this action-packed inflatable.</p>
<div class="flex justify-between items-center">
<div>
<span class="text-primary font-bold text-xl">$250</span>
<span class="text-gray-500">/ day</span>
</div>
<button class="bg-accent hover:bg-accent/90 text-dark font-bold py-2 px-4 rounded transition duration-300">
Book Now
</button>
</div>
</div>
</div>
<!-- Item 4 -->
<div class="inventory-item bg-white rounded-lg overflow-hidden shadow-lg">
<img src="https://images.unsplash.com/photo-1578269174937-4e96f3e83abf?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1171&q=80" alt="Theme Park Slide" class="w-full h-64 object-cover">
<div class="p-6">
<h3 class="text-2xl font-bold text-dark mb-2">Theme Park Slide</h3>
<p class="text-gray-600 mb-4">Bring the amusement park to your backyard with our towering inflatable slide that provides thrills for all ages.</p>
<div class="flex justify-between items-center">
<div>
<span class="text-primary font-bold text-xl">$275</span>
<span class="text-gray-500">/ day</span>
</div>
<button class="bg-accent hover:bg-accent/90 text-dark font-bold py-2 px-4 rounded transition duration-300">
Book Now
</button>
</div>
</div>
</div>
<!-- Item 5 -->
<div class="inventory-item bg-white rounded-lg overflow-hidden shadow-lg">
<img src="https://images.unsplash.com/photo-1605000797499-95a51c5269ae?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1171&q=80" alt="Dunk Tank" class="w-full h-64 object-cover">
<div class="p-6">
<h3 class="text-2xl font-bold text-dark mb-2">Dunk Tank</h3>
<p class="text-gray-600 mb-4">Perfect for school carnivals and community events. Challenge participants to hit the bullseye and dunk their target!</p>
<div class="flex justify-between items-center">
<div>
<span class="text-primary font-bold text-xl">$300</span>
<span class="text-gray-500">/ day</span>
</div>
<button class="bg-accent hover:bg-accent/90 text-dark font-bold py-2 px-4 rounded transition duration-300">
Book Now
</button>
</div>
</div>
</div>
<!-- Item 6 -->
<div class="inventory-item bg-white rounded-lg overflow-hidden shadow-lg relative">
<div class="ribbon">
<span class="ribbon-content bg-secondary">New!</span>
</div>
<img src="https://images.unsplash.com/photo-1544070078-a212eda27a05?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80" alt="Interactive Game Package" class="w-full h-64 object-cover">
<div class="p-6">
<h3 class="text-2xl font-bold text-dark mb-2">Interactive Game Package</h3>
<p class="text-gray-600 mb-4">Includes giant Jenga, cornhole, ring toss, and more for a complete party experience. Perfect for family reunions!</p>
<div class="flex justify-between items-center">
<div>
<span class="text-primary font-bold text-xl">$175</span>
<span class="text-gray-500">/ day</span>
</div>
<button class="bg-accent hover:bg-accent/90 text-dark font-bold py-2 px-4 rounded transition duration-300">
Book Now
</button>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Pricing Section -->
<section id="pricing" class="py-16 bg-gradient-to-b from-primary/10 to-secondary/10">
<div class="container mx-auto px-4">
<h2 class="text-4xl font-bold text-center text-dark mb-12">
Simple <span class="text-primary">Pricing</span>
</h2>
<div class="max-w-6xl mx-auto">
<div class="grid grid-cols-1 md:grid-cols-2 gap-8 mb-12">
<div class="bg-white p-8 rounded-lg shadow-lg">
<h3 class="text-3xl font-bold text-primary mb-4">Standard Rental</h3>
<p class="text-xl mb-6">Perfect for birthday parties, family gatherings, and neighborhood events.</p>
<ul class="space-y-4 mb-8">
<li class="flex items-start">
<i class="fas fa-check-circle text-secondary mt-1 mr-3"></i>
<span>8 hour rental (typically 10am-6pm)</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-secondary mt-1 mr-3"></i>
<span>Professional setup and takedown</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-secondary mt-1 mr-3"></i>
<span>Safety briefing included</span>
</li>
</ul>
<div class="text-4xl font-bold text-dark mb-2">
Full Day Price
</div>
<p class="text-gray-600 mb-6">Our standard rental period covers most events perfectly</p>
</div>
<div class="bg-secondary text-white p-8 rounded-lg shadow-lg">
<h3 class="text-3xl font-bold text-accent mb-4">Extended Rental</h3>
<p class="text-xl mb-6">Need extra time? School carnivals, corporate events, and church festivals often require longer rentals.</p>
<ul class="space-y-4 mb-8">
<li class="flex items-start">
<i class="fas fa-check-circle text-accent mt-1 mr-3"></i>
<span>12 hour rental</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-accent mt-1 mr-3"></i>
<span>Perfect for all-day events</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-accent mt-1 mr-3"></i>
<span>Evening option available (+$50)</span>
</li>
</ul>
<div class="text-4xl font-bold text-white mb-2">
+$50 per inflatable
</div>
<p class="opacity-90 mb-6">Extend any rental for just $50 more</p>
</div>
</div>
<div class="bg-accent p-8 rounded-lg shadow-lg text-dark">
<h3 class="text-3xl font-bold mb-4">Short Event Special</h3>
<div class="flex flex-col md:flex-row justify-between items-start md:items-center">
<div class="mb-4 md:mb-0">
<p class="text-xl">Short on time? Book our 4-hour rental for quick celebrations!</p>
<div class="text-4xl font-bold mt-2">
Half Price Discount
</div>
</div>
<div class="bg-white text-dark font-bold py-3 px-6 rounded-full">
Limited Availability • Book Early!
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section id="testimonials" class="py-16 bg-dark">
<div class="container mx-auto px-4">
<h2 class="text-4xl font-bold text-center text-white mb-12">
What Our <span class="text-accent">Customers Say</span>
</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="testimonial-card bg-white rounded-lg p-8">
<div class="flex items-center mb-4">
<div class="text-4xl text-primary mr-4">
<i class="fas fa-quote-left"></i>
</div>
<div class="text-yellow-400 flex">
<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>
<p class="text-gray-600 mb-6 italic">
"The bounce house was a huge hit at my son's birthday party! Super easy to book, arrived exactly on time, and the kids had an absolute blast. The quality was excellent - I'll definitely be renting from them again!"
</p>
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/women/32.jpg" alt="Sarah J." class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold">Sarah J.</h4>
<p class="text-sm text-gray-500">Paragould, AR</p>
</div>
</div>
</div>
<!-- Testimonial 2 -->
<div class="testimonial-card bg-white rounded-lg p-8">
<div class="flex items-center mb-4">
<div class="text-4xl text-primary mr-4">
<i class="fas fa-quote-left"></i>
</div>
<div class="text-yellow-400 flex">
<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>
<p class="text-gray-600 mb-6 italic">
"We rented the combo bounce house with slide for our festival and it was fantastic! The team was professional, helpful, and everything was spotless. The kids (and even some adults) couldn't get enough!"
</p>
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/men/45.jpg" alt="Mark T." class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold">Mark T.</h4>
<p class="text-sm text-gray-500">School Event Organizer</p>
</div>
</div>
</div>
<!-- Testimonial 3 -->
<div class="testimonial-card bg-white rounded-lg p-8">
<div class="flex items-center mb-4">
<div class="text-4xl text-primary mr-4">
<i class="fas fa-quote-left"></i>
</div>
<div class="text-yellow-400 flex">
<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>
<p class="text-gray-600 mb-6 italic">
"Best party rental experience we've had! The obstacle course kept 15 kids entertained for hours. The owner personally made sure we were happy with everything. Their attention to safety made me feel comfortable as a parent."
</p>
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/women/68.jpg" alt="Lisa M." class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold">Lisa M.</h4>
<p class="text-sm text-gray-500">Community Event Planner</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Booking Form Section -->
<section id="contact" class="py-16 bg-light">
<div class="container mx-auto px-4">
<div class="max-w-4xl mx-auto bg-white rounded-lg shadow-lg overflow-hidden">
<div class="md:flex">
<div class="md:w-1/2 bg-primary text-white p-12">
<h2 class="text-3xl font-bold mb-6">Ready to Jump In?</h2>
<p class="mb-6">
Fill out our simple booking form and we'll get back to you within 24 hours to confirm your reservation.
</p>
<div class="space-y-4">
<div class="flex items-start">
<div class="text-xl mr-4 mt-1"><i class="fas fa-phone"></i></div>
<div>
<h4 class="font-bold">Call Us</h4>
<p class="text-accent font-bold">870-476-8777</p>
</div>
</div>
<div class="flex items-start">
<div class="text-xl mr-4 mt-1"><i class="fas fa-map-marker-alt"></i></div>
<div>
<h4 class="font-bold">Location</h4>
<p>Paragould, Arkansas</p>
</div>
</div>
<div class="flex items-start">
<div class="text-xl mr-4 mt-1"><i class="fas fa-clock"></i></div>
<div>
<h4 class="font-bold">Service Area</h4>
<p>Serving all of Northeast Arkansas</p>
</div>
</div>
</div>
</div>
<div class="md:w-1/2 p-12">
<h3 class="text-2xl font-bold text-dark mb-8">Booking Request Form</h3>
<form id="booking-form" class="space-y-6">
<div>
<label for="name" class="block text-gray-700 font-bold mb-2">Your Name</label>
<input type="text" id="name" required class="w-full px-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-primary">
</div>
<div>
<label for="phone" class="block text-gray-700 font-bold mb-2">Phone Number</label>
<input type="tel" id="phone" required class="w-full px-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-primary">
</div>
<div>
<label for="email" class="block text-gray-700 font-bold mb-2">Email</label>
<input type="email" id="email" required class="w-full px-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-primary">
</div>
<div>
<label for="event-date" class="block text-gray-700 font-bold mb-2">Event Date</label>
<input type="date" id="event-date" required class="w-full px-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-primary">
</div>
<div>
<label for="rental-type" class="block text-gray-700 font-bold mb-2">Rental Type</label>
<select id="rental-type" required class="w-full px-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-primary">
<option value="" disabled selected>Select an option</option>
<option value="full-day">Full Day (8hrs)</option>
<option value="half-day">Half Day (4hrs)</option>
<option value="extended">Extended Rental (12hrs)</option>
</select>
</div>
<div>
<label for="inflatables" class="block text-gray-700 font-bold mb-2">Items Interested In</label>
<textarea id="inflatables" rows="3" class="w-full px-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-primary" placeholder="Please list the bounce houses, games or other rentals you're interested in"></textarea>
</div>
<button type="submit" class="w-full bg-primary hover:bg-primary/90 text-white font-bold py-3 px-4 rounded-lg transition duration-300" onclick="validateForm()">
Submit Booking Request
</button>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- FAQ Section -->
<section class="py-16 bg-gradient-to-r from-primary/10 to-secondary/10">
<div class="container mx-auto px-4">
<h2 class="text-4xl font-bold text-center text-dark mb-12">
Frequently <span class="text-primary">Asked Questions</span>
</h2>
<div class="max-w-3xl mx-auto space-y-6">
<div class="bg-white p-6 rounded-lg shadow-md">
<button class="flex justify-between items-center w-full text-left focus:outline-none">
<h3 class="text-lg font-bold text-dark">What are your delivery and setup policies?</h3>
<i class="fas fa-chevron-down text-primary"></i>
</button>
<div class="mt-4 text-gray-600">
<p>We offer free delivery within 15 miles of Paragould. Our team will arrive about 1 hour before your rental period begins to set everything up safely and properly. We require a flat, clear area of appropriate size (we'll provide dimensions for each inflatable). Setup typically takes 20-45 minutes.</p>
</div>
</div>
<div class="bg-white p-6 rounded-lg shadow-md">
<button class="flex justify-between items-center w-full text-left focus:outline-none">
<h3 class="text-lg font-bold text-dark">What happens if it rains on my event day?</h3>
<i class="fas fa-chevron-down text-primary"></i>
</button>
<div class="mt-4 text-gray-600">
<p>We monitor weather closely. If rain is forecasted, we'll contact you 24 hours before your event to discuss options. You can reschedule at no charge, or if you decide to cancel, we offer a full refund for weather-related cancellations made before delivery.</p>
</div>
</div>
<div class="bg-white p-6 rounded-lg shadow-md">
<button class="flex justify-between items-center w-full text-left focus:outline-none">
<h3 class="text-lg font-bold text-dark">How many children can safely use one bounce house?</h3>
<i class="fas fa-chevron-down text-primary"></i>
</button>
<div class="mt-4 text-gray-600">
<p>Capacity varies by unit but generally:</p>
<ul class="list-disc pl-5 mt-2 space-y-1">
<li>Small bounce houses: 4-6 kids at once</li>
<li>Standard bounce houses: 6-8 kids at once</li>
<li>Large combo units: 8-10 kids at once</li>
<li>Obstacle courses: 2-4 kids per lane</li>
</ul>
<p class="mt-2">We provide exact capacity limits and safety rules for each rental.</p>
</div>
</div>
<div class="bg-white p-6 rounded-lg shadow-md">
<button class="flex justify-between items-center w-full text-left focus:outline-none">
<h3 class="text-lg font-bold text-dark">What payment methods do you accept?</h3>
<i class="fas fa-chevron-down text-primary"></i>
</button>
<div class="mt-4 text-gray-600">
<p>We accept all major credit cards (Visa, MasterCard, American Express, Discover), cash, and local checks. A 50% deposit is required to reserve your date, with the balance due on delivery.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-dark text-white py-12">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-3 gap-12">
<div>
<h3 class="text-2xl font-bold text-accent mb-6 logo-font">
<span>Pro</span>BouncePartyRentals
</h3>
<p class="mb-6">
Making celebrations unforgettable with premium inflatable rentals in Paragould and surrounding areas since 2023.
</p>
<div class="flex space-x-4">
<a href="#" class="text-white hover:text-primary text-xl"><i class="fab fa-facebook"></i></a>
<a href="#" class="text-white hover:text-primary text-xl"><i class="fab fa-instagram"></i></a>
<a href="#" class="text-white hover:text-primary text-xl"><i class="fab fa-pinterest"></i></a>
</div>
</div>
<div>
<h4 class="text-xl font-bold mb-6">Quick Links</h4>
<ul class="space-y-3">
<li><a href="#inventory" class="hover:text-primary transition duration-300">Our Inventory</a></li>
<li><a href="#pricing" class="hover:text-primary transition duration-300">Pricing</a></li>
<li><a href="#safety" class="hover:text-primary transition duration-300">Safety Information</a></li>
<li><a href="#testimonials" class="hover:text-primary transition duration-300">Testimonials</a></li>
<li><a href="#contact" class="hover:text-primary transition duration-300">Contact Us</a></li>
</ul>
</div>
<div>
<h4 class="text-xl font-bold mb-6">Contact Info</h4>
<div class="space-y-4">
<div class="flex items-start">
<i class="fas fa-phone-alt text-primary mt-1 mr-4"></i>
<div>
<p class="font-bold">Call Us:</p>
<a href="tel:8704768777" class="hover:text-primary">(870) 476-8777</a>
</div>
</div>
<div class="flex items-start">
<i class="fas fa-envelope text-primary mt-1 mr-4"></i>
<div>
<p class="font-bold">Email:</p>
<a href="mailto:info@probouncepartyrentals.com" class="hover:text-primary">info@probouncepartyrentals.com</a>
</div>
</div>
<div class="flex items-start">
<i class="fas fa-map-marker-alt text-primary mt-1 mr-4"></i>
<div>
<p class="font-bold">Location:</p>
<p>Paragould, Arkansas</p>
</div>
</div>
</div>
</div>
</div>
<div class="border-t border-gray-700 mt-12 pt-8 text-center">
<p>© 2023 Pro Bounce Party Rentals. All rights reserved.</p>
</div>
</div>
</footer>
<!-- Floating Call Button -->
<div class="fixed bottom-6 right-6 z-50">
<a href="tel:8704768777" class="bg-primary hover:bg-primary/90 text-white rounded-full p-4 shadow-lg flex items-center justify-center pulse-animation">
<i class="fas fa-phone-alt text-xl"></i>
</a>
</div>
<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=PDQKeith/probounce" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |