*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  color:#1f2a1f;
  background:#fff;
}

/* HEADER */
header{
  background:#F7F4ED;
  width:100%;
  box-shadow:0 2px 12px rgba(0,0,0,.05);
  border-bottom:1px solid #e8e2d8;
  position:sticky;
  top:0;
  z-index:1000;
}

.nav{
  width:92%;
  max-width:1600px;
  margin:auto;
  height:105px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo{
  height:135px;
  width:auto;
  display:block;
}

nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:70px;
  flex:1;
}

nav a{
  color:#073d22;
  text-decoration:none;
  font-weight:700;
  font-size:18px;
  position:relative;
  transition:.3s;
}

nav a:hover{
  color:#4f9a3d;
}

nav a:after{
  content:"";
  position:absolute;
  left:0;
  bottom:-10px;
  width:0;
  height:2px;
  background:#4f9a3d;
  transition:.3s;
}

nav a:hover:after{
  width:100%;
}

.nav-btn,
.btn{
  background:#073d22;
  color:#fff;
  padding:17px 32px;
  border-radius:8px;
  text-decoration:none;
  font-weight:700;
  font-size:17px;
  white-space:nowrap;
  display:inline-block;
  transition:.3s;
}

.nav-btn:hover,
.btn:hover{
  background:#2f7d32;
  transform:translateY(-2px);
}

/* HERO */
.hero{
  min-height:780px;
  background:url("hero.png") center right/cover no-repeat;
  display:flex;
  align-items:center;
  padding-left:8%;
  position:relative;
}

.hero:before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.88) 34%, rgba(255,255,255,.18) 68%);
}

.hero-text{
  position:relative;
  max-width:640px;
  z-index:2;
}

.hero h1{
  font-family:'Playfair Display',serif;
  color:#073d22;
  font-size:86px;
  line-height:.96;
  margin-bottom:30px;
}

.hero h1 span{
  color:#4f9a3d;
  font-style:italic;
  font-weight:400;
}

.tagline{
  letter-spacing:9px;
  font-weight:800;
  font-size:15px;
  margin-bottom:35px;
}

.hero-desc{
  font-size:22px;
  line-height:1.8;
  max-width:590px;
  margin-bottom:42px;
}

.btn-outline{
  border:2px solid #073d22;
  color:#073d22;
  padding:17px 32px;
  border-radius:8px;
  text-decoration:none;
  font-weight:800;
  margin-left:12px;
  display:inline-block;
  background:rgba(255,255,255,.75);
}

/* TRUST SECTION */
.trust{
  padding:65px 6% 75px;
  background:#fff;
}

.trust-title,
.section-title{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:25px;
  margin-bottom:50px;
}

.trust-title span,
.section-title span{
  width:240px;
  height:1px;
  background:#b8cbb8;
}

.trust-title h2,
.section-title h2{
  font-family:'Playfair Display',serif;
  color:#073d22;
  font-size:32px;
  font-weight:500;
}

.icon-row{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  max-width:1300px;
  margin:auto;
}

.icon-box{
  text-align:center;
  padding:20px 30px;
  border-right:1px solid #d9e2d7;
}

.icon-box:last-child{
  border-right:none;
}

.circle{
  width:78px;
  height:78px;
  border:2px solid #4f9a3d;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 20px;
  font-size:31px;
  background:#f7f4ed;
}

.icon-box h3{
  color:#073d22;
  font-size:23px;
  line-height:1.25;
}

/* ABOUT */
.about{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  padding:85px 8%;
  align-items:center;
  background:#fbfaf6;
}

.about-img img{
  width:100%;
  border-radius:18px;
  display:block;
  box-shadow:0 18px 45px rgba(0,0,0,.12);
}

.small-line{
  width:90px;
  height:3px;
  background:#4f9a3d;
  margin-bottom:25px;
}

.about h2{
  font-family:'Playfair Display',serif;
  color:#073d22;
  font-size:48px;
  margin-bottom:22px;
}

.about h3{
  font-family:'Playfair Display',serif;
  color:#073d22;
  font-size:30px;
  margin:25px 0 12px;
}

.about p{
  font-size:19px;
  line-height:1.85;
  margin-bottom:22px;
}

.about ul,
.about-benefits{
  list-style:none;
  padding:0;
  margin:25px 0;
}

.about li,
.about-benefits li{
  margin-bottom:14px;
  font-size:20px;
  color:#073d22;
  font-weight:500;
}

.about li:before,
.about-benefits li::before{
  content:"✓";
  background:#4f9a3d;
  color:white;
  font-weight:bold;
  margin-right:12px;
  width:22px;
  height:22px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
}

.about-text .btn{
  margin-top:15px;
}

/* HOME SERVICES */
.services{
  padding:80px 6%;
  background:#f7f4ed;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:24px;
}

.card{
  background:#fff;
  padding:38px 26px;
  text-align:center;
  border-radius:16px;
  box-shadow:0 12px 35px rgba(0,0,0,.06);
  border:1px solid #eee9df;
  transition:.3s;
}

.card:hover{
  transform:translateY(-8px);
  box-shadow:0 18px 45px rgba(0,0,0,.10);
}

