/* RESET & BASE =============================================== */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background-color: #FCFDF9;
  color: #25312D;
  line-height: 1.65;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
input, select, textarea {
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid #E0E6DE;
  padding: 12px 16px;
  transition: border-color 0.18s;
}
input:focus, select:focus, textarea:focus {
  border-color: #4e7c60;
}
::placeholder {
  color: #7D9280;
  opacity: 1;
}
a {
  color: #18416B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #30653d;
}
ul, ol {
  list-style: none;
}

/* TYPOGRAPHY =============================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: #18416B;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.12rem;
  margin-bottom: 10px;
  font-weight: 600;
}
p, ul, ol {
  font-size: 1rem;
  margin-bottom: 1.4em;
}
strong, b {
  color: #355320;
  font-weight: 600;
}
i, em {
  color: #6F7C6B;
  font-style: italic;
}

/* CONTAINER & LAYOUT =============================================== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 16px rgba(60, 100, 60, 0.07);
  padding: 32px 24px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .content-wrapper {
    padding: 48px 40px;
  }
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #F8FCF5;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(50, 70, 30, 0.10);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 24px 20px 24px;
  transition: transform 0.15s, box-shadow 0.18s;
}
.card:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 6px 36px rgba(80, 140, 60, 0.13);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.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: #f9fdf8;
  border: 1.5px solid #e0ebdf;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(60, 90, 40, 0.07);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 14px;
  padding: 22px 18px;
  box-shadow: 0 2px 9px rgba(60, 80, 60, 0.06);
}

/* FLEX LAYOUT RESPONSIVE ==================================== */
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  .content-wrapper {
    padding: 24px 10px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .card-container,
  .content-grid,
  .feature-item {
    flex-direction: column;
    gap: 14px;
  }
}

/* HEADER & NAVBAR ========================================== */
header {
  background: #F2F8F0;
  box-shadow: 0 2px 18px rgba(70, 90, 60, 0.08);
  border-bottom: 1.5px solid #e8f0e4;
  width: 100%;
  position: relative;
  z-index: 90;
}
header .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  min-height: 74px;
}
header nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: #355320;
  background: transparent;
  padding: 8px 8px;
  border-radius: 10px;
  transition: background 0.15s;
}
header nav a:hover, header nav a:focus {
  background: #e6fbe4;
  color: #18416B;
}
header img {
  max-height: 50px;
}

/* HEADER CTAs */
.btn-primary {
  background: #30653d;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(24, 65, 107, 0.07);
  border: none;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.2s, color 0.15s;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}
.btn-primary:hover, .btn-primary:focus {
  background: #18416B;
  color: #e9ffe7;
  box-shadow: 0 8px 40px rgba(48, 101, 61, 0.14);
}
.btn-secondary {
  background: #E4F1F9;
  color: #18416B;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 18px;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.15s;
  font-size: 1.08rem;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #c4e0d9;
  color: #30653D;
}

/* SPECIAL BUTTONS ============================================= */
button {
  cursor: pointer;
  outline: none;
  transition: background 0.14s;
}

/* Spacing for buttons inside forms */
form button,
form .btn-primary {
  margin-top: 10px;
}


/* HAMBURGER MOBILE NAVIGATION =============================== */
.mobile-menu-toggle {
  display: block;
  position: fixed;
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  background: #30653D;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  z-index: 101;
  box-shadow: 0 2px 10px rgba(18, 65, 107, 0.12);
  transition: background 0.16s;
  align-items: center;
  justify-content: center;
  display: none;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #18416B;
}
@media (max-width: 992px) {
  .mobile-menu-toggle {
    display: flex;
  }
  header nav, header .btn-primary {
    display: none;
  }
}

/* MOBILE MENU STYLES */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(44, 56, 34, 0.90);
  transform: translateX(100vw);
  transition: transform 0.38s cubic-bezier(0.35,0.76,0.23,0.99);
  z-index: 110;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 20px; right: 22px;
  background: #F4FDF6;
  color: #355320;
  font-size: 2.3rem;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center; justify-content: center;
  z-index: 111;
  transition: background 0.18s, color 0.16s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #e4f1f9;
  color: #18416B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 84px 38px 38px 38px;
  width: 100vw;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 1.3rem;
  letter-spacing: 0.01em;
  padding: 10px 8px;
  border-radius: 12px;
  transition: background 0.16s, color 0.16s;
  width: 100%;
  display: block;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: #b8ecaf;
  color: #18416B;
}

