
:root{
  --green:#174A3B;
  --green2:#215846;
  --green-dark:#123F33;
  --soft:#EDF6F1;
  --soft2:#F7FBF8;
  --gold:#D69A55;
  --gold2:#E7C08A;
  --text:#14332B;
  --muted:#5C716A;
  --line:#D9E7E0;
  --white:#FFFFFF;
  --shadow:0 16px 34px rgba(17,63,52,.12);
  --shadow-soft:0 10px 22px rgba(17,63,52,.07);
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  color:var(--text);
  line-height:1.65;
  background:#fff;
}

img{max-width:100%;display:block}

a{text-decoration:none;color:inherit}

.container{
  width:min(1240px,92%);
  margin:auto;
}

/* HEADER */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:var(--green);
  box-shadow:0 8px 24px rgba(15,50,42,.18);
}

.nav{
  min-height:88px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  color:#fff;
  font-size:30px;
  font-weight:900;
  letter-spacing:-.5px;
}

.brand img{
  width:88px;
  max-height:70px;
  object-fit:contain;
}

.brand em,
.footer-brand em{
  font-style:normal;
  color:var(--gold);
}

.main-menu{
  display:flex;
  align-items:center;
  gap:30px;
  font-weight:800;
  color:#fff;
}

.main-menu a{
  color:#fff;
  position:relative;
}

.main-menu a:not(.menu-cta)::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:0;
  height:3px;
  border-radius:4px;
  background:var(--gold);
  transition:.25s;
}

.main-menu a:hover::after{
  width:100%;
}

.main-menu a:hover{color:var(--gold2)}

.menu-cta{
  background:var(--gold);
  color:#fff!important;
  padding:13px 22px;
  border-radius:8px;
  box-shadow:0 8px 18px rgba(0,0,0,.12);
}

.menu-cta:hover{
  background:#C9863F;
}

.nav-toggle{
  display:none;
  background:none;
  border:0;
  width:44px;
  height:44px;
  cursor:pointer;
}

.nav-toggle span{
  display:block;
  height:3px;
  background:#fff;
  margin:6px;
  border-radius:4px;
}

/* HOME HERO */
.hero{
  padding:58px 0 64px;
  background:linear-gradient(180deg,#F7FBF8 0%,#EEF7F2 100%);
}

.hero-layout{
  display:grid;
  grid-template-columns:1fr .96fr;
  align-items:center;
  gap:58px;
}

.eyebrow{
  color:var(--gold);
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:2px;
  margin:0 0 14px;
}

h1{
  font-size:clamp(38px,5vw,62px);
  line-height:1.07;
  margin:0 0 22px;
  letter-spacing:-1.2px;
  color:#08251E;
}

h2{
  font-size:clamp(30px,3.5vw,44px);
  line-height:1.15;
  margin:0 0 18px;
  color:#08251E;
}

h3{
  font-size:22px;
  margin:0 0 10px;
  color:var(--green);
}

.lead{
  font-size:19px;
  max-width:650px;
  color:#263F38;
}

.actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:30px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:13px 24px;
  border-radius:8px;
  font-weight:900;
  border:1px solid transparent;
  cursor:pointer;
  transition:.2s;
}

.btn.primary{
  background:var(--green);
  color:#fff;
}

.btn.primary:hover{
  background:var(--green-dark);
  transform:translateY(-1px);
}

.btn.secondary{
  border-color:var(--green);
  color:var(--green);
  background:#fff;
}

.btn.secondary:hover{
  background:var(--green);
  color:#fff;
}

.hero-image img{
  border-radius:20px;
  box-shadow:var(--shadow);
  aspect-ratio:4/3;
  width:100%;
  object-fit:cover;
  filter:contrast(1.08) brightness(1.03) saturate(1.04);
}

/* VALUES */
.values{
  padding:28px 0 48px;
  background:#fff;
}

.value-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.value-card,
.service-card,
.info-box,
.notice,
.contact-card{
  background:var(--soft);
  border:1px solid var(--line);
  border-radius:16px;
  padding:28px;
  box-shadow:var(--shadow-soft);
}

.value-card{
  display:flex;
  gap:18px;
  min-height:165px;
}

.value-card:hover,
.service-card:hover{
  transform:translateY(-3px);
  transition:.25s ease;
  box-shadow:var(--shadow);
}

.round-icon{
  flex:0 0 56px;
  width:56px;
  height:56px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:var(--green);
  color:var(--gold2);
  font-size:27px;
  font-weight:bold;
}

