:root{
  --green:#7cc24c;
  --green-dark:#5a8f37;
  --orange:#ffcc80;
  --text:#2b2b2b;
  --bg-light:#f5f8f2;
  --white:#ffffff;
  --deep:#153413;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }

body{
  margin:0;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--text);
  background:var(--white);
  line-height:1.6;
}

img{ max-width:100%; display:block; }
h1,h2,h3,h4{ margin-top:0; color:#1f3a1a; }

.container{
  width:90%;
  max-width:1100px;
  margin:0 auto;
}

/* Header container */

.site-header {
  position: absolute;        /* overlay on top of slider */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 300;              /* above slider */
  background: rgba(255, 255, 255, 0.55); /* 85% opacity */
  border-bottom: none;
  backdrop-filter: saturate(120%) blur(2px); /* subtle polish */
}
.site-header .logo img{
  filter: drop-shadow(0 0 8px rgba(0,0,0,0.65))
          drop-shadow(0 6px 14px rgba(0,0,0,0.4));
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
}
.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.header-inner.stacked {
  flex-direction: column;
  align-items: stretch;
  padding: 1rem 0 0.75rem;
}

/* Top row: logo left, call right */
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Larger logo */
.logo img {
  height: 88px; /* increased size */
}

/* Call Now button (top-right) */
.header-cta {
  display: flex;
  align-items: center;
}

.call-now {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  background: rgba(124,194,76,0.15);
  border: 1px solid rgba(124,194,76,0.45);
  color: #183016;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
}

.call-now:hover {
  background: rgba(124,194,76,0.25);
}

/* Navigation centered under logo */
.main-nav.centered {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);

  display: flex;
  gap: 1.2rem;
  width: auto;
  max-width: none;
  margin: 0;
  justify-content: flex-end;
}

.main-nav.centered a {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.45rem 0.2rem;
}

.main-nav.centered a:hover {
  color: var(--green-dark);
}

/* Responsive tweaks */
@media (max-width: 900px) {
  .header-top {
    flex-direction: column;
    gap: 0.6rem;
  }

  .main-nav.centered {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.9rem;
  }

  .logo img {
    height: 74px;
  }
}

@media (max-width: 900px){
  /* Stack header content */
  .header-inner{
    flex-direction: column;
    align-items: stretch;
  }

  /* Turn nav into a swipeable tab bar */
  .main-nav.centered{
    position: static;
    transform: none;

    width: 100%;
    margin-top: 0.6rem;

    justify-content: flex-start;
    gap: 0.6rem;

    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    padding: 0.35rem 0.25rem 0.15rem;
  }

  .main-nav.centered::-webkit-scrollbar{
    display: none; /* Chrome/Safari */
  }

  /* Make each link a big, tappable “pill tab” */
  .main-nav.centered a{
    flex: 0 0 auto;
    white-space: nowrap;

    padding: 0.6rem 0.85rem;
    border-radius: 999px;

    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(21,52,19,0.18);

    font-size: 0.9rem;
  }

  .main-nav.centered a:active{
    transform: translateY(1px);
  }
}

@media (max-width: 600px){
  .main-nav.centered a{
    padding: 0.55rem 0.75rem;
    font-size: 0.86rem;
  }
}



/* Buttons */
.btn-primary{
  display:inline-block;
  background:var(--green);
  color:var(--white);
  padding:0.9rem 1.6rem;
  border-radius:999px;
  text-decoration:none;
  font-weight:700;
  border:none;
  cursor:pointer;
  transition:background-color .2s ease, transform .1s ease;
}
.btn-primary:hover{ background:var(--green-dark); transform:translateY(-1px); }

.btn-call{
  display:inline-block;
  padding:0.9rem 1.2rem;
  border-radius:999px;
  text-decoration:none;
  font-weight:800;
  border:1px solid rgba(21,52,19,0.25);
  background:#fff;
  color:#183016;
  transition:transform .1s ease, background .2s ease;
}
.btn-call:hover{ transform:translateY(-1px); background:rgba(255,204,128,0.25); }
.btn-call.light{
  background:rgba(255,255,255,0.92);
  border-color:rgba(255,255,255,0.55);
}

