/* ========================== */
/* 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #FAFBFB;
  color: #235021;
}
html {
  scroll-behavior: smooth;
}
ol, ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  border-style: none;
  max-width: 100%;
  height: auto;
}
button, input, select, textarea {
  font-family: inherit;
}
hr {
  border: none;
  border-top: 1px solid #E0ECE2;
  margin: 24px 0;
}

/* ==================== */
/* FONT DEFINITIONS    */
/* ==================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Open+Sans:wght@400;600&display=swap');
:root {
  --primary: #235021;
  --secondary: #567853;
  --accent: #F4F7EA;
  --pastel-pink: #FDEDEF;
  --pastel-green: #DDE6DE;
  --pastel-yellow: #FCF8E3;
  --pastel-blue: #E3EDF7;
  --pastel-lavender: #F3EAF8;

  --text-dark: #235021;
  --text: #3A5332;
  --white: #fff;
  --shadow-soft: 0 2px 18px 0 rgba(123, 142, 116, 0.07);
  --radius-md: 14px;
  --radius-lg: 28px;
  --transition: 0.25s cubic-bezier(.47,.67,.32,1.24);
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: var(--text-dark);
  background: var(--accent);
  min-height: 100vh;
}
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -1px;
}
h1 { font-size: 2.6rem; margin-bottom: 30px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.3rem; margin-bottom: 10px; font-weight: 600; }
h4, h5 { font-size: 1.1rem; }
p, li, blockquote, cite {
  font-size: 1.06rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 14px;
}
strong {
  color: var(--primary);
  font-weight: 600;
}
blockquote {
  padding: 18px 30px 18px 20px;
  margin: 0 0 12px 0;
  background: var(--pastel-green);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-md);
  font-style: italic;
  color: var(--primary);
}
cite {
  display: block;
  margin-left: 20px;
  color: #234325;
  font-size: 1rem;
  opacity: 0.75;
}

/* =============================== */
/* GLOBAL LAYOUT & CONTAINER STYLES */
/* =============================== */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  z-index: 2;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: transparent;
}
.text-section {
  background: var(--pastel-green);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 32px 24px;
  margin-bottom: 20px;
}
.address-block {
  background: var(--pastel-blue);
  padding: 18px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  font-size: 1.07rem;
}
.neutral-info {
  color: #65736A;
  background: var(--pastel-yellow);
  padding: 8px 12px;
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 16px;
}

/* ========================= */
/* HEADER & NAVIGATION      */
/* ========================= */
header {
  width: 100%;
  background: linear-gradient(90deg, var(--pastel-lavender) 0%, var(--pastel-green) 100%);
  box-shadow: 0 2px 12px 0 rgba(87,125,69,0.05);
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 12px;
}
header img {
  height: 52px;
  margin-right: 10px;
}
.desktop-nav {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
}
.desktop-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  color: var(--primary);
  padding: 3px 7px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
  position: relative;
}
.desktop-nav a:hover, .desktop-nav a:focus {
  background: var(--pastel-yellow);
  color: var(--secondary);
}
.primary-btn {
  background: var(--primary);
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-md);
  padding: 13px 28px;
  box-shadow: 0 3px 18px 0 rgba(35,80,33,0.07);
  cursor: pointer;
  letter-spacing: 0.3px;
  margin-left: 18px;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  outline: none;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.primary-btn:hover, .primary-btn:focus {
  background: var(--secondary);
  color: var(--accent);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 24px 0 rgba(102,170,78,0.16), var(--shadow-soft);
}
/* BURGER MENU */
.mobile-menu-toggle {
  display: none;
  background: var(--pastel-pink);
  color: var(--primary);
  border: none;
  border-radius: 11px;
  padding: 8px 15px;
  font-size: 2rem;
  cursor: pointer;
  margin-left: 16px;
  transition: background 0.18s, color 0.18s;
  z-index: 40;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--pastel-yellow);
  color: var(--secondary);
  outline: none;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(251,251,255,0.85);
  z-index: 300;
  transform: translateX(-100%);
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100vw;
  height: 100vh;
  padding-top: 15px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--pastel-lavender);
  color: var(--primary);
  border: none;
  font-size: 2.2rem;
  border-radius: 11px;
  margin: 8px 0 24px 22px;
  padding: 6px 16px 4px 16px;
  cursor: pointer;
  align-self: flex-start;
  transition: color 0.18s, background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--secondary);
  background: var(--pastel-yellow);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-left: 32px;
  margin-top: 18px;
  width: 100vw;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.29rem;
  color: var(--primary);
  padding: 10px 0;
  border-radius: 8px;
  background: none;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--pastel-green);
  color: var(--secondary);
}

