import { Button } from "@/components/ui/button"
import { Card, CardContent } from "@/components/ui/card"
import Link from "next/link"
import { ArrowRight, CheckCircle2, FileText } from "lucide-react"

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

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

export const metadata = {
  title: "GST Services - Agmont Advisory",
  description: "Expert GST registration, return filing, consultation services, and GST refund claims.",
}

export default function GSTPage() {
  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 space-y-6">
            <div className="inline-flex items-center gap-2 px-4 py-2 bg-white/10 backdrop-blur-sm rounded-full text-sm border border-white/20">
              <FileText className="h-4 w-4" />
              <Link href="/services" className="hover:underline">
                {"Services"}
              </Link>
              <span>{"/"}</span>
              <span>{"GST Services"}</span>
            </div>
            <h1 className="text-5xl md:text-6xl font-bold text-balance">{"Goods & Service Tax (GST)"}</h1>
            <p className="text-xl text-slate-300 leading-relaxed">
              {
                "Complete GST solutions including registration, return filing, consultation, and refund claims with expert guidance."
              }
            </p>
          </div>
        </div>
      </section>

      <section className="py-24 bg-background">
        <div className="container mx-auto px-4 md:px-6">
          <div className="max-w-7xl mx-auto grid lg:grid-cols-2 gap-12">
            <div className="space-y-8">
              <div>
                <h2 className="text-3xl md:text-4xl font-bold text-slate-900 mb-6">{"Our GST Services"}</h2>
                <p className="text-lg text-slate-700 leading-relaxed mb-6">
                  {"GST Registration, GST return filing, consultation services, and GST refund claims."}
                </p>
                <p className="text-lg text-slate-700 leading-relaxed">
                  {
                    "Our team of GST experts ensures complete compliance and helps you navigate the complexities of GST regulations with ease."
                  }
                </p>
              </div>

              <div>
                <h3 className="text-2xl font-bold text-slate-900 mb-4">{"Services Included"}</h3>
                <div className="space-y-3">
                  {[
                    "GST Registration for new businesses",
                    "Monthly & Quarterly GST Return Filing",
                    "GSTR-1, GSTR-3B, GSTR-9 Filing",
                    "GST Refund Claims",
                    "GST Advisory & Consultation",
                    "Input Tax Credit Management",
                    "GST Audit Support",
                    "Notice Response & Compliance",
                  ].map((service, i) => (
                    <div key={i} className="flex items-start gap-3">
                      <CheckCircle2 className="h-6 w-6 text-slate-900 flex-shrink-0 mt-0.5" />
                      <span className="text-slate-700">{service}</span>
                    </div>
                  ))}
                </div>
              </div>
            </div>

            <Card className="border-2 h-fit">
              <CardContent className="p-8 space-y-6">
                <h3 className="text-2xl font-bold text-slate-900">{"Why Choose Our GST Services?"}</h3>
                <ul className="space-y-4">
                  {[
                    "Expert GST professionals",
                    "Timely return filing",
                    "Maximize input tax credit",
                    "Compliance assurance",
                    "Hassle-free documentation",
                    "Quick refund processing",
                    "Notice handling support",
                  ].map((benefit, i) => (
                    <li key={i} className="flex items-start gap-3">
                      <CheckCircle2 className="h-5 w-5 text-slate-900 flex-shrink-0 mt-0.5" />
                      <span className="text-slate-700">{benefit}</span>
                    </li>
                  ))}
                </ul>
                <Button asChild size="lg" className="w-full bg-slate-900 hover:bg-slate-800 text-lg h-14">
                  <a href={whatsappUrl} target="_blank" rel="noopener noreferrer">
                    {"Get Started"} <ArrowRight className="ml-2 h-5 w-5" />
                  </a>
                </Button>
              </CardContent>
            </Card>
          </div>
        </div>
      </section>
    </div>
  )
}
