/* ======================
   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-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  background: #F4F2ED;
  color: #234D3C;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #234D3C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,a:focus {
  color: #75B49B;
  outline: none;
  text-decoration: underline;
}
ul,ol {
  margin-left: 1.25em;
  margin-bottom: 16px;
}
li {
  margin-bottom: 10px;
}
strong {
  font-weight: 600;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  background: none;
  border: none;
  color: inherit;
}
button {
  cursor: pointer;
}

/* ===================
   BRAND TYPOGRAPHY
==================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #234D3C;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-top: 0;
}
h1 {
  font-size: 2.25rem; /* 36px */
  line-height: 1.2;
  margin-bottom: 16px;
}
h2 {
  font-size: 1.625rem; /* 26px */
  margin-bottom: 12px;
}
h3 {
  font-size: 1.125rem; /* 18px */
  margin-bottom: 10px;
}
h4 {
  font-size: 1rem; /* 16px */
  margin-bottom: 10px;
}
.subtitle {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #75B49B;
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 16px;
}

/* ==============
   LAYOUT
================ */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 20px 0 rgba(35,77,60,0.06);
  transition: box-shadow 0.3s;
}
.content-wrapper {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(35,77,60,0.08);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 20px 24px 20px;
  min-width: 260px;
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 8px 24px rgba(35,77,60,0.14);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1;
  min-width: 210px;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 18px;
  margin-bottom: 8px;
  justify-content: flex-start;
}
.feature-grid > div {
  background: #F4F2ED;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(35,77,60,0.06);
  padding: 20px 18px 16px 18px;
  flex: 1 1 260px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
}

/* =============
   HEADER/NAV
============== */
header {
  background: #234D3C;
  color: #fff;
  width: 100%;
  box-shadow: 0 4px 16px rgba(35,77,60,0.11);
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 18px;
}
header a img {
  height: 44px;
  width: auto;
  display: block;
  margin-right: 12px;
}
header nav {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-right: 10px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 6px;
  border-radius: 6px;
  transition: background 0.16s, color 0.16s;
}
header nav a:hover, header nav a.active {
  background: #75B49B;
  color: #234D3C;
}
.primary-cta, .secondary-cta {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 8px;
  font-size: 1.125rem;
  border: none;
  outline: none;
  box-shadow: 0 2px 8px rgba(35,77,60,0.10);
  transition: background 0.24s, color 0.24s, box-shadow 0.24s;
  margin-left: 8px;
  display: inline-block;
  margin-bottom: 0;
  text-align: center;
}
.primary-cta {
  background: #75B49B;
  color: #234D3C;
}
.primary-cta:hover, .primary-cta:focus {
  background: #234D3C;
  color: #fff;
  box-shadow: 0 6px 18px rgba(35,77,60,0.18);
}
.secondary-cta {
  background: #234D3C;
  color: #fff;
}
.secondary-cta:hover, .secondary-cta:focus {
  background: #75B49B;
  color: #234D3C;
}
.mobile-menu-toggle {
  display: none;
  background: #75B49B;
  color: #234D3C;
  border-radius: 50%;
  font-size: 1.75rem;
  width: 44px;
  height: 44px;
  border: none;
  align-items: center;
  justify-content: center;
  transition: background 0.16s;
  position: relative;
  z-index: 22;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #fff;
  color: #234D3C;
}

/* ============
   MOBILE MENU
============= */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35,77,60,0.97);
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.4,1,.4,1);
  will-change: transform;
  padding: 0 0 0 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 30px;
  font-size: 2.25rem;
  background: none;
  color: #FFF;
  border: none;
  cursor: pointer;
  z-index: 10002;
  transition: color 0.12s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #75B49B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 80px 0 0 38px;
  gap: 24px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 12px 0 12px 0;
  border-radius: 6px;
  line-height: 1.3;
  width: 100%;
  transition: background 0.16s, color 0.14s;
  min-width: 210px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #75B49B;
  color: #234D3C;
}

/* ============
   TESTIMONIALS
============= */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F4F2ED;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(35,77,60,0.07);
  margin-bottom: 20px;
  flex: 1 1 300px;
  flex-wrap: wrap;
  min-width: 200px;
  font-size: 1rem;
  color: #234D3C;
}
.testimonial-card p {
  font-style: italic;
  margin: 0;
  color: #234D3C;
  font-size: 1.05rem;
}
.testimonial-card span {
  font-weight: 600;
  color: #75B49B;
  font-size: 1rem;
}

/* =============
   SECTIONS
============== */
section {
  margin-bottom: 60px;
  padding: 40px 0;
}

/* ===========================
   SERVICE PRICES and BADGES
=========================== */
.service-price {
  display: inline-block;
  background: #75B49B;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 5px 16px;
  border-radius: 7px;
  margin-left: 14px;
  margin-top: 7px;
}

