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

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

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

export const metadata = {
  title: "Accounting & Bookkeeping Services - Agmont Advisory",
  description: "Complete accounting services with teams skilled in Tally, QuickBooks, Xero, and more.",
}

export default function AccountingPage() {
  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">
              <Calculator className="h-4 w-4" />
              <Link href="/services" className="hover:underline">
                {"Services"}
              </Link>
              <span>{"/"}</span>
              <span>{"Accounting & Bookkeeping"}</span>
            </div>
            <h1 className="text-5xl md:text-6xl font-bold text-balance">{"Accounting & Bookkeeping"}</h1>
            <p className="text-xl text-slate-300 leading-relaxed">
              {
                "Complete accounting services with teams skilled in Tally, QuickBooks, Xero, and more. Keep your finances organized and compliant."
              }
            </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">
                  {"Professional Accounting Services"}
                </h2>
                <p className="text-lg text-slate-700 leading-relaxed mb-6">
                  {"We provide complete accounting services with teams skilled in Tally, QuickBooks, Xero, etc."}
                </p>
                <p className="text-lg text-slate-700 leading-relaxed">
                  {
                    "Our accounting professionals help you maintain accurate financial records, ensuring compliance and providing insights for better business decisions."
                  }
                </p>
              </div>

              <div>
                <h3 className="text-2xl font-bold text-slate-900 mb-4">{"Services Offered"}</h3>
                <div className="space-y-3">
                  {[
                    "Daily bookkeeping and data entry",
                    "Bank reconciliation",
                    "Accounts payable & receivable",
                    "Financial statements preparation",
                    "Payroll processing",
                    "Expense management",
                    "MIS reporting",
                    "Software: Tally, QuickBooks, Xero",
                  ].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 Accounting Services?"}</h3>
                <ul className="space-y-4">
                  {[
                    "Experienced accounting professionals",
                    "Multiple software expertise",
                    "Accurate and timely records",
                    "Cost-effective solutions",
                    "Confidentiality maintained",
                    "Regular financial reports",
                    "Compliance assurance",
                  ].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">
                    {"Talk to an Expert"} <ArrowRight className="ml-2 h-5 w-5" />
                  </a>
                </Button>
              </CardContent>
            </Card>
          </div>
        </div>
      </section>
    </div>
  )
}