.card-icon{
  width:78px;
  height:78px;
  border-radius:50%;
  background:#eef5ea;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 22px;
  font-size:35px;
}

.card h3{
  font-family:'Playfair Display',serif;
  color:#073d22;
  font-size:24px;
  margin-bottom:15px;
}

.card p{
  line-height:1.75;
  font-size:16px;
}

/* CTA */
.cta{
    background:linear-gradient(135deg,#005d24,#0b7a35);
    color:#ffffff;
    padding:55px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
}

.cta h2{
    font-family:'Playfair Display',serif;
    font-size:48px;
    color:#fff;
    margin-bottom:10px;
}

.cta p{
    font-size:20px;
    color:#fff;
    margin:0;
}

.cta .btn{
    background:#fff;
    color:#005d24;
    padding:16px 34px;
    border-radius:8px;
    font-weight:700;
}

.cta .btn:hover{
    background:#f4f4f4;
}


/* PAGE BANNER */
.page-banner{
  height:340px;
  background:url("hero.png") center/cover;
  position:relative;
  display:flex;
  align-items:center;
}

.page-overlay{
  background:rgba(7,61,34,.68);
  padding:70px 8%;
  width:100%;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.page-overlay h1{
  font-family:'Playfair Display',serif;
  color:#fff;
  font-size:64px;
  line-height:1.1;
  margin-bottom:18px;
}

.page-overlay p{
  font-size:21px;
  color:#fff;
}

.banner-subtitle{
  font-size:24px;
  max-width:650px;
  line-height:1.4;
}

.banner-description{
  max-width:750px;
  margin-top:20px;
  font-size:17px;
  line-height:1.7;
  color:white;
}

.banner-line{
  width:90px;
  height:3px;
  background:#b6e09f;
  margin-top:20px;
  margin-bottom:20px;
}

/* SERVICES PAGE */
.service-list{
  padding:70px 8%;
  background:#fff;
}

.service-row{
  display:grid;
  grid-template-columns:340px 1fr;
  gap:40px;
  background:white;
  padding:24px;
  border-radius:18px;
  margin-bottom:30px;
  box-shadow:0 10px 35px rgba(0,0,0,.05);
  align-items:center;
}

.service-row img{
  width:100%;
  height:245px;
  object-fit:cover;
  border-radius:14px;
}

.service-content{
  padding:10px;
}

.service-content h2,
.service-row h2{
  color:#073d22;
  font-family:'Playfair Display',serif;
  font-size:38px;
  margin-bottom:14px;
}

.service-content p{
  font-size:19px;
  line-height:1.75;
  margin-bottom:22px;
}

.service-content ul{
  list-style:none;
  padding:0;
}

.service-content li{
  margin-bottom:10px;
  font-size:17px;
}

.service-content li:before{
  content:"✓";
  color:#4f9a3d;
  font-weight:bold;
  margin-right:10px;
}

/* CONTACT PAGE */
.contact-page{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:45px;
  padding:80px 8%;
  background:#fff;
}

.contact-form,
.visit-card{
  background:#fff;
  padding:45px;
  border-radius:18px;
  box-shadow:0 12px 35px rgba(0,0,0,.06);
}

.contact-form h2,
.visit-card h2{
  font-family:'Playfair Display',serif;
  color:#073d22;
  font-size:36px;
  margin-bottom:25px;
}

.contact-form label{
  display:block;
  margin-bottom:8px;
  color:#073d22;
  font-weight:700;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:15px;
  margin-bottom:18px;
  border:1px solid #d8d8d8;
  border-radius:6px;
  font-size:16px;
}

.contact-form textarea{
  height:160px;
  resize:none;
}

.visit-card{
  background:#eef5ea;
}

.visit-card p{
  line-height:1.8;
  margin-bottom:22px;
  font-size:17px;
}

.map-section{
  padding:0 8% 80px;
  background:#fff;
}

.map-section iframe{
  width:100%;
  height:380px;
  border:0;
  border-radius:18px;
  box-shadow:0 12px 35px rgba(0,0,0,.06);
}

/* RESPONSIVE */
@media(max-width:1000px){
  .nav{
    height:auto;
    flex-direction:column;
    padding:24px 0;
    gap:18px;
  }

  .logo{
    height:105px;
  }

  nav{
    flex-wrap:wrap;
    justify-content:center;
    gap:24px;
  }

  .hero{
    padding:80px 30px;
    min-height:680px;
  }

  .hero h1{
    font-size:56px;
  }

  .hero-desc{
    font-size:18px;
  }

  .icon-row,
  .service-grid,
  .about,
  .service-row,
  .contact-page{
    grid-template-columns:1fr;
  }

  .icon-box{
    border-right:none;
    border-bottom:1px solid #d9e2d7;
  }

  .trust-title span,
  .section-title span{
    display:none;
  }

  .cta{
    flex-direction:column;
    text-align:center;
  }

  .btn-outline{
    margin-left:0;
    margin-top:12px;
  }

  .page-overlay h1{
    font-size:46px;
  }

  .banner-subtitle{
    font-size:20px;
  }
}

/* FOOTER */
.footer{
  background:#f7f4ed;
  padding:55px 8% 25px;
  border-top:1px solid #e8e2d8;
}

.footer-container{
  display:grid;
  grid-template-columns:1.4fr 1fr 1.2fr 1.3fr;
  gap:45px;
  align-items:flex-start;
  max-width:1400px;
  margin:0 auto;
}

.footer-logo img{
  width:220px;
  height:auto;
  margin-bottom:15px;
}

.footer-logo p{
  color:#073d22;
  font-weight:600;
}

.footer h4{
  font-family:'Playfair Display',serif;
  color:#073d22;
  font-size:22px;
  margin-bottom:18px;
}

.footer-links{
  display:flex;
  flex-direction:column;
}

.footer-links a{
  color:#333;
  text-decoration:none;
  margin-bottom:10px;
  font-size:15px;
}

.footer-services p,
.footer-contact p{
  color:#333;
  margin-bottom:10px;
  line-height:1.6;
  font-size:15px;
}

.footer-bottom{
  border-top:1px solid #ddd;
  margin-top:35px;
  padding-top:18px;
  text-align:center;
}

.footer-bottom p{
  color:#073d22;
  font-size:14px;
  font-weight:600;
}

@media(max-width:900px){
  .footer-container{
    grid-template-columns:1fr;
    text-align:center;
  }

  .footer-logo img{
    margin:auto;
    display:block;
  }
}

/* FORCE FOOTER FIX */
.footer img,
.footer-logo img{
  width:180px !important;
  max-width:180px !important;
  height:auto !important;
}

.footer-container{
  display:grid !important;
  grid-template-columns:1.4fr 1fr 1.2fr 1.3fr !important;
  gap:45px !important;
  align-items:flex-start !important;
}

.footer{
  text-align:left !important;
}

/* =========================
   PHONE OPTIMIZATION
========================= */

@media(max-width:768px){

  header{
    position:relative;
  }

  .nav{
    width:94%;
    height:auto;
    padding:18px 0;
    flex-direction:column;
    gap:15px;
  }

  .logo{
    height:95px;
  }

  nav{
    gap:18px;
    flex-wrap:wrap;
  }

  nav a{
    font-size:15px;
  }

  .nav-btn{
    padding:13px 22px;
    font-size:15px;
  }

  .hero{
    min-height:620px;
    padding:70px 24px;
    background-position:center;
  }

  .hero:before{
    background:rgba(255,255,255,.86);
  }

  .hero h1{
    font-size:46px;
  }

  .hero-desc{
    font-size:17px;
    line-height:1.6;
  }

  .tagline{
    font-size:12px;
    letter-spacing:5px;
  }

  .hero-buttons{
    display:flex;
    flex-direction:column;
    gap:12px;
  }

  .btn,
  .btn-outline{
    width:100%;
    text-align:center;
    margin-left:0;
  }

  .trust,
  .services,
  .about,
  .service-list,
  .contact-page{
    padding:50px 22px;
  }

  .trust-title h2,
  .section-title h2{
    font-size:26px;
    text-align:center;
  }

  .about{
    gap:35px;
  }

  .about h2{
    font-size:36px;
  }

  .about p,
  .about li{
    font-size:16px;
  }

  .service-row{
    grid-template-columns:1fr !important;
  }

  .service-content h2{
    font-size:32px;
  }

  .service-content p{
    font-size:16px;
  }

  .page-banner{
    height:280px;
  }

  .page-overlay{
    padding:40px 25px;
  }

  .page-overlay h1{
    font-size:40px;
  }

  .banner-subtitle{
    font-size:18px;
  }

  .cta{
    padding:45px 24px;
    flex-direction:column;
    text-align:center;
  }

  .cta h2{
    font-size:34px;
  }

  .cta p{
    font-size:17px;
  }

  .footer{
    padding:45px 24px 25px;
  }

  .footer-container{
    grid-template-columns:1fr !important;
    gap:30px !important;
    text-align:center;
  }

  .footer-logo img{
    margin:auto;
    width:160px !important;
  }
}

/* =========================
   MOBILE FOOTER FIX
========================= */

@media(max-width:768px){

  .footer{
    padding:35px 20px 22px !important;
    text-align:center !important;
  }

  .footer-container{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:26px !important;
    max-width:100% !important;
    text-align:center !important;
  }

  .footer-logo img{
    width:150px !important;
    max-width:150px !important;
    height:auto !important;
    margin:0 auto 12px !important;
    display:block !important;
  }

  .footer-logo p{
    font-size:14px !important;
    margin-bottom:5px !important;
  }

  .footer h4{
    font-size:20px !important;
    margin-bottom:12px !important;
  }

  .footer-links{
    align-items:center !important;
  }

  .footer-links a{
    font-size:15px !important;
    margin-bottom:8px !important;
  }

  .footer-services p,
  .footer-contact p{
    font-size:14px !important;
    line-height:1.5 !important;
    margin-bottom:8px !important;
  }

  .footer-bottom{
    margin-top:24px !important;
    padding-top:16px !important;
  }

  .footer-bottom p{
    font-size:13px !important;
    line-height:1.5 !important;
  }
}