/* ==================================================
   Sparkle Solutions – NATURE_ORGANIC Responsive CSS
   Designed by Senior CSS Developer & UI Designer
   ==================================================
   RESET & BASELINE STYLES
   -------------------------------------------------- */
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, menu, 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, 
main, 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 {
  scroll-behavior: smooth;
  background: #faf7f2;
  box-sizing: border-box;
}
body {
  line-height: 1.6;
  font-family: 'Roboto', Arial, sans-serif;
  background: #f7f7f4;
  color: #253422;
  font-size: 16px;
  min-height: 100vh;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, nav, section {
  display: block;
}
ol, ul {
  list-style: none;
}
a {
  background: none;
  text-decoration: none;
  color: #2a4428;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #247345;
}
img {
  max-width: 100%;
  border: 0;
  display: block;
}
strong {
  font-weight: 600;
}
pre, code {
  font-family: 'Roboto Mono', monospace;
  background: #eae3ce;
  padding: 2px 6px;
  border-radius: 4px;
}

/* =======================
   BRAND FONTS (GOOGLE)
   ======================= */
@import url('https://fonts.googleapis.com/css?family=Montserrat:600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,400i,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #253422;
  letter-spacing: -0.5px;
}
h1 { font-size: 2.5rem; line-height: 1.13; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.3rem; margin-bottom: 10px; }
h4 { font-size: 1.1rem; margin-bottom: 7px; }
subheadline, .subheadline { 
  font-size: 1.1rem; 
  color: #61735c; 
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400; 
  margin-bottom: 18px;
  display: block;
}
p, li, ul, ol {
  font-size: 1rem; 
  color: #213218;
}

/* =========================
   NATURE ORGANIC PALETTE
   ========================= */
:root {
  --brand-primary: #00305c;
  --brand-secondary: #009fb7;
  --brand-accent: #f7f7f7;
  --organic-green: #3a6332;
  --leaf-green: #68a357;
  --earth-brown: #a67c52;
  --sand-light: #ece4d9;
  --stone-grey: #b7b5a4;
  --deep-forest: #213218;
  --cream-bg: #faf7f2;
  --card-bg: #fff;
  --shadow: 0 4px 20px rgba(62,81,57,0.08);
  --shadow-card: 0 2px 10px rgba(62,81,57,0.09);
  --radius-lg: 32px;
  --radius-md: 16px;
  --radius-sm: 8px;
}

/* ================
   CONTAINER
   ================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ================
   SPACING/SECTIONS
   ================ */
section {
  background: none;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius-lg);
  background: var(--cream-bg);
  box-shadow: var(--shadow);
}
main > section:not(:last-child) {
  margin-bottom: 60px;
}
main > section {
  padding-top: 30px;
  padding-bottom: 30px;
}

/* ================
   HERO SECTION
   ================ */
.hero {
  background: linear-gradient(120deg, #e7f4e4 0%, #f7f7f7 80%);
  min-height: 280px;
  display: flex;
  align-items: center;
  margin-bottom: 55px;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.hero h1, .hero .subheadline {
  color: var(--organic-green);
}
.hero .cta-button {
  margin-top: 22px;
}

/* ============
   NAVIGATION
   ============ */
header {
  background: #f6f8f4;
  box-shadow: 0 2px 8px rgba(58,99,50,.06);
  padding: 0;
  position: sticky;
  top: 0; z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--organic-green);
  padding: 8px 6px;
  border-radius: var(--radius-sm);
  transition: background .18s, color .22s;
}
.main-nav a:hover, .main-nav a:focus,
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--sand-light);
  color: var(--deep-forest);
}

.cta-button {
  background: var(--leaf-green);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 12px 34px;
  border-radius: 40px;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 10px rgba(62,81,57,0.10);
  transition: background 0.22s, box-shadow 0.22s, transform 0.18s;
  display: inline-block;
  border: none;
  cursor: pointer;
  margin-left: 20px;
  outline: none;
}
.cta-button:hover, .cta-button:focus {
  background: var(--organic-green);
  box-shadow: 0 6px 18px rgba(62,81,57,0.15);
  transform: translateY(-2px) scale(1.03);
}

/* ===============================
   MOBILE BURGER MENU
   =============================== */
.mobile-menu-toggle {
  display: none;
  background: var(--leaf-green);
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 210;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--organic-green);
  outline: none;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(250, 247, 242, 0.99);
  box-shadow: 0 8px 32px rgba(61,96,53,0.12);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.77,.2,.05,1.0);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: var(--organic-green);
  font-size: 2rem;
  border: none;
  align-self: flex-end;
  margin: 18px 18px 6px 0;
  cursor: pointer;
  transition: color 0.22s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--leaf-green);
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 28px 30px 0 30px;
  font-size: 1.15rem;
  margin-top: 16px;
}
.mobile-nav a {
  color: var(--organic-green);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 14px 12px;
  border-radius: var(--radius-md);
  display: block;
  transition: background .18s, color .22s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--sand-light);
  color: var(--deep-forest);
}

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

