/* -------------------------------------------------------
   LUFTIGVEGAN 'WARM_FRIENDLY' SITEWIDE CSS STYLESHEET
------------------------------------------------------- */

/* 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.5;
  background: #F5F6FA;
  color: #215837;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 16px; /* friendly rounded corners for images */
}
ul, ol {
  list-style: none;
}
a {
  color: #29724F;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #C37421;
  text-decoration: underline;
  outline: none;
}

/* FONT DEFINITIONS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #215837;
  font-weight: 900;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.75rem; line-height: 1.1; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 16px;font-weight: 700; }
h3 { font-size: 1.35rem; margin-bottom: 10px; font-weight: 700; }
h4, h5, h6 { font-size: 1rem; margin-bottom: 8px; font-weight: 600; }
p, ul, ol, li { font-family: 'Open Sans', Arial, sans-serif; font-size: 1rem; color: #215837; }
strong { font-weight: 700; }

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

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* SECTION LAYOUT (MANDATORY) */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 2px 10px 0 rgba(44, 62, 80, 0.06);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 0; /* Managed by container/section spacing */
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FAF3E8;
  margin-bottom: 20px;
  border-radius: 20px;
  box-shadow: 0 2px 8px 0 rgba(236, 168, 105, 0.10);
  padding: 28px 24px;
  position: relative;
  transition: box-shadow 0.25s, transform 0.20s;
  display: flex;
  flex-direction: column;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 8px 20px 0 rgba(44,62,80,0.12);
  transform: translateY(-2px) scale(1.01);
}

.content-grid,
.feature-grid,
.feature-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.feature-steps { gap: 28px; }
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonials, .testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  min-width: 250px;
  background: #FFF7ED;
  border-radius: 20px;
  box-shadow: 0 2px 14px 0 rgba(236,168,105,0.10);
  color: #215837;
  margin-bottom: 20px;
  transition: box-shadow 0.22s, transform 0.18s;
}
.testimonial-card p {
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.testimonial-card span {
  color: #A86719;
  font-size: 0.98rem;
  font-style: italic;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 32px 0 rgba(44,62,80,0.10);
  transform: translateY(-2px) scale(1.012);
}
@media (max-width: 768px) {
  .testimonials, .testimonial-cards {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card { min-width: 0; }
}

/* Feature items - benefit list, steps */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 18px;
  background: #F6E3CB;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 0.5px 3px 0 rgba(44,62,80,0.07);
}

/* Cards for services and details */
.service-card {
  background: #FFF7ED;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(236, 168, 105, 0.11);
  padding: 24px 20px;
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.25s, transform 0.18s;
}
.service-card:hover, .service-card:focus-within {
  box-shadow: 0 8px 20px 0 rgba(44,62,80,0.11);
  transform: translateY(-2px) scale(1.008);
}
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
@media (max-width: 900px) {
  .service-cards,
  .feature-grid, .feature-steps, .content-grid { flex-direction: column; }
}

/* Badge/price styling */
.badge.price {
  background: #ECA869;
  color: #215837;
  border-radius: 10px;
  padding: 5px 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  align-self: flex-start;
}

/* -----------------------------------
   HEADER + NAVIGATION
----------------------------------- */
header {
  width: 100%;
  background: #FFFFFF;
  border-bottom: 2.5px solid #ECA86910;
  padding: 0;
  box-shadow: 0 1.5px 8px 0 rgba(44,62,80, .05);
  position: relative;
  z-index: 1020;
}
header .container {
  flex-direction: row;
  align-items: center;
  gap: 18px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo img {
  height: 46px;
  width: auto;
  border-radius: 10px;
}
nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
}
nav a {
  padding: 5.5px 13px;
  border-radius: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.04rem;
  letter-spacing: 0.02em;
  transition: background 0.18s, color 0.18s;
  color: #29724F;
}
nav a:hover,
nav a:focus {
  background: #ECA86950;
  color: #C37421;
  text-decoration: none;
}

.cta.primary, .cta {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #fff;
  background: #29724F;
  padding: 11px 28px;
  border-radius: 30px;
  font-size: 1.1rem;
  box-shadow: 0 2px 12px 0 rgba(44,62,80,0.10);
  transition: background 0.18s, color 0.18s, box-shadow 0.17s, transform 0.18s;
  border: none;
  display: inline-block;
  margin-top: 2px;
  cursor: pointer;
}
.cta.primary:hover, .cta.primary:focus,
.cta:hover, .cta:focus {
  background: #C37421;
  color: #fff;
  box-shadow: 0 7px 22px 0 rgba(236, 168, 105, 0.12);
  transform: translateY(-1px) scale(1.03);
  outline: none;
}

/* ---------------------
   MOBILE NAVIGATION
---------------------- */
.mobile-menu-toggle {
  display: none;
  background: #FFF7ED;
  border: none;
  color: #29724F;
  font-size: 1.85rem;
  border-radius: 8px;
  padding: 6px 16px;
  margin-left: auto;
  cursor: pointer;
  line-height: 1;
  transition: background 0.2s, color 0.2s;
  z-index: 1201;
}
.mobile-menu-toggle:focus {
  background: #ECA86988;
  color: #215837;
  outline: none;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 1.5px 24px 0 rgba(44,62,80,0.18);
  display: flex;
  transform: translateX(-110vw);
  transition: transform 0.36s cubic-bezier(.94,0,.36,1.22);
  z-index: 1200;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 0;
}
.mobile-menu.open {
  transform: translateX(0) !important;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #29724F;
  margin: 20px 22px 6px 0;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.18s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #ECA86955;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 15px 32px 0 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.21rem;
  color: #29724F;
  padding: 14px 0 6px 7px;
  border-radius: 7px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.16s, color 0.16s;
  min-height: 38px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #ECA86955;
  color: #C37421;
  outline: none;
}
@media (max-width: 1020px) {
  header .container nav { display: none; }
  header .container .cta.primary { display: none; }
  .mobile-menu-toggle { display: inline-block; }
}
@media (min-width: 1021px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* MAIN LAYOUTS: SPACING + FLEX BASIS */
@media (min-width: 769px) {
  .service-cards .service-card, .feature-grid > div, .feature-steps > div {
    flex: 1 1 250px;
    min-width: 250px;
    margin-right: 0;
    margin-bottom: 0;
    max-width: 350px;
  }
  .feature-grid > div:last-child, .service-cards .service-card:last-child {
    margin-right: 0;
  }
}
@media (max-width: 768px) {
  section, .content-wrapper, .card-container, .service-cards, .feature-grid, .feature-steps, .content-grid {
    flex-direction: column !important;
    gap: 20px !important;
  }
  section { padding: 28px 8px; }
  .container { padding: 0 5px; }
}

/* LISTS WITH ICONS */
.checklist-icons ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 14px;
}
.checklist-icons li {
  display: flex;
  align-items: center;
  font-size: 1.02rem;
  gap: 9px;
  color: #215837;
  font-weight: 500;
}

/* TEXT-IMAGE SECTION (for about, hero, etc.) */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; gap: 18px; }
}

