import { motion } from 'motion/react'; import { Calendar, Star, Award, HeadphonesIcon } from 'lucide-react'; export function WhyChooseUsSection() { const features = [ { icon: Calendar, title: "Ultimate flexibility", description: "You're in control, with free cancellation and payment options to satisfy any plan or budget.", gradient: "from-blue-500 to-cyan-500" }, { icon: Star, title: "Memorable experiences", description: "Browse and book tours and activities so incredible, you'll want to tell your friends.", gradient: "from-purple-500 to-pink-500" }, { icon: Award, title: "Quality at our core", description: "High-quality standards. Millions of reviews. A tours company that's all about trust.", gradient: "from-amber-500 to-orange-500" }, { icon: HeadphonesIcon, title: "Award-winning support", description: "New price? New plan? No problem. We're here to help, 24/7.", gradient: "from-green-500 to-emerald-500" } ]; return (
{/* Heading */}

Why Choose{' '} Us?

{/* Features Grid */}
{features.map((feature, index) => { const IconComponent = feature.icon; return ( {/* Icon Container */} {/* Background Shape */}
{/* Icon */}
{/* Glow Effect */}
{/* Content */}

{feature.title}

{feature.description}

{/* Hover Effect Indicator */}
); })}
{/* Bottom CTA */}

Join millions of travelers who trust CityCards for their urban adventures. Start exploring with confidence today.

Discover CityCards
{/* Background Decorations */}
); }