/* =============
   FLEX PATTERNS
   ============= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  transition: box-shadow .19s, transform .14s;
  position: relative;
  padding: 32px 24px;
  min-width: 260px;
  flex: 1 1 240px;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 24px rgba(62,81,57,0.14);
  transform: translateY(-2px) scale(1.02);
}
.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;
  background: #f5f9f3;
  border-radius: var(--radius-md);
  box-shadow: 0 1px 8px rgba(58,99,50,0.07);
  margin-bottom: 20px;
  min-width: 232px;
  color: #22341a;
  font-size: 1.02rem;
  flex: 1 1 280px;
}
.testimonial-card p {
  color: #22341a;
  margin-bottom: 4px;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #3a6332;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ==========================
   INDEX: FEATURE & BENEFIT GRIDS
   ========================== */
.feature-grid, .benefit-grid, .team-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-grid > div, .benefit-grid > div, .team-profiles > div {
  flex: 1 1 240px;
  min-width: 220px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 26px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow .15s, transform .11s;
}
.feature-grid > div:hover, .benefit-grid > div:hover, .team-profiles > div:hover {
  box-shadow: 0 6px 20px rgba(62,81,57,0.13);
  transform: translateY(-1.5px) scale(1.01);
}
.feature-grid img, .benefit-grid img {
  margin-bottom: 10px;
  height: 42px;
  width: auto;
  filter: grayscale(0.12) brightness(1.03) contrast(1.1);
}

/* =====================
   'CARD' & SPECIAL AREAS
   ===================== */
.contact-card {
  background: var(--card-bg);
  box-shadow: var(--shadow);
  border-radius: var(--radius-md);
  padding: 34px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.team-contact-info {
  background: #f0f4ed;
  padding: 18px 18px;
  border-radius: 14px;
  margin-bottom: 18px;
  font-size: 1rem;
}

/* ================
   CTA SECTIONS
   ================ */
.cta {
  background: linear-gradient(115deg, #e6f5e6 58%, #faf7f2 100%);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 14px rgba(58,99,50,0.08);
  padding: 40px 16px;
  margin-bottom: 40px;
}
.cta h2 {
  color: #247345;
}

/* =====================
   FOOTER
   ===================== */
footer {
  background: #f5f3ec;
  border-top: 2px solid #ece4d9;
  padding: 0 0 18px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 38px 18px 18px 18px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 14px 0 0 0;
}
.footer-nav a {
  color: #3a6332;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  padding: 4px 8px;
  border-radius: 7px;
  transition: background .16s;
}
.footer-contact {
  padding-top: 8px;
  font-size: 0.98rem;
  color: #48553a;
}
.footer-contact img {
  height: 16px;
  width: 16px;
  margin-right: 7px;
  vertical-align: middle;
}

/* ================
   LISTS
   ================ */
ul, ol {
  margin: 12px 0 18px 28px;
  padding: 0;
}
ul li, ol li {
  margin-bottom: 8px;
  color: #233a1a;
  font-size: 1rem;
}
ul li::before {
  content: '• ';
  color: var(--leaf-green);
  font-size: 1.15em;
  vertical-align: middle;
  margin-left: -20px;
  margin-right: 5px;
  font-weight: bold;
}
ul.core-values li::before {
  content: '\1F331  ';
  color: #68a357;
}
ol li {
  counter-increment: list;
  position: relative;
  margin-left: 0;
  padding-left: 12px;
}
ol li::before {
  content: counter(list) '.';
  color: var(--earth-brown);
  font-weight: bold;
  position: absolute;
  left: -28px;
}

/* ================
   FORMS (if any)
   ================ */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  outline: none;
  border: 1.7px solid #dde8d0;
  border-radius: 7px;
  background: #fafaf5;
  padding: 10px 16px;
  margin-bottom: 18px;
  transition: border .18s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--leaf-green);
}
button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

/* ==========================
   COOKIE CONSENT BANNER
   ========================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: #f4fbe6;
  padding: 22px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3100;
  box-shadow: 0 -2px 18px rgba(62,81,57,0.07);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  transition: transform 0.34s cubic-bezier(.25,1,.32,1);
  transform: translateY(0);
}
.cookie-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
  opacity: 0;
}
.cookie-banner p {
  color: #233a1a;
  font-size: 1rem;
  text-align: center;
  margin: 0 0 16px 0;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 8px;
}
.cookie-banner button, .cookie-banner .cookie-settings-btn {
  padding: 9px 22px;
  border-radius: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  background: var(--leaf-green);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background .17s, box-shadow .15s;
  box-shadow: 0 1px 6px rgba(62,81,57,0.07);
}
.cookie-banner .cookie-actions button:hover, .cookie-banner .cookie-actions button:focus {
  background: var(--organic-green);
}
.cookie-banner .cookie-actions .cookie-reject {
  background: #ece4d9;
  color: #3a6332;
  font-weight: 600;
}
.cookie-banner .cookie-actions .cookie-reject:hover, .cookie-banner .cookie-actions .cookie-reject:focus {
  background: #ebcaaa;
  color: #222;
}
.cookie-banner .cookie-actions .cookie-settings-btn {
  background: #b7b5a4;
  color: #273d23;
}
.cookie-banner .cookie-actions .cookie-settings-btn:hover {
  background: #a67c52;
  color: #fff;
}

/* ===============
   COOKIE MODAL
   =============== */
