/* ========= 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;
  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.5;
  background: #F6F3F0;
  color: #212923;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: #246639;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #8CBF26;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  padding-left: 28px;
  margin-bottom: 16px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Roboto', serif;
  color: #246639;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; line-height: 1.1; margin-bottom: 24px; }
h2 { font-size: 2rem; line-height: 1.2; margin-bottom: 20px; }
h3 { font-size: 1.3rem; line-height: 1.3; margin-bottom: 10px; }
h4,h5,h6 { font-size: 1.1rem; margin-bottom: 8px; }
p { margin-bottom: 16px; font-size: 1rem; }
strong { font-weight: 700; color: #246639; }

/* ========== Brand Typography ========== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Roboto:wght@400;500;700&display=swap');

body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F6F3F0;
  color: #212923;
}

/* ====== Flex and Container Utilities ====== */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.header-flex,
.footer-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 14px 0 rgba(36, 102, 57, 0.06);
  padding: 20px 24px;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px 0 rgba(36, 102, 57, 0.11);
  border: 2.2px solid #E2E9DE;
  min-width: 250px;
  max-width: 410px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ====== Structured Geometric Feature Grid (cards etc) ====== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}
.feature-grid > div {
  flex: 1 1 260px;
  min-width: 260px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(140,191,38,0.10);
  padding: 36px 24px 30px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, transform 0.18s;
  border: 2px solid #E2E9DE;
}
.feature-grid > div img {
  width: 45px;
  height: 45px;
  margin-bottom: 16px;
}
.feature-grid > div:hover,
.feature-grid > div:focus {
  box-shadow: 0 8px 34px 0 rgba(36, 102, 57, 0.13);
  transform: translateY(-4px) scale(1.025);
  border-color: #8CBF26;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
}
.service-list > div {
  flex: 1 1 260px;
  min-width: 250px;
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
  border: 2px solid #E2E9DE;
  box-shadow: 0 1.5px 12px 0 rgba(36,102,57,0.07);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  transition: border 0.18s, box-shadow 0.20s, transform 0.18s;
}
.service-list > div:hover {
  border-color: #246639;
  box-shadow: 0 6px 28px 0 rgba(76,160,53,0.15);
  transform: translateY(-3px) scale(1.018);
}
.badge {
  background: #8CBF26;
  color: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 1rem;
  padding: 4px 13px;
  border-radius: 12px 3px 12px 3px;
  display: inline-block;
  margin-top: 6px;
  box-shadow: 0 1px 6px 0 rgba(140,191,38,0.07);
}

/* ========== Hero Section ========== */
.hero-section {
  width: 100%;
  background: linear-gradient(105deg, #F6F3F0 60%, #E2E9DE 98%);
  padding: 56px 0 48px 0;
  margin-bottom: 42px;
  clip-path: polygon(0 0, 100% 0, 100% 86%, 0 100%);
}
.hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}
.hero-section .content-wrapper {
  align-items: flex-start;
  max-width: 700px;
}
.hero-section h1 {
  font-size: 2.5rem;
  color: #246639;
  font-family: 'Playfair Display', serif;
  letter-spacing: -1px;
  line-height: 1.09;
  margin-bottom: 18px;
}
.hero-section p {
  color: #212923;
  margin-bottom: 24px;
  font-size: 1.18rem;
  line-height: 1.5;
}

/* ========== Button Styles ========== */
.btn-primary, .btn-secondary {
  border: none;
  padding: 13px 34px;
  border-radius: 8px 24px 8px 24px;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  outline: none;
  transition: background 0.16s, color 0.15s, transform 0.14s, box-shadow 0.18s;
  cursor: pointer;
  box-shadow: 0 1.5px 10px 0 rgba(36,102,57,0.07);
  display: inline-block;
  margin-top: 8px;
  text-align: center;
}
.btn-primary {
  background: #246639;
  color: #fff;
  border: 2px solid #246639;
}
.btn-primary:hover, .btn-primary:focus {
  background: #8CBF26;
  color: #243D23;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 32px 0 rgba(140,191,38,0.10);
}
.btn-secondary {
  background: #8CBF26;
  color: #fff;
  border: 2px solid #8CBF26;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #246639;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 32px 0 rgba(36,102,57,0.09);
}

/* ========== Main Navigation ========== */
.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #246639;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 6px 5px;
  border-radius: 4px;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: #8CBF26;
  background: #E2E9DE;
}

.logo img, .footer-logo img {
  max-height: 54px;
  width: auto;
}

