/* ----------------------------------------------
 CSS RESET & BASE 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,
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: #FCF8F3;
  color: #21312A;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
}
a {
  color: #336644;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F4A600;
  outline: none;
}
img {
  max-width: 100%;
  height: auto;
  border: 0;
  display: block;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}
hr {
  border: 0;
  border-top: 1px solid #E4E0DB;
  margin: 32px 0;
}

/* ----------------------------------------------
 IMPORT FONTS (Google Fonts)
----------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

/* ----------------------------------------------
 COLOR PALETTE (Nature Organic)
----------------------------------------------- */
:root {
  /* Brand Colors */
  --primary: #1A2432;
  --secondary: #F4A600;
  --accent: #FFFFFF;
  /* Nature Organic */
  --green: #336644;
  --earth: #A68B60;
  --leaf: #ABD27A;
  --soil: #68594D;
  --clay: #dbb890;
  --background: #FCF8F3;
  --surface: #F9F6F1;
  --beige: #EFE9E3;
  --shadow: rgba(30,45,20,0.09);
}

/* ----------------------------------------------
 TYPOGRAPHY
----------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  line-height: 1.17;
  margin-bottom: 16px;
  font-weight: 900;
}
h1 { font-size: 2.4rem; letter-spacing: -1.5px; }
h2 { font-size: 2rem; margin-top: 16px; }
h3 { font-size: 1.4rem; margin-top: 10px; }
h4, h5, h6 { font-size: 1rem; font-weight: 700; }
p, li, span, td, th {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #21312A;
  letter-spacing: 0.01em;
}
p, ul, ol {
  margin-bottom: 16px;
}
strong, b { color: var(--green); font-weight: 700; }

/* ----------------------------------------------
 LAYOUT STRUCTURE
----------------------------------------------- */
.container {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--surface);
  border-radius: 28px;
  box-shadow: 0 8px 32px var(--shadow);
}
@media (max-width: 768px) {
  .section {
    padding: 28px 5px;
    border-radius: 16px;
  }
}

/* ----------------------------------------------
 HEADER & NAVIGATION (Desktop)
----------------------------------------------- */
header {
  background: var(--background);
  border-bottom: 2px solid var(--beige);
  box-shadow: 0 3px 6px rgba(34,40,25,0.02);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
header nav a {
  color: var(--primary);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 20px;
  transition: background 0.18s;
}
header nav a:hover, header nav a:focus {
  background: var(--leaf);
  color: var(--primary);
}
.cta-btn {
  background: var(--green);
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  border-radius: 54px;
  border: none;
  padding: 12px 28px;
  box-shadow: 0 2px 16px var(--shadow);
  display: inline-block;
  transition: background 0.16s, transform 0.18s, color 0.16s;
  cursor: pointer;
  position: relative;
  letter-spacing: 0.05em;
  text-align: center;
  text-decoration: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--secondary);
  color: var(--primary);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 5px 26px var(--shadow);
}

/* Only show burger menu on mobile */
.mobile-menu-toggle {
  display: none;
}
@media (max-width: 992px) {
  header .container {
    flex-wrap: wrap;
    height: auto;
    gap: 12px;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    color: var(--primary);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 2rem;
    box-shadow: 0 4px 18px var(--shadow);
    cursor: pointer;
    transition: background 0.15s, opacity 0.18s;
    z-index: 201;
  }
  .cta-btn {
    padding: 10px 18px;
    font-size: 1rem;
  }
}

/* ----------------------------------------------
 MOBILE SLIDE-IN MENU
----------------------------------------------- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--background);
  z-index: 300;
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(.45,.99,.2,1);
  box-shadow: 8px 0 24px var(--shadow);
}
.mobile-menu.open {
  display: flex;
  flex-direction: column;
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--secondary);
  color: var(--primary);
  border-radius: 50%;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 1.8rem;
  align-self: flex-end;
  margin: 16px 16px 0 0;
  cursor: pointer;
  transition: background 0.15s, color 0.18s;
  z-index: 401;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 40px 24px 16px 24px;
}
.mobile-nav a {
  color: var(--primary);
  font-size: 1.15rem;
  font-weight: 600;
  text-decoration: none;
  padding: 18px 12px;
  border-radius: 18px;
  margin-bottom: 8px;
  transition: background 0.15s, color 0.14s;
  text-align: left;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--leaf);
  color: var(--green);
}

@media (max-width: 992px) {
  .mobile-menu {
    display: none;
  }
  .mobile-menu.open {
    display: flex;
  }
}

/* Prevent scrolling when mobile menu open */
body.mobile-menu-open {
  overflow: hidden;
}