/* ===================
   FOOTER
==================== */
footer {
  background: #234D3C;
  color: #fff;
  margin-top: 60px;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 33px;
  padding-bottom: 22px;
}
.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 22px;
}
.footer-main nav{
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-main nav a{
  color: #fff;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.12s, color 0.12s;
}
.footer-main nav a:hover,
.footer-main nav a:focus {
  background: #75B49B;
  color: #234D3C;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 40px;
  align-items: flex-start;
  color: #F4F2ED;
  font-size: 0.98rem;
  margin-top: 10px;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 9px;
}
.footer-copy {
  margin-top: 22px;
  text-align: center;
  font-size: 0.92rem;
  color: #75B49B;
}
footer img {
  height: 38px;
  width: auto;
}

/* ============================
   COOKIE CONSENT BANNER & MODAL
============================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #234D3C;
  color: #fff;
  z-index: 12000;
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 -2px 16px rgba(35,77,60,0.10);
  animation: cookieFadeIn 0.35s;
}
@keyframes cookieFadeIn {
  from {transform: translateY(32px); opacity: 0;}
  to   {transform: translateY(0); opacity: 1;}
}
.cookie-banner .cookie-text {
  font-size: 1rem;
  margin-bottom: 14px;
  text-align: center;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 0;
}
.cookie-btn {
  background: #75B49B;
  color: #234D3C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  outline: none;
  border-radius: 7px;
  padding: 9px 20px;
  font-size: 1rem;
  margin-bottom: 0;
  transition: background 0.2s, color 0.16s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #fff;
  color: #234D3C;
}
.cookie-btn.reject {
  background: #d35454;
  color: #fff;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #b03a34;
  color: #fff;
}
.cookie-btn.settings {
  background: transparent;
  border: 1.5px solid #75B49B;
  color: #75B49B;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #75B49B;
  color: #234D3C;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(35,77,60,0.58);
  z-index: 13000;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.25s;
}
.cookie-modal-overlay.open {
  display: flex;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #234D3C;
  border-radius: 12px;
  box-shadow: 0 6px 32px rgba(35,77,60,0.15);
  max-width: 430px;
  width: 94%;
  padding: 33px 24px 24px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: modalSlideIn 0.3s;
}
@keyframes modalSlideIn {
  from {transform: translateY(45px) scale(0.98); opacity: 0;}
  to {transform: translateY(0) scale(1.0); opacity: 1;}
}
.cookie-modal h2 {
  color: #234D3C;
  margin-bottom: 8px;
  font-size: 1.3rem;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
}
.cookie-modal .toggle {
  position: relative;
  width: 38px;
  height: 22px;
  background: #ddd;
  border-radius: 22px;
  transition: background 0.18s;
}
.cookie-modal .toggle input {
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0; top: 0;
  cursor: pointer;
  margin:0;
}
.cookie-modal .toggle .slider {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  background: #75B49B;
  border-radius: 50%;
  transition: transform 0.18s, background 0.18s;
}
.cookie-modal .toggle input:checked + .slider {
  transform: translateX(16px);
  background: #234D3C;
}
.cookie-modal .cookie-category-label {
  font-weight: 500;
}
.cookie-modal .category-essential {
  color: #bfcad1;
  font-size: 0.93rem;
}
.cookie-modal .modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 13px;
  margin-top: 12px;
}
.cookie-modal .modal-close-btn {
  position: absolute;
  right: 22px;
  top: 12px;
  font-size: 1.7rem;
  background: none;
  color: #234D3C;
  border: none;
  cursor: pointer;
}
.cookie-modal .modal-close-btn:hover, .cookie-modal .modal-close-btn:focus {
  color: #75B49B;
}

/* ================
   FORMS
================= */
input, textarea, select {
  border: 1.2px solid #bdd1c6;
  border-radius: 7px;
  background: #fff;
  padding: 11px 14px;
  font-size: 1rem;
  transition: border 0.14s;
  margin-bottom: 12px;
  color: #234D3C;
}
input:focus, textarea:focus, select:focus {
  border: 1.2px solid #75B49B;
}

/* ================================
   RESPONSIVE & FLEX ADJUSTMENTS
================================= */
@media (max-width: 1040px) {
  .container {
    max-width: 98vw;
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 900px) {
  .feature-grid > div, .card, .testimonial-card {
    min-width: 180px;
    flex: 1 1 200px;
  }
}
@media (max-width: 780px) {
  header .container {
    gap: 12px;
    min-height: 50px;
  }
  .content-wrapper {
    max-width: 98vw;
    padding: 0 2px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 99vw;
    padding-left: 7px;
    padding-right: 7px;
  }
  .feature-grid, .card-container, .service-list, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  header nav {
    display: none;
  }
  .primary-cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .footer-main {
    flex-direction: column;
    gap: 17px;
    align-items: flex-start;
  }
  .footer-contact {
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
  }
  .section {
    padding: 32px 6px;
    margin-bottom: 38px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 13px 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 550px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.1rem; }
  .subtitle { font-size: 0.98rem; }
  .content-wrapper { gap: 8px; }
  .section { padding: 20px 3px; }
  .testimonial-card { font-size: 0.98rem; }
}

/* ============================
   MISC & MICRO-INTERACTIONS
============================ */
.card, .feature-grid > div, .testimonial-card {
  transition: box-shadow 0.18s;
}
.card:hover, .feature-grid > div:hover {
  box-shadow: 0 10px 26px rgba(35,77,60, 0.13);
}
.primary-cta, .secondary-cta {
  transition: background 0.22s, color 0.21s, box-shadow 0.22s;
}
input[type="checkbox"]:focus + label, .cookie-btn:focus {
  outline: 2px solid #75B49B;
}

::-webkit-input-placeholder { color: #7f9993; }
::-moz-placeholder          { color: #7f9993; }
:-ms-input-placeholder      { color: #7f9993; }
::placeholder              { color: #7f9993; }

::-webkit-scrollbar {
  width: 8px;
  background: #F4F2ED;
}
::-webkit-scrollbar-thumb {
  background: #bdd1c6;
  border-radius: 12px;
}
