/* RESET & BASE TYPOGRAPHY ------------------------------- */
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-family: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  background: #F2F2ED;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #1A1A1A;
  background: #F2F2ED;
  min-height: 100vh;
  line-height: 1.6;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #21643B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #F7B32B;
  outline: none;
}
ul, ol {
  margin-left: 1.2em;
  margin-bottom: 1.3em;
}
ul li, ol li {
  margin-bottom: 0.5em;
  list-style: disc inside;
}
strong, b {
  font-weight: 700;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #21643B;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.1;
  letter-spacing: -0.2px;
}
h1 { font-size: 2.375rem; /* 38px */ }
h2 { font-size: 1.75rem;  /* 28px */ }
h3 { font-size: 1.25rem;  /* 20px */ }
h4 { font-size: 1.125rem; /* 18px */ }

@media (min-width: 600px) {
  h1 { font-size: 3rem;  }
  h2 { font-size: 2.125rem;  }
  h3 { font-size: 1.375rem;  }
  h4 { font-size: 1.125rem;  }
}

p {
  margin-bottom: 1em;
  font-size: 1rem;
}
blockquote {
  font-style: italic;
  color: #21643B;
  background: #F2F2ED;
  border-left: 4px solid #21643B;
  margin: 0 0 0.7em 0;
  padding: 0.7em 1.2em;
}

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

/* HEADER & NAVIGATION ------------------------------------- */
header {
  background: #FFFFFFBF;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 16px rgba(33,100,59,0.07);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 20px;
}
header img {
  height: 46px;
  width: auto;
}
.desktop-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.desktop-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #21643B;
  font-size: 1rem;
  font-weight: 500;
  padding: 6px 0;
  transition: color 0.2s;
  position: relative;
  letter-spacing: 0.01em;
}
.desktop-nav a:hover,
.desktop-nav a.active {
  color: #F7B32B;
}

.cta-btn {
  background: #21643B;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 30px;
  border: none;
  outline: none;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(33,100,59,0.08);
  transition: background 0.2s, color 0.16s, box-shadow 0.2s, transform 0.15s;
  margin-left: 20px;
  display: inline-block;
  min-width: 160px;
  text-align: center;
}
.cta-btn:hover, .cta-btn:focus {
  background: #F7B32B;
  color: #21643B;
  box-shadow: 0 4px 20px rgba(33,100,59,0.12);
  transform: translateY(-1px) scale(1.03);
}

.mobile-menu-toggle {
  background: none;
  border: none;
  color: #21643B;
  font-size: 2.1rem;
  cursor: pointer;
  display: none;
  line-height: 1;
  padding: 8px 18px 8px 8px;
  transition: color 0.2s, background 0.2s;
  z-index: 600;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #F7B32B;
  background: #EAEAE3;
  border-radius: 50%;
}

/* MOBILE MENU -------------------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #ffffffec;
  box-shadow: 0 8px 36px rgba(33,100,59,0.07);
  transform: translateX(105%);
  transition: transform 0.36s cubic-bezier(0.77, 0, 0.2, 1);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 24px;
  padding-left: 0;
  padding-bottom: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  display: block;
  margin-left: auto;
  margin-right: 26px;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: #21643B;
  cursor: pointer;
  padding: 8px 8px;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
  z-index: 1110;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #F7B32B;
  background: #EAEAE3;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-top: 18px;
  padding-left: 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #21643B;
  font-size: 1.12rem;
  font-weight: 600;
  padding: 8px 0;
  transition: color 0.21s, background 0.17s;
  border-radius: 4px;
  width: 100%;
  min-width: 180px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F7B32B;
  background: #f2f2ed;
}

@media (max-width: 1080px) {
  header .container {
    gap: 10px;
  }
  .desktop-nav {
    gap: 14px;
  }
  .cta-btn {
    padding: 12px 18px;
    font-size: 0.96rem;
    min-width: 120px;
    margin-left: 0;
  }
}
@media (max-width: 920px) {
  .desktop-nav {
    gap: 6px;
  }
}
@media (max-width: 820px) {
  .desktop-nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* MAIN CONTENT + FLOW ------------------------------------ */
