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

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

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

export const metadata = {
  title: "Business Setup Services - Agmont Advisory",
  description:
    "Complete support for company registration including Partnerships, LLP, Private Limited, Public Limited, Section 8, and offshore incorporation.",
}

export default function BusinessSetupPage() {
  const businessTypes = [
    "Partnerships",
    "Limited Liability Partnership (LLP)",
    "Private Limited Company",
    "Public Limited Company",
    "Section 8 Company",
    "Farmer Producer Company",
    "Offshore Company Incorporation",
  ]

  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 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">
              <Building2 className="h-4 w-4" />
              <Link href="/services" className="hover:underline">
                {"Services"}
              </Link>
              <span>{"/"}</span>
              <span>{"Business Setup"}</span>
            </div>
            <h1 className="text-5xl md:text-6xl font-bold text-balance">{"Business Setup Services"}</h1>
            <p className="text-xl text-slate-300 leading-relaxed">
              {
                "We help you with complete business registration and setup services in India and offshore. Turn your entrepreneurial vision into reality with expert guidance."
              }
            </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-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">{"What We Offer"}</h2>
                <p className="text-lg text-slate-700 leading-relaxed mb-6">
                  {
                    "We help you with Partnerships, LLP, Private Limited Company, Public Limited Company, Section 8, and Farmer Producer Company registration in India. We also offer Offshore Incorporation services."
                  }
                </p>
                <p className="text-lg text-slate-700 leading-relaxed">
                  {
                    "Our experienced team handles all aspects of business registration, from documentation to compliance, ensuring a smooth and hassle-free setup process."
                  }
                </p>
              </div>

              <div>
                <h3 className="text-2xl font-bold text-slate-900 mb-4">{"Types of Business Entities"}</h3>
                <div className="space-y-3">
                  {businessTypes.map((type, 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">{type}</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 Business Setup Services?"}</h3>
                <ul className="space-y-4">
                  {[
                    "End-to-end registration support",
                    "Expert guidance on entity selection",
                    "Fast and efficient processing",
                    "Complete documentation assistance",
                    "Compliance and regulatory support",
                    "Post-incorporation services",
                    "Offshore incorporation expertise",
                  ].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 Your Service Today"} <ArrowRight className="ml-2 h-5 w-5" />
                  </a>
                </Button>
              </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">
              {"Ready to Start Your Business?"}
            </h2>
            <p className="text-xl text-muted-foreground leading-relaxed">
              {"Contact us today and let our experts guide you through the entire business registration process."}
            </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 All Services"}</Link>
              </Button>
            </div>
          </div>
        </div>
      </section>
    </div>
  )
}