/* ========== Mobile Menu Navigation ========== */
.mobile-menu-toggle {
  display: none;
  font-size: 2.25rem;
  background: none;
  border: none;
  color: #246639;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background 0.15s;
  z-index: 101;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #E2E9DE;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #F6F3F0;
  box-shadow: 0 10px 40px 0 rgba(36,102,57,0.11);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.59,.15,.45,1.26);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.4rem;
  background: none;
  border: none;
  color: #246639;
  margin: 28px 28px 8px 0;
  cursor: pointer;
  border-radius: 8px;
  padding: 2px 7px;
  transition: background 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #E2E9DE;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  align-items: flex-start;
  margin-top: 28px;
  padding-left: 40px;
}
.mobile-nav a {
  font-size: 1.25rem;
  color: #246639;
  font-weight: 700;
  line-height: 2.3;
  letter-spacing: 0.03em;
  padding: 6px 12px;
  border-radius: 5px;
  transition: background 0.1s;
  min-width: 170px;
  display: inline-block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E2E9DE;
  color: #8CBF26;
}

/* ========== Footer ========== */
.footer-flex {
  flex-wrap: wrap;
  gap: 24px 48px;
  margin-top: 60px;
  padding: 38px 0 24px 0;
  border-top: 3.5px solid #E2E9DE;
  background: transparent;
}
.footer-logo img {
  height: 42px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: flex-start;
  max-width: 420px;
}
.footer-nav a {
  color: #246639;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  transition: color 0.13s;
  letter-spacing: 0.02em;
  background: transparent;
  border-radius: 4px;
  padding: 6px 5px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #8CBF26;
  background: #E2E9DE;
}
.mini-contact {
  font-size: 0.95rem;
  color: #246639;
  margin-bottom: 8px;
  line-height: 1.6;
}
.social-links {
  display: flex;
  gap: 12px;
}
.social-links a {
  display: flex;
  align-items: center;
  border-radius: 50%;
  background: #E2E9DE;
  padding: 6px;
  width: 34px;
  height: 34px;
  justify-content: center;
  transition: background 0.15s;
}
.social-links a:hover, .social-links a:focus {
  background: #8CBF26;
}
.legal-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 6px;
}
.legal-links a {
  color: #8CBF26;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

/* ========== Testimonials ========== */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card p {
  color: #243D23;
  font-size: 1.05rem;
}
.testimonial-card strong {
  font-size: 1rem;
}
.testimonial-card img {
  width: 19px;
  height: 19px;
  display: inline-block;
}

/* ========== Structured Lists and Content ========== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.text-section ul, .text-section ol {
  margin-bottom: 0;
  margin-top: 0;
}
.text-section li {
  font-size: 1rem;
  margin-bottom: 4px;
}

/* Table styling */
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  margin: 24px 0 20px 0;
  overflow: hidden;
  box-shadow: 0 1.5px 12px 0 rgba(36,102,57,0.07);
}
thead {
  background: #8CBF26;
  color: #fff;
}
th, td {
  padding: 15px 10px;
  text-align: left;
  border-bottom: 1.6px solid #E2E9DE;
  font-size: 1rem;
}
th {
  font-weight: 700;
}
tr:last-child td {
  border-bottom: none;
}

/* Map snippet */
.map-snippet {
  background: #E2E9DE;
  border-radius: 8px;
  padding: 22px 22px;
  color: #246639;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  margin: 18px 0 0 0;
}

