/* RESET & BASE STYLES -------------------------------------------------------- */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  background: #F6F6F4; /* very light earth tone */
  color: #2C2C1E;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}
a {
  color: #005B9A;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #548a2f;
  text-decoration: underline;
}
ul, ol {
  margin-left: 1.7em;
  margin-bottom: 24px;
}
li {
  margin-bottom: 8px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #243017;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; line-height: 1.15; margin-bottom: 24px; }
h2 { font-size: 1.75rem; line-height: 1.2; margin-bottom: 20px; }
h3 { font-size: 1.125rem; line-height: 1.2; margin-bottom: 16px; }
strong { font-weight: 700; }

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* BUTTONS -------------------------------------------------------- */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 32px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(60, 70, 45, 0.06);
  transition: background .18s, color .18s, box-shadow .18s, transform .16s;
  margin-bottom: 12px;
  outline: none;
  position: relative;
  z-index: 1;
}
.btn-primary {
  background: linear-gradient(90deg, #79BB47 0%, #3A8C3A 100%);
  /* earth green tones */
  color: #fff;
  box-shadow: 0 4px 20px rgba(60,80,20,0.14);
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, #3A8C3A 0%, #79BB47 100%);
  color: #FFF;
  box-shadow: 0 6px 30px rgba(60,80,20,0.18);
  transform: translateY(-2px) scale(1.03);
}
.btn-secondary {
  background: #FBA512;
  color: #243017;
  border: none;
  box-shadow: 0 2px 8px rgba(190,148,21,0.07);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #AD7400;
  color: #fff;
  transform: translateY(-1px) scale(1.03);
}

/* HEADER & NAV -------------------------------------------------- */
header {
  background: #ffffff;
  border-bottom: 1.5px solid #e2dfd9;
  box-shadow: 0 4px 18px rgba(90,90,44,0.03);
  position: sticky;
  top: 0;
  z-index: 80;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 20px;
}
.logo-link {
  display: flex;
  align-items: center;
  height: 52px;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-right: auto;
  margin-left: 36px;
}
.main-nav a {
  color: #005B9A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  font-size: 1rem;
  position: relative;
  padding: 4px 6px;
  border-radius: 6px;
  transition: background .16s, color .16s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #3A8C3A;
  background: #edf4fa;
}
header .btn-primary {
  margin-left: 36px;
  font-size: 1rem;
}

/* MOBILE MENU --------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 18px;
  right: 20px;
  z-index: 120;
  background: #3A8C3A;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2.2rem;
  box-shadow: 0 1px 8px rgba(60, 70, 45, 0.10);
  transition: background .18s, color .18s;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.mobile-menu-toggle:hover {
  background: #005B9A;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background: #ffffff;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 200;
  padding: 32px 28px 24px 28px;
  box-shadow: 0 2px 28px rgba(44,48,31,.12);
  transform: translateX(100%);
  transition: transform 0.30s cubic-bezier(.77,0,.18,1);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {  /* Class to be toggled by JS */  
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: #FBA512;
  color: #243017;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2.0rem;
  align-self: flex-end;
  margin-bottom: 16px;
  cursor: pointer;
  box-shadow: 0 1px 8px rgba(190,148,21,0.10);
  transition: background .16s, color .16s;
}
.mobile-menu-close:hover {
  background: #AD7400;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-top: 12px;
}
.mobile-nav a {
  color: #243017;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  padding: 14px 12px 14px 0;
  border-radius: 10px;
  width: 100%;
  transition: background .15s, color .15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #EDF4FA;
  color: #3A8C3A;
}

/* HERO BANNER & MAIN CTA ---------------------------------------- */
.hero, .services-hero, .prodej-hero {
  background: #e7efea;
  background-image: url('assets/bg-organic-shape.svg');
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0 0 64px 0 / 0 0 48px 0;
  min-height: 340px;
  margin-bottom: 60px;
  padding: 40px 20px 32px 20px;
  position: relative;
}
.hero .container, .services-hero .container, .prodej-hero .container {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}
.hero h1, .services-hero h1, .prodej-hero h1 {
  color: #243017;
  font-family: 'Montserrat', Arial, sans-serif;
}
.hero .btn-primary, .services-hero .btn-primary, .prodej-hero .btn-primary {
  margin-top: 14px;
}