/* Hide desktop nav, btn on mobile; show burger */
@media (max-width: 1024px) {
  .desktop-nav, .primary-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .container {
    gap: 0;
  }
}
@media (min-width: 1025px) {
  .mobile-menu { display: none !important; }
}

/* =========================== */
/* MAIN LAYOUT & SECTIONS     */
/* =========================== */
main {
  min-height: 300px;
  background: none;
  padding-bottom: 50px;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
  z-index: 1;
}
.hero-section {
  background: linear-gradient(90deg, var(--pastel-lavender) 12%, var(--pastel-green) 96%);
  padding: 70px 0 70px 0;
  margin-bottom: 55px;
}
.hero-section h1 {
  font-size: 2.44rem;
  margin-bottom: 14px;
}
.hero-section p {
  font-size: 1.16rem;
  margin-bottom: 24px;
}
.features-section {
  background: var(--pastel-pink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.features-section ul.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 20px;
  justify-content: space-between;
}
.feature-grid li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  background: var(--pastel-blue);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  flex: 1 1 220px;
  min-width: 220px;
  padding: 24px 20px 18px 22px;
  margin-bottom: 20px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-grid li:hover, .feature-grid li:focus-within {
  transform: translateY(-2px) scale(1.025);
  box-shadow: 0 8px 38px 0 rgba(87, 120, 83, 0.14);
}
.feature-grid img {
  height: 50px;
  width: 50px;
  margin-bottom: 8px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 22px 0;
}
.service-list li {
  background: var(--pastel-blue);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 18px 20px 12px 18px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 12px;
}
.service-list img {
  width: 36px;
  height: 36px;
  margin-top: 7px;
}

.cta-section {
  background: linear-gradient(83deg, var(--pastel-green) 66%, var(--pastel-yellow) 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  text-align: center;
}
.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
.cta-section p {
  font-size: 1.14rem;
  margin-bottom: 24px;
}

/* CARDS, GRIDS, AND FLEX CONTAINERS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  background: var(--pastel-blue);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 26px 22px;
  margin-bottom: 20px;
  position: relative;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 32px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 18px 18px 24px;
  background: var(--pastel-yellow);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 21px 0 rgba(251, 216, 209, 0.10);
  margin-bottom: 28px;
  flex-direction: column;
  max-width: 620px;
}
.testimonials-section h2 {
  margin-bottom: 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.quick-tips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 18px 0 0 0;
}
.quick-tips-grid > div {
  display: flex;
  align-items: center;
  background: var(--pastel-yellow);
  border-radius: 12px;
  padding: 10px 16px 10px 10px;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  min-width: 140px;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.18s;
}
.quick-tips-grid > div img {
  width: 28px; height: 28px;
}
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: var(--pastel-blue);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 16px 18px 12px 18px;
}
.faq-item h3 {
  margin-bottom: 7px;
  color: var(--secondary);
  font-weight: 600;
}

/* DETAILED SERVICE LIST (services.html) */
.detailed-service-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.detailed-service-list li {
  display: flex;
  flex-direction: column;
  background: var(--pastel-lavender);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 24px 22px 18px 22px;
  margin-bottom: 20px;
  position: relative;
}
.detailed-service-list img {
  width: 54px;
  height: 54px;
  margin-bottom: 8px;
}
.detailed-service-list h3 {
  margin-bottom: 7px;
  color: var(--primary);
}
.detailed-service-list span {
  margin-top: 8px;
  font-size: 1.08rem;
  color: #427045;
  background: var(--pastel-green);
  border-radius: 8px;
  display: inline-block;
  padding: 5px 12px 2px 12px;
  font-weight: 600;
}

/* ==================== */
/* FOOTER              */
/* ==================== */
footer {
  padding: 38px 0 19px 0;
  background: linear-gradient(90deg, var(--pastel-green) 45%, var(--pastel-lavender) 100%);
  box-shadow: 0 -2px 12px 0 rgba(87,125,69,0.06);
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 26px;
  margin-bottom: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 1.01rem;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  opacity: 0.89;
  transition: color 0.16s, background 0.16s;
  padding: 3px 8px;
  border-radius: 8px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--secondary);
  background: var(--pastel-yellow);
}
.footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  opacity: 0.94;
}
.footer-info a {
  color: var(--primary);
  border-bottom: 1px dotted var(--secondary);
  transition: color 0.16s;
}
.footer-info a:hover {
  color: var(--secondary);
}