.value-card p,
.service-card p,
.info-box p,
.notice p{
  color:#1F3C34;
  margin:0;
}

/* SECTIONS */
.section{
  padding:82px 0;
}

.soft{
  background:linear-gradient(180deg,#EDF6F1,#F8FCFA);
}

.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  align-items:center;
}

.image-frame img{
  border-radius:18px;
  aspect-ratio:16/10;
  object-fit:cover;
  box-shadow:var(--shadow);
  filter:contrast(1.08) brightness(1.02) saturate(1.02);
}

.center{text-align:center}

.wide{
  max-width:780px;
  margin:0 auto;
  color:var(--muted);
  font-size:18px;
}

/* PAGE HERO */
.page-hero{
  min-height:410px;
  padding:96px 0;
  display:flex;
  align-items:center;
  color:#fff;
  position:relative;
  background-size:cover!important;
  background-position:center!important;
  overflow:hidden;
}

.page-hero:before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(8,37,30,.70),rgba(8,37,30,.24));
}

.page-hero .container{
  position:relative;
  z-index:2;
}

.page-hero h1{
  color:#fff;
  text-shadow:0 3px 12px rgba(0,0,0,.30);
}

.page-hero .eyebrow{
  color:var(--gold2);
}

.page-hero p:not(.eyebrow){
  font-size:20px;
  max-width:780px;
  color:#fff;
  text-shadow:0 2px 8px rgba(0,0,0,.26);
}

/* Clearer, higher-contrast images without green cast */
.services-hero{
  background:url('https://images.unsplash.com/photo-1516574187841-cb9cc2ca948b?auto=format&fit=crop&w=1900&q=90');
}

.about-hero{
  background:url('https://images.unsplash.com/photo-1527613426441-4da17471b66d?auto=format&fit=crop&w=1900&q=90');
}

.quality-hero{
  background:url('https://images.unsplash.com/photo-1516589178581-6cd7833ae3b2?auto=format&fit=crop&w=1900&q=90');
}

.contact-hero{
  background:url('https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1900&q=90');
}

/* CARDS / CONTENT */
.cards-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.service-card{
  background:#fff;
  min-height:175px;
}

.check-list{
  padding-left:0;
  list-style:none;
  margin-top:20px;
}

.check-list li{
  padding:10px 0 10px 34px;
  position:relative;
  border-bottom:1px solid var(--line);
}

.check-list li:before{
  content:"✓";
  position:absolute;
  left:0;
  color:var(--green);
  font-weight:900;
}

.notice{
  background:#F7EADB;
  border-left:7px solid var(--gold);
}

.contact-card{
  display:grid;
  gap:14px;
  background:#fff;
}

.contact-card label{
  display:grid;
  gap:7px;
  font-weight:700;
}

.contact-card input,
.contact-card textarea{
  width:100%;
  padding:13px 14px;
  border:1px solid var(--line);
  border-radius:8px;
  font:inherit;
}

.contact-card input:focus,
.contact-card textarea:focus{
  outline:2px solid rgba(215,154,85,.35);
  border-color:var(--gold);
}

/* FOOTER */
.site-footer{
  background:var(--green);
  color:#fff;
  padding:54px 0 28px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .9fr 1fr;
  gap:42px;
}

.footer-brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:26px;
  font-weight:900;
  margin-bottom:14px;
}

.footer-brand img{
  width:76px;
}

.site-footer a{
  text-decoration:underline;
  color:#fff;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.18);
  margin-top:34px;
  padding-top:18px;
  display:flex;
  justify-content:space-between;
  gap:18px;
  color:#DCE9E4;
  font-size:14px;
}

/* RESPONSIVE */
@media(max-width:980px){
  .nav{
    min-height:78px;
  }

  .nav-toggle{
    display:block;
  }

  .main-menu{
    display:none;
    position:absolute;
    top:78px;
    left:0;
    right:0;
    background:var(--green);
    padding:18px 5%;
    flex-direction:column;
    align-items:flex-start;
    gap:16px;
  }

  .menu-open .main-menu{
    display:flex;
  }

  .hero-layout,
  .two-col,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .value-grid,
  .cards-grid{
    grid-template-columns:1fr;
  }

  .brand{
    font-size:24px;
  }

  .brand img{
    width:72px;
  }

  .footer-bottom{
    flex-direction:column;
  }

  .hero{
    padding-top:46px;
  }

  .page-hero{
    min-height:330px;
    padding:70px 0;
  }
}


