/* CSS RESET & NORMALIZATION */
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,
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;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background-color: #F4F4F4;
  color: #232B23;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
  word-break: break-word;
  overflow-x: hidden;
}
[tabindex="-1"]:focus {
  outline: none;
}
img {
  max-width: 100%;
  display: block;
  border: 0;
}
a {
  color: #238740;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #1A2327;
}
ul, ol {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', serif;
  color: #263825;
  margin-bottom: 0.6em;
}
h1 {font-size: 2.5rem; font-weight: 700; line-height: 1.15;}
h2 {font-size: 2rem; font-weight: 600; line-height: 1.22;}
h3 {font-size: 1.4rem; font-weight: 600; line-height: 1.25;}
h4 {font-size: 1.2rem; font-weight: 500; line-height: 1.25;}
p, li, span, th, td, label {
  font-size: 1rem;
  color: #232B23;
  line-height: 1.65;
}
strong, b {
  font-weight: 700;
  color: #238740;
}


/* COLOR PALETTE (NATURE ORGANIC: Earth Tones) */
:root {
  --color-primary: #1A2327;      /* Brand deep anthracite/navy */
  --color-secondary: #F7C52B;    /* Brand yellow */
  --color-accent: #F4F4F4;
  --color-green: #238740;
  --color-earth-bg: #F5F3ED;
  --color-forest: #263825;
  --color-brown: #9F7B59;
  --color-leaf: #71A86B;
  --color-moss: #ADC181;
  --card-shadow: 0 4px 16px 0 rgba(34,60,34,0.10);
  --btn-shadow: 0 2px 8px 0 rgba(34,60,34,0.09);
  --radius-xl: 32px;
  --radius-l: 20px;
  --radius-m: 14px;
  --radius-s: 6px;
}

/* LAYOUT CONTAINER */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-earth-bg);
  border-radius: var(--radius-xl);
  position: relative;
  box-shadow: var(--card-shadow);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(120deg, #F6EDD5 0%, #EAE7E1 80%);
  border-bottom-left-radius: 90px 40px;
  border-bottom-right-radius: 16px 70px;
  padding: 50px 0 40px 0;
  margin-bottom: 40px;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 680px;
}
.hero h1 {
  color: var(--color-forest);
  font-size: 2.6rem;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 18px;
}
.hero p {
  font-size: 1.2rem;
  color: var(--color-brown);
  margin-bottom: 26px;
}

/* MAIN NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(39,49,31,0.07);
  z-index: 900;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 0;
}
.logo-link { display: flex; align-items: center;}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.main-nav a {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #263825;
  padding: 8px 16px;
  border-radius: var(--radius-s);
  transition: background 0.16s, color 0.16s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-leaf);
  color: #fff;
}
.main-nav .cta-btn {
  background: var(--color-green);
  color: #fff !important;
  border-radius: var(--radius-m);
  padding: 10px 24px;
  font-weight: 700;
  transition: background 0.18s, box-shadow 0.18s;
  box-shadow: var(--btn-shadow);
  margin-left: 18px;
}
.main-nav .cta-btn:hover, .main-nav .cta-btn:focus {
  background: var(--color-secondary);
  color: #263825 !important;
  box-shadow: 0 2px 16px 0 rgba(34,60,34,0.13);
}

/* MOBILE MENU BUTTON */
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--color-green);
  margin-left: 20px;
  cursor: pointer;
  display: none;
  outline: none;
  transition: color 0.2s, transform 0.21s;
  z-index: 1102;
  border-radius: 16px;
  min-width: 46px; min-height: 46px;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #EAE7E1;
  color: var(--color-forest);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(244, 244, 244, 0.98);
  backdrop-filter: blur(2px);
  transform: translateX(100vw);
  transition: transform 0.35s cubic-bezier(.9,0,.35,1);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 34px 32px 34px;
  box-sizing: border-box;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.4rem;
  color: var(--color-green);
  align-self: flex-end;
  margin-bottom: 18px;
  cursor: pointer;
  border-radius: 12px;
  padding: 6px 10px;
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #e7e4dd; color: #263825;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.2rem;
  color: #224B31;
  font-family: 'Open Sans', Arial, sans-serif;
  padding: 14px 5px 14px 0;
  border-radius: 12px;
  font-weight: 600;
  transition: background 0.18s, color 0.16s;
  margin-left: 10px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-leaf);
  color: #fff;
}

