/* =========================
   RESET + GLOBAL
========================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  background:#f5f5f5;
  color:#333;
  overflow-x:hidden;
  line-height:1.6;
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

section{
  padding:60px 20px;
}

.container{
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
}

.about,
.services,
.testimonials,
.contact{
  max-width:1400px;
  margin:0 auto;
}

h1,h2,h3,h4{
  line-height:1.2;
}

#contact{
  scroll-margin-top:90px;
}

/* =========================
   NAVBAR
========================= */
.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:15px;

  padding:14px 30px;

  background:white;
  position:sticky;
  top:0;
  z-index:1000;

  box-shadow:0 4px 12px rgba(0,0,0,0.08);
  border-bottom:3px solid #1f6f43;
}

.logo{
  display:flex;
  align-items:center;
}

.logo img{
  max-width:150px;
  height:auto;
  object-fit:contain;
}

.nav-links{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:10px;
}

.nav-links a{
  text-decoration:none;
  color:#333;
  font-size:14px;
  font-weight:500;

  padding:8px 12px;
  border-radius:8px;

  transition:0.25s ease;
}

.nav-links a:hover{
  background:#1f6f43;
  color:white;
}

/* =========================
   BUTTONS
========================= */
.cta-btn,
.btn-primary,
.btn-secondary,
.contact-btn,
.call-btn,
.email-btn,
.services-link,
.reviews-link,
.cta-box{
  display:inline-block;

  padding:12px 20px;

  border-radius:8px;

  text-decoration:none;
  font-weight:600;

  transition:0.25s ease;
  text-align:center;
}

.cta-btn,
.btn-primary,
.contact-btn,
.call-btn,
.email-btn,
.services-link,
.reviews-link,
.cta-box{
  background:#1f6f43;
  color:white;
}

.cta-btn:hover,
.btn-primary:hover,
.contact-btn:hover,
.call-btn:hover,
.email-btn:hover,
.services-link:hover,
.reviews-link:hover,
.cta-box:hover{
  background:#145a32;
  transform:translateY(-2px);
}

.btn-secondary{
  border:1px solid white;
  color:white;
}

.btn-secondary:hover{
  background:white;
  color:#333;
}

/* =========================
   HERO
========================= */
.hero{
  min-height:70vh;

  display:flex;
  align-items:center;
  justify-content:center;

  position:relative;

  padding:80px 20px;

  background-image:url("2026 photos to add/mowingpic.jpg");
  background-size:cover;
  background-position:center 90%;
  background-repeat:no-repeat;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.45);
  pointer-events:none;
}

.hero-content{
  position:relative;
  z-index:2;
  

  color:white;

  width:100%;
  max-width:700px;

  padding:20px;
}

.hero h1,
.hero h2{
  font-size:clamp(2.2rem,5vw,4rem);
  margin-bottom:15px;
}

.hero p{
  margin:10px 0 20px;
  font-size:1rem;
}

.hero-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:20px;
}

/* service page hero */
.services-page .hero{
  background-image:url("2026%20photos%20to%20add/flowerbed1.jpg");
  background-size:cover;
  background-position:center 80%;
  background-repeat:no-repeat;
}

/* gallery hero */
.gallery-page .hero{
  background-image:url("2026%20photos%20to%20add/Picture 158.jpg");
  background-size:cover;
  background-position:center 40%;
  background-repeat:no-repeat;
}

/* =========================
   EXPERIENCE BADGE
========================= */
.experience-badge{
  width:90px;
  height:90px;

  background:#1f6f43;
  border-radius:50%;

  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;

  margin:20px 0;

  border:3px solid white;
  text-align:center;
}

.experience-badge span{
  font-size:22px;
  color:white;
  line-height:1;
}

.experience-badge small{
  font-size:11px;
  color:white;
  line-height:1.2;
}

/* =========================
   TRUST
========================= */
.trust{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:20px;

  background:white;
  padding:20px;
}

.trust-item{
  display:flex;
  align-items:center;
  gap:8px;

  color:#1f6f43;
  font-size:14px;
}

/* =========================
   SECTIONS
========================= */
.about,
.services,
.testimonials{
  text-align:center;
}

.about{
  background:white;
}

.services{
  background:#f8f8f8;
}

.testimonials{
  background:white;
}

.about h3,
.services h3,
.testimonials h3,
.contact h3{
  font-size:clamp(2rem,4vw,3rem);
  margin-bottom:20px;
}

/* =========================
   CARDS
========================= */
.card,
.service-card,
.testimonial{
  transition:0.3s ease;
}

.card:hover,
.service-card:hover,
.testimonial:hover{
  transform:translateY(-6px);
}

/* =========================
   HOMEPAGE CARDS
========================= */
.service-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:25px;

  width:100%;
  margin-top:30px;
}

