:root{
  --primary: #1F7A3E;        /* main green */
  --secondary: #f5f8d8;      /* pastel green background */
  --accent: #0B2B17;         /* deep green */
  --accent2: #AEAD70;        /* light brown */
  --dark: #0F172A;
  --muted: #475569;
  --white: #FFFFFF;
  --soft: #F6F8FB;
  --border: rgba(255,255,255,.14);

  --radius: 2px;
  --shadow: 0 12px 40px rgba(0,0,0,.12);

  --padY: clamp(56px, 6vw, 96px);
  --padX: clamp(14px, 3vw, 28px);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  color: var(--dark);
  background: var(--white);
}

/* Utility */
.section-pad{ padding: var(--padY) 0; }
.section-pad-tight{ padding: clamp(36px, 4.5vw, 72px) 0; }
.big-container{ padding-left: var(--padX); padding-right: var(--padX); }
.kicker{
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  font-size: 14px;
}
.h1-hero{
  font-weight: 900;
  line-height: 1.02;
  font-size: clamp(40px, 4.2vw, 72px);
  margin: 0 0 14px 0;
  letter-spacing: -0.02em;
}
.hero-sub{
  font-size: clamp(18px, 1.4vw, 22px);
  color: rgba(255,255,255,.90);
  margin: 0 0 22px 0;
  max-width: 56ch;
}
.h2{
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: clamp(28px, 2.4vw, 44px);
  margin: 0 0 14px 0;
}
.lead{
  font-size: clamp(16px, 1.15vw, 18px);
  color: var(--muted);
  max-width: 70ch;
}

/* Topbar */
.topbar{
  background: var(--secondary);
  border-bottom: 1px solid rgba(15,23,42,.08);
}
.topbar-slogan{
  font-weight: 700;
  color: #0b3b1d;
}
.topbar-link{
  color: #0b3b1d;
  text-decoration: none;
  font-weight: 700;
}
.topbar-link:hover{ text-decoration: underline; }

/* Navbar */
.mainnav{
  background: var(--accent2);
  box-shadow: 0 8px 30px rgba(0,0,0,.16);
}
.site-logo{
  width: 300px;
  height: 100px;
  object-fit: contain;
  object-position: left center;
  max-width: 70vw; /* keeps it safe on mobile */
}
@media (max-width: 991.98px){
  .site-logo{ width: 220px; height: 74px; }
}

.nav-modern .nav-link{
  color: rgba(255,255,255,.88);
  font-weight: 800;
  font-size: 16px;
  padding: 14px 14px;
  position: relative;
}
.nav-modern .nav-link:hover{ color: #fff; }
.nav-modern .nav-link.active{
  color: #fff;
}
.nav-modern .nav-link.active::after{
  content:"";
  position:absolute;
  left: 14px;
  right: 14px;
  bottom: 8px;
  height: 3px;
  background: var(--primary);
  border-radius: 99px;
}

/* Buttons */
.btn{
  border-radius: var(--radius) !important;
  font-weight: 900;
  letter-spacing: .01em;
  padding: 14px 18px;
  font-size: 16px;
}
.btn-cta{
  background: var(--primary);
  border: 2px solid var(--primary);
  color: #fff;
}
.btn-cta:hover{ filter: brightness(0.95); color:#fff; }
.btn-ghost{
  background: transparent;
  border: 2px solid rgba(255,255,255,.75);
  color: #fff;
}
.btn-ghost:hover{
  background: rgba(255,255,255,.10);
  color:#fff;
}

/* HERO (1920x700) + Ken Burns */
.hero{
  position: relative;
  overflow: hidden;
  min-height: 700px;
  background: #0b1a10;
}
@media (max-width: 991.98px){
  .hero{ min-height: 640px; }
}
.hero .carousel,
.hero .carousel-inner,
.hero .carousel-item{
  height: 700px;
}
@media (max-width: 991.98px){
  .hero .carousel,
  .hero .carousel-inner,
  .hero .carousel-item{
    height: 640px;
  }
}
.hero-slide{
  position: relative;
  height: 100%;
}
.hero-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  animation: kenburns 18s ease-in-out infinite;
}
.hero-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,.70) 0%, rgba(0,0,0,.35) 55%, rgba(0,0,0,.15) 100%);
}
@keyframes kenburns{
  0%   { transform: scale(1.05) translate3d(0,0,0); }
  50%  { transform: scale(1.16) translate3d(-1.5%, -1%, 0); }
  100% { transform: scale(1.05) translate3d(0,0,0); }
}
.hero-content{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  z-index: 2;
}
.hero-card{
  background: rgba(15,23,42,.18);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  padding: clamp(18px, 2.2vw, 34px);
  border-radius: var(--radius);
  max-width: 820px;
}
.hero-feature{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  color: rgba(255,255,255,.92);
  margin-top: 14px;
}
.hero-feature i{
  color: #b9f6c9;
  margin-top: 4px;
}