@media (max-width: 980px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (min-width: 981px) {
  .mobile-menu {display: none !important;}
}

/* FLEXBOX MANDATORY PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius-l);
  box-shadow: var(--card-shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 20px;
  transition: box-shadow 0.18s, transform 0.16s;
  display: flex;
  flex-direction: column;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 26px 0 rgba(34,60,34,0.18);
  transform: translateY(-3px) scale(1.015);
}
.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: #FCF8F0;
  border-radius: var(--radius-l);
  box-shadow: var(--card-shadow);
  min-width: 250px;
  margin-bottom: 20px;
  flex-direction: column;
}
.testimonial-card p {
  font-size: 1.06rem;
  color: #232B23;
}
.testimonial-card span {
  font-size: 0.97rem;
  color: #85754E;
  margin-top: 8px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: var(--radius-l);
  box-shadow: var(--card-shadow);
  padding: 30px 22px ~; 
}
.feature-item img {
  width: 46px;
  height: 46px;
}
.feature-item h3 {
  margin-bottom: 0.15em;
  font-size: 1.25rem;
  color: #238740;
}
.feature-item p {
  color: #4B3722;
  font-size: 1rem;
}
.feature-grid, .service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: flex-start;
}
@media (max-width: 920px) {
  .feature-grid, .service-grid {
    flex-direction: column;
    gap: 20px;
  }
}

/* SPECIAL CONTENT SECTIONS */
.section, .cta-section {
  background: var(--color-earth-bg);
  border-radius: var(--radius-xl);
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: var(--card-shadow);
}
.section:last-child, .cta-section:last-child{
  margin-bottom: 0;
}
.cta-section {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f6f8ee;
  padding: 50px 20px;
  flex-direction: column;
  border-radius: var(--radius-xl);
  box-shadow: 0 2px 18px 0 rgba(112,161,107,0.08);
}
.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  color: var(--color-green);
}
.cta-section p {margin-bottom: 22px;}

/* BUTTONS */
.cta-btn, .button {
  display: inline-block;
  background: var(--color-green);
  color: #fff;
  padding: 14px 36px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-m);
  cursor: pointer;
  box-shadow: var(--btn-shadow);
  letter-spacing: 0.01em;
  text-align: center;
  text-decoration: none;
  outline: none;
  transition: background 0.20s, color 0.20s, box-shadow 0.18s, transform 0.14s;
  margin-top: 8px;
}
.cta-btn:hover, .cta-btn:focus, .button:hover, .button:focus {
  background: var(--color-secondary);
  color: #232B23;
  box-shadow: 0 4px 28px 0 rgba(237,187,49,0.13);
  transform: translateY(-2px);
}

/* BENEFITS LISTING */
.benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.benefit-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 18px;
  background: #fff;
  border-radius: var(--radius-m);
  box-shadow: var(--card-shadow);
  color: #232B23;
  font-size: 1.02rem;
  min-width: 240px;
  flex: 1 0 200px;
}
.benefit-list img {
  width: 36px;
  height: 36px;
}

/* ABOUT PAGE: CERTIFICATIONS */
.certifications ul {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 20px;
}
.certifications li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 15px;
  background: #f5f9f2;
  border-radius: var(--radius-m);
  box-shadow: 0 1px 8px 0 rgba(112,161,107,0.07);
  font-size: 1.05rem;
  color: #263825;
  min-width: 200px;
}
.certifications img {
  width: 34px; height: 34px;
}

/* CONTACT INFO */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #2B3A2F;
  font-size: 1.06rem;
  background: #fff;
  border-radius: var(--radius-s);
  padding: 10px 14px;
  box-shadow: 0 1px 8px 0 rgba(112,161,107,0.04);
}
.contact-details img {
  width: 28px;
}
.address-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #F6F8EE;
  border-radius: var(--radius-m);
  box-shadow: 0 1px 7px 0 rgba(112,161,107,0.06);
  padding: 18px 14px;
  margin-bottom: 20px;
}
.map-placeholder {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border-radius: var(--radius-l);
  box-shadow: 0 2px 8px 0 rgba(112,161,107,0.07);
  padding: 16px 10px;
}
.map-placeholder img {
  width: 64px;
}

