/* --- CSS RESET & NORMALIZATION --- */
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, main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #e6ece6;
  color: #31545c;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: #31545c;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #ff9a2f;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  padding-left: 1.2em;
  margin: 18px 0;
}
li {
  margin-bottom: 0.5em;
}

/* --- BRAND FONTS --- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500|Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #31545c;
  margin-bottom: 0.6em;
  line-height: 1.15;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.15rem; }
}

p, ul, ol {
  font-size: 1rem;
  color: #31545c;
}
strong {
  font-weight: 600;
}
em {
  color: #729c69;
  font-style: normal;
}

/* --- MAIN LAYOUT CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1100px;
  padding-left: 16px;
  padding-right: 16px;
  margin: 0 auto;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(53, 70, 44, 0.04), 0 1px 2px rgba(71, 95, 50, .13);
  position: relative;
}

@media (max-width: 768px) {
  .section {
    margin-bottom: 32px;
    padding: 24px 10px;
    border-radius: 16px;
  }
}

.hero {
  background: linear-gradient(120deg, #e6ece6 75%, #c6dad2 100%);
  padding: 64px 0 56px 0;
  border-radius: 0 0 48px 48px;
  margin-bottom: 40px;
  box-shadow: 0 2px 24px 0 rgba(49, 84, 92, 0.06);
}
.hero h1 {
  color: #31545c;
}
.tagline {
  font-size: 1.1rem;
  color: #729c69;
  margin-bottom: 1.2em;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
}

/* --- HEADER --- */
header {
  background: #f4f7f4;
  box-shadow: 0 2px 12px 0 rgba(49, 84, 92, 0.06);
  position: relative;
  z-index: 100;
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}
.header-bar img {
  height: 40px;
  width: auto;
  border-radius: 18px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #31545c;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #e5f3e3;
  color: #ff9a2f;
}

.cta.primary {
  display: inline-flex;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #fff;
  background: #31545c;
  border: none;
  border-radius: 32px;
  padding: 10px 32px;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
  margin-left: 16px;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, color .18s;
  box-shadow: 0 5px 20px -6px rgba(49,84,92,.13);
}
.cta.primary:hover, .cta.primary:focus {
  background: #729c69;
  color: #fff;
}
/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  background: #31545c;
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 12px;
  padding: 6px 16px;
  margin-right: 8px;
  cursor: pointer;
  transition: background .2s;
  z-index: 111;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #ff9a2f;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 100vw;
  width: 300px;
  max-width: 100vw;
  background: #f4f7f4;
  box-shadow: -4px 0 24px 0 rgba(49,84,92,0.10);
  padding: 32px 18px 18px 24px;
  transition: left .36s cubic-bezier(.82,0,.11,.99);
  z-index: 2222;
}
.mobile-menu.active {
  left: calc(100vw - 300px);
}
.mobile-menu-close {
  align-self: flex-end;
  background: #fff;
  color: #31545c;
  border: none;
  font-size: 1.65rem;
  padding: 6px 12px;
  margin-bottom: 20px;
  border-radius: 50%;
  cursor: pointer;
  transition: background .15s, color .15s;
  box-shadow: 0 2px 8px rgba(123,144,84,0.11);
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #dbe6d0;
  color: #ff9a2f;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 10px 0;
  color: #31545c;
  text-decoration: none;
  border-radius: 8px;
  transition: background .18s, color .18s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #e6ece6;
  color: #ff9a2f;
}
@media (max-width: 1020px) {
  .main-nav, .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1021px) {
  .mobile-menu {
    display: none!important;
  }
  .mobile-menu-toggle {
    display: none!important;
  }
}
@media (max-width: 400px) {
  .mobile-menu {
    width: 100vw;
    left: 100vw;
  }
  .mobile-menu.active {
    left: 0;
  }
}

/* --- GENERAL FLEX UTILITY & SECTIONS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1px 7px 0 rgba(49,85,60, .09);
  padding: 30px 26px;
  margin-bottom: 20px;
  flex: 1 1 260px;
  min-width: 210px;
  position: relative;
  transition: box-shadow .23s, transform .22s;
}
.card:hover {
  box-shadow: 0 6px 20px 0 rgba(49,84,92,.15);
  transform: translateY(-4px) scale(1.014);
}
.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;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

.section, .card, .testimonial-card {
  box-sizing: border-box;
  margin-bottom: 20px;
}

/* --- LIST STYLES FOR FEATURES / SERVICES --- */
.feature-grid, .value-list, .service-list, .service-highlights, .category-list, .step-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 10px;
  margin-bottom: 0;
  padding-left: 1.5em;
}
.feature-grid li, .value-list li, .service-list li, .service-highlights li, .category-list li, .step-list li {
  font-size: 1.04em;
  line-height: 1.55;
  color: #31545c;
  background: rgba(198,218,210,0.18);
  border-radius: 10px 28px 10px 28px;
  padding: 12px 18px;
  margin-bottom: 0px!important;
  box-shadow: 0 1px 4px 0 rgba(49,84,92,0.06);
  /* subtle naturalistic shadow */
}
.feature-grid li strong, .value-list li strong, .service-list li strong, .service-highlights li strong, .category-list li strong {
  color: #184733;
}

