/* === 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;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  line-height: 1.6;
  background: #F6F9F5;
  color: #17636A;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  min-height: 100vh;
}
img, svg {
  max-width: 100%;
  display: inline-block;
  height: auto;
}
a {
  color: #34A375;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #17636A;
}
ul, ol {
  list-style: disc inside;
}
strong, b {
  font-weight: 600;
}


/* === TYPOGRAPHY === */
h1, .hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #17636A;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #27918A;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #34A375;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #17636A;
  font-weight: 600;
}
p, li, span, address, .text-section {
  color: #223B3A;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

.text-section ul, .text-section ol, ul, ol {
  margin-bottom: 16px;
  padding-left: 22px;
  color: #223B3A;
}
address {
  font-style: normal;
  color: #223B3A;
}

/* === BASIC STRUCTURE & CONTAINERS === */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section, main section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 24px;
  background: #FFFFFFE6;
  box-shadow: 0 4px 28px 0 rgba(23,99,106,0.07);
}
@media (max-width: 900px) {
  .section, main section {
    padding: 28px 8px;
    margin-bottom: 36px;
    border-radius: 16px;
  }
}

/* === HEADER & NAVIGATION === */
header {
  background: linear-gradient(90deg, #E8F7F5 0%, #F5EFFC 100%);
  box-shadow: 0 1px 8px 0 rgba(44,98,84,0.07);
  position: relative;
  z-index: 100;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 84px;
}
header img {
  height: 38px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #17636A;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 18px;
  padding: 8px 16px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a.active {
  background: #F3F7EE;
  color: #34A375;
}

.cta-btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  color: #F6F9F5;
  background: #34A375;
  border-radius: 24px;
  padding: 10px 26px;
  margin-left: 8px;
  box-shadow: 0 4px 18px 0 rgba(52,163,117,0.11);
  border: none;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.22s;
  cursor: pointer;
}
.cta-btn:hover, .cta-btn:focus {
  background: #17636A;
  color: #F6F9F5;
  box-shadow: 0 6px 24px 0 rgba(52,163,117,0.17);
}

/* =========== MOBILE NAVIGATION =========== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #34A375;
  cursor: pointer;
  z-index: 101;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #34A375;
}

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  z-index: 1200;
  background: rgba(249,251,249,0.98);
  box-shadow: 0 6px 32px 0 rgba(23,99,106,0.15);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.68,-0.55,.27,1.55);
  flex-direction: column;
  padding: 0;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #17636A;
  font-size: 2.3rem;
  padding: 16px 24px 6px 16px;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:focus {
  color: #34A375;
  outline: 2px solid #34A375;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  margin: 36px 0 0 44px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: #27918A;
  text-decoration: none;
  font-weight: 500;
  background: transparent;
  border-radius: 12px;
  padding: 8px 14px;
  transition: background 0.17s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E4F7EF;
  color: #17636A;
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

@media (max-width: 600px) {
  header .container {
    gap: 8px;
    min-height: 68px;
  }
  .cta-btn {
    font-size: 1rem;
    padding: 9px 16px;
  }
  .main-nav a {
    font-size: 1rem;
    padding: 6px 10px;
  }
}

/* =============== HERO SECTIONS =============== */
.hero {
  background: linear-gradient(120deg, #E1F6F7 0%, #F5EFFC 100%);
  border-radius: 0 0 36px 36px;
  padding: 58px 0 44px 0;
  margin-bottom: 54px;
  box-shadow: 0 6px 32px 0 rgba(23,99,106,0.10);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  align-items: center;
  gap: 20px;
  text-align: center;
}
.hero p {
  color: #25797A;
  font-size: 1.15rem;
  margin-bottom: 10px;
}
@media (max-width: 700px) {
  .hero {
    padding: 36px 0 28px;
    border-radius: 0 0 18px 18px;
  }
}

/* =============== LAYOUT FLEX UTILS =============== */
.features-grid, .fact-boxes, .filter-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.features-grid > div, .fact-boxes > div, .filters > li {
  background: #F3FAF7;
  border-radius: 18px;
  padding: 22px 18px;
  min-width: 180px;
  flex: 1 1 190px;
  box-shadow: 0 2px 12px 0 rgba(52,163,117,0.07);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.features-grid span {
  font-size: 2rem;
  margin-bottom: 8px;
}
.features-grid h3 {
  margin: 0 0 4px 0;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  list-style: none;
  padding: 0;
}
.filters li {
  color: #17636A;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #F2E8FA;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 2px 10px 0 rgba(44,157,125,0.07);
  margin-bottom: 20px;
  padding: 26px 22px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.17s;
  flex: 1 1 220px;
  min-width: 210px;
  z-index: 1;
}
.card:hover {
  box-shadow: 0 10px 28px 0 rgba(52,163,117,0.14);
  transform: translateY(-4px) scale(1.01);
}
.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;
  margin-bottom: 18px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
@media (max-width: 900px) {
  .features-grid, .fact-boxes, .card-container, .content-grid {
    gap: 16px;
  }
  .card {
    min-width: 140px;
    padding: 18px 12px;
  }
}
@media (max-width: 700px) {
  .features-grid, .card-container, .fact-boxes, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .features-grid > div, .fact-boxes > div {
    min-width: 110px;
    padding: 12px 10px;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* === SERVICES/PRODUCTS LISTS === */
.service-list {
  margin: 0 0 18px 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.service-list li {
  background: #FDF8EF;
  border-radius: 18px;
  box-shadow: 0 1px 8px 0 rgba(247,171,96,0.08);
  padding: 18px 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 1.07rem;
}
.service-list span {
  font-weight: 500;
  color: #27918A;
  font-size: 1.07rem;
  background: #F7FDFB;
  padding: 2px 10px;
  border-radius: 8px;
  margin: 6px 0 6px 0;
  display: inline-block;
}
.service-list a {
  color: #fff;
  background: #34A375;
  border-radius: 13px;
  padding: 6px 18px;
  text-decoration: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: background 0.19s, color 0.13s;
  margin-left: 0;
  align-self: flex-start;
}
.service-list a:hover {
  background: #17636A;
  color: #fff;
}

/* === TESTIMONIALS === */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 10px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F4F6FB;
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(23,99,106,0.10);
  flex: 1 1 240px;
  min-width: 220px;
  color: #1A4244;
  font-size: 1.04rem;
  position: relative;
}
.testimonial-card p {
  color: #17636A;
  font-size: 1.07rem;
  margin-bottom: 8px;
  font-style: italic;
}
.testimonial-card span {
  color: #34A375;
  font-size: 0.97rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
@media (max-width: 700px) {
  .testimonials {
    flex-direction: column;
    gap: 11px;
  }
  .testimonial-card {
    min-width: 110px;
    padding: 13px 8px;
  }
}

/* === FOOTER === */
footer {
  background: linear-gradient(90deg, #F6F9F5 55%, #E8F7F5 100%);
  padding: 44px 0 18px 0;
  margin-top: 60px;
  border-radius: 34px 34px 0 0;
  box-shadow: 0 -2px 24px 0 rgba(44,157,125,0.04);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
footer img {
  height: 32px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.footer-nav a {
  color: #34A375;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  text-decoration: none;
  border-radius: 11px;
  padding: 6px 10px;
  transition: background 0.16s, color 0.11s;
}
.footer-nav a:hover {
  background: #E8F7F5;
  color: #17636A;
}
.contact-info {
  font-size: 0.98rem;
  color: #2C6254;
  line-height: 1.25;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer span {
  display: block;
  margin-top: 8px;
  color: #A985A5;
  font-size: 0.94rem;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  footer {
    border-radius: 18px 18px 0 0;
    margin-top: 30px;
    padding: 26px 0 8px 0;
  }
}


/* === OTHER FLEX PATTERNS === */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.quick-facts {
  background: #EFFFEB;
  border-radius: 13px;
  padding: 16px 18px;
  margin-top: 26px;
  box-shadow: 0 1px 9px 0 rgba(98,177,73,0.055);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.conservation-tips {
  background: #E8F7F5;
  border-radius: 11px;
  padding: 14px 12px;
  margin-top: 14px;
  box-shadow: 0 1px 8px 0 rgba(34,187,176,0.07);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.trust-signals {
  margin-top: 18px;
  background: #EFFCFA;
  border-radius: 16px;
  padding: 16px 16px 13px 16px;
  box-shadow: 0 1px 9px 0 rgba(93,183,164,0.05);
}

.filters {
  margin-top: 12px;
  margin-bottom: 10px;
}
.filters li {
  padding: 7px 14px;
  border-radius: 10px;
  background: #F5EFFC;
  color: #9258A5;
  font-size: 1rem;
  font-weight: 500;
}

/* === FORM ELEMENTS (generic) === */
input[type='text'],
input[type='email'],
input[type='tel'],
textarea {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  padding: 10px 16px;
  background: #F9F8FC;
  border: 1px solid #C3E7DF;
  color: #17636A;
  border-radius: 10px;
  width: 100%;
  transition: border 0.15s;
  font-size: 1rem;
  margin-bottom: 14px;
}
input:focus, textarea:focus {
  border: 1.5px solid #34A375;
  outline: none;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #27918A;
  margin-bottom: 5px;
  display: block;
}
button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: #34A375;
  border: none;
  border-radius: 14px;
  padding: 8px 20px;
  box-shadow: 0 2px 8px 0 rgba(52,163,117,0.08);
  cursor: pointer;
  transition: background 0.15s, color 0.12s, box-shadow 0.22s;
}
button:hover, button:focus {
  background: #17636A;
  color: #F6F9F5;
  outline: none;
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 1500;
  background: #F5EFFC;
  color: #17636A;
  box-shadow: 0 -3px 22px 0 rgba(149,88,165,0.10);
  padding: 22px 8vw 22px 8vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  font-size: 1rem;
  border-radius: 18px 18px 0 0;
  transition: transform 0.36s cubic-bezier(.68,-0.55,.27,1.55);
  transform: translateY(0);
}
.cookie-banner.hide {
  transform: translateY(150%);
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}
.cookie-banner button {
  padding: 7px 18px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  min-width: 98px;
  transition: background 0.19s, color 0.13s;
}
.cookie-banner .accept {
  background: #34A375;
  color: #fff;
}
.cookie-banner .accept:hover {
  background: #17636A;
}
.cookie-banner .reject {
  background: #E8F7F5;
  color: #27918A;
  border: 1.5px solid #27918A;
}
.cookie-banner .reject:hover {
  background: #fff;
  color: #17636A;
}
.cookie-banner .settings {
  background: #F2E8FA;
  color: #9258A5;
  border: 1.5px solid #9258A5;
}
.cookie-banner .settings:hover {
  background: #9258A5;
  color: #fff;
}
/* Responsive cookie banner */
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 12px 16px 12px;
    gap: 14px;
    font-size: 0.97rem;
  }
  .cookie-banner .cookie-actions {
    gap: 9px;
    flex-wrap: wrap;
  }
}

/* === COOKIE MODAL === */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1550;
  left: 0; right: 0; top: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(52,163,117,0.07);
  transition: opacity 0.28s;
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 24px;
  max-width: 400px;
  width: 92vw;
  box-shadow: 0 16px 48px 0 rgba(149,88,165,0.13);
  padding: 36px 26px 26px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  position: relative;
  animation: fadeInScale 0.24s ease;
}
@keyframes fadeInScale {
  0% {opacity:0; transform:scale(0.91);}
  100% {opacity:1; transform:scale(1);}
}
.cookie-modal h3 {
  font-size: 1.25rem;
  color: #17636A;
  margin-bottom: 10px;
}
.cookie-modal ul {
  list-style: none;
  margin: 0;
  padding: 0 0 0 2px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.cookie-modal li {
  display: flex;
  gap: 16px;
  align-items: center;
}
.cookie-modal label {
  margin: 0;
  font-weight: 500;
  color: #27918A;
}
.toggle-switch {
  position: relative;
  width: 38px;
  height: 22px;
  display: inline-block;
}
.toggle-switch input {
  display: none;
}
.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: #E8F7F5;
  border-radius: 16px;
  transition: background 0.18s;
}
.toggle-switch input:checked + .toggle-slider {
  background: #34A375;
}
.toggle-slider:before {
  position: absolute;
  content: "";
  height: 16px; width: 16px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.18s;
  box-shadow: 0 1px 2px 0 rgba(52,163,117,0.07);
}
.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(14px);
}
.cookie-modal .cookie-modal-actions {
  margin-top: 14px;
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  color: #27918A;
  border: none;
  font-size: 1.6rem;
  transition: color 0.16s;
}
.cookie-modal .close-modal:hover {
  color: #17636A;
}
.cookie-modal .desc {
  font-size: .98rem;
  color: #2C6254;
  margin-bottom: 8px;
}

/* === MICRO-INTERACTIONS (cards, cta, links) === */
.card, .testimonial-card, .service-list li, .features-grid > div {
  transition: box-shadow 0.19s, transform 0.13s;
}
.card:hover, .service-list li:hover,
.features-grid > div:hover, .testimonial-card:hover {
  box-shadow: 0 7px 30px 0 rgba(52,163,117,0.16);
  transform: translateY(-3px) scale(1.01);
}

.cta-btn {
  transition: background 0.18s, color 0.18s, box-shadow 0.22s, transform 0.13s;
}
.cta-btn:active {
  transform: scale(0.98);
}

a, .footer-nav a, .main-nav a {
  transition: color 0.13s, background 0.14s, text-decoration 0.11s;
}

/* === PASTEL COLOR PALETTE EXTENSIONS === */
:root {
  --brand-primary: #17636A;
  --brand-secondary: #34A375;
  --brand-accent: #F6F9F5;
  --pastel-mint: #E8F7F5;
  --pastel-lavender: #F5EFFC;
  --pastel-yellow: #FDF8EF;
  --pastel-pink: #FDEDF7;
  --pastel-green: #F3FAF7;
  --pastel-lime: #EFFFEB;
  --pastel-blue: #E1F6F7;
  --pastel-violet: #F2E8FA;
}

/* ======= MEDIA QUERIES GLOBAL LAYOUT ======= */
@media (max-width: 900px) {
  .container {
    padding: 0 7px;
  }
  .content-wrapper {
    gap: 14px;
  }
}
@media (max-width: 510px) {
  h1, .hero h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.25rem;
  }
  h3 {
    font-size: 1.03rem;
  }
}

/* === PRINT ADAPTATION (optional) === */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  .container, .section, main section { box-shadow: none !important; }
}

/* ======= ACCESSIBILITY OUTLINE ======= */
a:focus, button:focus, .cta-btn:focus {
  outline: 2px solid #27918A;
  outline-offset: 2px;
}
