/* --- CSS RESET & BASELINE --- */
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;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #F6FAF8;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F6FAF8;
  color: #243c32;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #397d6a;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #194D3C;
  text-decoration: underline;
  outline: none;
}

ul, ol {
  padding-left: 1.25em;
}

/* --- BRAND FONTS --- */
h1, h2, h3, h4, h5, h6, .cta-primary, .cta-secondary {
  font-family: 'Montserrat', Arial, sans-serif;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
  color: #194D3C;
}
h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #194D3C;
}
h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #397d6a;
}
h4 {
  font-size: 1.125rem;
  font-weight: 500;
  color: #397d6a;
  margin-bottom: 8px;
}

p, li, address {
  font-size: 1rem;
  color: #2c473a;
  line-height: 1.7;
}

blockquote {
  font-style: italic;
  color: #356e5a;
  background: #E6F6EF;
  border-left: 4px solid #6FC3A3;
  padding: 12px 20px;
  margin: 0 0 10px 0;
  border-radius: 10px 20px 20px 10px;
}

b, strong {
  font-weight: 700;
}

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 32px;
  background: #f6faf8;
  box-shadow: 0 2px 10px 0 rgba(94,156,128,0.06);
}

/* --- FLEXBOX PATTERNS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(73,147,120,0.13);
  margin-bottom: 20px;
  padding: 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 6px 28px rgba(73,147,120,0.19);
  transform: translateY(-4px) scale(1.03);
}
.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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #f6faf8;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(73,147,120,0.11);
  transition: box-shadow 0.2s, background 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 22px rgba(106,176,153,0.13);
  background: #e8f2ec;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(111,195,163,0.10);
  padding: 24px;
  min-width: 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, background 0.2s;
}
.feature-item img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}
.feature-item:hover {
  box-shadow: 0 8px 28px rgba(111,195,163,0.19);
  background: #e6f6ef;
}

/* --- HERO & MAIN CTA SECTIONS --- */
.hero, .about-hero, .thank-you-message {
  background: linear-gradient(120deg, #e5ede9 0%, #f6faf8 100%);
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  padding: 60px 0 40px 0;
  margin-bottom: 60px;
}
.hero .container, .about-hero .container, .thank-you-message .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero h1, .about-hero h1, .thank-you-message h1 {
  color: #194D3C;
  font-size: 2.5rem;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero p, .about-hero .tagline, .thank-you-message p {
  font-size: 1.25rem;
  color: #397d6a;
  margin-bottom: 16px;
}

/* --- CALL TO ACTION BUTTONS --- */
.cta-primary, .cta-secondary, .cookie-btn, .mobile-menu-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 30px;
  padding: 12px 36px;
  min-width: 140px;
  min-height: 44px;
  font-size: 1.1rem;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  margin-right: 16px;
  margin-bottom: 8px;
}
.cta-primary {
  background: #6FC3A3;
  color: #194D3C;
  box-shadow: 0 2px 12px rgba(111,195,163,0.13);
}
.cta-primary:hover,
.cta-primary:focus {
  background: #46B18A;
  color: #fff;
}
.cta-secondary {
  background: #fff;
  color: #6FC3A3;
  border: 2px solid #6FC3A3;
}
.cta-secondary:hover,
.cta-secondary:focus {
  background: #e6f6ef;
  color: #194D3C;
}
.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* --- NAVIGATION --- */
header {
  background: #fff;
  box-shadow: 0 4px 22px -4px rgba(111,195,163,0.07);
  padding: 0;
  margin-bottom: 0;
  position: relative;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}
.logo img {
  height: 42px;
  width: auto;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 16px;
  color: #397d6a;
  font-size: 1rem;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #E6F6EF;
  color: #194D3C;
  outline: none;
}

/* Hide mobile menu toggle on desktop */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 20px;
  top: 22px;
  background: #e6f6ef;
  color: #194D3C;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.8rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(111,195,163,0.11);
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #b8ebe0;
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(246,250,248,0.99);
  box-shadow: -8px 0 24px rgba(95,170,138,0.08);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.33,.99,.56,1), box-shadow 0.25s;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: -12px 0 40px rgba(73,147,120,0.17);
}
.mobile-menu-close {
  margin: 28px 0 0 18px;
  font-size: 2rem;
  color: #397d6a;
  background: #e6f6ef;
  padding: 6px 12px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 35px;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #b8ebe0;
  color: #194D3C;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  margin-top: 60px;
  width: 100%;
  padding-left: 32px;
}
.mobile-nav a {
  color: #194D3C;
  font-size: 1.13rem;
  font-weight: 600;
  padding: 13px 0;
  width: 100%;
  border-bottom: 1px solid #e6f6ef;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #e6f6ef;
  color: #6FC3A3;
  padding-left: 12px;
}


