/* --- CSS 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,
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 { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  background: #FDFCF9;
  color: #2b363c;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: #15647A; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #41B883; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', Arial, sans-serif; color: #15647A; }
h1 { font-size: 2.5rem; font-weight: 700; margin-bottom: 16px; }
h2 { font-size: 2rem; font-weight: 700; margin-bottom: 16px; }
h3 { font-size: 1.3rem; font-weight: 600; margin-bottom: 8px; }
h4, h5, h6 { font-weight: 500; }

strong, b { font-weight: 600; color: #15744a; }

/* --- CONTAINER / LAYOUT --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 2px 18px rgba(65,184,131,0.06), 0 1.5px 7px rgba(21,100,122,0.07);
}
@media (max-width: 768px) {
  .section { padding: 24px 10px; margin-bottom: 32px; }
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 18px rgba(21,100,122,0.09), 0 1.5px 7px rgba(65,184,131,0.07);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover, .card:focus {
  box-shadow: 0 8px 32px rgba(65,184,131,0.17), 0 3px 14px rgba(21,100,122,0.09);
  transform: translateY(-3px) scale(1.01);
}

.content-grid, .service-list, .service-grid, .testimonial-slider, .testimonial-list, .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .content-grid, .service-list, .service-grid, .testimonial-slider, .testimonial-list, .feature-grid {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .content-grid, .service-list, .service-grid, .testimonial-slider, .testimonial-list, .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
}

.feature-grid li,
.service-list > div,
.service-grid > div {
  background: #EFF6F9;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(21,100,122,0.06);
  flex: 1 1 240px;
  min-width: 220px;
  padding: 22px 18px;
  margin: 0 0 12px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  transition: box-shadow 0.2s, transform 0.13s;
}
.feature-grid li:hover, .service-list > div:hover, .service-grid > div:hover {
  box-shadow: 0 6px 24px rgba(65,184,131,0.10);
  transform: translateY(-2px) scale(1.01);
}
.feature-grid img, .service-grid img { width: 36px; height: 36px; }

/* --- NAVIGATION --- */
header {
  background: #15647A;
  color: #fff;
  padding: 18px 0 14px 0;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  box-shadow: 0 2px 18px rgba(21,100,122,0.08);
}
header .container {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
header nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #fff;
  padding: 5px 14px;
  border-radius: 12px;
  transition: background 0.15s, color 0.15s;
}
header nav a:hover, header nav a:focus {
  background: #41B883;
  color: #fff;
}
header img {
  height: 46px;
  width: auto;
}

.button-primary, .button-secondary {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 13px 32px;
  font-size: 1.05rem;
  font-weight: 700;
  display: inline-block;
  border-radius: 23px;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s;
  box-shadow: 0 2px 8px rgba(65,184,131,0.07);
  margin: 0 7px 0 0;
}
.button-primary {
  background: #41B883;
  color: #fff;
  border: 2px solid #41B883;
}
.button-primary:hover, .button-primary:focus {
  background: #15744a;
  color: #fff;
  box-shadow: 0 7px 26px rgba(65,184,131,0.15);
  transform: translateY(-2px) scale(1.03);
}
.button-secondary {
  background: #ffffff;
  color: #15647A;
  border: 2px solid #41B883;
}
.button-secondary:hover, .button-secondary:focus {
  background: #EFF6F9;
  color: #15744a;
  box-shadow: 0 6px 18px rgba(21,100,122,0.08);
  transform: translateY(-1px) scale(1.02);
}

/* Hamburger/Mobile Menu */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 22px;
  right: 23px;
  z-index: 1020;
  background: #41B883;
  color: #fff;
  font-size: 2.1rem;
  padding: 7px 18px 7px 14px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 1.5px 9px rgba(65,184,131,0.13);
  transition: background 0.14s, box-shadow 0.16s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #15744a;
}
@media (max-width: 1020px) {
  header nav, header .button-primary { display: none !important; }
  .mobile-menu-toggle { display: block; }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.7,0.05,0.28,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 0;
}
.mobile-menu.show {
  transform: translateX(0);
  box-shadow: -2px 0 24px rgba(21,100,122,0.12);
}
.mobile-menu-close {
  background: #41B883;
  color: #fff;
  font-size: 2rem;
  border: none;
  align-self: flex-end;
  margin: 18px 24px 0 0;
  border-radius: 12px;
  padding: 3px 16px;
  cursor: pointer;
  transition: background 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #15744a;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 50px 0 0 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  color: #15647A;
  padding: 15px 8px 15px 0;
  border-radius: 10px;
  transition: background 0.14s, color 0.13s;
  font-weight: 600;
  width: fit-content;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #41B883;
  color: #fff;
  padding-left: 12px;
}