/* About page icons matching home value boxes */
.about-page .service-card .round-icon{
  width:58px;
  height:58px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:var(--green);
  color:var(--gold2);
  font-size:28px;
  font-weight:bold;
  margin-bottom:18px;
}


/* Updated box background color for Services and About */
.service-card,
.value-card,
.info-box,
.notice,
.contact-card{
    background:#F2F5F3 !important;
    border:1px solid #DDE7E1 !important;
}


/* ===== Footer layout matching requested design ===== */
.site-footer{
  background:#174A3B !important;
  color:#fff !important;
  padding:38px 0 28px !important;
}

.footer-grid{
  display:grid !important;
  grid-template-columns:1.25fr 1.25fr .8fr !important;
  gap:54px !important;
  align-items:start !important;
}

.footer-brand{
  display:flex !important;
  align-items:center !important;
  gap:14px !important;
  font-size:28px !important;
  font-weight:900 !important;
  margin-bottom:18px !important;
}

.footer-brand img{
  width:76px !important;
  height:auto !important;
  object-fit:contain !important;
}

.footer-brand em{
  color:#D69A55 !important;
  font-style:normal !important;
}

.footer-left p,
.footer-contact p,
.footer-right p{
  margin:8px 0 !important;
  font-size:16px !important;
  line-height:1.55 !important;
}

.footer-contact h3{
  margin:22px 0 20px !important;
  color:#fff !important;
  font-size:17px !important;
}

.footer-contact-grid{
  display:grid !important;
  grid-template-columns:1fr 1fr !important;
  gap:34px !important;
}

.footer-right{
  padding-top:18px !important;
}

.site-footer a{
  color:#fff !important;
  text-decoration:underline !important;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.20) !important;
  margin-top:38px !important;
  padding-top:18px !important;
  display:flex !important;
  justify-content:space-between !important;
  gap:20px !important;
  color:#fff !important;
  font-size:14px !important;
}

@media(max-width:980px){
  .footer-grid,
  .footer-contact-grid{
    grid-template-columns:1fr !important;
    gap:22px !important;
  }
  .footer-right{
    padding-top:0 !important;
  }
  .footer-bottom{
    flex-direction:column !important;
  }
}


/* ===== Premium footer refinement ===== */
.site-footer{
  background:linear-gradient(180deg,#174A3B 0%, #154637 100%) !important;
  color:#ffffff !important;
  padding:42px 0 24px !important;
}

.footer-grid{
  display:grid !important;
  grid-template-columns:1.35fr 1.1fr .75fr !important;
  gap:70px !important;
  align-items:start !important;
}

.footer-brand{
  display:flex !important;
  align-items:center !important;
  gap:16px !important;
  margin-bottom:18px !important;
}

.footer-brand img{
  width:82px !important;
}

.footer-brand span{
  font-size:28px !important;
  font-weight:900 !important;
  letter-spacing:-0.5px !important;
}

.footer-brand em{
  color:#D69A55 !important;
  font-style:normal !important;
}

.footer-left p,
.footer-contact p,
.footer-right p{
  color:#ffffff !important;
  font-size:16px !important;
  line-height:1.7 !important;
  margin:10px 0 !important;
}

.footer-left strong{
  font-weight:800 !important;
}

.footer-contact h3{
  color:#ffffff !important;
  font-size:18px !important;
  margin:18px 0 22px !important;
}

.footer-contact-grid{
  display:grid !important;
  grid-template-columns:1fr 1fr !important;
  gap:42px !important;
}

.footer-right{
  text-align:left !important;
  padding-top:12px !important;
}

.site-footer a{
  color:#ffffff !important;
  text-decoration:underline !important;
  text-underline-offset:3px !important;
}

.site-footer a:hover{
  color:#E7C08A !important;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.16) !important;
  margin-top:36px !important;
  padding-top:20px !important;
  display:flex !important;
  justify-content:space-between !important;
  align-items:center !important;
  color:#F0F4F2 !important;
  font-size:14px !important;
}

@media(max-width:980px){
  .footer-grid{
    grid-template-columns:1fr !important;
    gap:30px !important;
  }

  .footer-contact-grid{
    grid-template-columns:1fr !important;
    gap:14px !important;
  }

  .footer-bottom{
    flex-direction:column !important;
    gap:10px !important;
    text-align:center !important;
  }
}
