/* --- ZenVia Plant 'Warm Friendly' CSS 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;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #FFFDF9;
  color: #2A362A;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg {
  max-width: 100%;
  vertical-align: middle;
  display: block;
}
a {
  color: #225E47;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F2CE68;
  outline: none;
}
ul, ol {
  margin-left: 1.4em;
  margin-bottom: 1.25em;
}
li {
  margin-bottom: 0.5em;
}
h1, h2, h3, h4, h5, h6 {
  color: #1B392B;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.4rem; margin-bottom: 14px; }
h4 { font-size: 1.15rem; }
p, .subheadline {
  font-size: 1.1rem;
  color: #2A362A;
  margin-bottom: 1em;
}
strong, b {
  color: #225E47;
  font-weight: 700;
}
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFFDF9;
  border-radius: 24px;
  box-shadow: 0 4px 24px 0 rgba(34, 94, 71, 0.05);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.card-container,
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(34, 94, 71, 0.09);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px;
  min-width: 250px;
  flex: 1 1 250px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 6px 28px 0 rgba(34, 94, 71, 0.14);
  transform: translateY(-4px) scale(1.015);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.features-grid, .services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature,
.service-card {
  background: #FFFFFF;
  border-radius: 18px;
  box-shadow: 0 1.5px 10px 0 rgba(242,206,104,0.12), 0 1.5px 12px 0 rgba(34,94,71,0.06);
  flex: 1 1 250px;
  min-width: 260px;
  padding: 26px 20px 22px 20px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.feature img, .service-card img {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: #FFF9E3;
  box-shadow: 0 0 0 2px #F2CE68;
}
.feature h3, .service-card h3 {
  font-size: 1.25rem;
  letter-spacing: 0.01em;
  color: #225E47;
  margin-bottom: 10px;
}
.feature p, .service-card p, .service-price {
  color: #265C47;
  font-size: 1rem;
}
.service-price {
  margin-top: 12px;
  color: #F2CE68;
  font-weight: 600;
}
.text-section {
  margin-bottom: 0;
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.text-section ul, .text-section ol {
  margin-bottom: 0.5em;
}
.text-section li {
  position: relative;
  padding-left: 14px;
}
.text-section li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  background: #F2CE68;
  border-radius: 50%;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}
.faq-list p {
  margin-bottom: 12px;
}
/* ----------- HERO SECTION ------------ */
.hero {
  background: linear-gradient(96deg,#D1EEDF 60%, #FFF9E3 100%);
  border-radius: 0 0 32px 32px;
  box-shadow: 0 8px 36px 0 rgba(34,94,71,0.11);
  padding: 50px 0 48px 0;
  margin-bottom: 40px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 16px;
}
.hero h1 {
  font-size: 2.35rem;
  color: #225E47;
  margin-bottom: 6px;
}
.hero .subheadline {
  color: #9B8351;
  font-size: 1.2rem;
  letter-spacing: 0.01em;
}
/* ----------- BUTTONS ------------ */
.button, .button.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 32px;
  background: #F2CE68;
  color: #254237;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  box-shadow: 0 2px 8px 0 rgba(242,206,104,0.07);
  border: none;
  outline: none;
  cursor: pointer;
  text-align: center;
  margin-top: 12px;
  margin-bottom: 8px;
  transition: background 0.22s, color 0.15s, box-shadow 0.18s, transform 0.2s;
}
.button.primary {
  background: #225E47;
  color: #FFFFFF;
  box-shadow: 0 2px 12px 0 rgba(34,94,71,.08);
}
.button.primary:hover, .button.primary:focus {
  background: #2B7E60;
  color: #F2CE68;
}
.button:hover, .button:focus {
  background: #FFE592;
  color: #225E47;
  box-shadow: 0 3px 18px 0 rgba(242,206,104,0.16);
  transform: translateY(-2px) scale(1.025);
}
.button:active { opacity: 0.88; }

