/* ========================================================================
   CSS RESET & BASE STYLES - NO GRID/COLUMNS! FLEXBOX-ONLY LAYOUT ENGINE
   ======================================================================== */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  min-height: 100vh;
  background: #f7f6f3;
  color: #323d4c;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
}
*, *::before, *::after {
  box-sizing: inherit;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
a {
  color: #38753E;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, .main-nav a:focus, .mobile-nav a:focus {
  color: #2D5B32;
}
ul, ol {
  margin-left: 16px;
}
strong, b {
  font-weight: bold;
}

/* ========================================================================
   BRAND TYPOGRAPHY
   ======================================================================== */
h1, .hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -1px;
  color: #26382b;
  margin-bottom: 24px;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: #38753E;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #4A6142;
  margin-bottom: 10px;
  margin-top:8px;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #596d52;
}
p, li {
  font-size: 16px;
  color: #323d4c;
  margin-bottom: 1em;
}
.subheadline {
  margin-bottom: 18px;
  color: #4B5943;
  font-size: 18px;
  letter-spacing: 0.1px;
}

@media (min-width: 600px) {
  h1, .hero h1 { font-size: 40px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
}
@media (min-width: 900px) {
  h1, .hero h1 { font-size: 48px; }
  h2 { font-size: 32px; }
  h3 { font-size: 24px; }
  p, li { font-size: 18px; }
}


/* ========================================================================
   FLEXBOX CONTAINER LAYOUTS (nature_organic)
   ======================================================================== */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  background: #fffbe5;
  border-radius: 32px;
  box-shadow: 0 3px 24px rgba(44,72,37,0.04), 0 1.5px 7px rgba(72,64,44,0.09);
  padding: 32px 18px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
}

@media (min-width: 900px) {
  .content-wrapper { padding: 40px 40px; }
}

/* ========================================================================
   HEADER, NAVIGATION & CTA
   ======================================================================== */
