/* 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,
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;
  scroll-behavior: smooth;
}
body {
  font-family: 'Source Serif Pro', Georgia, Times, 'Times New Roman', serif;
  color: #1c2e25;
  background: #fafbf9;
  min-height: 100vh;
  line-height: 1.7;
  font-size: 1rem;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #205340;
  text-decoration: none;
  transition: color .2s;
}
a:hover,
a:focus {
  color: #3a7c5a;
  text-decoration: underline;
}
ul, ol {
  margin: 16px 0 16px 20px;
}
strong, b {
  font-weight: 600;
}
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  color: #183229;
  font-family: 'Montserrat', 'Georgia', serif;
  letter-spacing: .01em;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.125rem;
  font-weight: 500;
}
p {
  margin-bottom: 14px;
  color: #253a2e;
}
.text-section {
  margin-bottom: 16px;
}

/* Spacing & Layouts */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  padding: 0;
  width: 100%;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(32, 83, 64, 0.06);
  padding: 32px 24px;
  flex: 1 1 280px;
  min-width: 240px;
}
.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;
  padding: 20px;
  background: #F3F6ED;
  border-left: 5px solid #78A684;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 1px 10px rgba(32, 83, 64, 0.05);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO SECTION */
.hero {
  background: #F3F6ED;
  border-bottom: 1px solid #e2e5da;
  padding: 60px 0 50px 0;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
}
.hero h1 {
  font-size: 2.5rem;
  color: #205340;
}
.hero p {
  font-size: 1.125rem;
  color: #335545;
}
.hero .button {
  margin-top: 14px;
}

/* NAVIGATION */
header {
  background: #fff;
  border-bottom: 1px solid #e6e6e6;
  padding: 0;
  width: 100%;
  z-index: 20;
  position: sticky;
  top: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo img {
  height: 46px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', serif;
  font-size: 1rem;
  font-weight: 500;
  color: #253a2e;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background .2s, color .2s;
}
.main-nav a:hover,
.main-nav a.active,
.main-nav a:focus {
  background: #F3F6ED;
  color: #205340;
}

/* MOBILE BURGER MENU */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #205340;
  cursor: pointer;
  z-index: 101;
  margin-left: 20px;
  transition: color .2s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #78A684;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(32, 83, 64, 0.97);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.45,.05,.55,.95);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  position: absolute;
  top: 26px;
  right: 32px;
  cursor: pointer;
  z-index: 2010;
  transition: color .2s;
}
.mobile-nav {
  background: #fff;
  width: 85vw;
  max-width: 340px;
  min-height: 100vh;
  padding: 80px 30px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  box-shadow: -6px 0 24px 0 rgba(32,83,64,.10);
  border-top-left-radius: 18px;
  z-index: 2011;
}
.mobile-nav a {
  font-size: 1.15rem;
  color: #253a2e;
  padding: 12px 0 12px 8px;
  border-radius: 8px;
  font-family: 'Montserrat', serif;
  font-weight: 500;
  transition: background .16s, color .16s;
  display: block;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #F3F6ED;
  color: #205340;
}

/* SECTIONS & COMMON MODULES */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
}
.feature-grid > div {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 13px rgba(32,83,64,0.04);
  padding: 28px 18px 25px 18px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}
.feature-grid img {
  height: 40px;
  width: 40px;
  margin-bottom: 8px;
}
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  margin-top: 10px;
  margin-bottom: 10px;
}
.service-cards > div {
  flex: 1 1 230px;
  min-width: 210px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 12px rgba(32,83,64,.06);
  padding: 26px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  border: 1px solid #F3F6ED;
}
.service-cards a {
  color: #205340;
  font-weight: 600;
  border-bottom: 1.5px solid #205340;
  transition: color .2s, border-color .2s;
  font-size: 1rem;
  margin-top: 5px;
}
.service-cards a:hover {
  color: #133d27;
  border-color: #78A684;
}

/* TEAM CARDS */
.team-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.team-cards > div {
  flex: 1 1 180px;
  min-width: 160px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 11px rgba(32,83,64,0.05);
  padding: 20px 14px;
  margin-bottom: 20px;
}

/* PRODUCT LISTING */
.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.product-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(32, 83, 64, 0.05);
  padding: 20px 18px;
  flex: 1 1 170px;
  min-width: 150px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  position: relative;
}
.badge {
  display: inline-block;
  background: #78A684;
  color: #fff;
  border-radius: 10px;
  padding: 1px 9px 2px 9px;
  font-size: 0.85rem;
  font-family: 'Montserrat', serif;
  margin-right: 6px;
  margin-bottom: 4px;
}
.product-filters {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #42594a;
}