/* FOOTER */
footer {
  background: #EEEEEA;
  padding: 46px 0 12px 0;
  border-top-left-radius: 38px;
  border-top-right-radius: 10px;
  box-shadow: 0 -4px 20px 0 rgba(50,77,44,0.04);
  margin-top: 50px;
}
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-nav a {
  font-size: 1rem;
  color: #2B3A2F;
  margin-bottom: 2px;
  transition: color 0.17s;
}
.footer-nav a:hover {
  color: var(--color-green);
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  color: #6C7155;
  font-size: 0.98rem;
  line-height: 1.4;
}
.footer-contact img {
  width: 22px; height: 22px;
}
.footer-copy {
  text-align: center;
  color: #98A179;
  font-size: 0.94rem;
  margin-top: 8px;
  letter-spacing: 0.05em;
}

/* SECTION & CARD SPACING ENFORCEMENT */
section, .section, .card, .testimonial-card, .feature-item, .service-item {
  margin-bottom: 20px;
}
@media (max-width: 800px) {
  .container { max-width: 99vw; padding-left: 8px; padding-right: 8px;}
  .hero { padding: 32px 0 22px 0; border-radius: 0 0 42px 24px; }
  .footer-columns { gap: 16px; flex-direction: column;}
  .footer-contact { gap: 8px 12px; }
  .footer-nav { gap: 2px; }
  .content-wrapper { gap: 18px; }
}

/* RESPONSIVE FLEX DIRECTIONS & CARD SIZES */
@media (max-width: 768px) {
  .content-grid,
  .feature-grid,
  .service-grid,
  .benefit-list,
  .footer-columns {
    flex-direction: column !important;
    gap: 20px !important;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 20px;
    align-items: stretch;
  }
}

/* TYPOGRAPHY: FIXED SIZES & SCALES */
@media (max-width: 480px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.1rem; }
  p, li, span { font-size: 0.96rem; }
  .cta-btn, .button { font-size: 1rem; padding: 10px 20px; }
}

/* Micro-interactions & Transitions */
.feature-item, .service-item {
  transition: box-shadow 0.17s, transform 0.14s;
  cursor: pointer;
}
.feature-item:hover, .service-item:hover, .feature-item:focus, .service-item:focus {
  box-shadow: 0 6px 26px 0 rgba(34,60,34,0.16);
  transform: translateY(-2px) scale(1.01);
}