/* CONTACT INFO */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #FAF7F0;
  border-radius: 14px;
  padding: 24px 22px;
  font-size: 1.05rem;
  color: #215837;
  margin-bottom: 20px;
}
.contact-info a {
  color: #29724F;
  font-weight: 700;
}
.contact-info a:hover {
  color: #C37421;
}

/* ICONS */
.feature-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 8px;
  border-radius: 12px;
  background: #F6E3CB;
  padding: 7px;
  box-shadow: 0 1px 6px 0 rgba(236,168,105,0.08);
}

/* ----------------------
   FOOTER
----------------------- */
footer {
  width: 100%;
  background: #29724F;
  color: #fff;
  border-radius: 24px 24px 0 0;
  padding: 0;
  min-height: 70px;
  margin-top: 48px;
}
footer .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 15px;
  padding-bottom: 13px;
}
footer a, footer nav a { color: #fff; font-weight: 600; font-size: 1.01rem; transition: color 0.14s; }
footer nav {
  gap: 17px;
}
footer nav a:hover, footer nav a:focus {
  color: #ECA869;
  text-decoration: underline;
}
footer img {
  height: 40px;
  width: auto;
  border-radius: 7px;
}
footer p {
  font-size: 0.98rem;
  color: #FAF7F0;
  margin: 0 0 0 14px;
}
@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
    padding: 17px 7px !important;
  }
  footer nav { margin-top: 4px; }
}

/* ------------------------------------------------------
   COOKIE CONSENT BANNER & MODAL
------------------------------------------------------ */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  background: #FAF3E8;
  border-top: 2.5px solid #FFD08B;
  color: #215837;
  font-size: 1rem;
  box-shadow: 0 -8px 32px 0 rgba(44,62,80,0.05);
  z-index: 2000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  gap: 18px;
  transition: transform 0.33s cubic-bezier(.94,0,.36,1.18);
}
.cookie-banner.hide {
  transform: translateY(150%);
  pointer-events: none;
}
.cookie-banner__text {
  flex: 2;
  font-size: 1.01rem;
  margin-right: 14px;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: flex-end;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  padding: 9px 22px;
  border-radius: 20px;
  font-size: 1.03rem;
  transition: background 0.18s, color 0.14s, box-shadow 0.12s, transform 0.15s;
  cursor: pointer;
  margin-left: 0;
  margin-top: 0;
  background:#29724F;
  color:#fff;
  box-shadow: 0 1.5px 8px 0 rgba(236,168,105,0.07);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #C37421;
  color: #fff;
  transform: translateY(-1px) scale(1.04);
  outline: none;
}
.cookie-btn.secondary {
  background: #FAF3E8;
  color: #29724F;
  border: 2px solid #ECA869;
}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus {
  background: #FFD08B;
  color: #215837;
}