.cookie-modal-bg {
  background: rgba(32,61,24,0.24);
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 3150;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity .25s;
}
.cookie-modal-bg.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px 26px 22px 26px;
  box-shadow: 0 7px 38px 2px rgba(62,81,57,0.25);
  min-width: 300px;
  max-width: 390px;
  z-index: 3201;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  animation: fadeInDown .33s;
  font-size: 1rem;
}
.cookie-modal h3 {
  font-size: 1.11rem;
  color: #236C30;
  margin-bottom: 7px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 4px;
}
.cookie-modal .cookie-category label {
  font-size: 1rem;
  color: #233a1a;
  font-family: 'Roboto',Arial,sans-serif;
}
.cookie-modal .cookie-toggle {
  appearance: none;
  width: 38px; height: 20px;
  background: #ece4d9;
  border-radius: 14px;
  position: relative;
  outline: none;
  cursor: pointer;
  vertical-align: middle;
  transition: background .13s;
  margin-right: 4px;
}
.cookie-modal .cookie-toggle:checked {
  background: var(--leaf-green);
}
.cookie-modal .cookie-toggle:after {
  content: "";
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 1px; top: 1px;
  transition: left 0.13s;
  box-shadow: 0 1px 4px rgba(62,81,57,0.15);
}
.cookie-modal .cookie-toggle:checked:after {
  left: 19px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}
.cookie-modal .cookie-modal-actions button {
  padding: 8px 20px;
  border-radius: 20px;
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 600;
  background: var(--leaf-green);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background .16s;
}
.cookie-modal .cookie-modal-actions .modal-cancel {
  background: #ece4d9;
  color: #213218;
}
.cookie-modal .cookie-modal-actions .modal-cancel:hover {
  background: #b7b5a4;
  color: #fff;
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-32px); }
  to { opacity: 1; transform: none; }
}

/* ==========================
   ORGANIC DECOR & TEXTURE
   ========================= */
.card, .feature-grid > div, .benefit-grid > div, .testimonial-card {
  border-radius: 26px 38px 22px 22px / 24px 33px 17px 29px;
  /* Organic blob shape */
}
.section, .cta, .hero {
  background-blend-mode: lighten;
}
/* Subtle texture: add organic pattern on background (SVG pattern as PNG fallback) */
body {
  background-image: url('data:image/svg+xml;utf8,<svg width="1200" height="1200" xmlns="http://www.w3.org/2000/svg"><ellipse fill="%23ece4d9" fill-opacity="0.55" cx="150" cy="150" rx="180" ry="70" /><ellipse fill="%23e7f4e4" fill-opacity="0.22" cx="700" cy="300" rx="240" ry="90" /></svg>');
  background-repeat: no-repeat;
  background-position: top left, center right;
}

/* ==================
   RESPONSIVE QUERIES
   ================== */
@media (max-width: 1023px) {
  .footer-nav {
    flex-direction: row;
    gap: 16px;
  }
  footer .container {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .benefit-grid, .team-profiles {
    flex-wrap: wrap;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.4rem; }
  .hero {
    padding: 30px 0 12px 0;
    min-height: unset;
  }
  .section, .cta {
    padding: 28px 10px;
  }
  .feature-grid, .benefit-grid, .team-profiles {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid > div, .benefit-grid > div, .team-profiles > div {
    min-width: 0;
    flex: 1 1 100%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 500px) {
  .section, .cta, main > section {
    padding-left: 3.3vw !important;
    padding-right: 3.3vw !important;
  }
}

/* ===============
   Z-INDEX LAYERS
   =============== */
header { z-index: 200; }
.mobile-menu { z-index: 3000; }
.cookie-banner { z-index: 3100; }
.cookie-modal-bg { z-index: 3150; }

/* =============
   UTILITIES
   ============= */
.hide { display: none !important; }
.visually-hidden { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; } 

/* ============
   MICRO-ANIMATIONS
   ============ */
.card, .feature-grid > div, .benefit-grid > div, .testimonial-card, .cta-button, .main-nav a, .mobile-nav a {
  transition: box-shadow .16s, background .16s, color .15s, transform .13s;
}

/* End of Sparkle Solutions CSS */
