import { useState, useEffect } from "react"; import { motion, AnimatePresence } from "motion/react"; import { ChevronLeft, ChevronRight, Sparkles, Percent, Gift, ShieldCheck, Flame, TrendingUp, Calendar, AlertCircle } from "lucide-react"; import { BUSINESS_INFO } from "../data"; interface PromoOffer { id: string; title: string; subtitle: string; tagline: string; description: string; badge: { text: string; type: "discount" | "bundle" | "limited" | "exclusive"; }; highlightFeatures: string[]; duration: string; actionText: string; gradient: string; icon: any; } export default function Promotions({ darkMode }: { darkMode: boolean }) { const [currentIndex, setCurrentIndex] = useState(0); const [isAutoPlaying, setIsAutoPlaying] = useState(true); const PROMO_DATA: PromoOffer[] = [ { id: "monsoon-alignment-bundle", title: "Lahore Monsoon Safety Package", subtitle: "FREE Computerized 3D Alignment & Wheel Balancing", tagline: "Total peace-of-mind during rainy seasons on wet Lahore roads", description: "Buy any premium set of 4 Tyres (Yokohama, Michelin, or Continental) and unlock complete computerized German 3D alignment, nitrogen air filling, and four heavy-duty brass safety valves absolutely free of charge.", badge: { text: "Special Bundle", type: "bundle" }, highlightFeatures: [ "Free 3D Alignment (PKR 3,500 value)", "Premium German Tubeless Valves", "Computerized Wheel Balancing Included", "Lifetime Nitrogen topping-up sessions" ], duration: "Valid until July 31, 2026", actionText: "Claim Bundle on WhatsApp", gradient: "from-blue-600 via-indigo-900 to-[#0e1017]", icon: Gift, }, { id: "yokohama-summer-blast", title: "Summer Heat-Resistant Tyre Fest", subtitle: "Save up to 15% on Eco-Friendly Japanese Yokohama Imports", tagline: "Advanced rubber compounds designed for Pakistan's extreme summer asphalt", description: "Yokohama BluEarth and Advan series tyres have advanced silica compound protection to withhold high highway friction and temperature spikes during summer without risking tire decompression.", badge: { text: "Flat Discount", type: "discount" }, highlightFeatures: [ "15% Flat Rebate on selected sizes", "Genuine 2026 Import DOT markings", "Wet traction Class-A safety ratings", "Reduced fuel consumption thread patterns" ], duration: "Limited stock quota", actionText: "Check Size Compatibility", gradient: "from-brand-orange via-amber-850 to-[#120703]", icon: Percent, }, { id: "executive-continental-bundle", title: "Continental Premium Executive Deal", subtitle: "Get PKR 8,000 Instant Voucher on Set of 4 Continental Tyres", tagline: "Engineered in Germany, trusted on Pakistani Motorways", description: "Elevate your sedan's comfort level. Continental offers exceptional noise reduction and high-speed stability. Install at our Faisal Town showroom to claim your premium service cashback voucher.", badge: { text: "Exclusive Reward", type: "exclusive" }, highlightFeatures: [ "PKR 8,000 Instant Cash Voucher", "Free Professional fitting & balancing", "5-Year official structural backup warranty", "Complimentary Suspension checkups" ], duration: "Hurry! Active this week only", actionText: "Secure Cash Voucher", gradient: "from-emerald-600 via-teal-950 to-[#0c1613]", icon: Sparkles, }, { id: "general-tyre-pakistan", title: "General Tyre Durability Drive", subtitle: "Flat 8% Off on All Local General Tyre Products", tagline: "The absolute rugged champion for everyday Lahore traffic and pothole terrains", description: "Specially formulated for Pakistani road conditions. Extreme puncture-resistance and thick reinforcement sidewalls guarantee reliable performance for cabs, sedans, and commercial wagons.", badge: { text: "High Durability", type: "limited" }, highlightFeatures: [ "Economical Lahore pricing", "Reinforced steel belt core protection", "Excellent water-channeling grooves", "Unbeatable lifetime warranty terms" ], duration: "Offer valid on cash payments", actionText: "Inquire stock levels", gradient: "from-red-600 via-rose-900 to-[#1e0a0f]", icon: ShieldCheck, } ]; // Auto-play timer useEffect(() => { if (!isAutoPlaying) return; const interval = setInterval(() => { setCurrentIndex((prev) => (prev + 1) % PROMO_DATA.length); }, 6000); return () => clearInterval(interval); }, [isAutoPlaying, PROMO_DATA.length]); const handlePrev = () => { setIsAutoPlaying(false); setCurrentIndex((prev) => (prev - 1 + PROMO_DATA.length) % PROMO_DATA.length); }; const handleNext = () => { setIsAutoPlaying(false); setCurrentIndex((prev) => (prev + 1) % PROMO_DATA.length); }; const getBadgeStyles = (type: string) => { switch (type) { case "discount": return "bg-amber-500/15 text-amber-400 border border-amber-500/30"; case "bundle": return "bg-blue-500/15 text-blue-400 border border-blue-500/30"; case "exclusive": return "bg-purple-500/15 text-purple-400 border border-purple-500/30"; default: return "bg-red-500/15 text-red-400 border border-red-500/30"; } }; const currentPromo = PROMO_DATA[currentIndex]; const IconComponent = currentPromo.icon; return (
setIsAutoPlaying(false)} onMouseLeave={() => setIsAutoPlaying(true)} >
Seasonal Promotions & Offers

Special Bundle Packages & Discounts

Exclusively designed packages for Lahore drivers. Enjoy free alignment services, road hazard upgrades, and seasonal cash savings.

{/* Main Carousel Frame */}
); }