/* Weather widget placeholder area */
.weather-slot{
  background: var(--soft);
  border-bottom: 1px solid rgba(15,23,42,.08);
}

/* About */
.about-wrap{
  background: var(--soft);
}
.about-card{
  background:#fff;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 18px 50px rgba(2,6,23,.08);
  padding: clamp(18px, 2vw, 30px);
}
.benefits{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}
@media (max-width: 575.98px){
  .benefits{ grid-template-columns: 1fr; }
}
.benefit{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  padding: 14px;
  border: 1px solid rgba(15,23,42,.08);
  background: #fff;
}
.benefit i{ color: var(--primary); margin-top: 3px; }

/* Video Background CTA */
.video-cta{
  position: relative;
  overflow: hidden;
  min-height: 360px;
  background: #0a1a10;
}
.video-cta .yt-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  pointer-events:none;
  filter: saturate(1.05) contrast(1.05);
}
.video-cta .yt-bg iframe{
  position:absolute;
  top:50%;
  left:50%;
  width: 120vw;
  height: 120vh;
  transform: translate(-50%, -50%);
  border: 0;
}
.video-cta .video-overlay{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.55);
}
.video-cta .video-inner{
  position: relative;
  z-index: 2;
  color:#fff;
}
.video-cta .video-inner .h2{ color:#fff; }
.video-cta .video-inner p{ color: rgba(255,255,255,.92); font-size: 18px; max-width: 70ch; }

/* Services */
.service-grid .service{
  background:#fff;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 18px 50px rgba(2,6,23,.06);
  padding: 22px;
  height: 100%;
}
.service .icon{
  font-size: 28px;
  color: var(--primary);
}
.service h3{
  font-weight: 900;
  margin: 14px 0 10px 0;
  font-size: 20px;
}
.service p{
  color: var(--muted);
  margin: 0 0 12px 0;
}

/* Testimonials */
.testimonial{
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 18px 50px rgba(2,6,23,.06);
  padding: 22px;
  height: 100%;
}
.testimonial .stars{ color: #16a34a; }
.testimonial .quote{ font-weight: 800; font-size: 18px; margin: 10px 0 14px; }
.testimonial .name{ color: var(--muted); font-weight: 800; }

/* CTA Bar */
.cta-bar{
  background: var(--primary);
  color:#fff;
}
.cta-bar .h2{ color:#fff; margin: 0; }
.cta-bar p{ margin: 6px 0 0; color: rgba(255,255,255,.92); }

/* FAQ */
.accordion-button{
  font-weight: 900;
  font-size: 16px;
  padding: 18px 18px;
  border-radius: var(--radius) !important;
}
.accordion-item{
  border: 1px solid rgba(15,23,42,.10);
  border-radius: var(--radius);
  overflow:hidden;
  margin-bottom: 12px;
}

/* Footer */
.site-footer{
  background: #07150D;
  color: rgba(255,255,255,.86);
}
.footer-logo{
  width: 260px;
  height: 86px;
  object-fit: contain;
}
.footer-title{
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 14px;
  color:#fff;
}
.footer-text{ color: rgba(255,255,255,.78); font-size: 16px; }
.footer-links{ list-style:none; padding:0; margin:0; }
.footer-links li{ margin: 10px 0; }
.footer-links a{
  color: rgba(255,255,255,.82);
  text-decoration:none;
  font-weight: 800;
}
.footer-links a:hover{ text-decoration: underline; color:#fff; }

.footer-contact{ list-style:none; padding:0; margin:0; }
.footer-contact li{ margin: 10px 0; color: rgba(255,255,255,.82); }
.footer-contact a{ color: rgba(255,255,255,.88); text-decoration:none; font-weight: 800; }
.footer-contact a:hover{ text-decoration: underline; color:#fff; }

.footer-badge{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.88);
  font-weight: 900;
  margin-right: 8px;
  margin-bottom: 8px;
  padding: 10px 12px;
  border-radius: var(--radius);
}

.footer-gallery{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.footer-thumb{
  display:block;
  border: 1px solid rgba(255,255,255,.14);
  overflow:hidden;
  border-radius: var(--radius);
}
.footer-thumb img{
  width:100%;
  height: 76px;
  object-fit: cover;
  display:block;
  transform: scale(1.02);
}
.footer-thumb:hover img{ transform: scale(1.08); transition: transform .22s ease; }

.footer-social a{
  width: 46px;
  height: 46px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color:#fff;
  margin-right: 10px;
  border-radius: var(--radius);
  text-decoration:none;
  font-size: 18px;
}
.footer-social a:hover{ filter: brightness(1.05); }

.bottom-bar{
  border-top: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.22);
  color: rgba(255,255,255,.85);
  font-weight: 800;
}
.design-by{
  color: rgba(255,255,255,.88);
  text-decoration: underline;
  font-weight: 900;
}

/* Forms */
.form-control, .form-select{
  border-radius: var(--radius) !important;
  padding: 14px 14px;
  font-size: 16px;
}
.form-label{
  font-weight: 900;
}
.alert{
  border-radius: var(--radius);
  font-weight: 800;
}

/* Small helpers */
.w-lg-auto{ width: auto; }

/* Full-width seamless weather widget */
.weather-slot--full {
  padding: 0 !important;
  margin: 0 !important;
  background: transparent;
  border: 0;
}

.weather-widget-wrap {
  width: 100%;
  margin: 0;
  padding: 0;
}

.weather-widget-wrap > div {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}

/* Mobile topbar fix: keep phone/email clean, no orphan icons */
.topbar-right{
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar-link{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap; /* prevents icon from splitting from text */
  line-height: 1.2;
}

.topbar-link i{
  margin: 0 !important; /* overrides bootstrap me-2 spacing safely */
}

/* Mobile: tighter topbar + smaller text so it doesn't dominate */
@media (max-width: 575.98px){
  .topbar{
    padding: 8px 0 !important;
  }
  .topbar-slogan{
    font-size: 14px;
    line-height: 1.2;
  }
  .topbar-right{
    justify-content: center;
    gap: 14px;
  }
  .topbar-link{
    font-size: 14px;
  }
}

/* Mobile navbar height fix: reduce the tall logo/nav padding */
@media (max-width: 991.98px){
  .mainnav{
    padding-top: 6px;
    padding-bottom: 6px;
  }
  .navbar-brand{
    padding-top: 0;
    padding-bottom: 0;
  }
  .site-logo{
    width: 210px;
    height: 64px;
  }
  .navbar-toggler{
    padding: 10px 12px;
    border-radius: 2px;
  }
}

/* HERO mobile fix: stop top/bottom clipping */
@media (max-width: 575.98px){
  /* make the hero taller on small screens */
  .hero{
    min-height: 820px !important;
  }
  .hero .carousel,
  .hero .carousel-inner,
  .hero .carousel-item{
    height: 820px !important;
  }

  /* instead of centering, start the hero content at the top */
  .hero-content{
    align-items: flex-start !important;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  /* keep the card fully inside the hero with breathing room */
  .hero-card{
    width: 100%;
    max-width: 100%;
    margin-top: 0;
    margin-bottom: 0;
  }
}