/* ---- TESTIMONIALS ---- */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.testimonial-card {
  flex: 1 1 280px;
  max-width: 360px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 22px 18px 22px;
  background: #ffffff;
  border-radius: 20px 40px 20px 32px;
  box-shadow: 0 2px 12px 0 rgba(49,85,60,0.08);
  border-left: 6px solid #729c69;
  margin-bottom: 20px;
}
.testimonial-card p {
  color: #31545c;
  font-size: 1.07rem;
  font-style: italic;
  line-height: 1.56;
}
.testimonial-meta {
  color: #729c69;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
@media (max-width: 900px) {
  .testimonial-list {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card { max-width: 600px; }
}

/* ---- BUTTONS & LINKS ----*/
button, .cta {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  cursor: pointer;
  background: none;
  border: none;
  transition: background 0.2s, color 0.19s, box-shadow 0.2s;
}
.cta {
  display: inline-flex;
  align-items: center;
  background: #ff9a2f;
  color: #fff;
  font-weight: 600;
  padding: 10px 32px;
  border-radius: 32px;
  box-shadow: 0 4px 16px -8px rgba(255,154,47,0.14);
  border: none;
  font-size: 1rem;
  margin: 8px 0;
  text-decoration: none;
  text-align: center;
  transition: background 0.19s, color 0.19s, box-shadow 0.20s;
}
.cta:hover, .cta:focus {
  background: #31545c;
  color: #ff9a2f;
  outline: none;
}

button:focus, .cta:focus {
  outline: 2px solid #ff9a2f;
  outline-offset: 2px;
}

/* --- FORM (if used in future) --- */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 12px;
  border: 1px solid #c6dad2;
  border-radius: 10px 18px 10px 18px;
  background: #fff;
  color: #31545c;
  margin-bottom: 12px;
  width: 100%;
  box-sizing: border-box;
  transition: border-color .18s;
}
input:focus, textarea:focus, select:focus {
  border-color: #ff9a2f;
  outline: none;
}

label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  color: #31545c;
  margin-bottom: 6px;
}