/* ORGANIC/NATURE-INSPIRED CARD CONTAINERS ----------------------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.card-container { /* general flex container for cards */
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 24px 24px 38px 14px / 22px 32px 28px 22px;
  /* organic corner radii */
  box-shadow: 0 2px 16px rgba(90,100,40,0.07);
  position: relative;
  transition: box-shadow .21s, transform .13s;
}
.card:hover {
  box-shadow: 0 6px 28px rgba(90, 120, 44, .17);
  transform: translateY(-2px) scale(1.025);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 24px 18px 24px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature {
  background: #F6F6F4;
  border-radius: 24px 28px 22px 34px / 22px 34px 32px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 210px;
  flex: 1 1 220px;
  max-width: 260px;
  box-shadow: 0 2px 14px rgba(44, 90, 54, 0.055);
  padding: 28px 20px 16px 20px;
  margin-bottom: 20px;
  transition: box-shadow .15s, transform .12s;
}
.feature img {
  height: 38px;
  width: auto;
  margin-bottom: 4px;
  border-radius: 0;
}
.feature:hover, .feature:focus {
  box-shadow: 0 6px 32px rgba(90, 120, 44, .14);
  background: #e7efea;
  transform: translateY(-2px) scale(1.03);
}

/* SERVICE CARDS & PRODUCTS -------------------------------------- */
.service-card, .product-card {
  background: #fff;
  border-radius: 20px 34px 26px 24px / 18px 32px 28px 18px;
  box-shadow: 0 2px 16px rgba(44, 60, 38, 0.065);
  margin-bottom: 20px;
  padding: 30px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 220px;
  flex: 1 1 260px;
  max-width: 340px;
  transition: box-shadow .15s, transform .14s;
  border-left: 6px solid #79BB47;
}
.service-card:hover, .product-card:hover {
  box-shadow: 0 8px 32px rgba(120, 180, 90, .13);
  transform: translateY(-4px) scale(1.025);
}
.service-price, .product-price {
  color: #3A8C3A;
  font-weight: 700;
  font-size: 1.08rem;
  margin-top: 8px;
}

/* CONTENT GRIDS -------------------------------------------------- */
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* TESTIMONIALS --------------------------------------------------- */
.testimonials {
  background: #EDF4FA;
  border-radius: 28px 44px 24px 34px / 32px 22px 35px 20px;
  box-shadow: 0 4px 22px rgba(44, 128, 90, 0.045);
  padding: 40px 20px;
}
.testimonials h2 {
  color: #3A8C3A;
}
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border-radius: 24px 28px 16px 32px / 16px 28px 32px 20px;
  box-shadow: 0 0.5px 14px rgba(90,140,54,0.07);
  padding: 20px 22px 20px 22px;
  margin-bottom: 20px;
  flex: 1 1 280px;
  max-width: 370px;
  color: #2C2C1E;
}
.testimonial-card p {
  color: #375823;
  font-size: 1.02rem;
  font-style: italic;
  margin-bottom: 8px;
}
.testimonial-card strong {
  color: #204c20;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
}

