/* --- 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;
}
/* Make sure images, embedded objects, and buttons fit and look consistent */
img, embed, object, video {
  display: block;
  max-width: 100%;
  height: auto;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  background: none;
  border: none;
  outline: none;
  appearance: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: color 0.2s;
}
:root {
  --primary: #234D20;
  --secondary: #6D9C6C;
  --accent: #EFEFEF;
  --electric-green: #23D160;
  --electric-pink: #FC3683;
  --electric-yellow: #FFD934;
  --electric-blue: #306BFC;
  --electric-orange: #FF851B;
  --white: #fff;
  --dark: #181b18;
  --text: #222;
  --border-radius: 18px;
  --shadow: 0 4px 24px rgba(44,195,137,0.09), 0 1.5px 5px rgba(252,54,131,0.09);
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
  --transition: .18s cubic-bezier(.57,1.43,.36,1.1);
}

/* --- TYPOGRAPHY & BASE STYLES --- */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--accent);
  min-height: 100vh;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 0.5em;
}
h1 {
  font-size: 2.7rem;
  color: var(--electric-green);
  letter-spacing: -1.4px;
  text-shadow: 1px 2px 0 var(--accent), 0 6px 16px rgba(35,77,32,0.12);
}
h2 {
  font-size: 2rem;
  color: var(--electric-pink);
  letter-spacing: -1px;
  text-shadow: 1px 1px 0 var(--accent);
}
h3 {
  font-size: 1.3rem;
  color: var(--primary);
  font-weight: 600;
}
h4, h5, h6 {
  color: var(--secondary);
  font-weight: 600;
}
p, ul, ol, dl, blockquote, pre, label {
  font-family: var(--font-body);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
strong {
  font-weight: 700;
}
em {
  font-style: italic;
  color: var(--electric-blue);
}
a {
  color: var(--electric-green);
  position: relative;
  transition: color .16s;
}
a:hover, a:focus {
  color: var(--electric-pink);
}

/* --- CONTAINER & LAYOUT --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 16px rgba(35,77,32,0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  align-items: flex-start;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

/* Home-Page service list/card grid (icons) */
.content-wrapper > ul, .content-wrapper > ol {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.content-wrapper > ul > li,
.content-wrapper > ol > li {
  flex: 1 1 320px;
  background: var(--accent);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 28px 20px 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  min-width: 280px;
  max-width: 380px;
  transition: box-shadow var(--transition),transform var(--transition);
  border-left: 5px solid var(--electric-green);
  position: relative;
}
.content-wrapper > ul > li:hover {
  box-shadow: 0 8px 32px rgba(35,109,108,0.18), 0 1.5px 5px rgba(252,54,131,0.11);
  transform: translateY(-3px) scale(1.03);
  border-left: 5px solid var(--electric-pink);
}
.content-wrapper > ul > li img {
  height: 38px;
  width: 38px;
  margin-bottom: 8px;
}

/* --- BUTTONS & CTAs --- */
.cta-btn {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  background: var(--electric-pink);
  color: var(--white);
  border-radius: 100px;
  padding: 16px 34px;
  margin: 16px 0 0 0;
  box-shadow: 0 3px 14px rgba(252,54,131,0.14);
  letter-spacing: 0.06em;
  transition: background var(--transition), transform var(--transition),box-shadow var(--transition);
  border: none;
  display: inline-block;
  cursor: pointer;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--electric-yellow);
  color: var(--primary);
  transform: scale(1.06) translateY(-2px) rotate(-2deg);
  box-shadow: 0 6px 28px rgba(255,217,52,.14);
}

/* --- HEADER & NAVIGATION --- */
header {
  width: 100%;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(35,77,32,0.09);
  z-index: 50;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding-top: 14px;
  padding-bottom: 14px;
}
header img {
  height: 46px;
  width: auto;
}
nav {
  display: flex;
  gap: 18px;
}
nav a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.04rem;
  padding: 8px 13px;
  border-radius: 30px;
  color: var(--primary);
  transition: background .13s,color .13s;
  position: relative;
}
nav a:hover, nav a:focus {
  background: var(--electric-green);
  color: var(--white);
}
header .cta-btn {
  margin-left: 10px;
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 16px;
  top: 22px;
  background: var(--electric-green);
  color: var(--white);
  font-size: 2.2rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  z-index: 120;
  transition: background .18s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--electric-pink);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--primary);
  box-shadow: 0 12px 38px rgba(35,77,32,0.20);
  transform: translateX(-110vw);
  transition: transform .32s cubic-bezier(.68,.02,.36,1.03);
  opacity: 0.97;
  z-index: 500;
  padding: 40px 22px 22px 32px;
}
.mobile-menu.open {
  transform: translateX(0);
  transition: transform .38s cubic-bezier(.4,1.52,.24,1.09);
}
.mobile-menu-close {
  background: var(--electric-pink);
  color: var(--white);
  font-size: 2.1rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  align-self: flex-end;
  margin-bottom: 22px;
  cursor: pointer;
  transition: background .13s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--electric-yellow);
  color: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.15rem;
  color: var(--white);
  background: transparent;
  border-radius: 60px;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 14px 18px 14px 14px;
  margin-bottom: 4px;
  transition: background .15s, color .15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--electric-blue);
  color: var(--electric-yellow);
}
.mobile-nav a:last-child {
  margin-bottom: 0;
}