/* --- MINI MAP --- */
.mini-map {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #f0f4ee;
  border-radius: 18px 30px 18px 30px;
  padding: 12px 18px;
  margin-top: 10px;
}
.mini-map img {
  width: 48px;
  height: 48px;
  display: block;
}
@media (max-width: 600px) {
  .mini-map { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* --- FOOTER --- */
footer {
  background: #31545c;
  color: #fff;
  padding: 36px 0 16px 0;
  border-radius: 34px 34px 0 0;
  margin-top: 48px;
  box-shadow: 0px -1px 18px 0 rgba(49,84,92,0.07);
  font-size: 1rem;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-bottom: 14px;
}
.footer-nav a {
  color: #e6ece6;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  text-decoration: underline;
  font-size: 1rem;
  padding: 4px 8px;
  border-radius: 8px;
  transition: background .17s, color .17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #2d5038;
  color: #ffac57;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin-top: 8px;
}
.footer-brand img {
  height: 28px;
  width: auto;
  border-radius: 10px;
}
.footer-brand span {
  color: #e6ece6;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}

@media (max-width: 768px) {
  footer {
    font-size: .95rem;
    padding: 22px 0 12px 0;
  }
  .footer-nav { gap: 12px; font-size: .97rem; }
  .footer-brand img { height: 22px; }
}

/* --- SPACING BETWEEN SECTIONS --- */
main section,
.section {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  main section,
  .section { margin-bottom: 28px; }
}

/* --- RESPONSIVE HELPERS --- */
@media (max-width: 600px) {
  .content-wrapper { padding: 0; }
}

/* --- QUICK CONTACT NOTE --- */
.quick-contact-note {
  background: #f3f8ed;
  border-radius: 14px 18px 8px 30px;
  padding: 10px 18px;
  color: #729c69;
  margin-top: 6px;
  font-size: 0.98rem;
  box-shadow: 0 1px 5px 0 rgba(49,84,92,.06);
}

/* --- CARDS & FEATURE ITEM TEMPLATE --- */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 16px 18px;
  background: #f7faf8;
  border-radius: 16px 30px 16px 30px;
  margin-bottom: 12px;
  box-shadow: 0 1.5px 7px 0 rgba(49,85,60, .06);
}

/* --- ANIMATION CLASSES --- */
.fade-in {
  animation: fadeIn .6s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.slide-in-left {
  animation: slideInLeft .45s cubic-bezier(.54,.01,.14,1.26);
}
@keyframes slideInLeft {
  from { transform: translateX(-40px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fffbea;
  box-shadow: 0 -2px 28px 0 rgba(155,143,59,0.08);
  padding: 24px 18px 24px 18px;
  z-index: 5020;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-family: 'Roboto', Arial, sans-serif;
  color: #31545c;
  border-radius: 24px 24px 0 0;
  transition: transform 0.38s cubic-bezier(.82,0,.11,.99);
}
.cookie-consent-banner.hide {
  transform: translateY(120%);
}
.cookie-consent-message {
  flex: 1 1 auto;
  font-size: 0.98rem;
  color: #3d3c29;
}
.cookie-btns {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #729c69;
  color: #fff;
  border-radius: 20px;
  border: none;
  padding: 8px 16px;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  cursor: pointer;
  transition: background .15s, color .15s, box-shadow .2s;
  box-shadow: 0 2px 10px -5px #abc;
}
.cookie-btn.accept {
  background: #31545c;
}
.cookie-btn.settings {
  background: #ff9a2f;
  color: #fff;
}
.cookie-btn.reject {
  background: #c4422b;
}
.cookie-btn:hover, .cookie-btn:focus {
  box-shadow: 0 4px 18px -5px #bcb991;
  opacity: .93;
}

@media (max-width: 570px) {
  .cookie-consent-banner {
    flex-direction: column;
    gap: 14px;
    font-size: .97rem;
    padding: 18px 8px;
  }
  .cookie-btns { gap:9px; }
}

/* Cookie modal popup */
.cookie-modal-overlay {
  position: fixed;
  z-index: 6020;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(49,85,60, 0.075);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .14s;
  opacity: 1;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 19px 38px 19px 38px;
  padding: 44px 26px 30px 26px;
  min-width: 90vw;
  max-width: 410px;
  box-shadow: 0 2px 60px 0 rgba(77,82,66,0.17);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  font-family: 'Roboto', Arial, sans-serif;
  color: #31545c;
  animation: fadeIn .35s ease;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  right: 24px; top: 18px;
  background: #e2e6da;
  color: #31545c;
  font-size: 1.2rem;
  padding: 4px 11px;
  border: none;
  border-radius: 22px;
  cursor: pointer;
  transition: background .15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #ff9a2f;
  color: #fff;
}
.cookie-modal h3 {
  font-size: 1.15rem;
  color: #184733;
  margin-bottom: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 6px;
}
.cookie-category label {
  font-size: 1rem;
  font-weight: 500;
  color: #31545c;
  cursor: pointer;
}
.cookie-category input[type="checkbox"] {
  accent-color: #729c69;
  height: 20px;
  width: 20px;
  margin-right: 0;
}
.cookie-category.essential label {
  color: #a4bfa1;
  font-style: italic;
}

.cookie-modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.cookie-modal-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 7px 20px;
  border-radius: 16px;
  border: none;
  background: #729c69;
  color: #fff;
  cursor: pointer;
  transition: background .15s;
}
.cookie-modal-actions button.save {
  background: #31545c;
}
.cookie-modal-actions button:hover {
  opacity: .93;
}

/* --- ORGANIC/NATURE VISUAL MICRO ELEMENTS --- */
.section, .card, .testimonial-card, .feature-item, .quick-contact-note, .mini-map, .cookie-modal {
  background-image: url("data:image/svg+xml,%3Csvg width='730' height='280' viewBox='0 0 730 280' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse opacity='.025' cx='217' cy='100' rx='213' ry='90' fill='%2331545c'/%3E%3Cellipse opacity='.035' cx='530' cy='188' rx='126' ry='88' fill='%23729c69'/%3E%3Cellipse opacity='.025' cx='657' cy='31' rx='73' ry='31' fill='%23ff9a2f'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 400px 180px;
}
@media (max-width: 600px) {
  .section, .card, .testimonial-card, .feature-item, .quick-contact-note, .mini-map, .cookie-modal {
    background-size: 220px 90px;
  }
}

/* --- MISC DESIGN ADJUSTMENTS --- */
::selection {
  background: #bfe2ba;
  color: #184733;
}

hr {
  border: 0;
  border-top: 2px solid #e6ece6;
  margin: 24px 0;
}

/* Hide JS-inserted/controlled overlays initially */
.mobile-menu:not(.active) { pointer-events: none; }
.cookie-modal-overlay:not(.active) { pointer-events: none; opacity: 0; }


/* --- ACCESSIBILITY UTILITIES --- */
.sr-only {
  position: absolute!important;
  left: -10000px;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* --- END --- */