.card{
  background:#1f6f43;
  color:white;

  padding:25px;

  border-radius:14px;

  width:100%;

  box-shadow:0 8px 20px rgba(0,0,0,0.1);
}

.card h4{
  margin-bottom:12px;
}

/* =========================
   SERVICES PAGE CARDS
========================= */
.services{
  width:100%;
  padding-left:20px;
  padding-right:20px;
}

.service-card{
  background:#1f6f43;
  border-radius:14px;
  overflow:hidden;

  width:100%;

  box-shadow:0 10px 25px rgba(0,0,0,0.12);
}

.service-card img{
  width:100%;
  height:280px;
  object-fit:cover;

  transition:0.3s ease;
}

.service-card:hover img{
  transform:scale(1.05);
}

.service-text{
  padding:18px;
  text-align:center;
}

.service-text h4{
  color:white;
  margin-bottom:8px;
}

.service-text p{
  color:#e0e0e0;
  font-size:14px;
}

/* =========================
   CTA LINKS
========================= */
.services-cta,
.reviews-cta{
  display:flex;
  justify-content:center;
  margin-top:30px;
}

/* =========================
   TESTIMONIALS
========================= */
.testimonial-row{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:20px;

  max-width:1000px;
  margin:30px auto 0;
}

.testimonial{
  width:100%;

  background:white;
  color:#333;

  padding:22px;

  border-radius:12px;
  border-left:5px solid #1f6f43;

  box-shadow:0 4px 12px rgba(0,0,0,0.08);
}

.testimonial p{
  line-height:1.7;
  margin-bottom:12px;
}

.testimonial strong{
  color:#1f6f43;
  font-size:14px;
}

.stars{
  color:#f4b400;
  font-size:16px;
  margin-bottom:10px;
  letter-spacing:2px;
}

/* =========================
   GALLERY
========================= */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}

.gallery-card{
  overflow:hidden;
  border-radius:12px;
  background:white;
  box-shadow:0 4px 12px rgba(0,0,0,0.08);
}

.gallery-card img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.gallery-title{
  padding:10px;
  text-align:center;
  font-size:13px;
  font-weight:600;
  color:#1f6f43;
  background:white;
}

.gallery-category{
  text-align:left;
  font-size:18px;
  font-weight:600;
  color:#1f6f43;
  margin:30px 0 10px;
}

/* =========================
   LIGHTBOX
========================= */
#lightbox-overlay{
  display:none;
  position:fixed;
  inset:0;

  background:rgba(0,0,0,0.85);

  justify-content:center;
  align-items:center;

  z-index:9999;
}

#lightbox-overlay img{
  max-width:90%;
  max-height:80%;
  border-radius:10px;
}

#lightbox-close{
  position:absolute;
  top:20px;
  right:25px;

  font-size:30px;
  color:white;

  cursor:pointer;
}

/* =========================
   CONTACT
========================= */
.contact{
  background:#1f6f43;
  color:white;

  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;

  border-radius:0;
}

.contact p{
  margin-bottom:10px;
}

.contact a{
  color:white;
}