main {
  display: flex;
  flex-direction: column;
  gap: 44px;
  margin-top: 0;
  background: transparent;
  min-height: 60vh;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

/* FLEX CONTENT UTILITIES --------------------------------- */
.card-container,
.feature-grid,
.services-grid,
.content-grid,
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 2px 18px rgba(33,100,59,0.07);
  padding: 20px;
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 560px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 2px 12px rgba(33,100,59,0.05);
  padding: 28px 24px 24px 24px;
  min-width: 220px;
  max-width: 340px;
  transition: box-shadow 0.21s, transform 0.16s;
}
.feature-item img {
  height: 40px;
  width: 40px;
}
.feature-item:hover {
  box-shadow: 0 4px 28px rgba(33,100,59,0.14);
  transform: translateY(-3px) scale(1.025);
}

/* CARDS & SERVICES --------------------------------------- */
.service-card {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 2px 8px rgba(33,100,59,0.06);
  padding: 24px 18px 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  min-width: 224px;
  max-width: 320px;
  position: relative;
  transition: box-shadow 0.17s, transform 0.17s;
  margin-bottom: 20px;
}
.service-card img {
  height: 36px;
  width: 36px;
}
.service-card .price {
  color: #21643B;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
}
.service-card:hover {
  box-shadow: 0 6px 42px rgba(33,100,59,0.14);
  transform: translateY(-2px) scale(1.018);
}

