import { Button } from "@/components/ui/button"
import { Card, CardContent } from "@/components/ui/card"
import Link from "next/link"
import { ArrowRight, Globe, Users, Award, Target } 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: "About Agmont Advisory | Financial & Legal Services in Nashik",
  description:
    "Agmont Advisory is a premium advisory firm in Nashik providing financial and legal services. Partnered with Agmont Advisory Limited (England), serving across Europe, Asia, and North America.",
}

export default function AboutPage() {
  return (
    <div className="flex flex-col">
      {/* Hero Section */}
      <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">{"About Agmont Advisory"}</h1>
            <p className="text-xl text-slate-300 leading-relaxed">
              {"Building long-term relationships based on trust, transparency, and measurable results"}
            </p>
          </div>
        </div>
      </section>

      {/* Main Content */}
      <section className="py-24 bg-background">
        <div className="container mx-auto px-4 md:px-6">
          <div className="max-w-4xl mx-auto space-y-8 text-lg leading-relaxed text-slate-700">
            <p>
              {
                "Agmont Advisory is a premium advisory firm providing services in the area of financial and legal arena. Based in Nasik, Agmont Advisory provides services related to Business setup, Licensing, Accounting, GST, Income Tax, Audit & Assurance, RERA (Registration Compliance & Advisory), Secretarial Compliance, Business valuation, Insolvency & Bankruptcy matters, Debt Syndication, Project Financing, Off Shore Company Registration, Business Restructuring, M & A to name a few."
              }
            </p>
            <p>
              {
                "We put in a lot of effort to understand your needs and help you start and grow your business. Our in-house professional staff gives you an edge and helps you realise your entrepreneurial aspirations. All business-related services are available under one roof."
              }
            </p>
            <p>
              {
                "Agmont Advisory (India) is partnered with Agmont Advisory Limited (England). We have a presence across three continents: Europe, Asia, and North America."
              }
            </p>
          </div>
        </div>
      </section>

      {/* Key Features */}
      <section className="py-24 bg-slate-50">
        <div className="container mx-auto px-4 md:px-6">
          <div className="grid md:grid-cols-2 lg:grid-cols-4 gap-8 max-w-7xl mx-auto">
            {[
              {
                icon: Globe,
                title: "Global Reach",
                description: "Presence across 3 continents with international partnerships",
              },
              {
                icon: Users,
                title: "Expert Team",
                description: "Certified professionals including CA, CMA, CS, and CISA",
              },
              { icon: Award, title: "Proven Excellence", description: "Growing daily thanks to client confidence" },
              { icon: Target, title: "Client-Focused", description: "Customized solutions for unique business needs" },
            ].map((item, i) => {
              const Icon = item.icon
              return (
                <Card key={i} className="border-2">
                  <CardContent className="p-6 space-y-4">
                    <div className="w-14 h-14 rounded-xl bg-slate-900 flex items-center justify-center">
                      <Icon className="h-7 w-7 text-white" />
                    </div>
                    <h3 className="text-xl font-bold text-slate-900">{item.title}</h3>
                    <p className="text-muted-foreground leading-relaxed">{item.description}</p>
                  </CardContent>
                </Card>
              )
            })}
          </div>
        </div>
      </section>

      {/* CTA Section */}
      <section className="py-24 bg-slate-900 text-white">
        <div className="container mx-auto px-4 md:px-6">
          <div className="max-w-4xl mx-auto text-center space-y-8">
            <h2 className="text-4xl md:text-5xl font-bold text-balance">{"Ready to Partner With Us?"}</h2>
            <p className="text-xl text-slate-300 leading-relaxed">
              {
                "Let our team of experts help you navigate the complexities of business growth and regulatory compliance."
              }
            </p>
            <div className="flex flex-col sm:flex-row gap-4 justify-center pt-4">
              <Button asChild size="lg" className="bg-white text-slate-900 hover:bg-slate-100 text-lg px-8 h-14">
                <a href={whatsappUrl} target="_blank" rel="noopener noreferrer">
                  {"Get Started"} <ArrowRight className="ml-2 h-5 w-5" />
                </a>
              </Button>
              <Button
                asChild
                size="lg"
                variant="outline"
                className="border-white text-white hover:bg-white/10 text-lg px-8 h-14 bg-transparent"
              >
                <Link href="/services">{"Explore Services"}</Link>
              </Button>
            </div>
          </div>
        </div>
      </section>
    </div>
  )
}
