import { Button } from "@/components/ui/button"
import { Card, CardContent } from "@/components/ui/card"
import Link from "next/link"
import {
  ArrowRight,
  Rocket,
  Building,
  GraduationCap,
  Factory,
  Heart,
  Home,
  Warehouse,
  Globe,
  ShoppingCart,
  Store,
} 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: "Industries We Serve - Agmont Advisory | 10+ Sectors",
  description: "Agmont Advisory serves startups, manufacturing, healthcare, real estate, and more with specialized expertise and tailored solutions.",
}

export default function IndustriesPage() {
  const industries = [
    { name: "Startups", icon: Rocket, description: "Complete support from incorporation to growth for startups" },
    { name: "Hospitality", icon: Building, description: "Specialized services for hotels, restaurants, and tourism" },
    {
      name: "Educational Institutions",
      icon: GraduationCap,
      description: "Compliance and advisory for schools, colleges, and training centers",
    },
    {
      name: "Manufacturing Entities",
      icon: Factory,
      description: "Financial and regulatory support for manufacturing businesses",
    },
    {
      name: "Healthcare & Pharmaceutical",
      icon: Heart,
      description: "Comprehensive services for healthcare and pharma companies",
    },
    {
      name: "Construction & Real Estate",
      icon: Home,
      description: "RERA compliance and advisory for real estate businesses",
    },
    {
      name: "Warehousing & Logistics",
      icon: Warehouse,
      description: "Operational and compliance support for logistics",
    },
    {
      name: "Exporters, Importers, SEZ & EOU",
      icon: Globe,
      description: "Export-import compliance and operational assistance",
    },
    {
      name: "SaaS & Ecommerce Sellers",
      icon: ShoppingCart,
      description: "Digital business advisory and tax optimization",
    },
    {
      name: "Wholesalers, Retail & Distributors",
      icon: Store,
      description: "Complete business solutions for retail and distribution",
    },
  ]

  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">{"Industries We Serve"}</h1>
            <p className="text-xl text-slate-300 leading-relaxed">
              {
                "Specialized expertise across 10+ industries. We understand your sector-specific challenges and provide tailored solutions."
              }
            </p>
          </div>
        </div>
      </section>

      {/* Industries Grid */}
      <section className="py-24 bg-background">
        <div className="container mx-auto px-4 md:px-6">
          <div className="grid md:grid-cols-2 lg:grid-cols-3 gap-8 max-w-7xl mx-auto">
            {industries.map((industry, i) => {
              const Icon = industry.icon
              return (
                <Card key={i} className="border-2 transition-all hover:shadow-lg hover:-translate-y-1">
                  <CardContent className="p-8 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-2xl font-bold text-slate-900">{industry.name}</h3>
                    <p className="text-muted-foreground leading-relaxed">{industry.description}</p>
                  </CardContent>
                </Card>
              )
            })}
          </div>
        </div>
      </section>

      {/* CTA Section */}
      <section className="py-24 bg-slate-50">
        <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-slate-900 text-balance">
              {"Your Industry, Our Expertise"}
            </h2>
            <p className="text-xl text-muted-foreground leading-relaxed">
              {"No matter what industry you operate in, we have the knowledge and experience to help you succeed."}
            </p>
            <div className="flex flex-col sm:flex-row gap-4 justify-center">
              <Button asChild size="lg" className="bg-slate-900 hover:bg-slate-800 text-lg px-8 h-14">
                <a href={whatsappUrl} target="_blank" rel="noopener noreferrer">
                  {"Consult Now"} <ArrowRight className="ml-2 h-5 w-5" />
                </a>
              </Button>
              <Button asChild size="lg" variant="outline" className="text-lg px-8 h-14 bg-transparent">
                <Link href="/services">{"View Our Services"}</Link>
              </Button>
            </div>
          </div>
        </div>
      </section>
    </div>
  )
}
