/* RESET & NORMALIZE */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #282C2D;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #25612A;
  text-decoration: none;
  transition: color 0.15s;
}
a:hover, a:focus {
  color: #367650;
  outline: none;
}
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}
:root {
  --color-primary: #25612A;
  --color-secondary: #E2F7CB;
  --color-accent: #599D7A;
  --color-bg: #FFF;
  --color-card: #FFF;
  --color-footer: #25612A;
  --color-footer-text: #fff;
  --color-cta: #367650;
  --color-cta-hover: #25612A;
  --color-shadow: rgba(38,97,42,0.08);
  --radius: 16px;
  --transition: all 0.2s cubic-bezier(.4,0,0,1);
}

/* TYPOGRAPHY */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@700;900&family=Roboto:wght@400;500;700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Nunito', Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--color-primary);
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 14px;
}
p, li, th, td {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #282c2d;
}
p {
  margin-bottom: 18px;
}
strong {
  font-weight: 700;
}

/* CONTAINER & SECTIONS */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.features-grid, .services-list, .faq-accordion, .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}

/* HEADER & NAVIGATION */
header {
  background: #FFF;
  box-shadow: 0 2px 16px 0 var(--color-shadow);
  position: relative;
  z-index: 1000;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 20px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
}
header nav a {
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.18s;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}
header nav a:hover,
header nav a:focus {
  color: var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
}
.cta-btn {
  background: var(--color-accent);
  color: #fff;
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  border-radius: 30px;
  padding: 12px 34px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 10px 0 rgba(38,97,42,0.12);
  transition: background 0.18s, color 0.15s, transform 0.18s;
  border: none;
  outline: none;
  box-sizing: border-box;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: var(--color-primary);
  color: #fff;
  font-size: 2rem;
  padding: 8px 16px;
  border-radius: 6px;
  transition: background 0.15s;
  margin-left: 18px;
  z-index: 1100;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: var(--color-accent);
  outline: 2px solid var(--color-accent);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  transform: translateX(-100vw);
  transition: var(--transition);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: #25612A;
  color: #fff;
  font-size: 2.1rem;
  margin: 22px 22px 0 0;
  border-radius: 50%;
  padding: 6px 14px;
  cursor: pointer;
  transition: background 0.15s;
}
.mobile-menu-close:hover { background: var(--color-accent); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100vw;
  padding: 40px 32px 0 32px;
}
.mobile-nav a {
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 1.26rem;
  font-weight: 900;
  color: var(--color-primary);
  letter-spacing: 0.8px;
  padding: 12px 0;
  border-bottom: 2px solid transparent;
  border-radius: 3px;
  transition: color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-accent);
  background: var(--color-secondary);
}

@media (max-width: 1180px) {
  header .container {
    padding: 16px 8px;
  }
}
@media (max-width: 1024px) {
  header nav {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px 10px;
  }
}
@media (max-width: 850px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cta-btn {
    font-size: 1rem;
    padding: 10px 18px;
  }
}

/* HERO STYLES */
section:first-of-type {
  background: var(--color-secondary);
  border-radius: 0 0 var(--radius) var(--radius);
}
section:first-of-type .content-wrapper {
  align-items: flex-start;
  max-width: 650px;
  padding: 30px 0 8px 0;
}
section:first-of-type h1 {
  color: var(--color-primary);
  font-size: 2.7rem;
  line-height: 1.12;
}
section:first-of-type p {
  font-size: 1.1rem;
  color: #25612A;
}

@media (max-width: 650px) {
  section:first-of-type .content-wrapper {
    padding: 18px 0 0 0;
    max-width: 100%;
  }
  section:first-of-type h1 {
    font-size: 2rem;
  }
}

/* FEATURE CARDS */
.features-grid > div {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 6px 32px 0 var(--color-shadow);
  padding: 28px 26px;
  min-width: 220px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: transform 0.18s, box-shadow 0.18s;
  margin-bottom: 20px;
  position: relative;
}
.features-grid > div:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 36px 0 rgba(87,186,87,.10);
}
.features-grid img {
  height: 40px;
  width: 40px;
}
.features-grid h3 {
  margin: 0;
  color: #367650;
  font-size: 1.12rem;
}