/* Geometric details: angled backgrounds & accent lines */
.confirmation-section {
  margin: 60px 0 120px 0;
  padding: 60px 0 0 0;
  background: linear-gradient(92deg, #E2E9DE 55%, #F6F3F0 100%);
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0 90%);
}
.confirmation-section .container{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.confirmation-section .content-wrapper{
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 22px 0 rgba(140,191,38,0.11);
  padding: 44px 34px;
  max-width: 520px;
  text-align: center;
}

/* ========== Cookie Consent Banner & Modal ========== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  color: #212923;
  border-top: 3px solid #8CBF26;
  z-index: 3500;
  box-shadow: 0 -4px 18px 0 rgba(36, 102, 57, 0.09);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 12px 16px 12px;
  font-size: 1.02rem;
  gap: 13px;
}
.cookie-banner p {
  margin-bottom: 0;
  color: #243D23;
  font-size: 1rem;
}
.cookie-banner .btn-cookie {
  margin-right: 6px;
  margin-top: 10px;
  padding: 10px 22px;
  border: none;
  border-radius: 7px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: 0.03em;
  transition: background 0.14s, color 0.13s, box-shadow 0.15s;
  cursor: pointer;
  box-shadow: 0 1.5px 6px 0 rgba(140,191,38,0.10);
}
.cookie-banner .accept {
  background: #246639;
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus{
  background: #8CBF26;
}
.cookie-banner .reject {
  background: #fff;
  color: #246639;
  border: 2px solid #246639;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus{
  background: #E2E9DE;
}
.cookie-banner .settings {
  background: #fff;
  color: #8CBF26;
  border: 2px solid #8CBF26;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #E2E9DE;
}

.cookie-modal-overlay {
  position: fixed;
  z-index: 4000;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(36,102,57,0.27);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s cubic-bezier(.59,.15,.45,1.26);
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  color: #212923;
  border-radius: 14px;
  max-width: 410px;
  width: 94vw;
  box-shadow: 0 12px 42px 0 rgba(36,102,57,0.14);
  padding: 38px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transform: translateY(-30px);
  animation: fadeInModal 0.32s cubic-bezier(.59,.15,.45,1) forwards;
}
@keyframes fadeInModal {
  from { opacity: 0; transform: translateY(36px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-modal h3 {
  color: #246639;
  font-size: 1.2rem;
  margin-bottom: 7px;
  margin-top: 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #E2E9DE;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-modal label {
  font-size: 1.04rem;
  color: #243D23;
  font-weight: 500;
}
.cookie-modal .toggle {
  width: 36px;
  height: 20px;
  background: #E2E9DE;
  border-radius: 11px;
  position: relative;
  transition: background 0.16s;
  cursor: pointer;
  margin-left: 16px;
}
.cookie-modal .toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .slider {
  position: absolute;
  top: 2.5px; left: 3px;
  height: 15px; width: 15px;
  background: #8CBF26;
  border-radius: 50%;
  transition: left 0.14s, background 0.16s;
}
.cookie-modal .toggle input:checked + .slider {
  left: 18px;
  background: #246639;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  justify-content: flex-end;
}
.cookie-modal .btn-cookie {
  padding: 9px 17px;
  font-size: 1rem;
  border-radius: 5px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  background: #8CBF26;
  color: #fff;
  transition: background 0.12s;
}
.cookie-modal .btn-cookie:hover, .cookie-modal .btn-cookie:focus{
  background: #246639;
  color: #fff;
}

/* ========== Responsive Breakpoints (mobile-first) ========== */
@media (max-width: 1024px) {
  .feature-grid, .service-list, .testimonials {
    gap: 16px;
  }
  .feature-grid > div, .service-list > div, .testimonial-card {
    min-width: 210px;
    padding: 20px 15px;
  }
}
@media (max-width: 900px) {
  .container {
    padding: 0 12px;
  }
  .main-nav {
    gap: 9px;
  }
  .footer-flex, .header-flex {
    flex-wrap: wrap;
    gap: 20px 16px;
  }
}
@media (max-width: 768px) {
  .header-flex, .footer-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px 0px;
  }
  .main-nav, .footer-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .feature-grid, .service-list, .testimonials {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid > div, .service-list > div, .testimonial-card {
    max-width: 100%;
    min-width: unset;
    width: 100%;
  }
  .hero-section {
    padding-top: 36px;
    padding-bottom: 30px;
  }
  .hero-section .content-wrapper {
    align-items: flex-start;
    padding-left: 1px;
    max-width: 99vw;
  }
  .confirmation-section .content-wrapper {
    padding: 36px 6px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .section { padding: 22px 5px; }
  .hero-section {
    padding-top: 24px;
    padding-bottom: 18px;
  }
  .hero-section .content-wrapper {
    padding: 0 2px;
    max-width: 98vw;
  }
  .footer-flex {
    padding-left: 3px;
    padding-right: 3px;
  }
  .cookie-modal {
    max-width: 99vw;
    padding: 28px 4px 18px 4px;
  }
}

/* ========== Micro-interactions ========== */
.card, .feature-grid > div, .service-list > div, .testimonial-card, .cookie-banner, .confirmation-section .content-wrapper {
  transition: box-shadow 0.16s, transform 0.13s, border 0.13s;
}
.btn-primary, .btn-secondary, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.16s, color 0.13s, border 0.13s, transform 0.15s;
}

/* ========== Hide scroll on mobile menu open ========== */
body.menu-open {
  overflow: hidden;
  touch-action: none;
}

/* ========== Accessibility :focus style ========== */
:focus {
  outline: 2px dashed #8CBF26;
  outline-offset: 2px;
}

/* ========== Miscellaneous ========== */
::-webkit-input-placeholder { color: #888; }
::-moz-placeholder { color: #888; }
:-ms-input-placeholder { color: #888; }
::placeholder { color: #888; }

/* Ensure no absolute for content blocks, only for overlays*/

/* ========== End of CSS ========== */
