paw-palace / index.html
victor's picture
victor HF Staff
Update index.html
196d405
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Paw Palace - Premium Dog Keeping Services</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@300;400;500;600;700&display=swap');
body {
font-family: 'Poppins', sans-serif;
scroll-behavior: smooth;
}
.hero-gradient {
background: linear-gradient(135deg, #f9b87f 0%, #f4a261 50%, #e76f51 100%);
}
.dog-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);
}
.testimonial-card {
transition: all 0.3s ease;
}
.testimonial-card:hover {
transform: scale(1.03);
}
.animate-bounce-custom {
animation: bounce-custom 2s infinite;
}
@keyframes bounce-custom {
0%, 100% {
transform: translateY(-10px);
}
50% {
transform: translateY(0);
}
}
.floating {
animation: floating 3s ease-in-out infinite;
}
@keyframes floating {
0% { transform: translateY(0px); }
50% { transform: translateY(-15px); }
100% { transform: translateY(0px); }
}
</style>
</head>
<body class="bg-gray-50">
<!-- Top Announcement Bar -->
<div class="bg-indigo-900 text-white text-sm text-center py-2 px-4">
<span class="font-bold">SPECIAL OFFER:</span> Get 20% off your first booking with code <span class="font-bold">PAWLOVE20</span>
</div>
<!-- Navigation -->
<nav class="bg-white shadow-md 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 items-center">
<div class="flex items-center">
<div class="flex-shrink-0 flex items-center">
<i class="fas fa-paw text-3xl text-orange-500 mr-2"></i>
<span class="text-xl font-bold text-gray-900">Paw Palace</span>
</div>
</div>
<div class="hidden md:block">
<div class="ml-10 flex items-center space-x-8">
<a href="#home" class="text-gray-900 hover:text-orange-500 px-3 py-2 text-sm font-medium transition-colors duration-300">Home</a>
<a href="#services" class="text-gray-900 hover:text-orange-500 px-3 py-2 text-sm font-medium transition-colors duration-300">Services</a>
<a href="#about" class="text-gray-900 hover:text-orange-500 px-3 py-2 text-sm font-medium transition-colors duration-300">About Us</a>
<a href="#testimonials" class="text-gray-900 hover:text-orange-500 px-3 py-2 text-sm font-medium transition-colors duration-300">Testimonials</a>
<a href="#contact" class="text-gray-900 hover:text-orange-500 px-3 py-2 text-sm font-medium transition-colors duration-300">Contact</a>
</div>
</div>
<div class="hidden md:block">
<a href="#contact" class="ml-8 whitespace-nowrap inline-flex items-center justify-center px-4 py-2 border border-transparent rounded-md shadow-sm text-sm font-medium text-white bg-orange-500 hover:bg-orange-600 transition-colors duration-300">
Book Now
</a>
</div>
<div class="md:hidden flex items-center">
<button id="menu-toggle" class="text-gray-500 hover:text-gray-900 focus:outline-none">
<svg class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" />
</svg>
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<div id="mobile-menu" class="hidden md:hidden bg-white border-t border-gray-200">
<div class="px-2 pt-2 pb-3 space-y-1 sm:px-3">
<a href="#home" class="block px-3 py-2 text-base font-medium text-gray-900 hover:text-orange-500">Home</a>
<a href="#services" class="block px-3 py-2 text-base font-medium text-gray-900 hover:text-orange-500">Services</a>
<a href="#about" class="block px-3 py-2 text-base font-medium text-gray-900 hover:text-orange-500">About Us</a>
<a href="#testimonials" class="block px-3 py-2 text-base font-medium text-gray-900 hover:text-orange-500">Testimonials</a>
<a href="#contact" class="block px-3 py-2 text-base font-medium text-gray-900 hover:text-orange-500">Contact</a>
<a href="#contact" class="block px-3 py-2 text-base font-medium text-orange-500 bg-orange-50 rounded-md">Book Now</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="home" 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="md:flex items-center justify-between">
<div class="md:w-1/2 mb-12 md:mb-0">
<h1 class="text-4xl md:text-5xl lg:text-6xl font-bold leading-tight mb-6">Your Dog's <span class="text-yellow-200">Happy Place</span></h1>
<p class="text-lg md:text-xl mb-8 max-w-lg">Premium dog keeping services where your furry friend gets the royal treatment they deserve.</p>
<div class="flex space-x-4">
<a href="#contact" class="bg-white text-orange-600 hover:bg-gray-100 px-8 py-3 rounded-full font-semibold transition-colors duration-300 shadow-lg">Book Now</a>
<a href="#services" class="border-2 border-white hover:bg-white hover:text-orange-600 px-8 py-3 rounded-full font-semibold transition-colors duration-300">Our Services</a>
</div>
<div class="mt-12 flex items-center space-x-6">
<div class="flex -space-x-2">
<img class="inline-block h-10 w-10 rounded-full ring-2 ring-white" src="https://randomuser.me/api/portraits/women/41.jpg" alt="">
<img class="inline-block h-10 w-10 rounded-full ring-2 ring-white" src="https://randomuser.me/api/portraits/men/32.jpg" alt="">
<img class="inline-block h-10 w-10 rounded-full ring-2 ring-white" src="https://randomuser.me/api/portraits/women/62.jpg" alt="">
</div>
<div>
<p class="text-sm">Trusted by <span class="font-bold">500+</span> dog owners</p>
<div class="flex items-center">
<i class="fas fa-star text-yellow-300 mr-1"></i>
<span class="text-sm">5.0 (200+ reviews)</span>
</div>
</div>
</div>
</div>
<div class="md:w-1/2 relative">
<div class="floating">
<img src="https://abidlabs-easyghibli.hf.space/gradio_api/file=/tmp/gradio/bd50e75b71cab74b473604b49fae6821939edec55ab4298fad452c0065b42280/image.webp" alt="Happy golden retriever" class="rounded-2xl shadow-2xl transform rotate-1 border-4 border-white">
</div>
<div class="absolute -bottom-6 -left-6 bg-white p-4 rounded-lg shadow-lg hidden md:block">
<div class="flex items-center">
<div class="p-3 bg-orange-100 rounded-full mr-3">
<i class="fas fa-heart text-orange-500"></i>
</div>
<div>
<p class="text-sm font-bold">Loving Care</p>
<p class="text-xs text-gray-600">Daily updates</p>
</div>
</div>
</div>
<div class="absolute -top-6 -right-6 bg-white p-4 rounded-lg shadow-lg hidden md:block">
<div class="flex items-center">
<div class="p-3 bg-indigo-100 rounded-full mr-3">
<i class="fas fa-home text-indigo-500"></i>
</div>
<div>
<p class="text-sm font-bold">Cozy Homes</p>
<p class="text-xs text-gray-600">For small & big dogs</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Brands Section -->
<div class="bg-gray-100 py-8">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<p class="text-center text-gray-500 text-sm mb-6">AS FEATURED IN</p>
<div class="flex flex-wrap justify-center items-center gap-8 md:gap-16">
<div class="w-24 opacity-50 hover:opacity-100 transition-opacity duration-300">
<img src="https://abidlabs-easyghibli.hf.space/gradio_api/file=/tmp/gradio/d241407cefc67b6cdd10e4ccc4ce0e1f8d5eb7ae31388d6ce3c8704a2191f7ae/image.webp" alt="Dog Lovers Magazine">
</div>
<div class="w-24 opacity-50 hover:opacity-100 transition-opacity duration-300">
<img src="https://abidlabs-easyghibli.hf.space/gradio_api/file=/tmp/gradio/b727f2378cafc67cc791b7206824123a3bef9a12dfb19461248350ddade65149/image.webp" alt="Pet World">
</div>
<div class="w-24 opacity-50 hover:opacity-100 transition-opacity duration-300">
<img src="https://abidlabs-easyghibli.hf.space/gradio_api/file=/tmp/gradio/a81c8f57e8ac11f7d49661b299c50864a92703c0569114f5c74b6090e4807d49/image.webp" alt="Animal Care">
</div>
<div class="w-24 opacity-50 hover:opacity-100 transition-opacity duration-300">
<img src="https://abidlabs-easyghibli.hf.space/gradio_api/file=/tmp/gradio/213d5692b63478f200a62fc3d3a0f368e357a1bd21956266dba08f88a1408528/image.webp" alt="City Pets">
</div>
</div>
</div>
</div>
<!-- Services Section -->
<section id="services" 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">
<span class="text-orange-500 font-semibold text-sm uppercase tracking-wider">Our Services</span>
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mt-2 mb-4">Tailored Care for Your Best Friend</h2>
<p class="text-gray-600 max-w-2xl mx-auto">We provide specialized care to meet your dog's unique needs and personality.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Service Card 1 -->
<div class="dog-card bg-white rounded-xl shadow-lg overflow-hidden transition-all duration-300">
<div class="relative h-48 overflow-hidden">
<img class="w-full h-full object-cover" src="https://abidlabs-easyghibli.hf.space/gradio_api/file=/tmp/gradio/41938097118075bf008307cf5b426d6fd8a19ec10c604a262a74dfe7cf487043/image.webp" alt="Dog boarding">
<div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent"></div>
<div class="absolute bottom-4 left-4">
<h3 class="text-white text-xl font-bold">Dog Boarding</h3>
</div>
</div>
<div class="p-6">
<p class="text-gray-600 mb-4">A home away from home for your dog with 24/7 supervision, playtime, and cozy sleeping quarters.</p>
<ul class="space-y-2 mb-6">
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Daily photo updates</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Twice daily walks</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Custom feeding schedule</span>
</li>
</ul>
<div class="flex justify-between items-center">
<p class="text-orange-500 font-bold">From $30/night</p>
<a href="#contact" class="text-orange-500 hover:text-orange-600 font-medium">Learn more →</a>
</div>
</div>
</div>
<!-- Service Card 2 -->
<div class="dog-card bg-white rounded-xl shadow-lg overflow-hidden transition-all duration-300">
<div class="relative h-48 overflow-hidden">
<img class="w-full h-full object-cover" src="https://abidlabs-easyghibli.hf.space/gradio_api/file=/tmp/gradio/8bbf1625475cde92b9ccdd67c8d12d5e2ac259f54d70c3ed556f749fd7ec129e/image.webp" alt="Dog daycare">
<div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent"></div>
<div class="absolute bottom-4 left-4">
<h3 class="text-white text-xl font-bold">Doggy Daycare</h3>
</div>
</div>
<div class="p-6">
<p class="text-gray-600 mb-4">Perfect for working professionals - your dog gets socialization, exercise, and fun while you're busy.</p>
<ul class="space-y-2 mb-6">
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Supervised group play</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Nap times included</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Individual attention</span>
</li>
</ul>
<div class="flex justify-between items-center">
<p class="text-orange-500 font-bold">From $25/day</p>
<a href="#contact" class="text-orange-500 hover:text-orange-600 font-medium">Learn more →</a>
</div>
</div>
</div>
<!-- Service Card 3 -->
<div class="dog-card bg-white rounded-xl shadow-lg overflow-hidden transition-all duration-300">
<div class="relative h-48 overflow-hidden">
<img class="w-full h-full object-cover" src="https://abidlabs-easyghibli.hf.space/gradio_api/file=/tmp/gradio/87b7313948a116f3ee9a56e585fd5ba665bdcdd8fc7a66c4e839fb5997889291/image.webp" alt="In-home sitting">
<div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent"></div>
<div class="absolute bottom-4 left-4">
<h3 class="text-white text-xl font-bold">In-Home Sitting</h3>
</div>
</div>
<div class="p-6">
<p class="text-gray-600 mb-4">Your dog stays in the comfort of your own home with a sitter providing company and care.</p>
<ul class="space-y-2 mb-6">
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Custom care in your home</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Mail/newspaper pickup</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Plants watered</span>
</li>
</ul>
<div class="flex justify-between items-center">
<p class="text-orange-500 font-bold">From $40/day</p>
<a href="#contact" class="text-orange-500 hover:text-orange-600 font-medium">Learn more →</a>
</div>
</div>
</div>
</div>
<div class="text-center mt-16">
<a href="#contact" class="inline-flex items-center px-6 py-3 border border-transparent text-base font-medium rounded-full shadow-sm text-white bg-orange-500 hover:bg-orange-600 transition-colors duration-300">
View All Services
<i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-16 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:grid lg:grid-cols-2 lg:gap-16 items-center">
<div class="mb-12 lg:mb-0">
<img src="https://abidlabs-easyghibli.hf.space/gradio_api/file=/tmp/gradio/543088c7db647c679cf9c1516e0084a75f2d95417371712f5f1c8c77d9b4380b/image.webp" alt="Our team with dogs" class="rounded-lg shadow-xl w-full h-auto">
</div>
<div>
<span class="text-orange-500 font-semibold text-sm uppercase tracking-wider">About Us</span>
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mt-2 mb-6">More Than Just a Dog Sitter</h2>
<p class="text-gray-600 mb-6">Founded in 2015 by dog lovers Sarah and Mike, Paw Palace has grown from a small home business to the city's most trusted dog keeping service. What sets us apart is our genuine love for dogs and our commitment to their wellbeing.</p>
<div class="space-y-6">
<div class="flex">
<div class="flex-shrink-0 mr-4">
<div class="flex items-center justify-center h-12 w-12 rounded-full bg-orange-100 text-orange-500">
<i class="fas fa-heart"></i>
</div>
</div>
<div>
<h3 class="text-lg font-medium text-gray-900">Passionate Caregivers</h3>
<p class="mt-1 text-gray-600">Our team undergoes rigorous training and background checks. We only hire staff who share our deep commitment to animal welfare.</p>
</div>
</div>
<div class="flex">
<div class="flex-shrink-0 mr-4">
<div class="flex items-center justify-center h-12 w-12 rounded-full bg-indigo-100 text-indigo-500">
<i class="fas fa-home"></i>
</div>
</div>
<div>
<h3 class="text-lg font-medium text-gray-900">Home-like Environment</h3>
<p class="mt-1 text-gray-600">We've designed our facilities to feel like a home, not a kennel. Comfortable furniture, soothing music, and plenty of natural light create a stress-free environment.</p>
</div>
</div>
<div class="flex">
<div class="flex-shrink-0 mr-4">
<div class="flex items-center justify-center h-12 w-12 rounded-full bg-green-100 text-green-500">
<i class="fas fa-leaf"></i>
</div>
</div>
<div>
<h3 class="text-lg font-medium text-gray-900">Natural Approach</h3>
<p class="mt-1 text-gray-600">We use natural cleaning products, offer organic treat options, and follow positive reinforcement training methods.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Stats Section -->
<div class="bg-orange-500 text-white py-16">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-2 md:grid-cols-4 gap-8 text-center">
<div>
<div class="text-4xl font-bold mb-2">500+</div>
<div class="text-sm uppercase tracking-wider">Happy Clients</div>
</div>
<div>
<div class="text-4xl font-bold mb-2">12K+</div>
<div class="text-sm uppercase tracking-wider">Dogs Cared For</div>
</div>
<div>
<div class="text-4xl font-bold mb-2">24/7</div>
<div class="text-sm uppercase tracking-wider">Availability</div>
</div>
<div>
<div class="text-4xl font-bold mb-2">100%</div>
<div class="text-sm uppercase tracking-wider">Satisfaction</div>
</div>
</div>
</div>
</div>
<!-- Testimonials Section -->
<section id="testimonials" 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">
<span class="text-orange-500 font-semibold text-sm uppercase tracking-wider">Testimonials</span>
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mt-2 mb-4">What Our Clients Say</h2>
<p class="text-gray-600 max-w-2xl mx-auto">Don't just take our word for it - hear from the pet parents who trust us with their furry family members.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="testimonial-card bg-gray-50 p-8 rounded-lg shadow-sm">
<div class="flex items-center mb-6">
<img class="w-12 h-12 rounded-full mr-4" src="https://randomuser.me/api/portraits/women/32.jpg" alt="Emily Johnson">
<div>
<h3 class="font-bold text-gray-900">Emily Johnson</h3>
<div class="flex">
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
</div>
</div>
</div>
<p class="text-gray-600 italic mb-6">"Leaving Max with Paw Palace was the best decision I've made. The daily photo updates showed how happy he was, and he came home tired from all the playtime. Now he gets excited just pulling into their driveway!"</p>
<div class="flex items-center text-sm text-gray-500">
<i class="fas fa-dog mr-2"></i>
<span>Boardings with Bella, 3-year-old Golden Retriever</span>
</div>
</div>
<!-- Testimonial 2 -->
<div class="testimonial-card bg-gray-50 p-8 rounded-lg shadow-sm">
<div class="flex items-center mb-6">
<img class="w-12 h-12 rounded-full mr-4" src="https://randomuser.me/api/portraits/men/45.jpg" alt="David Chen">
<div>
<h3 class="font-bold text-gray-900">David Chen</h3>
<div class="flex">
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
</div>
</div>
</div>
<p class="text-gray-600 italic mb-6">"As a vet, I'm very particular about who cares for my dogs. Paw Palace is exceptional - they follow my feeding instructions exactly and even noticed early signs of an ear infection that I hadn't spotted yet."</p>
<div class="flex items-center text-sm text-gray-500">
<i class="fas fa-dog mr-2"></i>
<span>Daycare for Milo & Lola, two Mini Dachshunds</span>
</div>
</div>
<!-- Testimonial 3 -->
<div class="testimonial-card bg-gray-50 p-8 rounded-lg shadow-sm">
<div class="flex items-center mb-6">
<img class="w-12 h-12 rounded-full mr-4" src="https://randomuser.me/api/portraits/women/65.jpg" alt="Sarah Williams">
<div>
<h3 class="font-bold text-gray-900">Sarah Williams</h3>
<div class="flex">
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
</div>
</div>
</div>
<p class="text-gray-600 italic mb-6">"My senior dog Buddy needs medication and special care. Other places turned us away, but Paw Palace created a customized care plan for him. They send me updates throughout the day which gives me such peace of mind."</p>
<div class="flex items-center text-sm text-gray-500">
<i class="fas fa-dog mr-2"></i>
<span>In-home sitting for Buddy, 12-year-old Lab Mix</span>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<div class="bg-indigo-900 text-white">
<div class="max-w-7xl mx-auto px-4 py-12 sm:px-6 lg:px-8 lg:py-16">
<div class="lg:grid lg:grid-cols-2 lg:gap-8 lg:items-center">
<div class="mb-8 lg:mb-0">
<h2 class="text-3xl font-extrabold mb-4">Ready to give your dog the vacation they deserve?</h2>
<p class="text-lg text-indigo-100 max-w-lg">Book your consultation today and let us create a tailored care plan for your furry friend.</p>
</div>
<div class="flex flex-col sm:flex-row gap-4">
<a href="#contact" class="flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-full text-indigo-700 bg-white hover:bg-gray-100 md:py-4 md:text-lg md:px-10 transition-colors duration-300">
Book Now
</a>
<a href="#services" class="flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-full text-white border-white hover:bg-indigo-800 md:py-4 md:text-lg md:px-10 transition-colors duration-300">
Learn More
</a>
</div>
</div>
</div>
</div>
<!-- FAQ 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">
<span class="text-orange-500 font-semibold text-sm uppercase tracking-wider">FAQs</span>
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mt-2 mb-4">Frequently Asked Questions</h2>
<p class="text-gray-600 max-w-2xl mx-auto">Everything you need to know about our dog keeping services.</p>
</div>
<div class="max-w-3xl mx-auto">
<div class="space-y-4">
<!-- FAQ Item 1 -->
<div class="bg-white p-6 rounded-lg shadow-sm">
<button class="faq-question flex justify-between items-center w-full text-left focus:outline-none">
<h3 class="text-lg font-medium text-gray-900">What's included in your boarding service?</h3>
<i class="fas fa-chevron-down text-orange-500 transition-transform duration-300"></i>
</button>
<div class="faq-answer mt-4 hidden">
<p class="text-gray-600">Our boarding service includes a comfortable sleeping area tailored to your dog's size, twice daily walks (or more if needed), supervised playtime, premium food (or you can bring your own), medications administration if required, and daily photo updates sent directly to you. All dogs have access to indoor and outdoor play areas.</p>
</div>
</div>
<!-- FAQ Item 2 -->
<div class="bg-white p-6 rounded-lg shadow-sm">
<button class="faq-question flex justify-between items-center w-full text-left focus:outline-none">
<h3 class="text-lg font-medium text-gray-900">How do you ensure the safety of all dogs in group play?</h3>
<i class="fas fa-chevron-down text-orange-500 transition-transform duration-300"></i>
</button>
<div class="faq-answer mt-4 hidden">
<p class="text-gray-600">Safety is our top priority. All dogs undergo a temperament evaluation before joining group play. We separate dogs by size, energy level, and play style. Our trained staff supervises all interactions at a maximum 1:5 staff-to-dog ratio. We have strict protocols for introducing new dogs and immediately separate any dogs showing signs of stress or aggression.</p>
</div>
</div>
<!-- FAQ Item 3 -->
<div class="bg-white p-6 rounded-lg shadow-sm">
<button class="faq-question flex justify-between items-center w-full text-left focus:outline-none">
<h3 class="text-lg font-medium text-gray-900">What vaccinations are required?</h3>
<i class="fas fa-chevron-down text-orange-500 transition-transform duration-300"></i>
</button>
<div class="faq-answer mt-4 hidden">
<p class="text-gray-600">We require all dogs to be current on Rabies, DHPP (Distemper, Hepatitis, Parainfluenza, Parvovirus), and Bordetella (Kennel Cough) vaccinations. Dogs must also be flea/tick free and on a preventative. Proof of vaccinations must be provided before your dog's first visit. We accept titers with veterinarian approval.</p>
</div>
</div>
<!-- FAQ Item 4 -->
<div class="bg-white p-6 rounded-lg shadow-sm">
<button class="faq-question flex justify-between items-center w-full text-left focus:outline-none">
<h3 class="text-lg font-medium text-gray-900">Can you accommodate dogs with special needs?</h3>
<i class="fas fa-chevron-down text-orange-500 transition-transform duration-300"></i>
</button>
<div class="faq-answer mt-4 hidden">
<p class="text-gray-600">Absolutely! We have experience caring for senior dogs, dogs with mobility issues, medical conditions requiring medication, and dogs with behavioral challenges. Our staff is trained in administering medications (including injections), managing special diets, and providing physical assistance. Please discuss your dog's specific needs during your consultation so we can create a customized care plan.</p>
</div>
</div>
<!-- FAQ Item 5 -->
<div class="bg-white p-6 rounded-lg shadow-sm">
<button class="faq-question flex justify-between items-center w-full text-left focus:outline-none">
<h3 class="text-lg font-medium text-gray-900">What happens in case of a medical emergency?</h3>
<i class="fas fa-chevron-down text-orange-500 transition-transform duration-300"></i>
</button>
<div class="faq-answer mt-4 hidden">
<p class="text-gray-600">We require emergency contact information and your veterinarian's details at booking. In case of emergency, we will immediately contact you and transport your dog to your preferred vet (or the nearest emergency clinic if your vet is unavailable). Our staff is trained in pet first aid and CPR. All incidents are documented and reported to owners immediately, no matter how minor.</p>
</div>
</div>
</div>
<div class="text-center mt-12">
<p class="text-gray-600 mb-4">Still have questions? We're happy to help!</p>
<a href="#contact" class="inline-flex items-center px-6 py-3 border border-transparent text-base font-medium rounded-full shadow-sm text-white bg-orange-500 hover:bg-orange-600 transition-colors duration-300">
Contact Us
</a>
</div>
</div>
</div>
</section>
<!-- Gallery 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">
<span class="text-orange-500 font-semibold text-sm uppercase tracking-wider">Gallery</span>
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mt-2 mb-4">Our Happy Campers</h2>
<p class="text-gray-600 max-w-2xl mx-auto">See what a day at Paw Palace looks like for our furry guests.</p>
</div>
<div class="grid grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-4">
<div class="rounded-lg overflow-hidden shadow-sm">
<img class="w-full h-48 object-cover transform hover:scale-105 transition-transform duration-500" src="https://abidlabs-easyghibli.hf.space/gradio_api/file=/tmp/gradio/dea372a1915a785278786cebebb47e20720d4f3a17ff5f8bae6d2065fef5c4f9/image.webp" alt="Dog playing">
</div>
<div class="rounded-lg overflow-hidden shadow-sm">
<img class="w-full h-48 object-cover transform hover:scale-105 transition-transform duration-500" src="https://abidlabs-easyghibli.hf.space/gradio_api/file=/tmp/gradio/25c5a62b6ef477f2630254b851a48431faf2463d73a9ce785aae86bcdb550305/image.webp" alt="Dog sleeping">
</div>
<div class="rounded-lg overflow-hidden shadow-sm">
<img class="w-full h-48 object-cover transform hover:scale-105 transition-transform duration-500" src="https://abidlabs-easyghibli.hf.space/gradio_api/file=/tmp/gradio/3e630a9d693aeaf886ca84d95ee43f9a5b80531d845705ccbce5648146f143ba/image.webp" alt="Group of dogs">
</div>
<div class="rounded-lg overflow-hidden shadow-sm">
<img class="w-full h-48 object-cover transform hover:scale-105 transition-transform duration-500" src="https://abidlabs-easyghibli.hf.space/gradio_api/file=/tmp/gradio/67311eaeed976e66ebbdadf4349ad4ebc645743cec6ef79c0ff34fadb89add30/image.webp" alt="Staff with dogs">
</div>
<div class="rounded-lg overflow-hidden shadow-sm">
<img class="w-full h-48 object-cover transform hover:scale-105 transition-transform duration-500" src="https://abidlabs-easyghibli.hf.space/gradio_api/file=/tmp/gradio/29936e9c57ddc7fbf8accd6f3f6002e13ef74993874a00085ab03816226d4fe4/image.webp" alt="Dog eating">
</div>
<div class="rounded-lg overflow-hidden shadow-sm">
<img class="w-full h-48 object-cover transform hover:scale-105 transition-transform duration-500" src="https://abidlabs-easyghibli.hf.space/gradio_api/file=/tmp/gradio/57a5dca7d62454945e81666b08f566879882edb57889dbfeba01e7374bed9f4b/image.webp" alt="Dog being groomed">
</div>
<div class="rounded-lg overflow-hidden shadow-sm">
<img class="w-full h-48 object-cover transform hover:scale-105 transition-transform duration-500" src="https://abidlabs-easyghibli.hf.space/gradio_api/file=/tmp/gradio/054323d9e3bcc6a149874c4cbfa60bb432120d5c3b2393f87bff9fc0bc13dcd7/image.webp" alt="Dog pool">
</div>
<div class="rounded-lg overflow-hidden shadow-sm">
<img class="w-full h-48 object-cover transform hover:scale-105 transition-transform duration-500" src="https://abidlabs-easyghibli.hf.space/gradio_api/file=/tmp/gradio/18b1bf637f702be32e975e7bfdca87db03d3bbf81d169b24d324cb15be8bfbb0/image.webp" alt="Dog walking">
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-16 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:grid lg:grid-cols-2 lg:gap-16 items-center">
<div class="mb-12 lg:mb-0">
<span class="text-orange-500 font-semibold text-sm uppercase tracking-wider">Contact Us</span>
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mt-2 mb-6">Let's Talk About Your Dog</h2>
<p class="text-gray-600 mb-8">Ready to book or have questions? Fill out the form and we'll get back to you within 24 hours.</p>
<div class="space-y-6">
<div class="flex">
<div class="flex-shrink-0 mr-4">
<div class="flex items-center justify-center h-12 w-12 rounded-full bg-orange-100 text-orange-500">
<i class="fas fa-phone-alt"></i>
</div>
</div>
<div>
<h3 class="text-lg font-medium text-gray-900">Call Us</h3>
<p class="mt-1 text-gray-600">(555) 123-4567<br>Available 7am-7pm daily</p>
</div>
</div>
<div class="flex">
<div class="flex-shrink-0 mr-4">
<div class="flex items-center justify-center h-12 w-12 rounded-full bg-indigo-100 text-indigo-500">
<i class="fas fa-envelope"></i>
</div>
</div>
<div>
<h3 class="text-lg font-medium text-gray-900">Email Us</h3>
<p class="mt-1 text-gray-600">hello@pawpalace.com<br>Typically respond within 4 hours</p>
</div>
</div>
<div class="flex">
<div class="flex-shrink-0 mr-4">
<div class="flex items-center justify-center h-12 w-12 rounded-full bg-green-100 text-green-500">
<i class="fas fa-map-marker-alt"></i>
</div>
</div>
<div>
<h3 class="text-lg font-medium text-gray-900">Visit Us</h3>
<p class="mt-1 text-gray-600">1234 Dogwood Lane<br>Canine City, CC 90210<br>Tours by appointment only</p>
</div>
</div>
</div>
</div>
<div class="bg-white p-8 rounded-lg shadow-lg">
<form id="contact-form" class="space-y-6">
<div>
<label for="name" class="block text-sm font-medium text-gray-700">Name</label>
<input type="text" id="name" name="name" required class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-orange-500 focus:border-orange-500">
</div>
<div>
<label for="email" class="block text-sm font-medium text-gray-700">Email</label>
<input type="email" id="email" name="email" required class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-orange-500 focus:border-orange-500">
</div>
<div>
<label for="phone" class="block text-sm font-medium text-gray-700">Phone</label>
<input type="tel" id="phone" name="phone" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-orange-500 focus:border-orange-500">
</div>
<div>
<label for="service" class="block text-sm font-medium text-gray-700">Service Interested In</label>
<select id="service" name="service" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-orange-500 focus:border-orange-500">
<option>Select a service</option>
<option>Dog Boarding</option>
<option>Doggy Daycare</option>
<option>In-Home Sitting</option>
<option>Multiple Services</option>
<option>Not Sure Yet</option>
</select>
</div>
<div>
<label for="message" class="block text-sm font-medium text-gray-700">Message</label>
<textarea id="message" name="message" rows="4" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-orange-500 focus:border-orange-500"></textarea>
</div>
<div>
<button type="submit" class="w-full flex justify-center py-3 px-4 border border-transparent rounded-full shadow-sm text-sm font-medium text-white bg-orange-500 hover:bg-orange-600 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-orange-500 transition-colors duration-300">
Send Message
</button>
</div>
</form>
</div>
</div>
</div>
</section>
<!-- Newsletter Section -->
<div class="bg-gray-100 border-t border-gray-200 py-12">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:grid lg:grid-cols-3 lg:gap-8">
<div class="lg:col-span-2">
<h3 class="text-xl font-bold text-gray-900 mb-4">Join Our Paw Pack</h3>
<p class="text-gray-600 max-w-2xl">Sign up for our newsletter to receive dog care tips, exclusive offers, and updates from our furry guests.</p>
</div>
<div class="mt-8 lg:mt-0">
<form class="sm:flex">
<label for="email-address" class="sr-only">Email address</label>
<input id="email-address" name="email-address" type="email" autocomplete="email" required class="w-full px-5 py-3 border border-gray-300 shadow-sm placeholder-gray-400 rounded-full focus:ring-orange-500 focus:border-orange-500 sm:max-w-xs" placeholder="Enter your email">
<div class="mt-3 rounded-full shadow-sm sm:mt-0 sm:ml-3">
<button type="submit" class="w-full flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-full text-white bg-orange-500 hover:bg-orange-600 md:py-3 md:text-sm md:px-10 transition-colors duration-300">
Subscribe
</button>
</div>
</form>
<p class="mt-3 text-sm text-gray-500">We care about your data. Read our <a href="#" class="text-orange-500 hover:text-orange-600">Privacy Policy</a>.</p>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="bg-gray-900 text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12">
<div class="grid grid-cols-2 md:grid-cols-4 gap-8">
<div class="col-span-2">
<div class="flex items-center mb-4">
<i class="fas fa-paw text-3xl text-orange-500 mr-2"></i>
<span class="text-xl font-bold">Paw Palace</span>
</div>
<p class="text-gray-400 text-sm mb-6">Providing premium dog keeping services since 2015. Your dog's happiness is our top priority.</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-orange-500">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="text-gray-400 hover:text-orange-500">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="text-gray-400 hover:text-orange-500">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="text-gray-400 hover:text-orange-500">
<i class="fab fa-yelp"></i>
</a>
</div>
</div>
<div>
<h3 class="text-sm font-semibold text-gray-300 tracking-wider uppercase mb-4">Quick Links</h3>
<ul class="space-y-3">
<li><a href="#home" class="text-gray-400 hover:text-orange-500 text-sm">Home</a></li>
<li><a href="#services" class="text-gray-400 hover:text-orange-500 text-sm">Services</a></li>
<li><a href="#about" class="text-gray-400 hover:text-orange-500 text-sm">About Us</a></li>
<li><a href="#testimonials" class="text-gray-400 hover:text-orange-500 text-sm">Testimonials</a></li>
<li><a href="#contact" class="text-gray-400 hover:text-orange-500 text-sm">Contact</a></li>
</ul>
</div>
<div>
<h3 class="text-sm font
<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=victor/paw-palace" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>