/* SERVICE CARDS & LISTS */
.services-list > div {
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 2px 10px 0 var(--color-shadow);
  padding: 20px 24px;
  margin-bottom: 20px;
  min-width: 190px;
  flex: 1 1 210px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.services-list > div:hover {
  box-shadow: 0 4px 18px 0 rgba(54,118,80,0.05);
  transform: scale(1.03);
}

/* TESTIMONIALS */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 16px 0 var(--color-shadow);
  padding: 20px 30px;
  flex: 1 1 270px;
  min-width: 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .15s;
  border-left: 6px solid var(--color-primary);
}
.testimonial-card p {
  color: #144e19;
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.6;
}
.testimonial-card span {
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--color-accent);
  margin-top: 16px;
}
.testimonial-card:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 32px 0 rgba(38,97,42,0.15);
}

/* FAQ ACCORDION */
.faq-accordion > div {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px 0 var(--color-shadow);
  margin-bottom: 20px;
  padding: 24px 28px;
  flex: 1 1 230px;
  transition: box-shadow .18s, transform .15s;
}
.faq-accordion > div:hover {
  box-shadow: 0 8px 32px 0 rgba(54,118,80,0.12);
  transform: scale(1.02);
}

/* TABLES */
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 14px var(--color-shadow);
  margin-bottom: 18px;
  overflow: hidden;
}
thead th {
  background: var(--color-secondary);
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 1.05rem;
  color: var(--color-primary);
  font-weight: 800;
  padding: 14px 10px;
  text-align: left;
}
tbody tr {
  border-bottom: 1px solid #f1f1f1;
}
tbody td {
  padding: 13px 10px;
  color: #282c2d;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
table tr:last-child td { border-bottom: none; }

/* FOOTER */
footer {
  background: var(--color-footer);
  color: var(--color-footer-text);
  padding: 48px 0 34px 0;
  border-radius: var(--radius) var(--radius) 0 0;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 46px 38px;
  padding: 0 20px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.footer-brand p {
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 1.05rem;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #E2F7CB;
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transition: color 0.14s;
  padding: 2px 0;
}
.footer-nav a:hover {
  color: #fff;
}
.footer-contact p {
  color: #fff;
  font-size: 0.99rem;
  margin-bottom: 4px;
}
.footer-contact a {
  color: #fff;
  text-decoration: underline;
  transition: color .13s;
}
.footer-contact a:hover {
  color: var(--color-accent);
}

@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 30px 0;
    align-items: flex-start;
  }
  .footer-nav {
    flex-direction: row;
    gap: 30px;
    margin: 18px 0;
  }
}

/* CONTACT DETAILS SECTION */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 1rem;
  margin-bottom: 12px;
}
.contact-details p {
  display: flex;
  align-items: center;
  gap: 13px;
}
.contact-details img {
  width: 22px;
  height: 22px;
}
.google-map {
  background: var(--color-secondary);
  padding: 22px 16px;
  border-radius: var(--radius);
  min-width: 240px;
  flex: 1 1 240px;
  margin-bottom: 10px;
}

/* SUCCESS PAGE */
.text-section {
  align-items: center;
  justify-content: center;
  text-align: center;
}
.text-section h1 {
  margin-bottom: 20px;
}