@media (min-width: 993px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* MAIN SECTIONS ============================================== */
main {
  width: 100%;
  background: transparent;
}

section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
section:last-child {
  margin-bottom: 0;
}

.rating-summary, .rating-summary strong {
  color: #355320;
  background: #e4f1f9;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 1.1rem;
  display: inline-block;
  margin-top: 4px;
  box-shadow: 0 1.5px 6px rgba(52,86,43,0.04);
}


/* TESTIMONIALS =============================================== */
.testimonial-card p {
  color: #21491b;
  font-size: 1.1rem;
  font-weight: 500;
  margin-right: 16px;
  margin-bottom: 0;
}
.testimonial-card span {
  font-size: 1rem;
  color: #697678;
  font-style: italic;
  font-weight: 400;
}

/* FORMS & INPUTS ============================================ */
form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}
form div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
label {
  font-weight: 600;
  color: #355320;
  margin-bottom: 2px;
}
textarea {
  min-height: 90px;
  resize: vertical;
}

/* FILTERS CATALOG ============================================== */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
}
.filters label {
  font-size: 1.02rem;
  font-weight: 500;
}
.filters select {
  margin-left: 8px;
  background: #F6FBF4;
  color: #21491b;
}
@media (max-width:600px){
  .filters {
    flex-direction: column;
    gap: 12px;
  }
}

/* ICON LISTS ============================================ */
ul li, ol li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 32px;
  margin-bottom: 14px;
}
ul li img, ol li img {
  width: 25px;
  height: 25px;
  margin-right: 4px;
  filter: brightness(0.62) saturate(1.4);
}

/* ADDRESS/CONTACT BLOCKS ===================================== */
address {
  font-style: normal;
  color: #275636;
  margin-bottom: 1em;
  background: #f2f8f0;
  padding: 18px 20px;
  border-radius: 13px;
  font-size: 1rem;
  box-shadow: 0 1.5px 7px rgba(60,90,60,0.06);
}
.contact-brief {
  margin-top: 7px;
  background: #e4f1f9;
  border-radius: 15px;
  color: #18416b;
  padding: 13px 19px;
  font-size: 1.02rem;
}

/* FOOTER ========================================== */
footer {
  background: #e4f1f9;
  padding: 40px 0 4px 0;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  box-shadow: 0 -2px 18px rgba(70, 90, 60, 0.08);
  width: 100%;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
}
.footer-brand {
  margin-right: 26px;
  min-width: 110px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
footer nav a {
  color: #18416b;
  font-weight: 600;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 5px 0;
  transition: color 0.16s;
}
footer nav a:hover {
  color: #30653d;
}
.footer-contact {
  font-size: 1em;
}
.social-links {
  display: flex;
  gap: 18px;
  margin-top: 12px;
}
.social-links a img {
  width: 32px;
  height: 32px;
  transition: filter 0.14s, transform 0.2s;
  filter: grayscale(0.3) brightness(0.9) saturate(1.3);
}
.social-links a:hover img {
  filter: grayscale(0) brightness(1.1) saturate(1.7);
  transform: scale(1.13);
}

@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
  }
  .footer-brand {
    margin-right: 0;
    margin-bottom: 12px;
  }
  .footer-contact {
    margin-top: 14px;
  }
}