/* HERO SECTIONS ------------------------------------------ */
.hero, .about-hero, .hero-services, .hero-seasonal, .hero-equipment, .hero-advice, .contact-hero, .thank-you {
  width: 100%;
  padding: 56px 0 36px 0;
  background: #F2F2ED;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper,
.about-hero .content-wrapper,
.hero-services .content-wrapper,
.hero-seasonal .content-wrapper,
.hero-equipment .content-wrapper,
.hero-advice .content-wrapper,
.contact-hero .content-wrapper,
.thank-you .content-wrapper {
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}
.hero h1,
.about-hero h1, .hero-services h1, .hero-seasonal h1, .hero-equipment h1, .hero-advice h1, .contact-hero h1, .thank-you h1 {
  color: #21643B;
  font-size: 2.3rem;
  margin-bottom: 13px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.hero p,
.about-hero p, .hero-services p, .hero-seasonal p, .hero-equipment p, .hero-advice p, .contact-hero p, .thank-you p {
  color: #354C3C;
  max-width: 670px;
  font-size: 1.15rem;
}
.hero .cta-btn, .about-hero .cta-btn, .hero-services .cta-btn, .hero-seasonal .cta-btn, .hero-equipment .cta-btn, .hero-advice .cta-btn, .contact-hero .cta-btn, .thank-you .cta-btn {
  margin-top: 14px;
}

/* TESTIMONIALS ------------------------------------------ */
.testimonials {
  padding: 40px 20px;
  margin-bottom: 60px;
  background: #F2F2ED;
}
.testimonials h2 {
  margin-bottom: 24px;
  color: #21643B;
}
.testimonial-card {
  background: #fff;
  color: #1A1A1A;
  border-radius: 17px;
  box-shadow: 0 2px 18px rgba(33,100,59,0.08);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}
.testimonial-card blockquote {
  border-left: none;
  font-size: 1.06em;
  color: #21643B;
  margin-bottom: 0;
  background: none;
  padding: 0;
}
.testimonial-card .name {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1em;
  color: #726f6e;
  margin-top: 3px;
  margin-left: 16px;
}

/* ABOUT & SECTION LAYOUTS ------------------------------- */
.section, .about, .features, .services, .call-to-action, .cookies-policy, .privacy-policy, .rodo-info, .terms-of-service, .contact, .contact-section, .equipment-categories, .service-benefits, .seasonal-services, .faq, .thank-you {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.text-section, .map-placeholder, .delivery-options, .product-descriptions, .seasonal-highlight {
  margin-bottom: 26px;
}
.text-section ul li, .seasonal-tips ul li {
  margin-bottom: 9px;
}

/* SEASONAL & INFO HIGHLIGHTS ---------------------------- */
.seasonal-highlight, .delivery-options {
  background: #fff;
  border-radius: 11px;
  padding: 18px 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  box-shadow: 0 2px 14px rgba(33,100,59,0.06);
  color: #21643B;
}

/* FAQ SECTION ----------------------------------------- */
.faq {
  background: #FAFAF7;
  border-radius: 12px;
  padding: 23px 18px;
  margin-bottom: 16px;
  box-shadow: 0 1px 8px rgba(33,100,59,0.06);
}
.faq h3 {
  color: #21643B;
  margin-bottom: 8px;
  font-size: 1.19rem;
}

/* CARDS, LISTS, IMAGES WITH NATURAL FEEL --------------- */
ul li img, ol li img {
  margin-right: 10px;
  vertical-align: middle;
  height: 20px;
}
li {
  display: flex;
  align-items: center;
}
li strong {
  font-weight: 600;
  margin-right: 5px;
}

/* MAP PLACEHOLDER / INFO BLOCKS ------------------------ */
.map-placeholder {
  background: #F7F8F4;
  padding: 19px 15px;
  border-radius: 9px;
  color: #21643B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  margin-top: 8px;
}

/* FOOTER ---------------------------------------------- */
footer {
  background: #fff;
  border-top: 1.5px solid #d3ded6;
  box-shadow: 0 -2px 16px rgba(33,100,59,0.04);
  width: 100%;
  margin-top: 64px;
  color: #1A1A1A;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px;
  gap: 16px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
footer a {
  color: #21643B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.96rem;
  transition: color 0.18s;
}
footer a:hover, footer a:focus {
  color: #F7B32B;
}
footer span {
  font-size: 0.96rem;
  color: #5c5c5c;
}

/* CALLOUT / CALL-TO-ACTION ------------------------------ */
.call-to-action {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  box-shadow: 0 2px 8px rgba(33,100,59,0.04);
  border-radius: 14px;
}
.call-to-action .content-wrapper {
  align-items: center;
}
.call-to-action .cta-btn {
  margin-top: 0;
  margin-bottom: 8px;
}

/* RESPONSIVE -------------------------------*/
@media (max-width: 1200px) {
  .container { max-width: 900px; }
  .feature-grid, .services-grid {
    gap: 18px;
  }
  .feature-item, .service-card {
    min-width: 180px;
    max-width: 330px;
  }
}
@media (max-width: 950px) {
  .container {
    max-width: 100%;
  }
  .feature-grid, .services-grid {
    gap: 14px;
  }
}
@media (max-width: 730px) {
  html { font-size: 15px; }
  .container {
    padding: 0 10px;
  }
  .feature-grid,.services-grid {
    gap: 8px;
  }
  .feature-item, .service-card {
    min-width: 140px;
    max-width: 100%;
    padding: 18px 12px 17px 12px;
  }
  .hero, .about-hero, .hero-services, .hero-seasonal, .hero-equipment, .contact-hero, .thank-you {
    padding: 34px 0 24px 0;
  }
}
@media (max-width: 700px) {
  main { gap: 28px; }
  .container { padding: 0 4px; }
  .section, .about, .features, .services, .call-to-action, .cookies-policy, .privacy-policy, .rodo-info, .terms-of-service, .contact, .contact-section, .equipment-categories, .service-benefits, .seasonal-services, .faq, .thank-you {
    padding: 26px 6px;
    margin-bottom: 33px;
  }
  .feature-grid, .services-grid,.content-grid { gap: 7px; }
}
@media (max-width: 600px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.28rem; }
  .hero, .about-hero, .hero-services, .hero-seasonal, .hero-equipment, .contact-hero, .thank-you {
    padding: 18px 0 12px 0;
  }
  .feature-item, .service-card {
    padding: 12px 4px;
    min-width: unset;
    max-width: 100%;
  }
  .testimonial-card {
    flex-direction: column;
    max-width: 100%;
  }
  .card-container,.feature-grid, .services-grid, .services-list, .content-grid {
    flex-direction: column;
    gap: 13px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
  }
  .testimonial-card {
    padding: 14px;
  }
}

/* ELEVATION AND VISUAL DETAILS (SHADOWS, RADIUS) ------- */
.card, .service-card, .feature-item, .testimonial-card, .section, .faq, .call-to-action, .map-placeholder, .delivery-options, .product-descriptions, .seasonal-highlight {
  border-radius: 13px;
  box-shadow: 0 2px 14px rgba(33,100,59,0.05);
}

/* TRANSITIONS & ANIMATIONS ----------------------------- */
.card, .service-card, .testimonial-card, .feature-item, .cta-btn {
  transition: box-shadow 0.17s, transform 0.14s;
}

a:focus, button:focus, .cta-btn:focus, .feature-item:focus, .service-card:focus {
  outline: 2px solid #F7B32B;
}

/* COOKIE CONSENT BANNER --------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  border-top: 2px solid #21643B;
  box-shadow: 0 -3px 22px rgba(33,100,59,0.09);
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 36px 18px 24px;
  min-height: 72px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.cookie-banner button {
  border: none;
  padding: 10px 22px;
  border-radius: 21px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.17s, color 0.17s;
}
.cookie-banner .accept {
  background: #21643B;
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #1A4B2E;
}
.cookie-banner .reject {
  background: #EAEAE3;
  color: #21643B;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #F7B32B;
  color: #fff;
}
.cookie-banner .settings {
  background: transparent;
  color: #21643B;
  text-decoration: underline;
  padding: 8px 10px;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  color: #F7B32B;
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 10px;
  }
  .cookie-banner .cookie-actions { gap: 11px; }
}

/* COOKIE MODAL OVERLAY ----------------------------------- */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 1600;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(40,60,40,0.21);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModalBG 0.28s;
}
@keyframes fadeInModalBG {
  from { background: rgba(40,60,40,0); }
  to   { background: rgba(40,60,40,0.21); }
}
.cookie-modal {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 10px 50px rgba(33,100,59,0.14);
  width: 93vw;
  max-width: 480px;
  padding: 32px 26px;
  position: relative;
  z-index: 1610;
  animation: slideInModal .29s cubic-bezier(0.67,0,0.24, 1);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@keyframes slideInModal {
  from { transform: translateY(32px) scale(0.96); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: #21643B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 9px;
}
.cookie-modal .cookie-category-label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  color: #21643B;
  font-weight: 600;
}
.cookie-modal .cookie-toggle {
  margin-left: auto;
  min-width: 38px;
}
.cookie-modal .cookie-toggle input[type="checkbox"] {
  accent-color: #21643B;
  width: 20px;
  height: 20px;
}
.cookie-modal .essential-label {
  color: #aaa;
  font-size: 0.96em;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 11px;
  margin-top: 17px;
}
.cookie-modal button {
  border: none;
  padding: 9px 23px;
  border-radius: 21px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  background: #21643B;
  color: #fff;
  transition: background 0.18s, color 0.18s;
}
.cookie-modal button.cancel {
  background: #EAEAE3;
  color: #21643B;
}
.cookie-modal button.accept {
  background: #F7B32B;
  color: #21643B;
}
.cookie-modal button.cancel:hover,
.cookie-modal button.cancel:focus {
  background: #dcdcd4;
}
.cookie-modal button.accept:hover,
.cookie-modal button.accept:focus {
  background: #FFD563;
}
.cookie-modal .close-btn {
  position: absolute;
  right: 13px;
  top: 11px;
  background: none;
  border: none;
  color: #21643B;
  font-size: 1.7rem;
  cursor: pointer;
  border-radius: 50%;
  padding: 3px 10px 3px 3px;
  transition: background 0.15s, color 0.17s;
}
.cookie-modal .close-btn:hover, .cookie-modal .close-btn:focus {
  color: #F7B32B;
  background: #ede5cd;
}

/* SCROLLBAR DESIGN for clean look ---------------------- */
body, .mobile-menu, .cookie-modal {
  scrollbar-width: thin;
  scrollbar-color: #21643B #f3f3ee;
}
body::-webkit-scrollbar {
  width: 9px;
  background: #f3f3ee;
}
body::-webkit-scrollbar-thumb {
  background: #9cb8a4;
  border-radius: 15px;
}

/* PRINT VISIBILITY ------------------------------------- */
@media print {
  header, nav, footer, .mobile-menu, .cookie-banner, .cookie-modal-backdrop {
    display: none !important;
  }
  html, body {
    background: #fff !important;
  }
}

/* MISC COMPONENTS & UTILITIES ---------------------- */
.hide-mobile { display: block; }
@media (max-width: 820px) { .hide-mobile { display: none; } }

.hide-desktop { display: none; }
@media (max-width: 820px) { .hide-desktop { display: block!important; } }