/* MISCELLANEOUS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 2px 18px 0 var(--color-shadow);
  position: relative;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #25612A;
  color: #fff;
  z-index: 3000;
  box-shadow: 0 -2px 24px 0 rgba(87,186,87,.17);
  padding: 25px 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 36px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  animation: cookieIn 0.4s cubic-bezier(.4,0,0,1);
}
@keyframes cookieIn {
  0% { transform: translateY(160px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 16px;
  margin-left: 18px;
}
.cookie-banner button {
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 800;
  border-radius: 26px;
  padding: 9px 24px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.17s, color .18s;
}
.cookie-banner .cookie-accept {
  background: var(--color-accent);
  color: #fff;
}
.cookie-banner .cookie-accept:hover {
  background: var(--color-cta);
}
.cookie-banner .cookie-reject {
  background: #fff;
  color: var(--color-primary);
  border: 2px solid var(--color-accent);
}
.cookie-banner .cookie-reject:hover {
  color: #fff;
  background: var(--color-primary);
}
.cookie-banner .cookie-settings {
  background: var(--color-cta);
  color: #fff;
}
.cookie-banner .cookie-settings:hover {
  background: #174419;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  z-index: 4000;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(34, 61, 44, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalIn .28s cubic-bezier(.4,0,0,1);
}
@keyframes cookieModalIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal .cookie-modal-content {
  background: #fff;
  color: #282c2d;
  border-radius: var(--radius);
  max-width: 390px;
  min-width: 310px;
  padding: 42px 32px 38px 32px;
  box-shadow: 0 6px 54px 0 rgba(38,97,42,0.10);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: cookieModalPop .19s cubic-bezier(.4,0,0,1);
}
@keyframes cookieModalPop {
  0% { transform: scale(0.93); opacity:0; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 12px; right: 12px;
  background: #25612A;
  color: #fff;
  font-size: 1.5rem;
  border-radius: 50%;
  padding: 6px 12px;
  border: none;
  cursor: pointer;
  transition: background 0.14s;
}
.cookie-modal .cookie-modal-close:hover {
  background: var(--color-accent);
}
.cookie-category {
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.cookie-category label {
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-primary);
  cursor: pointer;
}
.cookie-toggle {
  width: 32px;
  height: 18px;
  border-radius: 16px;
  background: var(--color-secondary);
  border: 2px solid #367650;
  position: relative;
  transition: background 0.13s;
}
.cookie-toggle input[type="checkbox"] {
  display: none;
}
.cookie-toggle span {
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  border: 2px solid #367650;
  box-shadow: 0 1px 4px rgba(46,90,47,0.10);
  transition: left 0.16s;
}
.cookie-toggle input[type="checkbox"]:checked + span {
  left: 14px;
  background: var(--color-accent);
  border: 2px solid var(--color-accent);
}
.cookie-category p {
  font-size: 0.97rem;
  color: #515151;
  margin-top: 2px;
}
.cookie-modal-actions {
  margin-top: 18px;
  display: flex;
  gap: 14px;
}
.cookie-modal-actions button {
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 22px;
  padding: 8px 22px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  background: var(--color-accent);
  color: #fff;
  transition: background 0.15s;
}
.cookie-modal-actions .cookie-cancel {
  background: #fff;
  color: var(--color-primary);
  border: 2px solid var(--color-accent);
}
.cookie-modal-actions .cookie-cancel:hover {
  background: var(--color-secondary);
}
.cookie-modal-actions .cookie-save:hover {
  background: var(--color-cta);
}

/* RESPONSIVE DESIGN */
@media (max-width: 820px) {
  .features-grid, .services-list, .faq-accordion, .testimonial-slider {
    flex-direction: column;
    gap: 20px;
  }
  .content-wrapper {
    gap: 18px;
  }
}
@media (max-width: 700px) {
  .container {
    max-width: 97vw;
    padding: 0 8px;
  }
  section {
    padding: 30px 6px;
  }
  .testimonial-card, .features-grid > div, .services-list > div,
  .faq-accordion > div, .card {
    min-width: unset;
    padding: 18px 12px;
  }
  table thead th, table tbody td {
    font-size: 0.97rem;
    padding: 6px 6px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding: 20px 7px;
  }
  .cookie-banner .cookie-buttons {
    flex-direction: column;
    gap: 10px;
    margin: 10px 0 0 0;
  }
}
@media (max-width: 768px) {
  .content-wrapper,
  .content-grid,
  .text-image-section {
    flex-direction: column;
    gap: 18px !important;
    align-items: stretch;
  }
  .text-image-section {
    align-items: center;
  }
  .container {
    padding: 0 4vw;
  }
  .testimonial-card {
    flex: 1 1 100%;
    min-width: 150px;
    padding: 16px 10px;
  }
}
@media (max-width: 500px) {
  html { font-size: 16px; }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.18rem; }
  .cta-btn {
    font-size: 0.97rem;
    padding: 10px 13px;
  }
  .cookie-modal .cookie-modal-content {
    min-width: 90vw;
    padding: 22px 10px 24px 10px;
  }
}

/* ANIMATIONS & MICROINTERACTIONS */
.cta-btn, .footer-nav a, .mobile-menu-toggle, .mobile-menu-close, .cookie-banner button, .cookie-modal-actions button {
  transition: background 0.18s, color 0.18s, transform 0.17s, box-shadow 0.16s;
}
.card, .features-grid > div, .services-list > div, .testimonial-card {
  transition: box-shadow 0.17s, transform 0.19s;
}
.card:hover, .features-grid > div:hover, .services-list > div:hover, .testimonial-card:hover {
  transform: scale(1.01) translateY(-2px);
  box-shadow: 0 6px 40px 0 rgba(54,118,80,0.10);
}

::-webkit-input-placeholder {
  color: #97b7a0;
}
::-moz-placeholder {
  color: #97b7a0;
}
:-ms-input-placeholder {
  color: #97b7a0;
}
::placeholder {
  color: #97b7a0;
}

/* END */