/* ----------------------------------------------
 HERO SECTION (Homepage)
----------------------------------------------- */
.hero {
  background: linear-gradient(110deg, #d9f2d9 34%, #fcf8f3 90%);
  padding: 50px 0 60px 0;
  border-radius: 0 0 44px 44px;
  box-shadow: 0 8px 48px var(--shadow);
  margin-bottom: 60px;
  position: relative;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
.hero h1 {
  color: var(--green);
  font-size: 2.7rem;
}
.hero p {
  font-size: 1.18rem;
  margin-bottom: 22px;
  color: #344c36;
}
@media (max-width: 768px) {
  .hero {
    padding: 32px 0 42px 0;
    border-radius: 0 0 22px 22px;
    margin-bottom: 36px;
  }
  .hero h1 {
    font-size: 1.7rem;
  }
}

/* ----------------------------------------------
 SECTION, GRID, & CARD CLASSES
----------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}
.card {
  margin-bottom: 20px;
  background: var(--surface);
  border-radius: 18px 42px 28px 18px;
  box-shadow: 0 2px 10px var(--shadow);
  overflow: hidden;
  transition: box-shadow 0.18s, transform 0.18s;
  position: relative;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 40px var(--shadow);
  transform: translateY(-4px) scale(1.012);
}
.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;
}
@media (max-width: 768px) {
  .content-grid, .text-image-section, .card-container {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
}

/* Feature grid (index) */
.feature-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 27px;
  margin-bottom: 18px;
  padding: 0;
  align-items: center;
}
.feature-grid li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--beige);
  border-radius: 18px;
  padding: 8px 20px 8px 12px;
  font-size: 1.03rem;
  color: var(--soil);
  font-weight: 500;
  margin-bottom: 6px;
  min-width: 220px;
  box-shadow: 0 1px 2px var(--shadow);
}
.feature-grid img {
  width: 30px; height: 30px;
}
@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  .feature-grid li {
    min-width: unset;
  }
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 1.09em;
  color: var(--primary);
}

/* ----------------------------------------------
 TESTIMONIAL SECTION
----------------------------------------------- */
.testimonials {
  background: var(--beige);
  border-radius: 38px;
  padding: 48px 0;
  margin-bottom: 60px;
}
.testimonials .content-wrapper > h2 {
  color: var(--green);
  margin-bottom: 32px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: var(--accent);
  border-radius: 18px 44px 20px 16px;
  padding: 20px 28px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px var(--shadow);
  max-width: 650px;
  width: 100%;
  transition: transform 0.18s, box-shadow 0.2s;
  border: 2px solid #e2ead8;
}
.testimonial-card:hover {
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 11px 36px var(--shadow);
  border-color: var(--leaf);
}
.stars {
  display: flex;
  flex-direction: row;
  gap: 2px;
  align-items: center;
}
.stars img {
  width: 20px; height: 20px;
}
.testimonial-card p {
  color: #21312A;
  font-size: 1.09rem;
  text-align: center;
}
.testimonial-card .author {
  color: var(--soil);
  font-size: 0.97rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
@media (max-width: 550px) {
  .testimonial-card {
    padding: 16px 6px;
    border-radius: 14px 18px 10px 10px;
  }
}

/* ----------------------------------------------
 CTA, CONTACT, ADDRESS SECTIONS
----------------------------------------------- */
.call-to-action, .cta {
  background: linear-gradient(120deg, #EAF3DB 60%, #FCF8F3 100%);
  padding: 46px 0;
  margin-bottom: 60px;
  border-radius: 32px;
  box-shadow: 0 5px 20px var(--shadow);
}
.call-to-action h2, .cta h2 {
  color: var(--green);
  margin-bottom: 22px;
}
.contact-snippet, .address-info, .phone-email, .email-info, .opening-hours {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  font-size: 1.01rem;
  color: var(--primary);
}
.address-info img, .phone-email img, .opening-hours img, .email-info img {
  width: 22px; height: 22px;
  flex-shrink: 0;
}
.contact-snippet p {
  margin-bottom: 0;
}
@media (max-width: 540px) {
  .call-to-action, .cta {
    padding: 24px 0;
    border-radius: 16px;
  }
}

/* Footer Section */
footer {
  background: var(--surface);
  border-top: 2px solid var(--beige);
  padding: 24px 0 12px 0;
  margin-top: 40px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  text-align: center;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
}
footer nav a {
  font-size: 0.98rem;
  color: var(--earth);
  text-decoration: none;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 16px;
  transition: background 0.13s;
}
footer nav a:hover {
  background: var(--leaf);
  color: var(--primary);
}
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--soil);
  font-size: 0.94rem;
}
@media (max-width: 680px) {
  footer nav {
    flex-direction: column;
    gap: 4px;
  }
}