/* UTILS/GENERAL ============================================= */
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.gap-10 { gap: 10px; }
.gap-18 { gap: 18px; }
.rounded-lg { border-radius: 18px; }
.bg-accent { background: #e4f1f9; }
.bg-primary { background: #18416B; color: #fff; }

/* NATURE ORGANIC STYLE – TEXTURES & SHAPES ================= */
/* Subtle organic background texture for wrappers */
body {
  background: linear-gradient(75deg, #F2F8F0 0%, #E4F1F9 100%);
}
.content-wrapper {
  background: #fcfdf9 url('assets/textures/leaf-light.svg') repeat top right;
}
.card, .feature-item, .testimonial-card {
  border-radius: 20px 32px 18px 28px/28px 18px 32px 20px;
  /* Organic shape */
}
section {
  border-radius: 40px 10px 30px 60px/60px 30px 40px 10px;
  box-shadow: 0 4px 48px rgba(44,99,68,0.04);
}

/* Scrollbar Styling ========================================= */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-thumb {
  background: #cbe5bd;
  border-radius: 18px;
}

/* MICRO-INTERACTIONS =========================================== */
a, .btn-primary, .btn-secondary, .mobile-menu-close, .mobile-menu-toggle, input, button, select, textarea {
  transition: background 0.15s, color 0.14s, box-shadow 0.17s, transform 0.14s;
}
input:focus, textarea:focus, select:focus {
  box-shadow: 0 1px 8px #b5bda0;
}

/* ANIMATION KEYFRAMES ========================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(38px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInRight {
  from { transform: translateX(100vw); }
  to { transform: translateX(0); }
}
@keyframes slideOutRight {
  from { transform: translateX(0); }
  to { transform: translateX(100vw); }
}
@keyframes bannerEnter {
  0% { transform: translateY(120%); opacity: 0; } 100% { transform: translateY(0); opacity: 1; }
}
@keyframes bannerExit {
  0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(120%); opacity: 0; }
}

/* COOKIE CONSENT BANNER ======================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #f8fcf4;
  color: #18416B;
  box-shadow: 0 -2px 24px rgba(52,93,51,0.17);
  border-top: 3px solid #c4e0d9;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
  padding: 22px 16px 22px 24px;
  z-index: 1500;
  animation: bannerEnter 0.55s 1 cubic-bezier(0.5,0.8,0.2,1);
  font-size: 1rem;
}
.cookie-banner[aria-hidden="true"] {
  display: none;
}
.cookie-banner .cookie-banner-text {
  flex: 1;
  margin-right: 18px;
  font-size: 1.035rem;
}
.cookie-banner button {
  min-width: 120px;
  padding: 11px 19px;
  border-radius: 16px;
  border: none;
  margin-left: 6px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
}
.cookie-accept {
  background: #18416B;
  color: #fff;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #30653D; color: #E4F1F9;
}
.cookie-reject {
  background: #E4F1F9;
  color: #18416B;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #E6FBE4;
  color: #30653d;
}
.cookie-settings {
  background: #fffbea;
  color: #355320;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #e8f7e9;
  color: #30653d;
}

@media (max-width: 580px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 15px 9px 16px 9px;
    font-size: 0.98rem;
  }
  .cookie-banner .cookie-banner-text {
    margin-right: 0;
    margin-bottom: 4px;
  }
}

/* COOKIE PREFERENCES MODAL ================================ */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(44,56,34,0.42);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 1550;
  transition: opacity 0.18s;
}
.cookie-modal {
  background: #F8FCF4;
  color: #18416B;
  border-radius: 22px 22px 0 0/44px 44px 0 0;
  box-shadow: 0 -4px 48px rgba(52,93,51,0.15);
  padding: 30px 22px 22px 22px;
  width: 100vw;
  max-width: 430px;
  animation: bannerEnter 0.48s 1 cubic-bezier(0.5,0.85,0.15,1.2);
}
.cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #18416B;
}
.cookie-modal-label {
  display: flex;
  align-items: center;
  margin-bottom: 17px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  gap: 10px;
}
.cookie-modal-label input[type=checkbox] {
  width: 22px;
  height: 22px;
  margin-right: 8px;
  accent-color: #30653D;
}
.cookie-modal .cookie-essential {
  color: #18416B;
  opacity: 0.66;
}
.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 11px;
}
.cookie-modal-close {
  position: absolute;
  top: 13px; right: 13px;
  background: #E4F1F9;
  border-radius: 50%;
  width: 38px; height: 38px;
  font-size: 1.24rem;
  color: #18416B;
  border: none;
}
.cookie-modal-close:hover {
  background: #d3f4ba;
}

@media (max-width: 480px){
  .cookie-modal {
    max-width: 97vw;
    padding: 20px 4vw 15px 4vw;
  }
  .cookie-modal-actions {
    flex-direction: column; gap: 10px;
  }
}

/* RESPONSIVE UTILITIES ========================================= */
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  .btn-primary, .btn-secondary { font-size: 1rem; padding: 10px 17px; }
  .card, .testimonial-card, .feature-item, .content-wrapper {
    padding: 16px 8px;
    border-radius: 14px;
  }
  section { padding: 24px 4px; }
}

/* HIGH CONTRAST FOR TESTIMONIAL TEXT ======================= */
.testimonial-card {
  background: #fff;
  border: 2px solid #e6fbe4;
  color: #21491B;
  box-shadow: 0 3px 18px rgba(56,120,56,0.07);
}
.testimonial-card p, .testimonial-card span {
  color: #1e271f;
}

/* ACCESSIBLE FOCUS STATES =================================== */
:focus-visible {
  outline: 3px solid #30653d;
  outline-offset: 2px;
}

/* Accessibility for icon-only links */
[role="button"]:focus, .social-links a:focus {
  outline: 2.5px solid #18416B;
}


/* END OF CSS File */