/* --- MAIN --- */
main {
  flex: 1 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 56vh;
  margin-top: 16px;
}

/* --- TESTIMONIALS --- */
.content-wrapper > .testimonial-card {
  background: var(--electric-yellow);
  color: #181b18;
  border-radius: var(--border-radius);
  box-shadow: 0 6px 42px rgba(35,109,108,0.11);
  padding: 20px 32px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: flex-start;
  min-width: 260px;
  max-width: 520px;
  position: relative;
  border-left: 7px solid var(--electric-green);
  font-size: 1.08rem;
  font-family: var(--font-body);
  font-style: normal;
  transition: transform .13s, box-shadow .13s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 38px rgba(252,54,131,0.18);
  transform: scale(1.025) translateY(-2px);
  border-left: 7px solid var(--electric-pink);
}
.testimonial-card p {
  color: #181b18;
  font-size: 1.14rem;
  line-height: 1.6;
  font-family: var(--font-body);
  font-style: normal;
}
.testimonial-card span {
  font-size: 0.99rem;
  color: #444;
  font-style: italic;
  letter-spacing: .03em;
}

/* --- MAP placeholder --- */
.map-placeholder {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  background: var(--accent);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(109,156,108,0.12);
  margin-top: 12px;
  margin-bottom: 8px;
  font-size: 1rem;
}
.map-placeholder img {
  width: 32px;
  height: 32px;
}

/* --- FOOTER --- */
footer {
  width: 100%;
  background: var(--primary);
  color: var(--white);
  padding: 36px 0 12px 0;
  font-size: 0.95rem;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  max-width: 1200px;
  padding-top: 0;
  padding-bottom: 0;
}
footer nav {
  display: flex;
  gap: 20px;
}
footer nav a {
  color: var(--white);
  font-weight: 600;
  font-size: 0.98rem;
  opacity: 0.87;
  padding: 6px 10px;
  border-radius: 10px;
  transition: background .14s;
}
footer nav a:hover,footer nav a:focus{
  color: var(--electric-yellow);
  background: var(--electric-green);
  opacity: 1;
}
footer .text-section {
  color: var(--electric-yellow);
  font-size: 0.98rem;
  opacity: 0.95;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 0;
}

/* --- FORMS (if present) --- */
input, textarea, select {
  border: 2px solid var(--electric-blue);
  border-radius: 14px;
  background: var(--accent);
  padding: 13px 15px;
  margin-bottom: 14px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  transition: border .16s, box-shadow .18s;
}
input:focus, textarea:focus {
  border-color: var(--electric-green);
  outline: none;
  box-shadow: 0 0 7px 2px rgba(35, 209, 96, 0.28);
}

/* --- FLEX CSS STRUCTURE PATTERNS --- */
  /* Section spacing, card patterns */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- VISUAL EFFECTS --- */
