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

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

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

export const metadata = {
  title: "Project Financing Services - Agmont Advisory",
  description: "Support for project finance, term loans, business loans with top lenders in the market.",
}

export default function ProjectFinancingPage() {
  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">
              <TrendingUp className="h-4 w-4" />
              <Link href="/services" className="hover:underline">
                {"Services"}
              </Link>
              <span>{"/"}</span>
              <span>{"Project Financing"}</span>
            </div>
            <h1 className="text-5xl md:text-6xl font-bold text-balance">{"Project Financing"}</h1>
            <p className="text-xl text-slate-300 leading-relaxed">
              {
                "Support for project finance, term loans, business loans with top lenders in the market. Fuel your growth with the right funding."
              }
            </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">
                  {"Comprehensive Financing Solutions"}
                </h2>
                <p className="text-lg text-slate-700 leading-relaxed mb-6">
                  {"Support for project finance, term loans, business loans with top lenders in the market."}
                </p>
                <p className="text-lg text-slate-700 leading-relaxed">
                  {
                    "We help businesses secure the funding they need to grow and expand. Our network of lenders and financial institutions ensures you get competitive rates and flexible terms."
                  }
                </p>
              </div>

              <div>
                <h3 className="text-2xl font-bold text-slate-900 mb-4">{"Financing Options"}</h3>
                <div className="space-y-3">
                  {[
                    "Project Finance",
                    "Term Loans",
                    "Working Capital Loans",
                    "Business Expansion Loans",
                    "Equipment Financing",
                    "Debt Syndication",
                    "Bridge Financing",
                    "Customized Financial Solutions",
                  ].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 Financing Services?"}</h3>
                <ul className="space-y-4">
                  {[
                    "Access to top lenders",
                    "Competitive interest rates",
                    "Quick loan processing",
                    "Expert financial advisory",
                    "Customized financing solutions",
                    "End-to-end support",
                    "High approval rates",
                  ].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 Financing Now"} <ArrowRight className="ml-2 h-5 w-5" />
                  </a>
                </Button>
              </CardContent>
            </Card>
          </div>
        </div>
      </section>
    </div>
  )
}
