/* ---------------------------
   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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #24344D;
  background-color: #F5F5F3;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  background: none;
  color: inherit;
}
button {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

/* Nature Organic Theme Variables & Fallbacks */
:root {
  --primary: #24344D;
  --primary-dark: #192538;
  --secondary: #7DBCA4;
  --secondary-dark: #5A937E;
  --accent: #F5F5F3;
  --earth1: #A9A18E;
  --earth2: #DED7C2;
  --earth3: #E3B37A;
  --success: #628064;
  --border-radius: 18px;
  --shadow: 0 2px 12px rgba(78, 106, 70, 0.08);
  --shadow-lg: 0 6px 28px rgba(60, 70, 40, 0.14);
  --focus: 0 0 0 3px rgba(125, 188, 164, 0.25);
}

/*----------------------------
  Typography
----------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #24344D;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.16;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  line-height: 1.18;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
  color: #5A937E;
  line-height: 1.23;
}
h4, h5, h6 {
  font-size: 1.12rem;
}
p, li, ul, ol {
  font-size: 1rem;
  color: #334453;
  line-height: 1.7;
}
strong {
  font-weight: 600;
  color: #24344D;
}
.subheadline {
  font-size: 1.18rem;
  color: #5A937E;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.35rem;
  }
}

/*---------------------------
  Container & Layout
----------------------------*/
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
  background: transparent;
  border-radius: var(--border-radius);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px) scale(1.018);
  z-index: 1;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F5F5F3;
  border-radius: 14px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  border-left: 5px solid #7DBCA4;
  min-width: 0;
  transition: box-shadow 0.18s;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  background: #E9EFEA;
}
.testimonial-customer {
  font-size: 0.96rem;
  color: #5A937E;
  font-weight: 600;
}
.rating-summary {
  margin-top: 24px;
  font-size: 1.12rem;
  color: #24344D;
  background: #EAEEEA;
  border-radius: 10px;
  padding: 14px 22px;
  display: inline-block;
  box-shadow: 0 2px 6px rgba(34, 79, 63, 0.09);
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  margin-bottom: 12px;
}
.features-grid > div {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 22px 20px 20px 20px;
  flex: 1 1 220px;
  min-width: 200px;
  max-width: 310px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.18s, background 0.17s;
}
.features-grid > div:hover {
  box-shadow: var(--shadow-lg);
  background: #E9EFEA;
}
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}
.services-list > div {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 20px 18px;
  flex: 1 1 210px;
  min-width: 200px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}
.services-grid > div {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 20px 18px;
  flex: 1 1 210px;
  min-width: 200px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}
.service-price {
  color: #A88435;
  font-size: 1.12rem;
  font-weight: bold;
}
.case-studies {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.case-studies > div {
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 18px 16px;
  flex: 1 1 250px;
  min-width: 200px;
  max-width: 350px;
  transition: box-shadow 0.18s;
}
.case-studies > div:hover {
  box-shadow: var(--shadow-lg);
}
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.quick-facts ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.quick-facts li {
  background: #E3B37A;
  color: #fff;
  border-radius: 6px;
  padding: 8px 18px;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0;
}
.next-steps ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 0;
  margin-bottom: 16px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 15px;
  min-width: 190px;
}
.map-placeholder {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Thank You Styling */
.thank-you {
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, #EAEEEA 78%, #DED7C2 100%);
  border-radius: var(--border-radius);
  padding: 50px 0;
}
.success-message {
  color: #628064;
  font-weight: 600;
  margin-bottom: 16px;
  font-size: 1.12rem;
}

/*----------------------------
  Header & Navigation
----------------------------*/
header {
  background: #fff;
  box-shadow: 0 1px 10px rgba(36,52,77,.07);
  position: sticky;
  top: 0;
  z-index: 99;
}
header .container {
  flex-direction: row;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  min-height: 84px;
}
header a img {
  height: 47px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  color: #24344D;
  font-weight: 500;
  font-size: 1.05rem;
  padding: 8px 14px;
  border-radius: 8px;
  position: relative;
  transition: background 0.14s, color 0.14s;
  letter-spacing: 0.5px;
}
.main-nav a:hover, .main-nav a.active {
  background: #E9EFEA;
  color: #5A937E;
}
.cta-btn {
  background: #7DBCA4;
  color: #fff !important;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  font-weight: bold;
  padding: 10px 26px;
  border: none;
  border-radius: 28px;
  box-shadow: 0 2px 10px rgba(36,52,77,.07);
  outline: none;
  transition: background 0.18s, box-shadow 0.13s, transform 0.14s;
  margin-left: 18px;
  display: inline-block;
  position: relative;
}
.cta-btn:hover, .cta-btn:focus {
  background: #5A937E;
  transform: translateY(-2px) scale(1.025);
  box-shadow: 0 5px 20px rgba(36,52,77,.10);
}
/* Hamburger toggle */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 19px;
  right: 22px;
  z-index: 130;
  background: #7DBCA4;
  border-radius: 50%;
  border: none;
  width: 48px;
  height: 48px;
  color: #fff;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 16px rgba(36,52,77,0.09);
  transition: background 0.18s, transform 0.13s;
}
.mobile-menu-toggle:active {
  background: #5A937E;
}