.btn-ghost{
  display:inline-block;
  padding:0.85rem 1.35rem;
  border-radius:999px;
  color:#f1f7ed;
  border:1px solid rgba(255,255,255,.55);
  text-decoration:none;
  font-weight:700;
  background:rgba(10,20,8,.25);
  transition:background .2s ease, transform .1s ease;
}
.btn-ghost:hover{ background:rgba(10,20,8,.45); transform:translateY(-1px); }

.cta-row{
  display:flex;
  gap:0.75rem;
  flex-wrap:wrap;
  align-items:center;
}
.cta-row.center{ justify-content:center; }

/* Slider */
.slider{
  margin-top: 0;
  position:relative;
  width:100%;
  height:clamp(360px, 62vh, 680px);
  overflow:hidden;
  background:#0e220c;
}

.slides{ height:100%; position:relative; }

.slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transform:scale(1.02);
  transition:opacity 700ms ease, transform 1200ms ease;
  display:grid;
  align-items:center;
}
.slide.is-active{ opacity:1; transform:scale(1); z-index:1; }

.slide-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(10,20,8,.72), rgba(10,20,8,.35), rgba(10,20,8,.10));
}

.slide-content{
  padding-top: 7.5rem; /* space for header overlay */
  position:relative;
  z-index:2;
  width:min(1100px, 90%);
  margin:0 auto;
  padding:1rem 0;
  color:#f1f7ed;
}

.slide-content h2{
  color:#f1f7ed;
  font-size:clamp(1.6rem, 3vw, 2.6rem);
  max-width:22ch;
  margin-bottom:.6rem;
}

.slide-content p{
  margin:0 0 1.2rem;
  font-size:1.05rem;
  max-width:44ch;
  color:rgba(241,247,237,.92);
}

.slider-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:3;
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.35);
  background:rgba(10,20,8,.35);
  color:#fff;
  cursor:pointer;
  font-size:28px;
  line-height:1;
  display:grid;
  place-items:center;
}
.slider-btn:hover{ background:rgba(10,20,8,.55); }
.slider-btn.prev{ left:16px; }
.slider-btn.next{ right:16px; }

.slider-dots{
  position:absolute;
  left:0; right:0; bottom:14px;
  z-index:3;
  display:flex;
  justify-content:center;
  gap:10px;
}
.dot{
  width:10px; height:10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.65);
  background:rgba(255,255,255,.25);
  cursor:pointer;
}
.dot.is-active{ background:var(--orange); border-color:var(--orange); }
/* 1) Make slider 50% taller */
.slider{
  height: clamp(540px, 93vh, 980px); /* was ~62vh — this is ~50% taller */
}

/* 2) Push the slide content lower so it won’t sit under the header */
.slide{
  align-items: end;              /* content sits toward the bottom */
}

.slide-content{
  padding: 0 0 4.25rem;          /* bottom padding for breathing room */
}

/* Optional: keep text comfortably above the dots on smaller screens */
@media (max-width: 600px){
  .slider{
    height: clamp(520px, 85vh, 900px);
  }
  .slide-content{
    padding-bottom: 5.25rem;     /* extra room for dots + thumb reach */
  }
}

/* Header social icons */
.header-socials{
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-left: 0.6rem;
}

.social-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(21,52,19,0.25);
  color: #183016;
  transition: transform 0.15s ease, background 0.2s ease;
}