.card, .feature-item, .testimonial-card, .map-placeholder, .content-wrapper > ul > li {
  box-shadow: var(--shadow);
  border-radius: var(--border-radius);
}

/* --- ACCENTS, HIGHLIGHTS --- */
.content-wrapper > ul > li strong,
.content-wrapper > ol > li strong {
  color: var(--electric-pink);
  font-size: 1.08em;
  font-family: var(--font-display);
  font-weight: bold;
}
.content-wrapper > ul > li em,
.content-wrapper > ol > li em {
  display: inline-block;
  color: var(--electric-yellow);
  margin-top: 6px;
  font-weight: 700;
  letter-spacing: .01em;
}

/* --- LISTS, OL/UL --- */
.text-section ul, .content-wrapper.text-section ul {
  margin-left: 0;
  padding-left: 0;
  gap: 10px;
  display: flex;
  flex-direction: column;
}
.text-section ul li, .content-wrapper.text-section ul li {
  padding-left: 25px;
  position: relative;
  font-size: 1.08em;
}
.text-section ul li::before, .content-wrapper.text-section ul li::before {
  content: "";
  width: 14px;
  height: 14px;
  background: var(--electric-green);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 5px;
  box-shadow: 0 0 7px 1px var(--electric-yellow);
}
.text-section ol, .content-wrapper.text-section ol {
  margin-left: 0;
  padding-left: 0;
  gap: 10px;
  display: flex;
  flex-direction: column;
  counter-reset: num;
}
.text-section ol li, .content-wrapper.text-section ol li {
  padding-left: 32px;
  position: relative;
  font-size: 1.07em;
}
.text-section ol li::before, .content-wrapper.text-section ol li::before {
  counter-increment: num;
  content: counter(num) ".";
  position: absolute;
  left: 0;
  top: 2px;
  font-weight: 700;
  color: var(--electric-pink);
  font-size: 1.13em;
}