input, textarea, select {
  border: 1.5px solid #C2C9B3;
  border-radius: var(--radius-m);
  padding: 12px 13px;
  font-family: inherit; font-size: 1rem;
  margin-bottom: 16px;
  background: #FBFBF4;
  transition: border-color 0.15s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-green);
  outline: none;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%) scale(1);
  width: 94vw;
  max-width: 420px;
  z-index: 9990;
  background: #fefae0;
  border: 2px solid #ADC181;
  box-shadow: 0 2px 24px 0 rgba(71,81,24,0.08);
  border-radius: var(--radius-l);
  padding: 24px 22px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 1rem;
  color: #263825;
  animation: cookiefadein 0.5s cubic-bezier(.42,0,.26,1) 1;
}
@keyframes cookiefadein {
  from { opacity: 0; transform: translateX(-50%) translateY(60px) scale(1.1); }
  to   { opacity: 1; transform: translateX(-50%) scale(1); }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  margin-top: 4px;
  flex-wrap: wrap;
}
.cookie-banner .cookie-btn {
  background: var(--color-green);
  color: #fff;
  border: none;
  padding: 9px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 2px 7px 0 rgba(112,161,107,0.07);
  transition: background 0.17s, color 0.2s, box-shadow 0.16s;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: var(--color-leaf);
  color: #232B23;
}
.cookie-banner .cookie-btn.settings {
  background: var(--color-secondary);
  color: var(--color-forest);
  margin-left: auto;
}
.cookie-banner .cookie-btn.settings:hover {
  background: #fff176;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  z-index: 9992;
  left: 50%;
  top: 50%;
  width: 98vw; max-width: 432px;
  background: #fffde7;
  border-radius: var(--radius-xl);
  border: 2px solid #ADC181;
  box-shadow: 0 4px 38px 0 rgba(71,81,24,0.15);
  transform: translate(-50%, -50%) scale(1);
  padding: 42px 32px 30px 32px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  animation: cookiemodalfade .42s cubic-bezier(.34,.12,.5,1.12) 1;
}
@keyframes cookiemodalfade {
  from { opacity: 0; transform: translate(-50%, -40%) scale(0.97); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.cookie-modal h2 { color: #263825; font-size: 1.32rem; }
.cookie-modal .cookie-cats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-modal .cookie-cat {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
  color: #232B23;
  padding: 10px 0;
}
.cookie-modal .cookie-switch {
  margin-left: auto;
  display: inline-block;
}
.cookie-modal .cookie-switch input[type="checkbox"] {
  display: none;
}
.cookie-modal .cookie-switch label {
  display: block;
  width: 42px;
  height: 22px;
  background: #edf2ea;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  box-shadow: 0 2px 7px 0 rgba(112,161,107,0.05);
}
.cookie-modal .cookie-switch label::after {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-green);
  transition: left 0.18s;
}
.cookie-modal .cookie-switch input[type="checkbox"]:checked + label::after {
  left: 22px;
  background: var(--color-secondary);
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 8px;
}
.cookie-modal .cookie-btn {
  background: var(--color-green);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 16px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.17s, color 0.17s;
}
.cookie-modal .cookie-btn.decline {
  background: #bcc3a2;
  color: #263825;
}
.cookie-modal .cookie-btn.decline:hover {
  background: #fff176;
  color: #232B23;
}
.cookie-modal .cookie-btn.accept {
  background: var(--color-secondary);
  color: var(--color-forest);
}
.cookie-modal .cookie-btn.accept:hover { background: #ffea6d; }

/* OVERLAY FOR COOKIE MODAL */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9991;
  background: rgba(34,49,31,0.13);
}

/* SCROLLBAR */
::-webkit-scrollbar { width:10px; background: #ecebe2; }
::-webkit-scrollbar-thumb {
  background: #c4cfb3;
  border-radius: 8px;
}

/* ORGANIC/NATURE DESIGN EXTRAS */
.card, .feature-item, .service-item {
  border-radius: 34px 8px 28px 40px;
  border: 1.6px solid #E3E6D5;
}
.section, .cta-section {
  border-radius: 70px 20px 80px 40px;
}

/* LISTS & TYPOGRAPHY */
ul, ol {
  margin-left: 1.2em;
  margin-bottom: 8px;
  padding-left: 0.9em;
}
li { margin-bottom: 6px; }
ul li::marker, ol li::marker {
  color: var(--color-green);
}

/* FORM FIELDS */
input, textarea {
  background: #f8fbf4;
  font-family: 'Open Sans', Arial, sans-serif;
}

/* THANK YOU/CONFIRM PAGE */
.thankyou-section .content-wrapper {
  align-items: center;
  text-align: center;
}

/* ENFORCE NO OVERLAP, NO ABSOLUTES ON CARDS */
.card, .testimonial-card, .feature-item, .service-item {
  position: relative;
  z-index: 1;
}

/* SHADOWS & DEPTH FOR ORGANIC FEELING */
.card, .feature-item, .service-item, .testimonial-card {
  box-shadow: 0 4px 16px 0 rgba(34,60,34,0.08), 0 1.5px 9px 0 rgba(171,197,129,0.07);
}

/* POLISH FOR CONTENT WRAPPERS */
@media (max-width: 600px) {
  .feature-item, .service-item, .card, .testimonial-card, .benefit-list li {
    padding: 16px 6px;
    margin-bottom: 16px;
  }
  .section, .cta-section {
    padding: 24px 5px;
  }
}

/* ANIMATIONS FOR CTA BUTTONS, CARDS */
.cta-btn, .button {
  will-change: transform, box-shadow;
  animation: btnpop 0.25s 1 cubic-bezier(.3,02,.35,1) forwards;
}
@keyframes btnpop {
  0% { transform: scale(0.98); }
  80% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

/* DISABLE ABSOLUTE POSITION FOR CONTENT CARDS */
.card, .testimonial-card, .feature-item, .service-item {
  position: relative;
}

/* INCREASE CONTRAST IN TESTIMONIALS/REVIEWS */
.testimonial-card {
  background: #fff;
  color: #232B23;
  border: 1.7px solid #E7EADA;
}
.testimonial-card p { color: #232B23; }

/* MISC ORGANIC DECORATIVE CURVES (IF USED) */
.hero {
  border-bottom-left-radius: 110px 38px;
}
footer {
  border-top-left-radius: 38px 72px;
  border-top-right-radius: 16px 58px;
}

/* PLACEHOLDER FOR MODAL AND COOKIE ELEMENTS */
.cookie-banner, .cookie-modal, .cookie-modal-backdrop { display: none; }

/*-------------------------------------------*/
/* END OF MAIN STYLE.CSS                     */
/*-------------------------------------------*/
