import { Button } from "@/components/ui/button"
import { Card, CardContent } from "@/components/ui/card"
import { MessageCircle, Phone, Mail, ArrowRight } from "lucide-react"

const whatsappUrl =
  "https://wa.me/918796625333?text=Hello%2C%20I%20am%20interested%20in%20Agmont%20Advisory%27s%20services.%20Please%20guide%20me."

const calendarUrl = "https://advisory-in.youcanbook.me/"

export const metadata = {
  title: "Make an Inquiry - Agmont Advisory | Contact Us",
  description: "Get in touch with Agmont Advisory experts. We're here to answer your questions and guide you towards business success.",
}

export default function InquiryPage() {
  return (
    <div className="flex flex-col">
      <section className="py-24 bg-gradient-to-br from-slate-900 to-slate-800 text-white">
        <div className="container mx-auto px-4 md:px-6">
          <div className="max-w-4xl mx-auto text-center space-y-6">
            <h1 className="text-5xl md:text-6xl font-bold text-balance">{"Make an Inquiry"}</h1>
            <p className="text-xl text-slate-300 leading-relaxed">
              {"Get in touch with our experts. We are here to answer your questions and guide you towards success."}
            </p>
          </div>
        </div>
      </section>

      <section className="py-24 bg-background">
        <div className="container mx-auto px-4 md:px-6">
          <div className="max-w-5xl mx-auto">
            <div className="grid md:grid-cols-3 gap-6 mb-16">
              <Card className="border-2">
                <CardContent className="p-8 text-center space-y-4">
                  <div className="w-14 h-14 rounded-xl bg-slate-900 flex items-center justify-center mx-auto">
                    <MessageCircle className="h-7 w-7 text-white" />
                  </div>
                  <h3 className="text-xl font-bold text-slate-900">{"WhatsApp"}</h3>
                  <p className="text-muted-foreground">{"Instant messaging support"}</p>
                </CardContent>
              </Card>

              <Card className="border-2">
                <CardContent className="p-8 text-center space-y-4">
                  <div className="w-14 h-14 rounded-xl bg-slate-900 flex items-center justify-center mx-auto">
                    <Phone className="h-7 w-7 text-white" />
                  </div>
                  <h3 className="text-xl font-bold text-slate-900">{"Phone"}</h3>
                  <p className="text-muted-foreground">{"+44 7832 385066"}</p>
                </CardContent>
              </Card>

              <Card className="border-2">
                <CardContent className="p-8 text-center space-y-4">
                  <div className="w-14 h-14 rounded-xl bg-slate-900 flex items-center justify-center mx-auto">
                    <Mail className="h-7 w-7 text-white" />
                  </div>
                  <h3 className="text-xl font-bold text-slate-900">{"Email"}</h3>
                  <p className="text-muted-foreground">{"info@agmontadvisory.com"}</p>
                </CardContent>
              </Card>
            </div>

            <Card className="border-2 bg-slate-900 text-white">
              <CardContent className="p-12 text-center space-y-8">
                <h2 className="text-3xl md:text-4xl font-bold">{"Quick Inquiry via WhatsApp"}</h2>
                <p className="text-xl text-slate-300 leading-relaxed max-w-2xl mx-auto">
                  {
                    "Click the button below to send us a message on WhatsApp. Our team will respond promptly and guide you through our services."
                  }
                </p>
                <Button asChild size="lg" className="bg-white text-slate-900 hover:bg-slate-100 text-lg px-8 h-16">
                  <a href={whatsappUrl} target="_blank" rel="noopener noreferrer">
                    {"Send WhatsApp Message"} <ArrowRight className="ml-2 h-5 w-5" />
                  </a>
                </Button>
                <p className="text-sm text-slate-300">{"We typically respond within minutes during business hours"}</p>
              </CardContent>
            </Card>
          </div>
        </div>
      </section>
    </div>
  )
}