/* ========================= */
/* SPACING CORRECTIONS      */
/* ========================= */
section, .section {
  margin-bottom: 60px !important;
  padding: 40px 20px !important;
}
.card-container, .content-grid, .features-section ul.feature-grid, .quick-tips-grid {
  gap: 24px !important;
}
.card, .feature-grid li, .detailed-service-list li, .testimonial-card, .faq-item {
  margin-bottom: 20px !important;
}

/* ===================================== */
/* RESPONSIVE DESIGN (MOBILE-FIRST)     */
/* ===================================== */
@media (max-width: 900px) {
  .features-section ul.feature-grid {
    gap: 16px;
  }
  .feature-grid li {
    min-width: 160px;
    padding: 18px 14px 13px 14px;
  }
  .service-list, .detailed-service-list {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  header .container {
    padding: 0 8px;
    height: 66px;
  }
  h1 { font-size: 1.68rem; margin-bottom: 18px; }
  h2 { font-size: 1.29rem; margin-bottom: 10px; }
  h3 { font-size: 1.11rem; margin-bottom: 8px; }
  .section, section {
    padding: 30px 6px !important;
    margin-bottom: 42px !important;
  }
  .hero-section {
    padding: 43px 0 46px 0;
    margin-bottom: 24px;
  }
  .hero-section h1 { font-size: 1.48rem; }
  .feature-grid, .content-grid, .card-container, .quick-tips-grid {
    flex-direction: column;
    gap: 10px !important;
  }
  .feature-grid li, .card, .detailed-service-list li {
    min-width: 0;
    width: 100%;
    padding: 14px 8px 10px 10px;
  }
  .testimonial-card, .faq-item {
    padding: 12px 8px;
    width: 100%;
    max-width: none;
  }
  .about-summary-section .content-wrapper, .cta-section .content-wrapper{
    padding: 10px 2px;
  }
  .cta-section {
    border-radius: var(--radius-md);
  }
  .text-section, .address-block {
    padding: 14px 8px;
    border-radius: 10px;
  }
  .map-section .content-wrapper {
    padding: 7px 4px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .footer-info {
    font-size: 0.97rem;
    gap: 2px;
  }
  .footer-nav {
    gap: 12px;
    font-size: 0.99rem;
  }
}
@media (max-width: 500px) {
  .container {
    padding: 0 3vw;
  }
  .address-block {
    font-size: 0.98rem;
  }
  .footer-info {
    font-size: 0.92rem;
  }
}

/* ======================================== */
/* MICRO-INTERACTIONS & SMOOTH TRANSITIONS  */
/* ======================================== */
.card, .feature-grid li, .detailed-service-list li, .testimonial-card, .faq-item, .quick-tips-grid > div {
  transition: box-shadow 0.18s, transform 0.18s, background 0.18s;
}
.card:hover, .feature-grid li:hover, .detailed-service-list li:hover, .testimonial-card:hover, .faq-item:hover {
  box-shadow: 0 10px 34px 0 rgba(87, 120, 83, 0.11);
  transform: translateY(-1px) scale(1.01);
}
.quick-tips-grid > div:hover, .quick-tips-grid > div:focus {
  box-shadow: 0 8px 32px 0 rgba(247, 209, 230, 0.2);
}
.primary-btn:active {
  background: var(--primary);
  color: var(--pastel-yellow);
  transform: scale(0.97);
}

/* ========================= */
/* COOKIE CONSENT BANNER    */
/* ========================= */
#cookie-consent-banner {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 24px;
  background: var(--pastel-yellow);
  color: var(--primary);
  border-radius: var(--radius-md);
  box-shadow: 0 7px 44px 0 rgba(100,125,80, 0.17);
  padding: 22px 18px 20px 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.28s, bottom 0.36s;
}
#cookie-consent-banner.hide {
  opacity: 0;
  bottom: 0;
  visibility: hidden;
}
#cookie-consent-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-btn, .cookie-btn-main {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  border: none;
  border-radius: 8px;
  padding: 8px 22px;
  margin-right: 2px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.cookie-btn-main {
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
}
.cookie-btn-main:hover, .cookie-btn-main:focus {
  background: var(--secondary);
  color: var(--pastel-yellow);
}
.cookie-btn {
  background: var(--pastel-blue);
  color: var(--primary);
  font-weight: 600;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--pastel-green);
  color: var(--secondary);
}