.social-link svg{
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-link:hover{
  transform: translateY(-1px);
  background: rgba(124,194,76,0.25);
}

/* Mobile: stack socials below call button if tight */
@media (max-width: 600px){
  .header-socials{
    margin-left: 0;
    margin-top: 0.4rem;
    justify-content: center;
  }
}


/* Home */
.hero{
  background:linear-gradient(135deg, var(--bg-light), #ffffff);
  padding:3.25rem 0 2.5rem;
}
.hero-inner{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:2.5rem;
  align-items:center;
}
.hero-text h1{ font-size:2.2rem; margin-bottom:1rem; }
.hero-text p{ font-size:1.05rem; max-width:32rem; margin-bottom:.8rem; }

.hero-image img{
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,.12);
}
.hero-problem{ margin-top:2.5rem; }
.hero-problem h2{ font-size:1.4rem; margin-bottom:.75rem; }

@media (max-width: 900px) {
  .slide-content {
    padding-top: 8.5rem;
  }
}


/* Parallax Reviews */
.parallax{
  position:relative;
  min-height:52vh;
  display:grid;
  place-items:center;
  background-size:cover;
  background-position:center;
  background-attachment:fixed;
  width:100%;
}
.parallax-overlay{
  position:absolute;
  inset:0;
  background:rgba(10,20,8,.55);
}
.parallax-inner{
  position:relative;
  z-index:2;
  width:min(1100px, 90%);
  margin:0 auto;
  padding:3rem 0;
}
.review-card{
  background:rgba(255,255,255,.92);
  border-radius:16px;
  padding:1.6rem 1.6rem 1.4rem;
  max-width:740px;
  box-shadow:0 12px 30px rgba(0,0,0,.18);
  border-top:6px solid var(--orange);
}
.review-quote{
  margin:0 0 .7rem;
  font-size:1.15rem;
  color:#183016;
  font-weight:750;
}
.review-meta{
  margin:0 0 1.2rem;
  color:#365a31;
  font-weight:700;
}

/* About */
.about{ padding:3.5rem 0; }
.about-inner{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:2.5rem;
  align-items:center;
}
.about-text p{ margin-bottom:.9rem; }
.about-image{ position:relative; }
.about-image img{ border-radius:12px; }
.badge-logo{
  position:absolute;
  bottom:-12px;
  right:-12px;
  width:110px;
  border-radius:50%;
  box-shadow:0 6px 16px rgba(0,0,0,.12);
  background:#fff;
}

/* Services */
.services{
  background:var(--bg-light);
  padding:3.5rem 0;
}
.services h2{ text-align:center; margin-bottom:.5rem; }
.section-intro{
  text-align:center;
  max-width:32rem;
  margin:.5rem auto 2.5rem;
}
.services-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:1.75rem;
  margin-bottom:2.5rem;
}
.service-card{
  background:var(--white);
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 4px 12px rgba(0,0,0,.06);
  display:flex;
  flex-direction:column;
}
.service-card h3{ margin:.9rem 1rem .3rem; }
.service-card p{ margin:0 1rem 1.2rem; font-size:.95rem; }

.benefits{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:1.5rem;
  margin-bottom:2.5rem;
}
.benefit{
  text-align:center;
  padding:1.25rem;
  background:#fff;
  border-radius:12px;
  border-top:4px solid var(--orange);
}

.cta-block{
  text-align:center;
  padding:1.9rem 1.5rem;
  background:var(--deep);
  border-radius:16px;
  color:#f1f7ed;
}
.cta-block h3{ color:inherit; margin-bottom:1rem; }

/* Pricing */
.pricing{ padding:3.5rem 0; }
.pricing h2{ text-align:center; margin-bottom:1rem; }

.pricing-summary{
  max-width:900px;
  margin:0 auto 2rem;
  background:var(--bg-light);
  border-radius:14px;
  padding:1.25rem 1.25rem 1rem;
  border-left:6px solid var(--green);
}
.pricing-summary p{ margin:.6rem 0; }

