function Testimonials() {
  const reviews = [
    { src: "Google", name: "Nick L.", loc: "Davis, CA", initials: "NL",
      quote: "Our home in Davis needed window replacements, and Elevate Construction Group delivered quality work from start to finish. The team was professional, on time, and cleaned up everything after. Highly recommend them." },
    { src: "Google", name: "Stan C.", loc: "Rancho Cordova, CA", initials: "SC",
      quote: "Our home in Rancho Cordova needed the old aluminum windows replaced. We hired Elevate Construction and couldn't be happier. They were transparent about the process, the installation was done quickly, and the new windows have made a huge difference." },
    { src: "Google", name: "Phillip C.", loc: "Sacramento, CA", initials: "PC",
      quote: "Beautiful work! Great staff and would highly encourage anyone in the Sacramento area to use Elevate Construction for their window replacement needs. Very impressed with the craftsmanship and professionalism." },
    { src: "Google", name: "James B.", loc: "Sacramento, CA", initials: "JB",
      quote: "I had a really good experience with Elevate Construction. They responded quickly when I reached out, walked me through all my options without being pushy, and the installation was smooth from start to finish." },
    { src: "Google", name: "Marina L.", loc: "Sacramento, CA", initials: "ML",
      quote: "Vitaly, the project manager, made our window installation experience simple and stress-free. He kept us informed every step of the way and made sure everything was done to the highest standard. The new windows look amazing." },
    { src: "Google", name: "Allie R.", loc: "Sacramento, CA", initials: "AR",
      quote: "What made our experience with Elevate Construction Group stand out was the level of care and attention to detail their team brought. From the initial quote to the final walkthrough, they treated our home like it was their own." },
  ];

  return (
    <section className="section section--green" id="reviews">
      <div className="container">
        <div className="section-head section-head--center" style={{color:'#fff'}}>
          <span className="eyebrow">What homeowners say</span>
          <h2 className="h2" style={{color:'#fff'}}>85+ five-star reviews from <em>Sacramento homeowners.</em></h2>
          <p className="lede" style={{color:'rgba(255,255,255,0.78)', textAlign:'center'}}>Hear it straight from the people who trusted us with their homes.</p>
        </div>

        <div className="t-grid">
          {reviews.map((r, i) => (
            <div className="t-card" key={i}>
              <div className="source-row">
                <span className="src">Via {r.src}</span>
                <Stars size={13} />
              </div>
              <p className="quote">"{r.quote}"</p>
              <div className="author">
                <div className="t-avatar">{r.initials}</div>
                <div>
                  <div className="author-name">{r.name}</div>
                  <div className="author-loc">{r.loc}</div>
                </div>
              </div>
            </div>
          ))}
        </div>
      </div>
    </section>
  );
}
window.Testimonials = Testimonials;
