/* RESET & BASE STYLES -------------------------------------------------- */
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;
}
html {
  font-size: 16px;
  height: 100%;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #253330;
  background: #F7F9F7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
a { color: inherit; text-decoration: none; transition: color .2s; }
a:focus { outline: 2px solid #38A399; }
input,button, textarea, select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
}
ul, ol { list-style: none; }

/* TYPOGRAPHY --------------------------------------------------- */
h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.625rem; /* 42px */
  color: #25526E;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -1px;
  line-height: 1.15;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem; /* 32px */
  color: #33633d;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.2;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.375rem; /* 22px */
  color: #25526E;
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.2;
}
p, li, td, th, address {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #253330;
  margin-bottom: 10px;
}
strong {
  font-weight: 700;
  color: #27794E;
}

/* LAYOUT: CONTAINERS and SPACING ---------------------------------------------- */
.container {
  width: 100%;
  max-width: 1150px;
  padding: 0 20px;
  margin: 0 auto;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 2px 24px 0 rgba(52,72,41, 0.05);
  position: relative;
}

@media (max-width: 768px) {
  .section {
    padding: 24px 8px;
    margin-bottom: 36px;
    border-radius: 18px;
  }
  .container {
    padding: 0 8px;
  }
}

  /* FLEX LAYOUT UTILS --------------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #F7F9F7;
  border-radius: 24px;
  box-shadow: 0 2px 8px 0 rgba(67,91,64, 0.07);
  padding: 24px;
  min-width: 260px;
  flex: 1 1 320px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section,
.text-section { /* fallback for text-only blocks */
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .content-wrapper,
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px 20px 28px;
  margin-bottom: 24px;
  background: #F1F5F9;
  border-radius: 22px 42px 26px 36px;
  box-shadow: 0 2px 12px 0 rgba(29,44,13,0.09);
  border: 1px solid #dce5e0;
  min-width: 220px;
  max-width: 510px;
  transition: box-shadow .2s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 22px 0 rgba(29,60,24,.13);
}
.testimonial-card p {
  color: #214125;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #477863;
  font-weight: 500;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.job-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 12px 0 24px 0;
}
.job-card {
  background: #FAFDF7;
  border: 1px solid #c7ded1;
  border-radius: 24px 38px 22px 20px;
  box-shadow: 0 1px 6px 0 rgba(29,44,13,0.08);
  padding: 20px 18px;
  flex: 1 1 310px;
  min-width: 220px;
  margin-bottom: 20px;
  transition: box-shadow .2s, border-color .2s;
}
.job-card:hover {
  border-color: #38A399;
  box-shadow: 0 2px 14px 0 rgba(29,80,60,.14);
}