/* Mobile Navigation Overlay */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #EAEEEA;
  box-shadow: 0 0 80px #24344d14;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(0.66,0,0.24,1);
  z-index: 300;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #fff;
  color: #5A937E;
  font-size: 2.3rem;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  border: none;
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(36,52,77,0.11);
  transition: background 0.13s;
}
.mobile-menu-close:active {
  background: #E3B37A;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 80px;
  width: 100%;
  padding: 0 36px;
  gap: 18px;
}
.mobile-nav a {
  width: 100%;
  padding: 16px 0 8px 0;
  border-bottom: 1px solid #ded7c2;
  color: #24344D;
  font-weight: 600;
  font-size: 1.13rem;
  letter-spacing: 0.2px;
  transition: color 0.18s;
  border-radius: 0;
  display: block;
}
.mobile-nav a:active, .mobile-nav a:hover {
  color: #5A937E;
  background: transparent;
}

@media (max-width: 1020px) {
  .main-nav, .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1021px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/*----------------------------
  Hero & Special Sections
----------------------------*/
.hero {
  background: linear-gradient(135deg, #EAEEEA 70%, #DED7C2 100%);
  border-radius: var(--border-radius);
  min-height: 325px;
  display: flex;
  align-items: center;
  box-shadow: 0 1px 22px rgba(168, 164, 142, 0.10);
  margin-bottom: 48px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.hero h1 {
  color: #24344D;
}

@media (max-width: 900px) {
  .hero {
    min-height: 220px;
    padding-top: 22px;
    padding-bottom: 22px;
  }
  .content-wrapper {
    gap: 16px;
  }
}

/*----------------------------
  Footer
----------------------------*/
footer {
  background: #24344D;
  color: #fff;
  padding: 46px 0 12px 0;
  margin-top: 40px;
  letter-spacing: 0.17px;
}
footer .container {
  flex-direction: row;
  gap: 28px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-logo img {
  width: 58px;
  height: auto;
  margin-bottom: 18px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #E3B37A;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.13s;
}
.footer-nav a:hover {
  color: #7DBCA4;
}
.footer-contact {
  font-size: 0.98rem;
  color: #EAEEEA;
  line-height: 1.6;
}

@media (max-width: 800px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .footer-logo {
    margin-bottom: 8px;
  }
}

/*-----------------------------
   Cookie Consent Banner/Modal
-----------------------------*/
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: #E3B37A;
  color: #24344D;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
  padding: 18px 18px 18px 18px;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -2px 14px rgba(60,40,8,0.07);
  z-index: 1000;
  font-size: 1rem;
  min-height: 70px;
  animation: cookieFadeIn 0.42s cubic-bezier(0.6,0,0.3,1);
}
@keyframes cookieFadeIn {
  0% { opacity:0; transform: translateY(24px); }
  100% { opacity:1; transform:translateY(0);}
}
.cookie-consent-banner-content {
  flex: 1 1 80%;
  color: #24344D;
}
.cookie-btns {
  display: flex;
  gap: 18px;
  align-items: center;
}
.cookie-btn {
  padding: 9px 22px;
  border-radius: 19px;
  font-size: 1rem;
  font-weight: bold;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: #7DBCA4;
  color: #fff;
  border: none;
  box-shadow: 0 2px 10px rgba(36,52,77,.07);
  transition: background .15s, color .12s, transform .18s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #5A937E;
  color: #E3B37A;
}
.cookie-btn.secondary {
  background: #fff;
  color: #5A937E;
  border: 1px solid #ded7c2;
}
.cookie-btn.secondary:hover {
  background: #E9EFEA;
  color: #24344D;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(37,52,77,0.33);
  z-index: 1100;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: cookieModalFade 0.33s;
}
@keyframes cookieModalFade {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #FAF8F3;
  color: #24344D;
  border-radius: 15px;
  box-shadow: var(--shadow-lg);
  padding: 36px 28px 24px 28px;
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: cookieModalUp 0.33s cubic-bezier(0.66,0,0.24,1);
}
@keyframes cookieModalUp {
  0% { transform: translateY(90px); }
  100% { transform: translateY(0); }
}
.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookie-modal-close {
  background: #fff;
  color: #5A937E;
  font-size: 2rem;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(36,52,77,0.11);
  transition: background 0.13s;
}
.cookie-modal-close:active {
  background: #E3B37A;
  color: #fff;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 0;
}
.cookie-category label {
  font-weight: 500;
  font-size: 1.05rem;
}
.cookie-category input[type=checkbox] {
  width: 24px;
  height: 24px;
  accent-color: #7DBCA4;
}
.cookie-category .always-on {
  font-size: 0.98rem;
  color: #5A937E;
  font-weight: 600;
  background: #E9EFEA;
  border-radius: 10px;
  padding: 4px 12px;
  margin-left: 7px;
}

/*-----------------------------
  Misc: Forms, FAQ, Utilities
-----------------------------*/
input, textarea, select {
  border-radius: 7px;
  border: 1px solid #DED7C2;
  padding: 10px;
  background: #fff;
  color: #24344D;
  width: 100%;
  display: block;
  margin-bottom: 18px;
  resize: vertical;
  font-size: 1rem;
  transition: border-color 0.13s, box-shadow 0.13s;
}
input:focus, textarea:focus, select:focus {
  border-color: #7DBCA4;
  box-shadow: var(--focus);
}
::-webkit-input-placeholder { color: #A9A18E; }
::-moz-placeholder { color: #A9A18E; }
:-ms-input-placeholder { color: #A9A18E; }
::placeholder { color: #A9A18E; }

ol, ul {
  margin-left: 0;
  padding-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
  padding-left: 0;
}
ul li:before {
  content: '\2022';
  color: #7DBCA4;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  font-size: 1.12em;
  vertical-align: middle;
}
ol li:before {
  display: none;
}

/*---------------------------
  Organic/Nature Visuals
----------------------------*/
section, .section {
  background: linear-gradient(110deg, #F5F5F3 76%, #E9EFEA 100%);
  box-shadow: 0 2px 18px rgba(30,80,40,0.08);
}
.card, .features-grid > div, .services-list > div, .services-grid > div, .case-studies > div {
  border-radius: 15px 32px 19px 28px / 20px 30px 23px 31px;
  /* Simulates organic curves */
}
.hero, .thank-you, .cookie-consent-banner, .cookie-modal {
  border-bottom-left-radius: 26px 70px;
  border-top-right-radius: 70px 26px;
}
/* Decorative texture pattern */
body::after {
  content: '';
  display: block;
  position: fixed;
  bottom: 0; left: 0;
  width: 260px;
  height: 260px;
  background: url('../assets/organic-texture.svg') left bottom no-repeat;
  opacity: 0.035;
  z-index: 0;
  pointer-events: none;
}

/*-----------------------------
  Responsiveness
-----------------------------*/
@media (max-width: 1100px) {
  .features-grid, .services-list, .services-grid, .case-studies {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .features-grid > div, .services-list > div, .services-grid > div, .case-studies > div {
    min-width: 180px;
    max-width: 100%;
    flex: 1 1 80%;
    margin-bottom: 14px;
  }
  .case-studies {
    gap: 12px;
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 98vw;
    padding: 0 7px;
  }
  .content-grid, .services-list, .features-grid, .case-studies {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section, .footer-nav ul, .quick-facts ul {
    flex-direction: column;
    gap: 8px;
  }
  .section {
    padding: 20px 6px;
    margin-bottom: 34px;
  }
  .hero {
    padding: 16px 0;
    min-height: auto;
    margin-bottom: 26px;
  }
  .testimonial-card {
    margin-bottom: 14px;
  }
  .mobile-nav {
    margin-top: 65px;
    padding: 0 18px;
    gap: 14px;
  }
}
@media (max-width: 500px) {
  h1 { font-size: 1.38rem; }
  h2 { font-size: 1.12rem; }
  .cta-btn {
    font-size: 0.99rem;
    padding: 8px 13px;
  }
  .footer-logo img {
    width: 36px;
  }
  .cookie-modal {
    padding: 18px 8px 13px 8px;
  }
}

/*-----------------------------
  Accessibility
-----------------------------*/
:focus-visible {
  outline: 2px solid #7DBCA4;
  outline-offset: 2px;
}
a:focus-visible, .cta-btn:focus-visible {
  box-shadow: var(--focus);
}

/* Hide content visually (for a11y) */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
}

/*-----------------------------
  Utility Classes
-----------------------------*/
.hide-mobile { display:none; }
@media (min-width: 769px) { .hide-mobile { display: initial; } }
@media (max-width: 768px) { .hide-desktop { display: none !important; } }

/*------------------------------
  End of Style
------------------------------*/
