/* RESET & BASE --------------------------------------------------- */
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 {
  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, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: linear-gradient(135deg, #F6F3EC 0%, #B9C28C 100%);
  color: #35594C;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #35594C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #B9C28C;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
strong, b {
  font-weight: 700;
}

::-webkit-scrollbar {
  width: 12px;
  background: #F6F3EC;
}
::-webkit-scrollbar-thumb {
  background: #B9C28C;
  border-radius: 10px;
}


/* TYPOGRAPHY ------------------------------------------------------- */
h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #35594C;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
p {
  font-size: 1.08rem;
  color: #35594C;
  margin-bottom: 16px;
}
.text-section p:not(:last-child) {
  margin-bottom: 16px;
}
.text-section h2 {
  margin-top: 32px;
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.08rem;
  }
}


/* CONTAINER ---------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 12px;
  }
}


/* HEADER & NAV ---------------------------------------------------- */
header {
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(53, 89, 76, 0.05);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  gap: 16px;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
}
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #35594C;
  padding: 6px 8px;
  border-radius: 7px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #fff;
  background: #35594C;
}
.cta-btn {
  background: linear-gradient(90deg, #35594C 0%, #B9C28C 100%);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.04rem;
  padding: 10px 28px;
  border-radius: 25px;
  box-shadow: 0 4px 24px 0 rgba(53,89,76,0.07);
  transition: background 0.25s, transform 0.1s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
  display: inline-block;
  outline: none;
  margin-left: 8px;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg,#B9C28C 0%, #35594C 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 36px 0 rgba(53,89,76,0.12);
}

/* MOBILE HEADER */
.mobile-menu-toggle {
  display: none;
  font-size: 1.8rem;
  background: transparent;
  border: none;
  color: #35594C;
  padding: 6px 12px;
  cursor: pointer;
  z-index: 111;
}
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  background: linear-gradient(135deg, #F6F3EC 70%, #B9C28C 100%);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.37s cubic-bezier(.66,0,.23,1);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-top: 20px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  background: none;
  border: none;
  color: #35594C;
  margin: 18px 28px 0 0;
  cursor: pointer;
  z-index: 1205;
  padding: 6px 10px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  width: 100%;
  margin-top: 40px;
  margin-right: 40px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: #35594C;
  background: none;
  padding: 10px 14px;
  border-radius: 11px;
  transition: background 0.2s, color 0.2s;
  width: fit-content;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #35594C;
  color: #fff;
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none;
  }
}


/* SECTIONS --------------------------------------------------------- */
section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
  position: relative;
}
.cta-section {
  padding: 32px 0 0 0;
  background: linear-gradient(90deg, #B9C28C 50%, #F6F3EC 100%);
  border-radius: 32px 32px 0 0;
}
.hero-section {
  padding: 60px 0 40px 0;
  background: linear-gradient(100deg, #B9C28C 0%, #F6F3EC 100%);
  min-height: 330px;
  display: flex;
  align-items: center;
}
.hero-section .content-wrapper {
  align-items: flex-start;
}
.hero-section h1,
.hero-section p {
  max-width: 600px;
}
@media (max-width: 768px) {
  section {
    margin-bottom: 40px;
    padding: 24px 0 0 0;
  }
  .hero-section {
    padding: 30px 0 24px 0;
    min-height: 160px;
  }
}

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

/* FLEX GRID UTILITIES ---------------------------------------------- */
.features-grid, .services-grid, .tips-list, .project-list, .testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 32px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 36px rgba(53,89,76,0.07);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.22s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 8px 56px rgba(53,89,76,0.14);
  transform: translateY(-2px) scale(1.012);
}
.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;
}
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 3px 26px rgba(53,89,76,0.07);
  min-width: 250px;
  max-width: 370px;
  flex: 1 0 260px;
}
.testimonial-card p {
  font-size: 1.08rem;
  line-height: 1.45;
  color: #222;
  margin-bottom: 5px;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #35594C;
  font-weight: 600;
  letter-spacing: 0.02em;
 }
 /* Strong color contrast for reviews */
 .testimonial-card {
   background: #fff;
   color: #222;
 }
 /* Quick stat & fact boxes etc */
 .quick-stats ul,
 .project-highlights ul,
 .quick-facts ul,
 .project-outcome ul {
   display: flex;
   flex-direction: row;
   gap: 30px;
   flex-wrap: wrap;
   list-style: none;
   background: #EFF2E9;
   border-radius: 13px;
   padding: 16px 20px;
   margin-bottom: 0;
   font-size: 1.04rem;
 }
 .quick-stats ul li strong {
   color: #35594C;
   font-size: 1.12rem;
   font-family: 'Montserrat', Arial, sans-serif;
 }
 @media (max-width: 800px) {
  .features-grid,
  .services-grid,
  .tips-list,
  .project-list,
  .testimonials-grid {
    flex-direction: column;
    gap: 20px;
  }
  .quick-stats ul,
  .project-highlights ul,
  .quick-facts ul,
  .project-outcome ul {
    flex-direction: column;
    gap: 12px;
    padding: 12px 12px;
  }
 }