header {
  background: #f2efea;
  box-shadow: 0 2px 10px rgba(50, 61, 76, 0.03);
  padding: 0;
  position:relative;
  z-index: 1001;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 28px;
  height: 56px;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #38753E;
  font-size: 16px;
  padding: 8px 14px;
  border-radius: 16px;
  transition: background .15s, color .18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #eaf4ea;
  color: #2d5b32;
}
.cta-btn {
  background: linear-gradient(90deg,#58B368 60%, #F7B32B 100%);
  color: #ffffff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  border: none;
  outline: none;
  border-radius: 48px/30px;
  padding: 12px 28px;
  cursor: pointer;
  display: inline-block;
  box-shadow: 0 2px 14px 0 rgba(52,88,75,0.08);
  letter-spacing: .5px;
  transition: box-shadow .22s, background .22s, transform .12s;
  margin-left: 18px;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg,#38753E 40%, #F7B32B 120%);
  box-shadow: 0 8px 30px rgba(88,161,90,0.16);
  transform: translateY(-2px) scale(1.02);
}

/* ========================================================================
   HERO SECTION
   ======================================================================== */
.hero {
  background: linear-gradient(110deg, #dde9cf 55%, #fffbe5 100%);
  border-radius: 0 0 50px 50px / 0 0 60px 60px;
  box-shadow: 0 8px 32px rgba(88,161,90,0.09);
  margin-bottom: 60px;
}
.hero .container {
  align-items: center;
  justify-content: center;
  min-height: 340px;
  padding-top:32px;
  padding-bottom:32px;
}
.hero .content-wrapper {
  background: none;
  box-shadow: none;
  border-radius: 0;
  max-width: 700px;
  text-align: center;
  align-items: center;
  gap: 20px;
}

/* ========================================================================
   FEATURE GRIDS & SERVICE LIST (Cards, Flex)
   ======================================================================== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  justify-content: flex-start;
  align-items: stretch;
}
.feature-grid li {
  background: #fcf8ed;
  border-radius: 22px;
  box-shadow: 0 2px 8px 0 rgba(65,87,49,0.10);
  padding: 24px 18px 20px;
  min-width: 240px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 20px;
  border: 1.5px solid #e4eac3;
  transition: box-shadow 0.16s, transform 0.12s;
}
.feature-grid li img {
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
}
.feature-grid li:hover {
  box-shadow: 0 6px 24px 0 rgba(72,111,60,0.14);
  transform: translateY(-2px) scale(1.015);
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.service-item {
  flex: 1 1 250px;
  min-width: 240px;
  background: #e7f1dd;
  border: 1.5px solid #c1dfae;
  border-radius: 18px;
  padding: 22px 18px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 1px 8px rgba(80,80,40,0.09);
  position: relative;
}
.service-item .price {
  margin-left: 10px;
  color: #38753E;
  font-weight: 600;
  font-size: 17px;
  background: #f7b32b11;
  padding: 2px 10px;
  border-radius: 10px;
}
.service-item:hover {
  box-shadow: 0 12px 36px 0 rgba(50,125,65,0.17);
  transform:scale(1.03);
}

/* ========================================================================
   TESTIMONIALS & RATINGS (Readable on light bg)
   ======================================================================== */
.testimonials, .testimonial-list {
  width: 100%;
}
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 16px 0 20px 0;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 28px rgba(127,151,103,0.12);
  padding: 20px 20px 16px 20px;
  min-width: 250px;
  max-width: 370px;
  flex: 1 1 230px;
  margin-bottom: 20px;
  border-left: 7px solid #58B368;
  color: #26382B;
  position:relative;
  transition: box-shadow 0.20s, transform 0.14s;
}
.testimonial-card p {
  font-style: italic;
  color: #322C1A;
  margin-bottom: 8px;
  font-size: 17px;
}
.testimonial-card strong, .testimonial-card b {
  color: #38753E;
  margin-top: 6px;
  font-weight: 600;
  font-size: 15px;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px 0 rgba(89,191,90,0.15);
  transform: translateY(-2px) scale(1.01);
}
.average-rating, .ratings {
  margin: 18px 0 12px 0;
  color: #415A2E;
  font-size: 17px;
  font-weight: 500;
  text-align: left;
}
.average-rating strong, .ratings strong {
  color: #38753E;
  font-size: 18px;
}


/* ========================================================================
   TABLE, NOTES, DISCLAIMER, ADDRESS CARD
   ======================================================================== */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fcf8ed;
  box-shadow: 0 1px 8px rgba(80,80,40,0.07);
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 22px;
  font-size: 17px;
}
.pricing-table th, .pricing-table td {
  text-align: left;
  padding: 14px 18px;
}
.pricing-table th {
  background: #58B368;
  color: #fff;
  font-weight: 600;
  border-bottom: 2px solid #e4eac3;
  font-size:18px;
}
.pricing-table tbody tr:nth-child(odd) {
  background: #f7faf3;
}
.pricing-table tbody tr:nth-child(even) {
  background: #fffbe5;
}
.pricing-notes {
  background: #e7f1dd;
  border: 1.5px solid #c1dfae;
  border-radius: 16px;
  padding: 16px 18px 12px;
  margin-bottom: 20px;
}
.pricing-notes ul { margin-bottom: 10px; }
.pricing-notes li { margin-bottom: 5px; }
.disclaimer {
  color: #876d2e;
  font-style: italic;
  margin: 6px 0 0 0;
  font-size: 15px;
}
.address-map, .text-section {
  padding: 16px 16px 12px 14px;
  background: #fcf8ed;
  border-radius: 15px;
  border: 1px solid #e7e8da;
  margin-bottom: 24px;
}
.address-map address {
  font-style: normal;
  color: #3E5B2E;
  margin-top: 4px;
  font-size: 16px;
}

/* ========================================================================
   FLEX SPACING, CARD ALIGNMENTS, GAPS
   ======================================================================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #e7f1dd;
  border-radius: 18px;
  margin-bottom: 20px;
  position: relative;
  padding: 24px 20px 18px;
}
.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;
}
.cta-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-top: 24px;
}

/* ========================================================================
   FOOTER
   ======================================================================== */
footer {
  background: #26382b;
  color: #f2efea;
  padding: 0;
  margin-top:40px;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 32px;
  padding: 38px 20px 18px 20px;
  flex-wrap: wrap;
}
.logo-footer {
  display: flex;
  align-items: center;
  margin-right: 24px;
  margin-bottom: 12px;
}
.footer-nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #e4eac3;
  padding: 4px 10px;
  border-radius: 12px;
  transition: background .14s, color .18s;
  font-size:16px;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #38753E;
  color: #fff;
}
.footer-contact p, .footer-contact a {
  color: #ffffffda;
  font-size: 15px;
}
footer small {
  font-size: 13px;
  color: #a2c4a8;
  margin-top: 18px;
  width:100%;
  display:block;
}

/* ========================================================================
   COOKIE CONSENT BANNER
   ======================================================================== */