/* TESTIMONIALS */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.testimonial-card {
  flex: 1 1 250px;
  min-width: 220px;
}
.testimonial-card p {
  color: #1d3222;
  font-size: 1.08rem;
}
.testimonial-card .testimonial-name {
  font-family: 'Montserrat', serif;
  font-weight: 500;
  font-size: 0.98rem;
  color: #205340;
  margin-top: 9px;
}

/* CONTACT DETAILS */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 21px;
  margin-bottom: 12px;
}
.contact-details > div {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
  color: #354c36;
}
.contact-details img {
  width: 24px;
  height: 24px;
  filter: grayscale(1) brightness(.5);
}

/* FOOTER */
footer {
  background: #253a2e;
  color: #fff;
  padding: 38px 0 30px 0;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 36px;
  justify-content: space-between;
}
footer .logo-footer img {
  height: 46px;
  display: block;
  margin-bottom: 11px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 140px;
}
.footer-nav a {
  color: #F3F6ED;
  font-family: 'Montserrat', serif;
  font-size: 1rem;
  margin-bottom: 3px;
  opacity: .9;
  transition: color .2s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #78A684;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 1rem;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #baddb2;
  font-size: 1rem;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  filter: grayscale(1) brightness(1.5);
}

/* BUTTONS */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', serif;
  font-size: 1.09rem;
  background: #205340;
  color: #fff;
  border-radius: 23px;
  padding: 12px 27px;
  border: none;
  font-weight: 500;
  letter-spacing: .03em;
  transition: background .18s, box-shadow .18s, color .18s;
  box-shadow: 0 2px 8px rgba(32,83,64,.06);
  cursor: pointer;
  margin-top: 8px;
  text-align: center;
}
.button.primary {
  background: #205340;
  color: #fff;
}
.button.secondary {
  background: #78A684;
  color: #fff;
}
.button:active,
.button:focus {
  outline: 2px solid #78A684;
  outline-offset: 1px;
}
.button:hover {
  background: #183229;
  color: #fff;
  box-shadow: 0 4px 18px rgba(32,83,64,0.13);
}
.button.secondary:hover {
  background: #3a7c5a;
}