.contact form{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.contact input,
.contact textarea{
  width:100%;

  padding:14px;

  border:none;
  border-radius:8px;

  font-size:14px;
}

.contact textarea{
  min-height:120px;
  resize:vertical;
}

/* =========================
   FOOTER
========================= */
.footer{
  text-align:center;
  padding:20px;
  background:white;
}

/* =========================
   POPUP
========================= */
.popup{
  display:none;

  position:fixed;
  inset:0;

  background:rgba(0,0,0,0.65);

  justify-content:center;
  align-items:center;

  z-index:9999;
}

.popup-content{
  background:white;

  padding:30px;

  border-radius:12px;

  text-align:center;

  border-top:6px solid #1f6f43;
}

.popup-content button{
  margin-top:15px;

  padding:10px 16px;

  background:#34a853;
  color:white;

  border:none;
  border-radius:6px;

  cursor:pointer;
}

/* =========================
   RESPONSIVE
========================= */
@media (min-width:768px){

  .gallery-grid{
    grid-template-columns:repeat(3,1fr);
  }

  .services{
    padding-left:60px;
    padding-right:60px;
  }
}
@media (max-width: 768px) {

  /* =========================
     GLOBAL
  ========================= */
  body {
    overflow-x: hidden;
  }

  section {
    padding: 45px 16px;
  }

  h1, h2 {
    line-height: 1.2;
  }

  /* =========================
     NAVBAR
  ========================= */
  .navbar {
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 12px 16px;
    gap: 10px;
  }

  .logo img {
    max-width: 120px;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    gap: 6px;
  }

  .nav-links a {
    font-size: 13px;
    padding: 7px 10px;
  }

  /* =========================
     HERO
  ========================= */
  .hero {
    min-height: auto;
    height: auto;

    padding: 90px 18px 60px;

    align-items: center;
    justify-content: center;

    text-align: center;

    background-position: center center;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;

    padding: 0;
    margin: 0 auto;
  }

  .hero h1,
  .hero h2 {
    font-size: 2rem;
    margin-bottom: 14px;
  }

  .hero p {
    font-size: 15px;
    margin-bottom: 18px;
  }

  .experience-badge {
    width: 82px;
    height: 82px;

    margin: 18px auto;
  }

  .experience-badge span {
    font-size: 20px;
  }

  .experience-badge small {
    font-size: 10px;
  }

  /* =========================
     HERO BUTTONS
  ========================= */
  .hero-buttons {
    flex-direction: column;
    align-items: center;

    width: 100%;
    gap: 10px;
  }

  .hero-buttons a {
    width: 100%;
    max-width: 300px;
  }

  .cta-btn,
  .btn-primary,
  .btn-secondary {
    padding: 12px 16px;
    font-size: 14px;
  }

  /* =========================
     TRUST BAR
  ========================= */
  .trust {
    gap: 12px;
    padding: 16px;
  }

  .trust-item {
    font-size: 13px;
  }

  /* =========================
     SERVICES + TESTIMONIALS
  ========================= */
  .service-grid,
  .testimonial-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .card,
  .testimonial,
  .service-card {
    width: 100%;
  }

  .card,
  .testimonial {
    padding: 18px;
  }

  .service-card img {
    height: 230px;
  }

  /* =========================
     GALLERY
  ========================= */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gallery-card img {
    height: 240px;
  }

  /* =========================
     CONTACT
  ========================= */
  .contact {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact input,
  .contact textarea {
    font-size: 16px;
  }

  .contact-btn,
  .call-btn,
  .email-btn {
    width: 100%;
    text-align: center;
  }

  /* =========================
     FOOTER
  ========================= */
  .footer {
    font-size: 13px;
    padding: 18px;
  }
}
/* =========================
   MOBILE
========================= */
@media screen and (max-width: 768px){

  body{
    overflow-x:hidden;
  }

  section{
    padding:40px 15px;
  }

  /* NAVBAR */
  .navbar{
    flex-direction:row;
    justify-content:space-between;
    align-items:center;

    padding:10px 15px;
    gap:8px;
  }

  .logo img{
    max-width:110px;
  }

  .nav-links{
    display:flex;
    flex-wrap:wrap;
    justify-content:flex-end;
    gap:4px;
  }

  .nav-links a{
    font-size:12px;
    padding:5px 8px;
  }

  /* HERO */
  .hero{
    min-height:60vh;
    height:auto;

    padding:70px 15px;

    text-align:center;

    background-position:center center;
  }

  .hero-content{
    width:100%;
    max-width:100%;

    padding:0;
    margin:0 auto;

    z-index:5;
  }

  .hero h1,
  .hero h2{
    font-size:32px;
    line-height:1.15;

    margin-bottom:14px;
  }

  .hero p{
    font-size:14px;
  }

  /* HERO BUTTONS */
  .hero-buttons{
    flex-direction:column;
    align-items:center;

    width:100%;
    gap:10px;
  }

  .hero-buttons a{
    width:100%;
    max-width:280px;
  }

  /* BADGE */
  .experience-badge{
    width:75px;
    height:75px;

    margin:18px auto;
  }

  .experience-badge span{
    font-size:20px;
  }

  .experience-badge small{
    font-size:10px;
  }

  /* TRUST */
  .trust{
    gap:10px;
    padding:15px;
  }

  .trust-item{
    font-size:13px;
  }

  /* SERVICES */
  .services{
    padding-left:15px;
    padding-right:15px;
  }

  .service-grid,
  .testimonial-row,
  .gallery-grid{
    grid-template-columns:1fr;
    gap:16px;
  }

  .card,
  .testimonial,
  .service-card{
    width:100%;
    max-width:100%;
  }

  .card,
  .testimonial{
    padding:18px;
  }

  .service-card img{
    height:220px;
    object-fit:cover;
  }

  .gallery-card img{
    height:220px;
  }

  /* CONTACT */
  .contact{
    grid-template-columns:1fr;
    gap:25px;
  }

  .contact input,
  .contact textarea{
    font-size:16px;
  }

  .contact-btn,
  .call-btn,
  .email-btn,
  .services-link,
  .reviews-link{
    width:100%;
    max-width:320px;
    text-align:center;
    margin:0 auto;
  }

  /* FOOTER */
  .footer{
    font-size:13px;
    text-align:center;
  }

}
}