/* COOKIE MODAL POPUP */
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -52%) scale(1);
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 12px 40px 0 rgba(44,62,80,0.18);
  z-index: 2100;
  padding: 36px 34px 28px 34px;
  min-width: 295px;
  max-width: 98vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: 1;
  transition: opacity 0.23s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal__close {
  position: absolute;
  top: 20px; right: 22px;
  background: none;
  border: none;
  font-size: 1.9rem;
  color: #29724F;
  cursor: pointer;
  line-height: 1;
  border-radius: 5px;
}
.cookie-modal__close:focus, .cookie-modal__close:hover {
  background: #ECA86944;
}
.cookie-modal__title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.38rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #215837;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  margin-bottom: 13px;
}
.cookie-modal label {
  font-size: 1.05rem;
  color: #215837;
}
.cookie-toggle {
  width: 40px;
  height: 22px;
  border-radius: 12px;
  background: #ECA86980;
  cursor: pointer;
  position: relative;
  transition: background 0.15s;
  margin-right: 8px;
  border: none;
  display: inline-block;
}
.cookie-toggle[aria-checked="true"] {
  background: #29724F;
}
.cookie-toggle-thumb {
  position: absolute;
  top: 2px; left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(44,62,80,0.10);
  transition: left 0.17s;
}
.cookie-toggle[aria-checked="true"] .cookie-toggle-thumb {
  left: 20px;
}
.cookie-modal__actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 18px;
}
.cookie-modal .cookie-desc {
  font-size: 0.97rem;
  margin-bottom: 3px;
}
@media (max-width: 600px) {
  .cookie-modal {
    padding: 23px 3vw 16px 3vw;
    min-width: 0;
    width: 96vw;
    max-width: 98vw;
  }
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.98rem;
    padding: 18px 7px;
  }
  .cookie-banner__actions { gap: 8px; }
  .cookie-btn { padding: 9px 15px; font-size: 0.98rem; }
}

/* ---------------------
   RESPONSIVITY & SPACING
---------------------- */
@media (max-width: 600px) {
  .content-wrapper, .service-cards, .feature-grid, .feature-steps, .content-grid, .card-container {
    padding: 0 !important;
    gap: 14px !important;
  }
  .service-card, .card, .testimonial-card, .feature-item {
    padding: 16px 10px !important;
    margin-bottom: 18px;
  }
}

/* ---------------
   MICROINTERACTIONS
------------------ */
.service-card, .card, .testimonial-card, .feature-item {
  transition: box-shadow 0.2s, transform 0.18s;
}
.service-card:hover, .card:hover, .testimonial-card:hover, .feature-item:hover {
  box-shadow: 0 8px 26px 0 rgba(236, 168, 105, 0.13);
  transform: translateY(-1px) scale(1.01);
}

/* ---------------
   FORM ELEMENTS
---------------- */
input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  border: 2px solid #ECA869;
  border-radius: 12px;
  padding: 10px 18px;
  background: #FFF7ED;
  transition: border-color 0.17s, box-shadow 0.17s;
  outline: none;
  color: #215837;
  margin-bottom: 16px;
}
input:focus, textarea:focus, select:focus {
  border-color: #29724F;
  box-shadow: 0 0 0 2px #ECA86944;
}

button, .btn {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  background: #ECA869;
  color: #215837;
  padding: 9px 22px;
  font-weight: 700;
  font-size: 1.08rem;
  transition: background 0.18s, color 0.18s, box-shadow 0.12s;
}
button:hover, button:focus, .btn:hover, .btn:focus {
  background: #29724F;
  color: #fff;
  box-shadow: 0 4px 14px 0 rgba(44,62,80,0.13);
  outline: none;
}

/* --------------
   UTILS
-------------- */
.text-section {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.06rem;
  color: #215837;
}
.text-section h1, .text-section h2, .text-section h3 {
  color: #29724F;
  margin-top: 18px;
}
.text-section ul, .text-section ol {
  margin-bottom: 8px;
  margin-left: 18px;
  list-style: disc;
}

/* SYSTEM FEEDBACK */
.alert, .system-message {
  padding: 16px 24px;
  border-radius: 13px;
  background: #F6E3CB;
  color: #A86719;
  font-weight: 700;
  margin-bottom: 24px;
  box-shadow: 0 1.5px 6px 0 rgba(236,168,105,0.07);
}

/* --------------
   PRINT OPTIMIZED
-------------- */
@media print {
  header, footer, .cookie-banner, .cookie-modal, nav, .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
  section, .container, .content-wrapper {
    box-shadow: none !important;
    background: #fff !important;
  }
  body { background: #fff !important; color:#000 !important; }
}
