:root {
  --green: #aad524;
  /* brochure green */
  --black: #333333;
  --muted: #444;
  --bg: #fbfbf7;
  /* soft off-white */
  --container: 1100px;
  --gap: 1.25rem;
}

/* Reset & base */
* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, sans-serif;
  color: var(--black);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  scroll-behavior: smooth;
}

/* Small top nav */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  justify-content: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.6);
  padding: 0.35rem 0.5rem;
  backdrop-filter: blur(4px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.site-nav a:hover {
  color: var(--black)
}

/* HERO / Banner */
.hero-banner {
  position: relative;
  background: linear-gradient(180deg, var(--green) 40%, #e9f4d7 100%);
  color: var(--black);
  padding: clamp(2rem, 6vw, 4rem) 1rem;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Angled black overlay to mimic brochure */
.hero-overlay {
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -1px;
  height: 20px;
  background: #111;
  clip-path: polygon(0 15%, 12% 0, 88% 0, 100% 15%, 100% 100%, 0 100%);
  transform: translateY(20%);
  z-index: 1;
  opacity: 0.98;
  pointer-events: none;
}

/* inner content above overlay */
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  width: 100%;
  padding: 0 1rem;
}

/* logo and brand text */
.logo {
  display: block;
  margin: 0 auto 0.6rem auto;
  width: clamp(90px, 20vw, 220px);
  height: auto;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.15));
}

.brand {
  font-size: clamp(1.75rem, 6vw, 3.5rem);
  letter-spacing: 1px;
  margin: 0.15rem 0;
  font-weight: 700;
}

.tagline {
  margin: 0.25rem 0 0.9rem;
  font-size: clamp(0.95rem, 2.6vw, 1.2rem);
  color: #0f0f0f;
  font-weight: 300;
}

/* main container */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.25rem;
}

/* sections */
.section {
  padding: clamp(1.1rem, 3.5vw, 2rem) 0;
  background: transparent
}

/* Problems */
.problems .question {
  color: var(--green);
  text-align: center;
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

/* bullets */
.bullets {
  max-width: 860px;
  margin: 0.5rem auto 0;
  padding-left: 1.1rem;
  list-style: disc;
  color: var(--muted);
  font-size: clamp(0.98rem, 2.4vw, 1.1rem);
  line-height: 1.9;
}

/* highlight section */
.highlight {
  background: #fff;
  margin-top: -40px;
  position: relative;
  z-index: 3;
  border-radius: 6px;
  box-shadow: 0 6px 24px rgba(10, 10, 10, 0.04);
  padding-top: clamp(1.5rem, 3.2vw, 2rem);
  padding-bottom: clamp(1.2rem, 3vw, 1.6rem);
}

.highlight-title {
  color: var(--green);
  text-align: center;
  font-size: clamp(1.05rem, 3.8vw, 1.6rem);
  font-weight: 800;
  margin: 0 0 1rem;
  letter-spacing: 0.6px;
}

/* services grid / cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.service-card {
  background: #fff;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(10, 10, 10, 0.04);
  min-height: 140px;
}

.service-card h4 {
  margin: 0 0 0.25rem
}

.service-card .muted {
  color: var(--muted);
  margin: 0 0 0.6rem;
  font-size: 0.98rem
}

/* accordion */
.accordion-btn {
  display: inline-block;
  background: transparent;
  border: 1px solid rgba(170, 213, 36, 0.14);
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 0.4rem;
}

.accordion-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 0.97rem;
}

/* CTA row */
.cta-row {
  margin-top: 1.25rem;
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.btn.primary {
  background: var(--black);
  color: var(--green);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08)
}

.btn.primaryhome {
  width: 300px;
  max-width: 1100px;
  background: var(--black);
  color: var(--green);
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08)
}

.btn.ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid rgba(0, 0, 0, 0.06)
}

/* more-info */
.more-info .placeholder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.card {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 1rem;
  min-height: 90px;
  box-shadow: 0 6px 16px rgba(10, 10, 10, 0.04);
}

/*Contact - Form*/


 #contactForm {
   max-width: 1100px;
   margin: 20px auto;
   background: #f5f5f5;
   padding: 20px;
   border-radius: 20px;
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
 }

 #contactForm h2 {
   text-align: center;
   margin-bottom: 15px;
 }

 .form-group {
   margin-bottom: 15px;
  border: 1px solid #ccc;
    /* Basic border */
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
 }

 #contactForm input,
 #contactForm textarea {
   width: 100%;
   padding: 10px;
   border: 1px solid #f5f5f5;
   border-radius: 8px;
   font-size: 14px;
   font-family: inherit;
 }

 #sendBtn {
   width: 100%;
   background: var(--black);;
   color: var(--green);;
   padding: 10px;
   border: none;
   border-radius: 20px;
   cursor: pointer;
   transition: 0.3s;
 }

 #sendBtn:hover {
   background: #f5f5f5;
   
 }




/* footer/contact */
.footer {
  background: var(--bg);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.contact {
  max-width: 1100px;
    margin: 20px auto;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-left h4 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem
}

.contact-line {
  margin: 0.15rem 0;
  color: var(--muted)
}

.contact-line a {
  color: var(--black);
  text-decoration: none;
  font-weight: 600
}

.small-note {
  color: var(--muted);
  margin: 0
  
}



/* Animations (fade/slide and reveal) */
.fade-in,
.slide-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible,
.slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-from-top {
  opacity: 0;
  transform: translateY(-40px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.reveal-from-top.visible {
  opacity: 1;
  transform: translateY(0);
}

/* SVG icon styling */
.icon {
  width: 18px;
  height: 18px;
  stroke-width: 2;
  vertical-align: middle;
  margin-right: 6px;
  color: var(--green);
}

.contact-line a:hover {
  color: var(--green)
}

/* Responsive tweaks */
@media (max-width:820px) {
  .hero-overlay {
    height: 90px;
    transform: translateY(15%)
  }

  .site-nav {
    padding: 0.25rem 0.5rem
  }
}

@media (max-width:600px) {
  .brand {
    font-size: clamp(1.5rem, 8vw, 2.3rem)
  }

  .hero-overlay {
    clip-path: polygon(0 8%, 18% 0, 82% 0, 100% 8%, 100% 100%, 0 100%);
    transform: translateY(8%);
    height: 30px
  }

  .highlight {
    margin-top: -22px;
    padding-top: 1rem
  }

  .site-nav {
    display: none
  }

  /* Make nav buttons full width if you use inline buttons */
  .btn {
    width: 100%;
    text-align: center
  }
}