.feature-item, .service-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 18px rgba(53,89,76,0.07);
  padding: 18px 20px;
  min-width: 220px;
  max-width: 330px;
  transition: box-shadow 0.18s, transform 0.16s;
}
.feature-item img, .service-item img {
  width: 40px;
  height: 40px;
}
.feature-item h3, .service-item h3 {
  font-size: 1.14rem;
  margin: 0 0 8px 0;
  color: #35594C;
}
.feature-item p, .service-item p {
  font-size: 0.97rem;
  color: #35594C;
  margin-bottom: 0;
}
.feature-item:hover, .service-item:hover {
  box-shadow: 0 8px 32px rgba(53,89,76,0.13);
  transform: translateY(-3px) scale(1.017);
}
.service-link {
  display: inline-block;
  background: #B9C28C;
  color: #35594C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 16px;
  padding: 8px 20px;
  margin-top: 12px;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(53,89,76,0.06);
  transition: background 0.22s, color 0.18s, transform 0.14s;
}
.service-link:hover, .service-link:focus {
  background: #35594C;
  color: #fff;
  transform: translateY(-1.5px) scale(1.04);
}

@media (max-width: 1050px) {
  .features-grid, .services-grid {
    justify-content: center;
  }
  .feature-item, .service-item {
    min-width: 180px;
    max-width: 400px;
  }
}
@media (max-width: 700px) {
  .feature-item, .service-item, .testimonial-card, .card {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
}

/* Accordion (simple) */
.accordion-list h3 {
  cursor: pointer;
  position: relative;
  margin-top: 20px;
  color: #35594C;
}
.accordion-list p {
  margin-bottom: 10px;
}


/* FOOTER ---------------------------------------------------------- */
footer {
  background: #35594C;
  color: #fff;
  width: 100%;
  padding: 28px 0 14px 0;
  margin-top: 60px;
}
.footer-container {
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.footer-nav a {
  color: #fff;
  font-size: 1rem;
  transition: color 0.17s;
  font-family: 'Montserrat', Arial, sans-serif;
  opacity: 0.93;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #B9C28C;
}
.footer-container p {
  color: #B9C28C;
  font-size: 0.95rem;
}
.footer-container img {
  width: 46px;
  margin-bottom: 8px;
}

/* Responsive footer */
@media (max-width: 680px) {
  .footer-nav {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .footer-container {
    gap: 13px;
    padding: 0 10px;
  }
}

/* BUTTONS ---------------------------------------------------------- */
button, input[type="submit"], .cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  outline: none;
  cursor: pointer;
}
button:active, .cta-btn:active {
  filter: brightness(0.93);
}

/* Special for .additional-note, etc */
.additional-note {
  background: #EFF2E9;
  color: #35594C;
  border-radius: 12px;
  padding: 18px 20px;
  margin-top: 28px;
  font-size: 1.02rem;
}

/* FAQ & LISTS ------------------------------------------------------ */
.question-box {
  background: #B9C28C10;
  border-left: 4px solid #B9C28C;
  border-radius: 10px;
  padding: 20px 18px;
  margin-bottom: 18px;
}
.question-box h3 {
  font-size: 1.12rem;
  color: #35594C;
  margin-bottom: 5px;
}

/* FORM (if any added) ---------------------------------------------- */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  border: 1.5px solid #B9C28C;
  padding: 10px 12px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 1.05rem;
  transition: border 0.21s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #35594C;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  color: #35594C;
  display: block;
  margin-bottom: 4px;
}

/* Cookie Banner ------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg,#35594C 65%, #B9C28C 100%);
  color: #fff;
  font-size: 1rem;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  box-shadow: 0 -2px 22px rgba(53,89,76,0.14);
  transition: transform 0.35s;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-banner h3 {
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 0;
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner button {
  border: none;
  outline: none;
  border-radius: 20px;
  padding: 9px 21px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.cookie-banner .accept {
  background: #B9C28C;
  color: #35594C;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #35594C;
  color: #fff;
}
.cookie-banner .reject {
  background: #fff;
  color: #35594C;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #B9C28C;
  color: #35594C;
}
.cookie-banner .settings {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 8px 16px;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #fff;
  color: #35594C;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 10px;
  }
  .cookie-banner-buttons {
    gap: 8px;
  }
}
/* Cookie Preferences Modal */
.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(32,45,38,0.29);
  z-index: 3050;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.21s;
}
.cookie-modal {
  background: #fff;
  color: #35594C;
  border-radius: 16px;
  max-width: 340px;
  width: 94vw;
  padding: 30px 24px 22px 24px;
  box-shadow: 0 6px 46px 0 rgba(53,89,76,0.15);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 3052;
  animation: modalIn 0.34s ease;
}
@keyframes modalIn {
  0% { transform: scale(0.8) translateY(50px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.1rem;
  margin-bottom: 10px;
 }
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.cookie-category label {
  font-size: 1rem;
  font-weight: 500;
}
.cookie-toggle {
  accent-color: #B9C28C;
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.cookie-category .always-on {
  color: #aaa;
  font-size: 0.95rem;
  font-weight: 400;
  margin-left: 4px;
}
.cookie-modal .cookie-modal-actions {
  margin-top: 22px;
  display: flex;
  gap: 11px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-modal .close-cookie-modal {
  background: transparent;
  color: #35594C;
  font-size: 1.3rem;
  border: none;
  position: absolute;
  top: 15px;
  right: 20px;
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal .close-cookie-modal:hover {
  color: #B9C28C;
}


/* Miscellaneous & Micro-interactions ------------------------------------------ */
.card, .feature-item, .service-item, .testimonial-card {
  transition: box-shadow 0.21s, transform 0.15s;
}
.card:hover, .feature-item:hover, .service-item:hover, .testimonial-card:hover {
  box-shadow: 0 8px 38px 0 rgba(53,89,76,0.13);
  transform: scale(1.014);
  z-index: 2;
}

input[type="checkbox"], input[type="radio"] {
  accent-color: #B9C28C;
}

/* Lists inside text section */
.text-section ul, .text-section ol {
  margin-bottom: 18px;
}
.text-section li {
  margin-bottom: 7px;
  font-size: 1.04rem;
  color: #35594C;
}


/* Responsive patterns ---------------------------------------------------------- */
@media (max-width: 1050px) {
  .header-container {
    padding: 16px 8px;
  }
  .footer-container {
    padding: 0 8px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 768px) {
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 14px;
  }
  .hero-section .content-wrapper {
    align-items: flex-start;
    gap: 18px;
  }
}

/* Prevent overlapping by spacing */
.card, .card-container, .feature-item, .service-item, .testimonial-card, .content-wrapper, .section, section, .container {
  margin-bottom: 20px;
}

/* Hide mobile menu by default */
.mobile-menu {
  visibility: hidden;
  pointer-events: none;
}
.mobile-menu.open {
  visibility: visible;
  pointer-events: auto;
}


/* Z-index management for overlays & menu */
.mobile-menu, .mobile-menu-close { z-index: 1200; }
.cookie-banner { z-index: 3000 !important; }
.cookie-modal-backdrop, .cookie-modal { z-index: 3050 !important; }

/* Print fixes -------------------------------------------------------- */
@media print {
  header, footer, .cookie-banner, .mobile-menu {
    display: none !important;
  }
}

/* Accessibility focus outlines ---------------------------------------------- */
a:focus, button:focus, .cta-btn:focus, .service-link:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  outline: 2px solid #B9C28C;
  outline-offset: 2px;
}

/* End of CSS */