.pricing-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:1.2rem;
  margin-bottom:1.8rem;
}
.price-card{
  background:#fff;
  border-radius:14px;
  padding:1.1rem 1.1rem 1rem;
  box-shadow:0 4px 12px rgba(0,0,0,.06);
  border-top:4px solid var(--orange);
}
.price-card .price{
  font-size:1.25rem;
  font-weight:800;
  margin:.25rem 0 .35rem;
  color:#183016;
}
.price-card .note{
  margin:0;
  font-size:.92rem;
  color:#3b4a3a;
}
.pricing-cta{
  text-align:center;
  background:linear-gradient(135deg, var(--bg-light), #fff);
  border-radius:16px;
  padding:1.5rem 1.2rem;
  border:1px solid #e2eae0;
}

/* Contact */
.contact{ padding:3.5rem 0; }
.contact-inner{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:2.5rem;
  align-items:flex-start;
}
.service-area{ font-weight:700; margin-top:1rem; }

.contact-callout{
  margin:1.25rem 0 0;
  padding:1rem 1rem;
  border-radius:14px;
  background:rgba(255,204,128,0.25);
  border:1px solid rgba(255,204,128,0.45);
  max-width:420px;
}
.contact-callout p{ margin:0 0 .5rem; font-weight:750; color:#183016; }

.faq{ margin-top:2rem; }
.faq h3{ margin-bottom:.75rem; }
.faq-item + .faq-item{ margin-top:.75rem; }
.faq-item h4{ margin-bottom:.2rem; font-size:1rem; }

.contact-form{
  background:var(--bg-light);
  padding:1.75rem;
  border-radius:12px;
  box-shadow:0 4px 14px rgba(0,0,0,.04);
}
.form-row{ margin-bottom:1rem; }
.form-row label{ display:block; font-size:.9rem; margin-bottom:.25rem; }
.form-row input,.form-row textarea{
  width:100%;
  border-radius:8px;
  border:1px solid #cdd7c5;
  padding:.6rem .7rem;
  font-size:.95rem;
  font-family:inherit;
}
.form-row input:focus,.form-row textarea:focus{
  outline:none;
  border-color:var(--green);
  box-shadow:0 0 0 2px rgba(124,194,76,.2);
}
.form-alt{
  margin:.85rem 0 0;
  font-weight:650;
}
.form-alt a{ color:#183016; }

/* Gallery */
.gallery{
  padding:3.5rem 0 2.5rem;
  background:linear-gradient(135deg, #ffffff, var(--bg-light));
}
.gallery h2{ text-align:center; margin-bottom:.5rem; }

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:1rem;
  margin-top:1.75rem;
}
.gallery-item{
  margin:0;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 6px 18px rgba(0,0,0,.08);
}
.gallery-item img{
  width:100%;
  height:240px;
  object-fit:cover;
  transition:transform .35s ease;
}
.gallery-item img:hover{ transform:scale(1.03); }

.gallery-cta{
  margin-top:1.6rem;
  text-align:center;
}

/* Footer */
.site-footer{
  background:var(--deep);
  color:#f1f7ed;
  padding:1rem 0;
}
.footer-inner{ text-align:center; font-size:.85rem; }

/* Responsive */
@media (max-width: 980px){
  .header-inner{
    flex-wrap:wrap;
    justify-content:center;
  }
  .main-nav{ justify-content:center; }
  .header-cta{ width:100%; justify-content:center; }
}

@media (max-width: 900px){
  .hero-inner,
  .about-inner,
  .services-grid,
  .benefits,
  .pricing-grid,
  .contact-inner{
    grid-template-columns:1fr;
  }
  .hero-text h1{ font-size:1.8rem; }
  .about-image{ max-width:360px; margin:0 auto; }
  .parallax{ background-attachment:scroll; }
  .gallery-grid{ grid-template-columns:1fr 1fr; }
}

@media (max-width: 600px){
  .logo img{ height:54px; }
  .main-nav a{ margin-left:0.9rem; font-size:0.9rem; }
  .slider{ height:54vh; min-height:320px; }
  .slider-btn{ display:none; }
  .contact-form{ padding:1.25rem; }
  .gallery-grid{ grid-template-columns:1fr; }
}
/* Optional: keep your existing contact-form styles. These are just refinements for the embed wrapper. */

.contact-form-embed {
  background: var(--bg-light);
  padding: 1.75rem;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,.04);
}

.embed-title {
  margin: 0 0 0.4rem;
}

.embed-note {
  margin: 0 0 1rem;
  font-size: 0.95rem;
}

.embed-note a {
  color: #183016;
  font-weight: 700;
  text-decoration: underline;
}

/* If you want the iframe to visually match the site a bit more */
.contact-form-embed iframe {
  border-radius: 10px;
  background: #fff;
}
/* CONTACT OPTIONS (right column in Contact section) */
.contact-options {
  background: var(--bg-light);
  padding: 1.75rem;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,.04);
}

.contact-actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.btn-email {
  display: inline-block;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 750;
  border: 1px solid rgba(21,52,19,0.18);
  background: rgba(255,204,128,0.25);
  color: #183016;
  transition: transform .1s ease, background .2s ease;
  text-align: center;
}

.btn-email:hover {
  transform: translateY(-1px);
  background: rgba(255,204,128,0.35);
}

/* FLOATING BUTTON (bottom-right, follows scroll) */
.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.2px;

  background: var(--green);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 12px 28px rgba(0,0,0,0.22);

  transition: transform .12s ease, background-color .2s ease;
}

.floating-cta:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

/* Optional: slightly smaller on phones */
@media (max-width: 600px) {
  .floating-cta {
    right: 14px;
    bottom: 14px;
    padding: 0.85rem 1rem;
  }
}

