import { MessageCircle } from "lucide-react";
import { Button } from "@/components/ui/button";

const ContactSection = () => {
  return (
    <section className="py-16 bg-card">
      <div className="container mx-auto px-4 text-center">
        <h2 className="text-2xl md:text-3xl font-bold text-foreground">Need Assistance?</h2>
        <p className="text-muted-foreground mt-2">
          Our team is available 7AM to 4PM to help with your exchange needs.
        </p>
        <Button
          size="lg"
          className="mt-6 gap-2 h-12 px-8"
          onClick={() => window.open("https://wa.me/233594416908", "_blank")}
        >
          <MessageCircle className="w-5 h-5" />
          Chat on WhatsApp
        </Button>
      </div>
    </section>
  );
};

export default ContactSection;