/* Definition lists for FAQ */
dl {
  margin-bottom: 1.8em;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
dt {
  font-weight: bold;
  color: var(--electric-blue);
  font-size: 1.10em;
  margin-bottom: 2px;
}
dd {
  margin-left: 16px;
  color: var(--primary);
  font-size: .98em;
}

/* --- ANIMATIONS & MICRO INTERACTIONS --- */
.cta-btn, .card, .testimonial-card, .mobile-menu, .mobile-menu-toggle, .mobile-menu-close, .cookie-banner, .cookie-modal {
  will-change: transform, box-shadow, background, opacity;
}

/* --- RESPONSIVE DESIGN (Mobile-first, 0-768px) --- */
@media (max-width: 1100px) {
  .container {
    max-width: 94vw;
  }
}
@media (max-width: 900px) {
  header .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  main {
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  section {
    padding: 26px 8px 28px 8px;
    margin-bottom: 34px;
  }
  .container {
    padding-left: 6px;
    padding-right: 6px;
  }
  header .container {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
  header nav, header .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .content-wrapper > ul {
    gap: 14px;
  }
  .content-wrapper > ul > li {
    min-width: 98vw;
    max-width: 99vw;
    padding: 19px 10px 15px 16px;
  }
  .content-wrapper.text-section, .text-section {
    gap: 12px;
  }
  .testimonial-card {
    padding: 13px 10px;
    min-width: 95vw;
    max-width: 99vw;
  }
  .map-placeholder {
    padding: 9px 10px;
  }
  footer .container {
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
    padding-bottom: 24px;
  }
  .content-grid,
  .card-container,
  .feature-item,
  .content-wrapper > ul {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

@media (max-width: 500px) {
  html { font-size: 14px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.37rem; }
  section { padding: 8px 2vw 13px 2vw; }
  .testimonial-card {padding:9px 5px;}
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  z-index: 9000;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--primary);
  color: var(--white);
  padding: 23px 12px 19px 12px;
  box-shadow: 0 -3px 24px rgba(35,77,32,0.12);
  font-size: 1.06rem;
  font-family: var(--font-body);
  gap: 20px;
  animation: cookieAppear .42s cubic-bezier(.5,1.6,.45,1.1)
}
@keyframes cookieAppear {
  from { transform: translateY(100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  color: var(--white);
  max-width: 540px;
  margin-right: 16px;
  line-height: 1.6;
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-btn {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 22px;
  border-radius: 260px;
  border: none;
  margin-left: 0;
  background: var(--electric-green);
  color: var(--white);
  transition: background .16s,color .16s;
  box-shadow: 0 2px 8px rgba(35,209,96,0.13);
  cursor: pointer;
  margin-bottom: 0;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--electric-pink);
  color: var(--white);
}
.cookie-btn--reject {
  background: var(--electric-pink);
  color: var(--white);
}
.cookie-btn--reject:hover, .cookie-btn--reject:focus {
  background: var(--electric-yellow);
  color: var(--primary);
}
.cookie-btn--settings {
  background: var(--electric-yellow);
  color: var(--primary);
}
.cookie-btn--settings:hover, .cookie-btn--settings:focus {
  background: var(--electric-blue);
  color: var(--white);
}
@media (max-width:700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    font-size: 0.98rem;
    padding: 12px 3vw 10px 3vw;
  }
  .cookie-banner__text {
    max-width: 90vw;
    margin-right: 0;
  }
}

/* --- COOKIE CONSENT MODAL --- */
.cookie-modal {
  display: none;
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background: rgba(24,27,24,0.43);
  justify-content: center;
  align-items: center;
  animation: fadeInCookie .32s;
}
.cookie-modal.open {
  display: flex;
}
@keyframes fadeInCookie {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal__content {
  background: var(--white);
  color: var(--primary);
  border-radius: 22px;
  box-shadow: 0 10px 34px rgba(35,77,32,0.22);
  max-width: 98vw;
  width: 430px;
  padding: 38px 26px 20px 26px;
  display: flex;
  flex-direction: column;
  gap: 27px;
  position: relative;
}
.cookie-modal__close {
  background: var(--electric-pink);
  color: var(--white);
  border-radius: 50%;
  width: 38px; height: 38px;
  position: absolute; top: 12px; right: 12px;
  font-size: 1.6rem;
  border: none;
  cursor: pointer;
  transition: background .13s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal__close:focus, .cookie-modal__close:hover {
  background: var(--electric-green);
}
.cookie-modal__title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--primary);
  font-size: 1.22rem;
  margin-bottom: 10px;
}
.cookie-modal__categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-modal__category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--accent);
  border-radius: 11px;
  padding: 12px 16px;
  margin-bottom: 0;
  font-size: 1rem;
}
.cookie-modal__category-label {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 600;
}
.cookie-modal__category-toggle {
  display: inline-block;
  min-width: 32px;
  min-height: 32px;
  margin-left: 12px;
}
.cookie-modal__switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 22px;
}
.cookie-modal__switch input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-modal__slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: var(--electric-pink);
  border-radius: 14px;
  transition: background .15s;
}
.cookie-modal__switch input:checked + .cookie-modal__slider {
  background: var(--electric-green);
}
.cookie-modal__slider:before {
  content: "";
  position: absolute;
  left: 2px; top: 2px;
  width: 18px; height: 18px;
  background: var(--white);
  border-radius: 50%;
  transition: transform .13s;
}
.cookie-modal__switch input:checked + .cookie-modal__slider:before {
  transform: translateX(26px);
}
.cookie-modal__category-desc {
  font-size: 0.96em;
  color: #666;
  margin-top: 2px;
  font-weight: 400;
}
.cookie-modal__actions {
  display: flex;
  gap: 15px;
  margin-top: 10px;
  justify-content: flex-end;
}

/* --- UTILS --- */
.hide {
  display: none !important;
}
.show {
  display: block !important;
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
  width: 9px;
  background: var(--accent);
}
::-webkit-scrollbar-thumb {
  background: var(--electric-green);
  border-radius: 8px;
}
::-webkit-scrollbar-track {
  background: var(--accent);
  border-radius: 8px;
}

/* --- PRINT (optional) --- */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
  section { box-shadow: none !important; background: #fff !important; }
}