.cookie-banner {
  position: fixed;
  left: 0; right:0;
  bottom: 0;
  width: 100vw;
  background: #fff7ec;
  box-shadow: 0 -2px 12px rgba(75,104,59,0.08);
  border-top: 2px solid #e7e8da;
  z-index: 2100;
  padding: 24px 20px 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  transform: translateY(110%);
  opacity:0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(.76,.04,.16,1), opacity 0.15s;
}
.cookie-banner.active {
  transform: translateY(0);
  opacity:1;
  pointer-events: auto;
}
.cookie-banner p {
  font-size: 16px;
  color: #323d4c;
  margin-bottom: 0;
}
.cookie-actions {
  display: flex;
  gap: 16px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 8px 20px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  background:#e7f1dd;
  color: #38753E;
  border: none;
  transition: background .13s, box-shadow .17s;
}
.cookie-btn.accept {
  background: #58B368;
  color: #fff;
}
.cookie-btn.accept:hover {
  background: #38753E;
}
.cookie-btn.reject {
  background: #F7B32B;
  color:#fff;
}
.cookie-btn.reject:hover {
  background: #ffa70a;
}
.cookie-btn.settings {
  background:#e7f1dd;
  color: #357b31;
  border: 1px solid #58B368;
}
.cookie-btn.settings:hover {
  background:#dde9cf;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  left: 50%;
  top:50%;
  transform: translate(-50%,-50%) scale(.95);
  background: #fcf8ed;
  border: 2px solid #58B368;
  border-radius: 18px;
  box-shadow: 0 12px 38px 0 rgba(55,140,40,0.16);
  padding: 30px 24px 24px;
  z-index: 2500;
  max-width: 350px;
  min-width: 260px;
  min-height: 260px;
  opacity:0;
  pointer-events: none;
  transition: transform .23s cubic-bezier(.4,1.6,.28,1), opacity .18s;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.cookie-modal.active {
  transform: translate(-50%,-50%) scale(1);
  opacity:1;
  pointer-events: auto;
}
.cookie-modal h2 {
  margin-bottom: 6px;
  color: #38753E;
  font-size: 21px;
  letter-spacing: 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 7px;
  background: #e7f1dd8f;
  border-radius: 9px;
  padding: 6px 10px;
}
.cookie-category label {
  font-size: 16px;
  color: #2e4322;
}
.cookie-switch {
  appearance: none;
  width: 36px;
  height: 20px;
  background: #dbe7d2;
  outline: none;
  border-radius: 12px;
  position: relative;
  transition: background .15s;
  cursor: pointer;
}
.cookie-switch:checked {
  background: #58B368;
}
.cookie-switch:before {
  content: "";
  display: block;
  position: absolute;
  left: 3px;
  top: 3px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 99px;
  transition: left .2s;
  box-shadow: 0 1px 3px rgba(130,130,44,0.10);
}
.cookie-switch:checked:before {
  left: 19px;
}
.cookie-modal .cookie-actions {
  width:100%;
  justify-content: flex-end;
  margin-top: 8px;
}
.cookie-modal .cookie-actions .cookie-btn {
  font-size: 15px;
  padding: 7px 16px;
}

/* Overlay for modal */
.cookie-modal-overlay {
  display:none;
  position:fixed;
  left:0;top:0;width:100vw;height:100vh;
  z-index:2499;
  background:rgba(34, 55, 35,0.24);
  pointer-events: none;
}
.cookie-modal.active + .cookie-modal-overlay {
  display:block;
  pointer-events: auto;
}

/* ========================================================================
   MOBILE NAVIGATION MENU (Hamburger/Slide-in)
   ======================================================================== */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #58b368;
  color: #fff;
  border: none;
  border-radius: 60px;
  font-size: 34px;
  width: 52px;
  height: 52px;
  cursor: pointer;
  margin-left: 6px;
  transition: background .16s, box-shadow .14s;
  box-shadow: 0 2px 7px rgba(73,103,56,0.09);
  z-index: 1102;
  outline: none;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #38753e;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 2200;
  background: #fcf8ed;
  box-shadow: 24px 0 60px 0 rgba(77,120,64,0.20);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  transform: translateX(-100vw);
  transition: transform .31s cubic-bezier(.76,.04,.16,1);
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 26px 24px 8px 0;
  background: none;
  border: none;
  font-size: 38px;
  color:#58B368;
  cursor: pointer;
  transition: color .16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #38753e;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100vw;
  gap: 8px;
  padding: 4px 0 0 32px;
  margin-top: 14px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 21px;
  color: #38753E;
  padding: 13px 8px 13px 0;
  margin-bottom: 4px;
  border-radius: 17px;
  transition: background .14s, color .17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #e7f1dd;
  color: #2d5b32;
}