@media (max-width: 700px) {
  #cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 7px 13px 12px;
    left: 2vw; right: 2vw;
  }
  #cookie-consent-banner .cookie-btns {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }
}

/* COOKIE MODAL POPUP */
#cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(40,67,61,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.24s;
}
#cookie-modal.open {
  visibility: visible;
  opacity: 1;
}
.cookie-modal-content {
  background: var(--pastel-lavender);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px 0 rgba(35,80,33, 0.10);
  min-width: 300px;
  max-width: 95vw;
  padding: 30px 24px 16px 24px;
  position: relative;
  text-align: left;
}
.cookie-modal-content h2 {
  font-size: 1.21rem;
  margin-bottom: 10px;
  color: var(--primary);
}
.cookie-modal-close {
  position: absolute;
  top: 10px; right: 20px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: var(--primary);
  cursor: pointer;
  padding: 2px 10px;
  border-radius: 6px;
  transition: background 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--pastel-yellow);
}
.cookie-category {
  margin-bottom: 11px;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 12px;
}
.cookie-category label {
  font-weight: 600;
  color: var(--secondary);
  font-size: 1.04rem;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--primary);
  width: 18px;
  height: 18px;
  margin-right: 3px;
}
.essential-label {
  color: #43784c; opacity: 0.85;
}
.essential-lock {
  font-size: 1.1em; color: #CCD2D6; margin-left: 3px;
}

/* ------------------- */
/* MICRO-ANIMATION    */
/* ------------------- */
[role="button"], button, .primary-btn, .mobile-menu-toggle, .mobile-menu-close, .cookie-btn, .cookie-btn-main {
  transition: box-shadow 0.21s, background 0.2s, color 0.18s, transform 0.17s;
}
[role="button"]:focus, .primary-btn:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus, .cookie-btn:focus, .cookie-btn-main:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

::-webkit-input-placeholder {color: #97A99E; opacity: 1;}
::-moz-placeholder {color: #97A99E; opacity: 1;}
:-ms-input-placeholder {color: #97A99E; opacity:1;}
::placeholder {color: #97A99E; opacity: 1;}


/* ===================== */
/* ACCESSIBILITY        */
/* ===================== */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ========================== */
/* PRINT                    */
/* ========================== */
@media print {
  * { color: #111 !important; background: transparent !important; }
  header, footer, #cookie-consent-banner, #cookie-modal { display: none !important; }
  main { padding: 0 !important; }
}