@media (min-width: 1020px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* --- FOOTER --- */
footer {
  background: #EFF6F9;
  color: #15647A;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  padding: 30px 0 10px 0;
  margin-top: 48px;
  box-shadow: 0 -3px 18px rgba(21,100,122,0.06);
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
footer nav {
  display: flex;
  gap: 20px;
}
footer nav a {
  color: #15647A;
  font-size: 1rem;
  padding: 4px 16px;
  border-radius: 10px;
  transition: background 0.17s, color 0.12s;
}
footer nav a:hover, footer nav a:focus {
  background: #41B883;
  color: #fff;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 6px;
  font-size: 0.99rem;
}
.footer-contact img { width: 19px; height: 19px; margin-right: 7px; vertical-align: middle; }

@media (max-width: 700px) {
  .footer-contact { flex-direction: column; align-items: flex-start; }
  footer nav { flex-direction: column; gap: 14px; align-items: flex-start; }
}

/* --- USPs, PROCESS STEPS, TRUST SIGNALS --- */
.usps-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.usps-list li {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 2px 9px rgba(65,184,131,0.07);
  padding: 15px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.12rem;
  min-width: 220px;
}
.usps-list img { width: 27px; height: 27px; }
.trust-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 1.02rem;
  color: #15744a;
  margin-bottom: 4px;
}
@media (max-width: 600px) {
  .usps-list, .trust-signals { flex-direction: column; gap: 12px; }
}

/* --- PRICING TABLE --- */
.pricing-table {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 24px 0 6px;
}
.pricing-table table {
  width: 100%;
  border-collapse: collapse;
  background: #EFF6F9;
  border-radius: 13px;
  box-shadow: 0 2px 10px rgba(21,100,122,0.08);
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  padding: 15px 12px;
  text-align: left;
  font-family: 'Montserrat', Arial, sans-serif;
}
.pricing-table th {
  background: #41B883;
  color: #fff;
  font-size: 1.10rem;
  font-weight: 700;
}
.pricing-table td {
  color: #2b363c;
}
.pricing-table tr:not(:last-child) td { border-bottom: 1px solid #e5e5e5; }
.inclusions-list {
  margin-left: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.inclusions-list li::before {
  content: '\2022';
  color: #41B883;
  display: inline-block;
  font-size: 1.2em;
  width: 1em;
  margin-right: 3px;
}

/* --- TESTIMONIALS --- */
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #ffffff;
  border: 2px solid #EFF6F9;
  border-radius: 18px;
  font-size: 1.1rem;
  color: #15647A;
  min-width: 260px;
  max-width: 370px;
  box-shadow: 0 1.5px 8px rgba(65,184,131,0.10);
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.15s;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 8px 34px rgba(65,184,131,0.16);
  transform: translateY(-2px) scale(1.02);
}
.testimonial-card p {
  color: #2b363c;
  font-size: 1.12rem;
  margin-bottom: 6px;
}
.testimonial-card span {
  font-size: 0.99rem;
  color: #15744a;
  font-family: 'Montserrat', Arial, sans-serif;
  align-self: flex-end;
}
.review-highlight {
  margin: 24px 0 18px;
  background: #EFF6F9;
  border-left: 6px solid #41B883;
  border-radius: 14px;
  padding: 18px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #15647A;
  font-size: 1.17rem;
  font-style: italic;
}
.customer-names {
  background: #ffffff;
  border-radius: 13px;
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1rem;
  box-shadow: 0 1.5px 6px rgba(65,184,131,0.10);
}

/* --- CONTACT DETAILS --- */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 13px;
  font-size: 1.06rem;
  margin: 18px 0 4px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-details img { width: 20px; height: 20px; }

/* --- MISC --- */
small { color: #15744a; opacity: 0.85; font-size: 90%; }

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  z-index: 2500;
  background: #ffffff;
  box-shadow: 0 -3px 28px rgba(21,100,122,0.15), 0 1.5px 7px rgba(65,184,131,0.08);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  display: none;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  padding: 24px 30px;
  justify-content: space-between;
  font-size: 1.06rem;
  transition: transform 0.35s cubic-bezier(0.86,0,0.07,1);
}
.cookie-banner.hide {
  transform: translateY(130%);
}
.cookie-banner p { flex: 2 1 280px; margin-right: 18px; color: #2b363c; }
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 16px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 12px;
  border: none;
  padding: 10px 24px;
  margin-left: 0;
  cursor: pointer;
  transition: background 0.16s, color 0.14s, box-shadow 0.15s;
  background: #EFF6F9;
  color: #15647A;
  font-weight: 600;
  box-shadow: 0 1px 5px rgba(21,100,122,0.08);
}
.cookie-banner .accept {
  background: #41B883;
  color: #fff;
  border: 2px solid #41B883;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #15744a;
  color: #fff;
}
.cookie-banner .settings {
  background: #EFF6F9;
  color: #15647A;
  border: 2px solid #41B883;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #41B883;
  color: #fff;
}
.cookie-banner .reject {
  background: #fff;
  color: #15647A;
  border: 2px solid #15744a;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #15744a;
  color: #fff;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 18px;
    padding: 20px 12px;
    font-size: 0.97rem;
  }
  .cookie-banner p { margin-right: 0; }
}

/* --- COOKIE PREFERENCES MODAL --- */
.cookie-modal {
  position: fixed;
  z-index: 2600;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(21,100,122,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.23s;
  pointer-events: all;
}
.cookie-modal.hide {
  opacity: 0; pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 22px;
  padding: 42px 28px 30px 28px;
  box-shadow: 0 7px 38px rgba(65,184,131,0.17);
  min-width: 330px;
  max-width: 98vw;
  width: 420px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 23px;
}
.cookie-modal-content h2 {
  color: #15647A;
  font-size: 1.38rem;
  margin-bottom: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal-content .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  font-size: 1.02rem;
}
.cookie-modal-content .cookie-toggle {
  margin-left: auto;
}
.cookie-toggle input[type="checkbox"] {
  appearance: none;
  width: 34px;
  height: 18px;
  background: #EFF6F9;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  outline: none;
  border: 1.5px solid #41B883;
  transition: background 0.18s, border 0.18s;
}
.cookie-toggle input[type="checkbox"]:checked {
  background: #41B883;
  border-color: #41B883;
}
.cookie-toggle input[type="checkbox"]::after {
  content: '';
  position: absolute;
  left: 2.5px;
  top: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.22s;
  box-shadow: 0px 2px 5px rgba(65,184,131,0.08);
}
.cookie-toggle input[type="checkbox"]:checked::after {
  left: 16px;
  background: #ffffff;
}
.cookie-modal-content .cookie-btns {
  display: flex;
  gap: 18px;
  margin-top: 17px;
}
.cookie-modal-content button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 12px;
  border: none;
  padding: 9px 23px;
  margin-left: 0;
  cursor: pointer;
  transition: background 0.16s, color 0.14s, box-shadow 0.13s;
  background: #EFF6F9;
  color: #15647A;
  font-weight: 600;
}
.cookie-modal-content .save {
  background: #41B883;
  color: #fff;
  border: 2px solid #41B883;
}
.cookie-modal-content .save:hover, .cookie-modal-content .save:focus {
  background: #15744a;
  color: #fff;
}
.cookie-modal-content .cancel {
  background: #fff;
  border: 2px solid #41B883;
}
.cookie-modal-content .cancel:hover, .cookie-modal-content .cancel:focus {
  background: #EFF6F9;
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  font-size: 1.35rem;
  color: #15647A;
  cursor: pointer;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #41B883;
}
@media (max-width: 500px) {
  .cookie-modal-content { padding: 25px 8px 20px 8px; min-width: 210px; }
  .cookie-modal-content h2 { font-size: 1.07rem; }
}

/* --- Miscellaneous Responsive --- */
@media (max-width: 600px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.18rem; }
  h3 { font-size: 1.07rem; }
  .feature-grid li,
  .service-list > div, .service-grid > div {
    min-width: 140px;
    padding: 15px 9px;
  }
}

/* --- TRANSITIONS & EFFECTS --- */
a, button, .card, .service-list > div, .feature-grid li, .testimonial-card {
  transition: box-shadow 0.15s, background 0.13s, color 0.13s, transform 0.15s;
}

/* --- VISUAL ACCESSIBILITY --- */
::selection { background: #41B883; color: #fff; }

/* --- Scrollbar Styling --- */
body::-webkit-scrollbar {
  width: 10px; background: #EFF6F9;
}
body::-webkit-scrollbar-thumb {
  background: #41B883; border-radius: 5px;
}
html {scroll-behavior: smooth;}