/* Hide on desktop, show on mobile */
.main-nav, .cta-btn {
  display: none;
}

@media (min-width: 900px) {
  .mobile-menu-toggle, .mobile-menu { display: none !important; }
  .main-nav, .cta-btn { display: inline-flex !important; }
}

/* ========================================================================
   RESPONSIVE DESIGN (Mobile-first, up to desktop)
   ======================================================================== */
@media (max-width: 950px) {
  .container { max-width: 97vw; padding-left:10px; padding-right:10px; }
  footer .container { flex-direction: column; gap: 10px; align-items: flex-start; }
}
@media (max-width: 900px) {
  header .container { flex-direction: row; }
  .main-nav { display: none; }
  .cta-btn { display:none; }
  .logo { margin-right: 14px; height:44px; }
  .hero .container { padding: 20px 0; }
  .feature-grid, .service-list, .testimonial-slider, .testimonial-list {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid li, .service-item, .testimonial-card {
    min-width:180px;
    max-width:100%;
  }
}
@media (max-width: 650px) {
  .container { padding-left:2vw; padding-right:2vw; }
  .content-wrapper { padding:18px 7px; gap:16px; border-radius:22px; }
  .section { padding:24px 4vw; }
  .footer-contact { margin-bottom:10px; }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items:flex-start;
    gap: 20px;
  }
  .contact-details {
    flex-direction: column;
    gap: 24px;
  }
}
@media (min-width: 601px) {
  .main-nav { display: flex !important; }
}

.contact-details {
  display: flex;
  flex-direction: row;
  gap: 40px;
  margin-bottom: 22px;
  align-items: stretch;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  h1, .hero h1 { font-size:26px; }
  h2 { font-size:20px; }
  h3 { font-size:16px; }
  p, li { font-size:14px; }
  .feature-grid li, .service-item, .testimonial-card {
    min-width: unset;
    padding:14px 7px 9px;
  }
  .cta-btn { font-size:15px; padding:9px 16px; }
}

/* ========================================================================
   MICRO-INTERACTIONS, SUBTLE ANIMATIONS
   ======================================================================== */
button, .cta-btn, a {
  outline: none;
  transition: all .16s linear;
}
.card, .service-item, .feature-grid li, .testimonial-card {
  transition: box-shadow .18s cubic-bezier(.33,.99,.54,.83), transform .14s;
}
.card:hover, .service-item:hover, .feature-grid li:hover, .testimonial-card:hover {
  filter: brightness(1.02);
  transform: scale(1.012);
  box-shadow: 0 9px 32px 0 rgba(85,140,70,0.13);
}

/* Organic curves as background decorations */
.section {
  position:relative;
}
.section::before {
  content: '';
  position: absolute;
  left:-30px; top:-30px;
  width: 140px;
  height: 60px;
  border-radius: 100px 80px 100px 120px/90px 100px 60px 70px;
  background: rgba(88,179,104,.08);
  z-index: 0;
  pointer-events: none;
}
.section::after {
  content: '';
  position: absolute;
  right:-24px; bottom:-22px;
  width: 80px; height: 33px;
  border-radius: 60px 36px 40px 70px;
  background: rgba(247,179,43,0.07);
  z-index: 0;
  pointer-events: none;
}
.content-wrapper, .feature-grid > li, .service-item, .testimonial-card {
  position:relative;
  z-index:1;
}
.section .content-wrapper { z-index:2; }

/* Remove pseudo-curve on small screens for clarity */
@media (max-width:500px) {
  .section::before, .section::after { display: none; }
}

/* ========================================================================
   UTILS: HIDE/SHOW, ACCESSIBILITY, ETC.
   ======================================================================== */
[aria-current], .main-nav a.active {
  background: #38753E;
  color: #fff !important;
}
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}
hr {
  border: none;
  border-top: 1px solid #e7e8da;
  margin: 32px 0 24px 0;
}

::-webkit-scrollbar {
  width:8px;
  background: #eaece5;
}
::-webkit-scrollbar-thumb {
  background: #b2cba7;
  border-radius: 8px;
}

/* ========================================================================
   END - FLEX ONLY, nature_organic, COLOR SAFE, MODERN, BRAND CONSISTENT
   ======================================================================== */