/* --- RESPONSIVE NAVIGATION --- */
@media (max-width: 990px) {
  .main-nav {
    display: none;
  }
  .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 991px) {
  .mobile-menu {
    display: none !important;
  }
}

/* --- SECTIONS & CARDS --- */
.features {
  margin-bottom: 60px;
}
.feature-grid, .feature-list, .team-bios, .service-list, .service-points {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.team-bios {
  gap: 24px;
}
.team-member {
  background: #fff;
  padding: 22px 20px;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(95,170,138,0.09);
  min-width: 220px;
  flex: 1 1 210px;
  margin-bottom: 20px;
}
.team-values {
  margin-top: 36px;
  background: #E6F6EF;
  padding: 22px 20px;
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(95,170,138,0.07);
}
.service-list, .service-points {
  margin-top: 16px;
}
.service-item {
  background: #fff;
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(111,195,163,0.09);
  min-width: 220px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.19s, background 0.17s;
}
.service-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
}
.service-item:hover {
  background: #e6f6ef;
  box-shadow: 0 8px 22px rgba(111,195,163,0.14);
}

/* --- ABOUT & CONTACT --- */
.about-preview {
  background: #e6f6ef;
  border-radius: 32px;
  padding: 40px 24px;
  margin-bottom: 60px;
  box-shadow: 0 2px 10px rgba(94,156,128,0.08);
}
.contact-section {
  background: #F9FDFB;
  border-radius: 32px;
  padding: 40px 20px;
  margin-bottom: 60px;
  box-shadow: 0 3px 12px rgba(111,195,163,0.06);
}
.contact-details {
  background: #e6f6ef;
  padding: 24px 18px;
  border-radius: 16px;
  margin-bottom: 36px;
  box-shadow: 0 2px 8px rgba(95,170,138,0.08);
}
.contact-details a {
  color: #194D3C;
  font-weight: 600;
  transition: color 0.12s;
}
.contact-details a:hover {
  color: #6FC3A3;
}
.map-placeholder {
  background: #fff;
  border-radius: 16px;
  padding: 18px 20px;
  font-size: 1.08rem;
  color: #194D3C;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 2px 6px rgba(111,195,163,0.07);
}
.address {
  font-style: normal;
}

/* --- CTA SECTION --- */
.cta-section {
  background: linear-gradient(100deg, #eaf7f1 0%, #f6faf8 100%);
  border-radius: 32px;
  margin-bottom: 60px;
  text-align: center;
  box-shadow: 0 2px 14px rgba(95,170,138,0.10);
  padding: 40px 24px;
}
.cta-section h2 {
  font-size: 2rem;
  color: #194D3C;
  margin-bottom: 24px;
}

/* --- TESTIMONIALS --- */
.testimonials, .testimonial-card {
  background: #f6faf8;
}
.author {
  font-size: 1rem;
  color: #194D3C;
  font-weight: 500;
  margin-left: 10px;
}

/* --- FOOTER --- */
footer {
  background: #e6f6ef;
  padding: 0 0 16px 0;
  margin-top: 80px;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -2px 20px rgba(90,190,158,0.07);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 38px 20px 0 20px;
}
.brand-footer {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 10px;
}
.brand-footer img {
  width: 48px;
  height: 48px;
}
.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 6px;
}
.footer-nav a {
  color: #2c473a;
  font-size: 1rem;
  border-radius: 14px;
  padding: 4px 10px;
  transition: background 0.15s, color 0.15s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  background: #d0efe4;
  color: #194D3C;
}
.social-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}
.social-icons img {
  width: 32px;
  height: 32px;
  opacity: 0.82;
  transition: opacity 0.16s;
  cursor: pointer;
}
.social-icons img:hover {
  opacity: 1;
}
.footer-copy {
  color: #3d8067;
  font-size: 0.97rem;
  margin-top: 14px;
}