/* CONTACT SECTION ------------------------------------------------ */
.contact {
  background: #e7efea;
  border-radius: 40px 36px 38px 40px / 32px 22px 35px 16px;
  box-shadow: 0 2px 18px rgba(44,128,90,0.05);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.contact .content-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
}
.contact-details, .visit-us .text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-details strong { color: #3A8C3A; }

/* LEGAL & TEXT SECTIONS ----------------------------------------- */
.legal {
  background: #fff;
  border-radius: 28px 44px 24px 34px / 32px 22px 35px 20px;
  box-shadow: 0 2px 18px rgba(127, 112, 45, 0.045);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* CTA BAR ------------------------------------------------------- */
.cta {
  background: #FBA512;
  border-radius: 24px 44px 24px 34px / 32px 22px 35px 24px;
  margin-bottom: 60px;
  padding: 32px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cta .btn-primary {
  font-size: 1.1rem;
  padding: 18px 38px;
  box-shadow: 0 4px 24px rgba(253,188,18,0.08);
}

/* THANK YOU PAGE ------------------------------------------------ */
.thank-you {
  background: #E7EFEA;
  border-radius: 32px 44px 28px 36px / 24px 18px 39px 22px;
  margin-bottom: 60px;
  padding: 60px 20px 60px 20px;
  text-align: center;
}


/* INSTALLATION/PROCESS SECTIONS --------------------------------- */
.process, .installation-process, .service-process {
  background: #f1ead7;
  border-radius: 28px 32px 28px 40px / 22px 32px 24px 20px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 2px 6px rgba(190, 148, 21, 0.09);
}
.price-detail {
  color: #3A8C3A;
  font-size: 1.12rem;
  font-weight: 700;
  margin-top: 14px;
}

/* FOOTER -------------------------------------------------------- */
footer {
  background: #18351C;
  color: #e0e4d6;
  padding: 42px 0 0 0;
  border-top: 4px solid #79BB47;
  font-size: .95rem;
  box-shadow: 0 -1px 12px rgba(44,56,24,0.06);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  justify-content: center;
}
.footer-logo {
  margin-bottom: 14px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #FBA512;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.02em;
  transition: color .17s;
  font-weight: 500;
  font-size: 1rem;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #FFF;
  text-decoration: underline;
}
.footer-contact {
  color: #ADBB9A;
  text-align: center;
  margin-bottom: 24px;
  font-size: .97rem;
}

/* COOKIE CONSENT BANNER + MODAL --------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 220;
  width: 100vw;
  background: #143210;
  color: #FFF;
  box-shadow: 0 -3px 32px rgba(44, 50, 31, 0.16);
  padding: 20px 12px 20px 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-size: 1rem;
  opacity: 1;
  transition: transform .34s cubic-bezier(.77,0,.18,1);
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-content {
  flex: 2 1 320px;
  margin-right: 18px;
}
.cookie-banner-buttons {
  display: flex;
  gap: 12px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #FFF;
  background: #3A8C3A;
  border: none;
  border-radius: 22px;
  padding: 10px 24px;
  cursor: pointer;
  margin-bottom: 0;
  transition: background .16s, color .16s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #005B9A;
  color: #fefefe;
}
.cookie-btn.settings {
  background: #FBA512;
  color: #143210;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #AD7400;
  color: #fff;
}
/* Cookie modal */
.cookie-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(20,36,10,0.52);
  z-index: 222;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity .23s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 22px 42px 31px 38px / 24px 46px 37px 28px;
  padding: 40px 32px 32px 32px;
  max-width: 420px;
  width: 92vw;
  box-shadow: 0 6px 48px rgba(44,90,54,0.15);
  color: #243017;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal-content h2 {
  color: #3A8C3A;
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
}
.cookie-toggle {
  appearance: none;
  width: 38px;
  height: 22px;
  background: #E1E9DF;
  border-radius: 16px;
  position: relative;
  outline: none;
  transition: background .17s;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: #3A8C3A;
}
.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(80,120,90,0.08);
  transition: left .17s;
}
.cookie-toggle:checked::after {
  left: 19px;
}
.cookie-modal .cookie-btn {
  margin-top: 14px;
  width: 100%;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 16px;
  right: 20px;
  background: #FBA512;
  color: #143210;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.4rem;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
}
.cookie-modal .close-modal:hover {
  background: #AD7400;
  color: #fff;
}

/* RESPONSIVE DESIGN (MOBILE-FIRST) ----------------------------- */
@media (max-width: 1120px) {
  .container { max-width: 98vw; }
  .footer-nav { gap: 12px; }
}
@media (max-width: 980px) {
  header .container { gap: 10px; }
  .main-nav { gap: 13px; margin-left: 14px; }
}
@media (max-width: 825px) {
  .main-nav { display: none; }
  header .btn-primary { display: none; }
  .mobile-menu-toggle { display: flex; }
}
@media (max-width: 680px) {
  .feature-grid, .services .content-wrapper, .services-list .content-wrapper, .product-list .content-wrapper, .testimonials .content-wrapper {
    flex-direction: column !important;
    gap: 22px !important;
  }
  .testimonial-card, .service-card, .product-card {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
  .cta { padding: 24px 10px; }
}
@media (max-width: 570px) {
  h1 { font-size: 1.42rem; }
  h2 { font-size: 1.12rem; }
  header .container { padding: 8px 10px; }
  .section, .hero, .cta, .contact, .legal, .process, .testimonials, .thank-you { padding: 18px 6px; }
  .card-content, .feature, .service-card, .product-card, .testimonial-card {
    padding: 16px 8px 10px 12px;
  }
}
@media (max-width: 520px) {
  .cta {
    flex-direction: column;
    gap: 16px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 18px;
    font-size: 0.97rem;
    padding: 16px 6px;
    align-items: stretch;
  }
  .cookie-banner-content { margin-right: 0; margin-bottom: 8px; }
}
@media (max-width: 768px) {
  .text-image-section, .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .contact .content-wrapper, .visit-us .content-wrapper {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .feature-grid, .services .content-wrapper, .services-list .content-wrapper, .product-list .content-wrapper, .testimonials .content-wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .section, .hero, .cta, .contact, .legal, .process, .testimonials, .thank-you {
    padding: 26px 8px;
  }
}
/* SHADOWS & MICRO-ANIMATIONS ----------------------------------- */
.card, .service-card, .product-card, .testimonial-card, .feature {
  will-change: box-shadow, transform;
}
.btn-primary, .btn-secondary {
  will-change: background, color, box-shadow, transform;
}
/* ORGANIC DECORATIVE SHAPES ------------------------------------- */
.hero, .prodej-hero {
  position: relative;
  overflow: hidden;
}
.hero:after, .prodej-hero:after { /* subtle leaf-shape overlay right bottom */
  content: '';
  display: block;
  position: absolute;
  right: -70px;
  bottom: -60px;
  width: 180px;
  height: 110px;
  background: #79BB47;
  opacity: 0.10;
  border-radius: 80px 180px 80px 120px / 70px 110px 60px 70px;
  z-index: 1;
  pointer-events: none;
}
.hero .container, .prodej-hero .container {
  position: relative;
  z-index: 2;
}

/* REMOVE UNNEEDED PROPERTIES ----------------------------------- */
/* No grid, no absolute for content, no forbidden columns/grid props! */