@media (max-width: 900px) {
  .job-cards, .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .job-card, .card {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
}


/* HERO SECTIONS ------------------------------------------ */
.hero {
  background: #e4f6ea;
  background-image: url('../assets/hero-organic-shape.svg');
  background-repeat: no-repeat;
  background-position: right 0rem top -4rem;
  min-height: 330px;
  border-radius: 0 0 48px 48px;
  box-shadow: 0 10px 38px 0 rgba(50, 122, 80, 0.07);
  margin-bottom: 68px;
  display: flex;
  align-items: center;
}
.hero .container {
  padding-top: 40px;
  padding-bottom: 40px;
}
.hero h1 {
  color: #25526E;
}

@media (max-width: 768px) {
  .hero {
    min-height: 180px;
    border-radius: 0 0 26px 26px;
    margin-bottom: 34px;
    background-position: right -2rem top -2rem;
  }
  .hero .container {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

/* NAVIGATION -------------------------------------------- */
header {
  background: #F7F9F7;
  border-bottom: 1.5px solid #dde7df;
  position: relative;
  z-index: 40;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
  justify-content: flex-start;
  padding: 20px 0 14px 0;
  font-family: 'Montserrat', Arial, sans-serif;
}
.main-nav a {
  font-weight: 500;
  font-size: 1.05rem;
  color: #2A4932;
  opacity: .92;
  border-radius: 14px;
  padding: 7px 14px;
  transition: color .16s, background .16s, box-shadow .17s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #fff;
  background: #38A399;
  box-shadow: 0 2px 11px 0 rgba(61,159,98,.08);
}
.main-nav img {
  height: 36px;
  margin-right: 12px;
  margin-left: 0;
}
.btn-primary {
  background: #38A399;
  color: #fff;
  border: none;
  border-radius: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  font-weight: 600;
  padding: 10px 28px;
  box-shadow: 0 2px 18px 0 rgba(45,88,72,0.13);
  margin-left: 8px;
  margin-top: 0 !important;
  cursor: pointer;
  transition: background .19s, box-shadow .22s, color .15s;
  letter-spacing: .03em;
}
.btn-primary:hover, .btn-primary:focus {
  background: #25526E;
  color: #F1F5F9;
  box-shadow: 0 3px 24px 0 rgba(46,88,72,0.17);
}

@media (max-width: 1020px) {
  .main-nav {
    gap: 16px;
    font-size: 0.99rem;
  }
  .main-nav img {
    height: 28px;
    margin-right: 5px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}

/* MOBILE NAVIGATION ------------------------------------- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 22px;
  top: 20px;
  background: #38A399;
  color: #fff;
  padding: 8px 19px 8px 14px;
  font-size: 2rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  z-index: 52;
  transition: background .13s, color .13s;
  box-shadow: 0 2px 14px 0 rgba(41,98,64,0.08);
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #25526E;
  color: #F1F5F9;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #f6fdf7;
  box-shadow: 0 10px 40px 8px rgba(39,80,54,0.10);
  z-index: 1005;
  overflow-y: auto;
  transform: translateX(-101vw);
  transition: transform .38s cubic-bezier(.42,.12,.39,.86);
}
.mobile-menu.open {
  transform: translateX(0vw);
}
.mobile-menu-close {
  background: #fff;
  color: #25526E;
  font-size: 2.2rem;
  font-weight: 800;
  border-radius: 9px;
  border: none;
  position: absolute;
  top: 22px;
  right: 20px;
  padding: 0 14px 4px 14px;
  cursor: pointer;
  z-index: 1010;
  transition: background .16s, color .16s;
  box-shadow: 0 2px 13px 0 rgba(80,50,40,0.07);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #38A399;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: stretch;
  margin-top: 78px;
  gap: 8px;
}
.mobile-nav a {
  color: #27794E;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 16px 30px;
  border-radius: 0 19px 19px 0;
  transition: background .16s, color .11s;
  margin-bottom: 4px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #c9eadb;
  color: #25526E;
}
@media (min-width: 901px) {
  .mobile-menu-toggle, .mobile-menu { display: none !important; }
}

/* FOOTER ------------------------------------------------ */
footer {
  background: #fafdf7;
  border-top: 1px solid #d4e6d7;
  padding-top: 34px;
  padding-bottom: 22px;
  margin-top: 64px;
}
footer .container {
  padding-top: 0;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-bottom: 12px;
  font-size: 1rem;
  color: #355a39;
}
.footer-nav a {
  color: #25526E;
  font-weight: 500;
  opacity: 0.92;
  padding: 4px 9px;
  border-radius: 7px;
  transition: background .11s, color .1s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #c8e7d5;
  color: #27794E;
}
.brand-info {
  margin-top: 13px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 22px;
}
.brand-info img {
  height: 38px;
  align-self: flex-start;
}
.brand-info p{
  font-size: .97rem;
  color: #324c3c;
}
.social-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}
.social-links img {
  width: 34px; height: 34px;
  border-radius: 50%;
  padding: 3px;
  background: #dbeadd;
  transition: background .14s;
}
.social-links img:hover {
  background: #38A399;
}
@media (max-width: 650px) {
  .brand-info, .footer-nav, .social-links {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .brand-info img {
    margin-bottom: 8px;
  }
}

/* FORMS & TABLES ---------------------------------------- */
input[type="text"], input[type="email"], input[type="password"], textarea {
  background: #FAFDF7;
  border: 1.5px solid #b2cfc1;
  border-radius: 12px;
  padding: 9px 16px;
  font-size: 1rem;
  width: 100%;
  margin-bottom: 16px;
  transition: border-color .16s;
}
input:focus, textarea:focus {
  border-color: #38A399;
}
/* Search input in hero */
.hero input[type="text"] {
  max-width: 340px;
  margin-top: 16px;
}

/* Table styles for pricing ------ */
table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  background: #f3f9f4;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 22px;
  box-shadow: 0 1px 9px 0 rgba(52,80,48,.06);
}
thead {
  background: #e4f6ea;
}
th, td {
  text-align: left;
  padding: 12px 16px;
}
th {
  color: #25526E;
  font-weight: 700;
  font-size: 1.07rem;
}
tbody tr {
  border-bottom: 1px solid #cadfd1;
}
tbody tr:last-child {
  border-bottom: none;
}
td {
  color: #1b4720;
  font-size: 1rem;
}
td:last-child {
  color: #27794E;
  font-weight: 600;
}
@media (max-width: 700px) {
  table, thead, tbody, tr, td, th {
    display: block;
  }
  th, td {
    padding: 10px 8px;
  }
  thead {display: none;}
  tr {
    margin-bottom: 14px;
    border-radius: 12px;
  }
}

/* FAQ ACCORDION / Q&A --------------------------------- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 14px;
}
.faq-item {
  border-radius: 16px;
  background: #F1F5F9;
  box-shadow: 0 1px 7px 0 rgba(34,60,41,0.07);
  padding: 16px 18px;
  cursor: pointer;
  transition: box-shadow .17s;
}
.faq-item:hover {
  box-shadow: 0 3px 16px 0 rgba(34,60,41,.12);
}
.faq-item h3 {
  margin-bottom: 8px;
  color: #25526E;
  font-weight: 600;
  font-size: 1.12rem;
}
.faq-item p {
  margin-bottom: 0;
  color: #2c3d28;
  font-size: 1rem;
}

/* PRICES IN SERVICE LISTS ----------------------------- */
.price {
  font-weight: 600;
  background: #c9eadb;
  color: #27794E;
  border-radius: 10px;
  padding: 2px 10px 2px 10px;
  font-size: 0.98rem;
  margin-left: 7px;
}

/* Utility organic shapes/effects ---------------------- */
.section::before {
  content: '';
  display: block;
  position: absolute;
  top: -32px; left: -28px;
  width: 98px; height: 62px;
  background: url('../assets/leaf-organic.svg') no-repeat center/contain;
  opacity: 0.16;
  z-index: 0;
}
.section:nth-child(2)::before {
  background: url('../assets/stone-organic.svg') no-repeat center/contain;
  left: auto; right: -30px;
  width: 90px; height: 50px;
}
@media (max-width: 900px) {
  .section::before {display: none;}
}

/* MICRO-INTERACTIONS (Hover/Focus) -------------------- */
.card, .testimonial-card, .faq-item, .job-card {
  transition: box-shadow .22s, border-color .14s, background .15s;
}
.card:focus-within, .testimonial-card:focus-within, .job-card:focus-within {
  border-color: #27794E;
  box-shadow: 0 4px 28px 0 rgba(30,109,70,.13);
}
a.btn-primary, .job-card a, .mobile-nav a, .faq-item {
  transition: background .13s, color .13s, box-shadow .12s;
}
a.btn-primary:active, .job-card a:active {
  transform: scale(0.98);
}

/* ORGANIC BUTTONS -------------------------------------- */
button, a.btn-primary {
  cursor: pointer;
  border: none;
  outline: none;
}
.job-card a {
  display: inline-block;
  background: #25526E;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 8px 24px;
  border-radius: 18px;
  box-shadow: 0 2px 6px 0 rgba(36,80,61,0.09);
  margin-top: 12px;
  transition: background .18s;
}
.job-card a:hover, .job-card a:focus {
  background: #38A399;
  color: #fff;
}

/* ADDRESS and CONTACT ---------------------------------- */
address {
  font-style: normal;
  background: #F1F5F9;
  border-radius: 15px;
  padding: 16px 22px;
  margin-bottom: 16px;
}

.contact-cta {
  background: #e6f3ec;
  color: #27794E;
  border-radius: 10px;
  padding: 10px 19px;
  margin-top: 6px;
  font-weight: 600;
}

/* ORGANIC/NATURE ELEMENTS ---------------------------- */
.text-section ul, .content-wrapper > ul {
  margin-top: 7px;
}
.text-section ul li, .content-wrapper > ul li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  font-size: 1.04rem;
  line-height: 1.6;
  color: #335f45;
}
.text-section ul li::before, .content-wrapper > ul li::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 1px;
  top: 8px;
  width: 13px; height: 13px;
  background: url('../assets/leaf-bullet.svg') no-repeat center/contain;
  opacity: 0.67;
}

/* Cookie Banner Styles ----------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #f1f5f9;
  border-top: 2px solid #aad5c1;
  box-shadow: 0 -2px 26px 0 rgba(27,68,49, 0.10);
  z-index: 1020;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 17px 13px 15px 13px;
  font-size: .98rem;
  color: #215f3d;
  transition: transform .3s;
}
.cookie-banner.hide {
  transform: translateY(140%);
}
.cookie-banner p {
  flex: 1 1 290px;
  margin-bottom: 0;
}
.cookie-btn, .cookie-settings-btn {
  background: #38A399;
  color: #fff;
  border: none;
  border-radius: 13px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 7px 20px;
  margin-right: 7px;
  transition: background .17s, color .13s;
  box-shadow: 0 1px 8px 0 rgba(27,79,60,0.08);
}
.cookie-btn.reject {
  background: #25526E;
}
.cookie-btn:hover, .cookie-btn:focus, .cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #27794E;
  color: #fff;
}
.cookie-settings-btn {
  background: #c9eadb;
  color: #27794E;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 13px;
    padding: 14px 6px;
    font-size: .95rem;
  }
}

/* COOKIE PREFERENCES MODAL ---------------------------- */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right:0; bottom:0;
  width: 100vw; height: 100vh;
  z-index: 1050;
  background: rgba(25, 39, 22, 0.31);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModalBkg .23s;
}
@keyframes fadeInModalBkg {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #f1f5f9;
  border-radius: 32px;
  box-shadow: 0 4px 38px 0 rgba(32,88,50,0.18);
  padding: 38px 34px;
  max-width: 360px;
  width: 94vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 18px;
  position: relative;
  animation: modalSlideIn .26s cubic-bezier(.47,1.14,.62,1.05);
}
@keyframes modalSlideIn {
  from { transform: translateY(120px); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.45rem;
  color: #1c4946;
  margin-bottom: 7px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.cookie-modal label {
  flex: 1 1 auto;
  font-size: 1.01rem;
  color: #355a39;
}
.cookie-category input[type="checkbox"] {
  accent-color: #38A399;
  width: 20px; height: 20px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 8px;
}
.cookie-modal-close {
  position: absolute;
  top: 19px;
  right: 18px;
  background: transparent;
  font-size: 1.65rem;
  border: none;
  color: #25526E;
  cursor: pointer;
  padding: 2px 8px;
  border-radius: 7px;
  transition: background .14s, color .13s;
  z-index: 2;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #c9eadb;
  color: #1a4342;
}
@media (max-width: 420px) {
  .cookie-modal {
    padding: 22px 6px 24px 13px;
    border-radius: 18px;
  }
}

/* Responsive adjustments for ORGANIC design ------------- */
@media (max-width: 600px) {
  .content-wrapper, .card-container, .content-grid, .job-cards, .testimonial-card {
    gap: 13px !important;
  }
  .section {
    padding: 14px 4px;
    margin-bottom: 16px;
  }
  .testimonial-card {
    padding: 12px 9px 12px 13px;
    border-radius: 13px 21px 16px 17px;
  }
}

/* GENERAL UTILITIES ---------------------------------- */
.text-center {
  text-align: center;
}
.d-inline {
  display: inline;
}
.mb-0 { margin-bottom: 0; }
.mt-0 { margin-top: 0; }
.mt-8 { margin-top: 8px; }
.mb-16 { margin-bottom: 16px; }
.gap-8  { gap: 8px; }
.gap-20 { gap: 20px; }

/* END OF STYLE.CSS */