/* FORM ELEMENTS */
input, textarea, select {
  font-family: 'Source Serif Pro', Georgia, Times, serif;
  font-size: 1rem;
  background: #fff;
  border: 1.5px solid #dbe6dd;
  border-radius: 7px;
  padding: 10px 15px;
  color: #205340;
  margin-bottom: 15px;
  width: 100%;
  transition: border-color .18s;
}
input:focus, textarea:focus, select:focus {
  border-color: #78A684;
  outline: 1.5px solid #78A684;
}
label {
  font-family: 'Montserrat', serif;
  color: #205340;
  font-size: 1rem;
  margin-bottom: 7px;
  display: block;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  background: #F3F6ED;
  color: #253a2e;
  border-top: 1.5px solid #b8cdb7;
  box-shadow: 0 -2px 18px rgba(32,83,64,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 20px 24px;
  z-index: 3000;
  font-size: 1.04rem;
  animation: cookie-banner-fadein .5s;
}
@keyframes cookie-banner-fadein {
  from { opacity: 0; transform: translateY(100%); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-buttons {
  display: flex;
  gap: 18px;
}
.cookie-banner .button {
  font-size: 1rem;
  padding: 8px 20px;
  min-width: 100px;
  border-radius: 8px;
  box-shadow: none;
  margin: 0;
  background: #205340;
}
.cookie-banner .button.secondary {
  background: #78A684;
}
.cookie-banner .button.reject {
  background: #eee9e3;
  color: #205340;
}
.cookie-banner .button.reject:hover {
  background: #d2d9cb;
  color: #183229;
}
.cookie-banner .button.settings {
  background: #fff;
  border: 1.2px solid #205340;
  color: #205340;
}
.cookie-banner .button.settings:hover {
  background: #F3F6ED;
  color: #205340;
  border-color: #78A684;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(32, 83, 64, 0.77);
  z-index: 3010;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .28s;
}
.cookie-modal.open {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal-content {
  background: #fff;
  padding: 38px 28px 18px 28px;
  border-radius: 20px;
  box-shadow: 0 14px 44px 0 rgba(32,83,64,.21);
  min-width: 310px;
  max-width: 95vw;
  width: 400px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 1.03rem;
  color: #183229;
  position: relative;
  animation: cookie-modal-slide .33s;
}
@keyframes cookie-modal-slide {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-modal-content h2 {
  margin-bottom: 6px;
  font-size: 1.5rem;
  color: #205340;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 11px;
}
.cookie-category input[type='checkbox'] {
  width: 18px;
  height: 18px;
  accent-color: #78A684;
}
.cookie-category.essential input[type='checkbox'] {
  accent-color: #bbb;
}
.cookie-category.essential label {
  color: #96a7a6 !important;
}
.cookie-modal-close {
  position: absolute;
  top: 18px; right: 18px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #223c34;
  cursor: pointer;
}

/* RESPONSIVE DESIGN — MOBILE FIRST */
@media (max-width: 1120px) {
  .container {
    max-width: 94vw;
  }
}
@media (max-width: 990px) {
  .main-nav, .footer-nav {
    gap: 18px;
  }
  .team-cards, .service-cards, .product-grid, .feature-grid, .content-grid {
    gap: 14px;
  }
  .testimonials {
    gap: 13px;
  }
}
@media (max-width: 860px) {
  header .container {
    padding: 0 12px;
  }
  .main-nav {
    gap: 8px;
  }
  .section {
    padding: 31px 5px;
  }
  .footer-contact {
    font-size: .98rem;
    gap: 7px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .footer-nav, .footer-contact {
    min-width: unset;
    max-width: 420px;
  }
  .container {
    flex-direction: column !important;
    gap: 18px;
  }
  .testimonials, .feature-grid, .product-grid, .service-cards, .team-cards, .card-container, .content-grid {
    flex-direction: column !important;
    gap: 14px !important;
  }
  .testimonial-card,
  .feature-grid > div,
  .product-card,
  .service-cards > div,
  .team-cards > div {
    min-width: unset;
    width: 100%;
  }
  .contact-details {
    flex-direction: column;
    gap: 11px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .hero {
    padding: 48px 0 30px 0;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.38rem;
  }
}
@media (max-width: 520px) {
  .footer-contact, .footer-nav, .logo-footer {
    width: 100%;
    min-width: unset;
    align-items: flex-start;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    padding: 16px 11px;
    font-size: 0.98rem;
    text-align: start;
  }
  .cookie-modal-content {
    min-width: unset;
    padding: 16px 7vw 8px 7vw;
    width: 85vw;
  }
}

/* ELEGANT CLASSIC THEME ADJUSTMENTS */
h1, h2, h3, h4, h5, h6 {
  text-shadow: 0 1px 0 #f2f8ef;
}
.card, .service-cards > div, .feature-grid > div, .team-cards > div, .product-card {
  border: 1px solid #ebeae5;
  box-shadow: 0 1.5px 10px rgba(32,83,64,0.05);
}
hr {
  border: none;
  border-top: 1.5px solid #eee;
  margin: 28px 0;
}

/* SHADOWS & HOVER EFFECTS */
.card, .product-card, .service-cards > div, .feature-grid > div, .team-cards > div {
  transition: transform .13s cubic-bezier(.37,.01,.44,.98), box-shadow .18s;
}
.card:hover, .product-card:hover, .service-cards > div:hover,
.feature-grid > div:hover, .team-cards > div:hover {
  transform: translateY(-4px) scale(1.012);
  box-shadow: 0 7px 24px rgba(32,83,64,0.11);
  z-index: 2;
}

/* MICRO-INTERACTIONS */
.button, .main-nav a, .mobile-nav a {
  will-change: background, color, box-shadow;
}
input, textarea {
  transition: border-color .21s, box-shadow .18s;
}
.button:active, .main-nav a:active, .mobile-nav a:active {
  filter: brightness(90%);
}

/* MODERN SCROLLBAR */
::-webkit-scrollbar {
  width: 11px;
  background: #F3F6ED;
}
::-webkit-scrollbar-thumb {
  background: #baddb2;
  border-radius: 6px;
}

/* ACCENT UTILITIES */
.bg-accent {
  background: #F3F6ED !important;
}
.text-primary {
  color: #205340 !important;
}
.text-secondary {
  color: #78A684 !important;
}

/* Z-INDEX UTILITIES */
header { z-index: 1000; }
.mobile-menu { z-index: 2000; }
.cookie-banner { z-index: 3000; }
.cookie-modal { z-index: 3010; }


/* END OF STYLE.CSS */