/* --- PRIVACY/COOKIE POLICY/GDPR/TERMS --- */
.privacy-policy, .cookie-policy, .gdpr, .terms-and-conditions {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 10px rgba(94,156,128,0.07);
  margin-bottom: 60px;
  padding: 40px 22px;
}
.privacy-policy ul, .cookie-policy ul, .gdpr ul, .terms-and-conditions ul {
  margin-top: 12px;
  margin-bottom: 14px;
  list-style: disc;
  color: #397d6a;
}
.privacy-policy li, .cookie-policy li, .gdpr li, .terms-and-conditions li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* --- THANK YOU PAGE --- */
.thank-you-message {
  background: linear-gradient(90deg,#e6f6ef 0%,#f6faf8 100%);
  text-align: center;
  border-radius: 32px;
  box-shadow: 0 2px 12px rgba(94,156,128,0.09);
  padding: 60px 24px 60px 24px;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 -2px 14px 0 rgba(94,156,128,0.13);
  padding: 24px 20px 20px 20px;
  z-index: 3000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 32px;
  font-size: 1rem;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  transition: transform 0.35s cubic-bezier(.33,.99,.56,1), opacity 0.35s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__text {
  max-width: 600px;
  color: #194D3C;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  margin-right: 10px;
  padding: 10px 30px;
  border: none;
  border-radius: 26px;
  background: #e6f6ef;
  color: #194D3C;
  font-weight: 600;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(111,195,163,0.10);
}
.cookie-btn.accept {
  background: #6FC3A3;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #194D3C;
  color: #fff;
}
.cookie-btn.reject {
  background: #FDF8F8;
  color: #ae435f;
  border: 1.5px solid #e0aab8;
}
.cookie-btn.reject:hover {
  background: #fde6ea;
  color: #d9264d;
}
.cookie-btn.settings {
  background: #fffbe0;
  color: #8e7006;
  border: 1.5px solid #ecd966;
}
.cookie-btn.settings:hover {
  background: #faefd8;
  color: #b69922;
}

/* --- COOKIE MODAL OVERLAY --- */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(25,77,60,0.18);
  z-index: 3100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.2s;
}
.cookie-modal.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.cookie-modal__window {
  background: #fff;
  border-radius: 24px;
  padding: 36px 32px 24px 32px;
  box-shadow: 0 8px 36px rgba(111,195,163,0.19);
  width: 96vw;
  max-width: 410px;
  text-align: left;
  color: #194D3C;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.cookie-modal__title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #397d6a;
  margin-bottom: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}
.cookie-category input[type='checkbox'] {
  width: 20px; height: 20px;
  accent-color: #6FC3A3;
  border-radius: 8px;
  border: 1.5px solid #6FC3A3;
}
.cookie-category label {
  font-size: 1rem;
  color: #194D3C;
  font-weight: 500;
}
.cookie-category.essential label {
  color: #aaa;
}
.cookie-category.essential input[type='checkbox'] {
  accent-color: #ccc;
  background: #e6e6e6;
}

.cookie-modal__actions {
  display: flex;
  gap: 18px;
  margin-top: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.cookie-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #e6f6ef;
  color: #397d6a;
  border: none;
  border-radius: 14px;
  font-size: 1.2rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
}
.cookie-modal__close:hover {
  background: #b8ebe0;
}

/* --- MEDIA QUERIES FOR RESPONSIVITY --- */
@media (max-width: 768px) {
  .section, .about-preview, .contact-section, .privacy-policy, .cookie-policy, .terms-and-conditions, .cta-section, .thank-you-message {
    padding: 24px 8px !important;
    border-radius: 16px;
    margin-bottom: 30px;
  }
  .container, footer .container {
    padding: 0 8px !important;
  }
  .content-wrapper, .brand-footer {
    gap: 16px;
  }
  .feature-grid, .feature-list, .team-bios, .service-list, .service-points {
    flex-direction: column;
    gap: 14px;
  }
  .card-container, .content-grid, .footer-nav, .social-icons {
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
  }
  .brand-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .map-placeholder {
    flex-direction: column;
    padding: 12px 8px;
  }
  .footer-nav {
    margin-bottom: 12px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.17rem; }
  .brand-footer img {
    width: 35px;
    height: 35px;
  }
  .feature-item, .service-item, .team-member, .contact-details {
    padding: 15px 10px;
    min-width: 0;
  }
}

/* --- MICROINTERACTIONS & TRANSITIONS --- */
.card, .feature-item, .service-item, .testimonial-card {
  transition: box-shadow 0.18s, transform 0.13s, background 0.2s;
}
.card:hover, .feature-item:hover, .service-item:hover, .testimonial-card:hover {
  box-shadow: 0 6px 28px rgba(111,195,163,0.19);
  transform: translateY(-3px) scale(1.025);
}
a.cta-primary:active, .cta-secondary:active {
  transform: scale(0.97);
}

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

/* --- ACCESSIBILITY FOCUS STATES --- */
a:focus, button:focus, .cta-primary:focus, .cta-secondary:focus {
  outline: 2px solid #b8ebe0;
  outline-offset: 2px;
  background: #e6f6ef;
}

/* --- CLEAR FLOATS --- */
.clearfix::after {
  content: '';
  display: table;
  clear: both;
}

/* --- Z-INDEX MANAGEMENT --- */
header { z-index: 100; }
.mobile-menu { z-index: 2000; }
.cookie-banner { z-index: 3000; }
.cookie-modal { z-index: 3100; }

/* --- END CSS --- */