/* --------------- HEADER & NAVIGATION --------------- */
header {
  background: #FFFFFF;
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 3px 16px 0 rgba(242, 206, 104, 0.05);
  margin-bottom: 6px;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 13px 20px;
  max-width: 1160px;
}
.logo img {
  height: 46px;
  border-radius: 16px;
  background: #D1EEDF;
  box-shadow: 0 0 0 4px #F2CE68, 0 2px 8px 0 rgba(225, 217, 189, 0.09);
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  color: #285D47;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 18px;
  transition: background 0.2s, color 0.19s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F2CE68;
  color: #1B392B;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  color: #225E47;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  padding: 9px 15px;
  transition: background 0.2s, color 0.15s, box-shadow 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #D1EEDF;
  color: #F2CE68;
}
/* ----------- MOBILE NAVIGATION ------------ */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(252,251,245,0.98);
  z-index: 1001;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.66,.04,.41,1.08);
  flex-direction: column;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  margin-top: 25px;
  margin-left: auto;
  margin-right: 32px;
  background: none;
  border: none;
  color: #225E47;
  font-size: 2.2rem;
  padding: 7px 20px 7px 7px;
  border-radius: 16px;
  cursor: pointer;
  transition: background 0.2s, color 0.13s;
  z-index: 2;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F2CE68;
  color: #1B392B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 600;
  color: #254237;
  padding: 16px 0;
  width: 80%;
  text-align: center;
  border-radius: 16px;
  background: none;
  transition: background 0.2s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #D1EEDF;
  color: #1B392B;
}
/* Hide nav and show toggle on mobile */
@media (max-width: 990px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
/* --------------- FOOTER --------------- */
footer {
  background: #FFFFFF;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -2px 16px 0 rgba(242, 206, 104, 0.07);
  margin-top: 48px;
  padding-top: 34px;
  padding-bottom: 30px;
  font-size: 0.98rem;
  color: #1B392B;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 12px;
  align-items: center;
  justify-content: center;
}
.footer-nav a {
  color: #285D47;
  padding: 7px 12px;
  border-radius: 10px;
  transition: background 0.13s, color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #F2CE68;
  color: #225E47;
}
.footer-contact {
  text-align: center;
  font-size: 1rem;
  color: #7B7D74;
}
.footer-contact p {
  margin-bottom: 5px;
}
/* --------------- TESTIMONIALS --------------- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 28px 18px 28px;
  margin: 16px 0 24px 0;
  background: #FFF9E3;
  border-radius: 20px;
  box-shadow: 0 2px 14px 0 rgba(243, 206, 104, 0.13);
  font-size: 1.08rem;
  color: #285D47;
}
.testimonial-card p {
  font-size: 1.07rem;
  color: #285D47;
  font-style: italic;
  margin-bottom: 2px;
}
.testimonial-card span {
  font-size: 0.97rem;
  color: #82682E;
  font-style: normal;
  margin-top: 4px;
}
/* Ensure strong contrast for testimonials */
.testimonials .testimonial-card, section .testimonial-card {
  background: #FFF9E3;
  color: #254237;
}

/* --------------- MISC/UTILITIES --------------- */
.map-snippet {
  width: 100%;
  height: 210px;
  background: #F2CE68 url('../assets/mapsnippet.svg') center center/cover no-repeat;
  border-radius: 17px;
  margin-top: 19px;
  box-shadow: 0 2px 16px 0 rgba(242,206,104,0.18);
  position: relative;
  min-width: 180px;
  min-height: 110px;
  opacity: 0.84;
  outline: none;
}
details {
  margin: 1em 0 0.5em 0;
  padding: 14px 20px 14px 16px;
  background: #D1EEDF;
  border-radius: 12px;
  color: #225E47;
  cursor: pointer;
  box-shadow: 0 1px 6px 0 rgba(34,94,71,0.07);
}
details[open] {
  background: #F2CE68;
}
details>summary {
  font-weight: 600;
  color: #285D47;
  margin-bottom: 7px;
  outline: none;
}
/* --------------- COOKIE CONSENT BANNER --------------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1500;
  background: #FFF9E3;
  padding: 24px 16px 16px 16px;
  box-shadow: 0 -2px 22px 0 rgba(34,94,71,0.13);
  transition: transform 0.26s;
}
.cookie-banner.hide {
  transform: translateY(100%);
}
.cookie-banner .cookie-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  max-width: 540px;
}
.cookie-banner p {
  font-size: 1rem;
  color: #285D47;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  border: none;
  background: #F2CE68;
  color: #254237;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 18px;
  padding: 10px 24px;
  margin: 0 0 0 0;
  transition: background 0.2s, color 0.17s, transform 0.18s;
  cursor: pointer;
}
.cookie-banner .accept {
  background: #225E47;
  color: #FFF9E3;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #FFE592;
  color: #225E47;
  transform: translateY(-2px) scale(1.035);
}

/* Cookie Modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(34,94,71,0.22);
  justify-content: center;
  align-items: center;
  z-index: 1600;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.open {
  display: flex;
  opacity: 1;
}
.cookie-modal {
  background: #FFFDF9;
  border-radius: 20px;
  box-shadow: 0 6px 40px rgba(34,94,71,0.14);
  max-width: 420px;
  width: 95%;
  padding: 34px 28px 28px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 1;
  animation: cookieModalIn 0.34s cubic-bezier(.61,.02,.46,1.07);
}
@keyframes cookieModalIn {
  0% { transform: translateY(40px) scale(0.97); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.33rem;
  margin-bottom: 4px;
  color: #225E47;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal ul {
  margin: 0 0 10px 16px;
}
.cookie-modal li {
  margin-bottom: 9px;
  font-size: 1.02rem;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 6px;
}
.cookie-modal .category-label {
  font-weight: 500;
  color: #285D47;
}
.cookie-modal input[type='checkbox'] {
  width: 20px;
  height: 20px;
  accent-color: #F2CE68;
  border-radius: 50%;
  margin-right: 6px;
}
.cookie-modal .modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}
.cookie-modal .close-modal {
  background: #D1EEDF;
  color: #225E47;
  border: none;
  border-radius: 15px;
  padding: 8px 16px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  align-self: flex-end;
  transition: background 0.16s, color 0.13s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: #F2CE68;
  color: #1B392B;
}
/* --------------- RESPONSIVE DESIGN --------------- */
@media (max-width: 1160px) {
  .container { max-width: 98vw; }
}
@media (max-width: 990px) {
  .footer-nav { flex-direction: column; gap: 12px; }
  .main-nav { gap: 11px; }
  .hero { padding: 36px 0 32px 0; }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.48rem; }
  h3 { font-size: 1.12rem; }
  .section, .hero { padding: 28px 6px; border-radius: 12px; }
  .features-grid, .services-list, .card-container, .card-grid { gap: 13px; }
  .feature, .service-card, .card { min-width: 92vw; padding: 18px 12px; }
  .footer-nav { flex-direction: column; gap: 10px; }
  .container { padding: 0 8px; }
  .content-wrapper { gap: 14px; }
  .map-snippet { min-height: 70px; height: 120px; }
  .testimonial-card { padding: 16px 13px 15px 13px; gap: 8px; }
}
@media (max-width: 540px) {
  html { font-size: 15px; }
  .button, .button.primary { padding: 11px 20px; font-size: 1rem; }
  .footer-contact { font-size: 0.98rem; }
  .cookie-banner { flex-direction: column; padding: 16px 3vw; }
}
/* --------------- SPACING/ALIGNMENT UTILITIES --------------- */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; 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; }
.testimonial-card { display: flex; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }
/*  Related to provided patterns -- already above but be sure defined globally */
/* --------------- ANIMATIONS/MICRO-INTERACTIONS --------------- */
.button, .button.primary, .main-nav a, .footer-nav a, .mobile-menu-toggle, .mobile-menu-close, .mobile-nav a, .cookie-banner button {
  transition: background 0.2s, color 0.19s, box-shadow 0.18s, transform 0.18s;
}
.card, .feature, .service-card {
  transition: box-shadow 0.21s, transform 0.18s;
}
.card:hover, .feature:hover, .service-card:hover {
  box-shadow: 0 9px 18px rgba(34,94,71,0.17);
  transform: translateY(-4px) scale(1.02);
}

/* --------------- ACCESSIBILITY --------------- */
:focus {
  outline: 2px solid #F2CE68;
  outline-offset: 2px;
}

/* --------------- END OF ZenVia Plant CSS --------------- */