/* ----------------------------------------------
 FAQ ACCORDION, TABLES, & LISTS
----------------------------------------------- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: var(--surface);
  border-radius: 18px;
  box-shadow: 0 2px 10px var(--shadow);
  padding: 18px 16px;
  transition: box-shadow 0.16s, background 0.12s;
}
.faq-item h2 {
  font-size: 1.16rem;
  color: var(--green);
  margin-bottom: 8px;
  font-weight: 700;
}
.faq-item p {
  color: #3B4934;
  font-size: 1rem;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 18px;
}
.pricing-table th, .pricing-table td {
  padding: 14px 12px;
  text-align: left;
  border-bottom: 1.5px solid var(--beige);
}
.pricing-table th {
  background: var(--leaf);
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
}
.pricing-table tr:nth-child(even) {
  background: #f8f4ef;
}
@media (max-width: 560px) {
  .pricing-table th, .pricing-table td {
    padding: 8px 4px;
    font-size: 0.93rem;
  }
}

ul, ol {
  margin-left: 0;
  padding-left: 0;
}
ul li, ol li {
  margin-bottom: 9px;
  padding-left: 0;
}
ol.step-list {
  counter-reset: steplist;
  padding-left: 0;
}
ol.step-list li {
  position: relative;
  padding-left: 36px;
  font-weight: 500;
  color: var(--soil);
  margin-bottom: 15px;
}
ol.step-list li:before {
  content: counter(steplist);
  counter-increment: steplist;
  position: absolute;
  left: 0; top: 0;
  background: var(--green);
  color: var(--accent);
  width: 27px;
  height: 27px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.12rem;
}
.timeline {
  color: var(--green);
  font-weight: 700;
  margin-top: 18px;
  font-size: 1.12em;
}

/* ----------------------------------------------
 COOKIE CONSENT BANNER
----------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  background: rgba(245,246,240,0.97);
  border-top: 2.5px solid var(--leaf);
  box-shadow: 0 -2px 16px var(--shadow);
  z-index: 1002;
  padding: 22px 10px 15px 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: transform 0.38s cubic-bezier(.33,1.45,.6,1), opacity 0.23s;
}
.cookie-banner .cookie-text {
  color: var(--primary);
  max-width: 410px;
  font-size: 0.98rem;
  line-height: 1.45;
}
.cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-btn {
  padding: 9px 24px;
  border-radius: 40px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  background: var(--leaf);
  color: var(--primary);
  cursor: pointer;
  transition: background 0.18s, color 0.15s, transform 0.15s;
  font-size: 1.01rem;
  margin-right: 4px;
}
.cookie-btn.accept {
  background: var(--green);
  color: var(--accent);
}
.cookie-btn.reject {
  background: #f8e6d8;
  color: var(--soil);
}
.cookie-btn.settings {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-btn:hover, .cookie-btn:focus {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 14px var(--shadow);
  opacity: 0.97;
}
@media (max-width: 630px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 6px 8px 6px;
  }
}

/* Cookie modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 1300;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34, 56, 18, 0.28);
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open { display: flex; }
.cookie-modal {
  background: var(--surface);
  border-radius: 28px;
  box-shadow: 0 12px 36px var(--shadow);
  padding: 28px 30px 24px 30px;
  min-width: 320px;
  max-width: 96vw;
  min-height: 250px;
  z-index: 2300;
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: cookieShow 0.5s cubic-bezier(.34,1.36,.6,1.12);
}
@keyframes cookieShow {
  from { opacity: 0; transform: translateY(40px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal h2 {
  color: var(--green);
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 7px;
  font-size: 1.01rem;
}
.cookie-modal label {
  margin-left: 5px;
  cursor: pointer;
}
.cookie-modal input[type="checkbox"]:disabled + label {
  color: #bbb;
  font-style: italic;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}
.cookie-modal .cookie-btn {
  margin: 0;
}

/* ----------------------------------------------
 MISC VISUAL ELEMENTS & ANIMATION
----------------------------------------------- */
::-webkit-scrollbar { width: 7px; background: #f5f5f2; }
::-webkit-scrollbar-thumb { background: #bad892; border-radius: 7px; }

hr {
  border-top: 1.5px solid var(--beige);
}

/* Small utility classes */
.mt-32 { margin-top: 32px; }
.mb-24 { margin-bottom: 24px; }
.mt-12 { margin-top: 12px; }

.direct-contact-hint {
  background: var(--beige);
  border-radius: 14px;
  padding: 14px 22px;
  margin: 16px 0;
  font-size: 1.07em;
  box-shadow: 0 1px 4px var(--shadow);
  text-align: center;
}

.confirmation-message {
  background: var(--surface);
  border-radius: 18px;
  color: var(--primary);
  padding: 18px 22px;
  margin-bottom: 18px;
  box-shadow: 0 2px 12px var(--shadow);
  font-size: 1.03rem;
}

/* ----------------------------------------------
 RESPONSIVE DESIGN
----------------------------------------------- */
@media (max-width: 1120px) {
  .container {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.18rem; }
  .feature-grid li, .service-list li { font-size: 1rem; }
}
@media (max-width: 500px) {
  .confirmation-message, .direct-contact-hint { padding: 8px 2px; }
}

/* ----------------------------------------------
 UTILITY SPACING & FLEX PATTERNS (Mandatory)
----------------------------------------------- */
.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; }

@media (max-width: 768px) {
  .section {padding: 26px 5px;}
  .content-grid, .text-image-section, .card-container {
    flex-direction: column;
    align-items: stretch;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 16px 4px;
  }
}

/* Prevent overlapping and ensure clear vertical stacking */
main > section, .section, .testimonial-card, .card, .direct-contact-hint, .confirmation-message {
  margin-bottom: 20px;
}

/* Ensure z-index for overlays */
.mobile-menu, .cookie-banner, .cookie-modal-overlay { z-index: 1000; }

/* ----------------------------------------------
 ACCESSIBILITY FOCUS STYLES, BUTTONS
----------------------------------------------- */
:focus-visible {
  outline: 3px solid var(--secondary);
  outline-offset: 2px;
}
button:active, .cta-btn:active, .cookie-btn:active {
  filter: brightness(0.93);
  transform: scale(0.97);
}

/* ----------------------------------------------
 ORGANIC DECORATIVE SHAPES & TEXTURE (Subtle!)
----------------------------------------------- */
.hero::before {
  content: ''; position: absolute; left: -36px; top: -30px; width: 180px; height: 120px;
  background: rgba(195, 242, 169, 0.16);
  border-radius: 61% 39% 67% 33%/63% 35% 65% 37%;
  z-index: 0;
  pointer-events: none;
  filter: blur(2.5px);
}
footer .container::after {
  content: '';
  display: block;
  position: absolute;
  right: 20px; bottom: -38px;
  width: 70px; height: 40px;
  background: rgba(210, 195, 176, 0.19);
  border-radius: 72% 28% 84% 16%/44% 41% 59% 56%;
  z-index: 0;
  pointer-events: none;
  filter: blur(1.5px);
}

/* End of CSS */
