/* RESET & BASE STYLES */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #2D4D2A;
  background: #F1F8F3;
  line-height: 1.6;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
ul, ol {
  padding-left: 1.5em;
}
a {
  color: #2D4D2A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #B7C986;
  outline: none;
}
input, button, textarea {
  font-family: inherit;
  outline: none;
}
/* TYPOGRAPHY */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #2D4D2A;
  font-weight: 700;
  line-height: 1.2;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.4rem; margin-bottom: 14px; }
h4 { font-size: 1.15rem; margin-bottom: 12px; }
p, li, label { font-size: 1rem; color: #3a5634; }

/* CONTAINERS */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}
.content-wrapper {
  margin-bottom: 40px;
}

/* HEADER */
header {
  background: #fff;
  box-shadow: 0 2px 20px rgba(45,77,42,0.07);
  border-radius: 0 0 24px 24px;
  padding: 0;
  margin-bottom: 20px;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  gap: 20px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
header nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
header nav a:hover, header nav a:focus {
  background: #B7C98633;
  color: #B7C986;
}
.cta-btn {
  background: #2D4D2A;
  color: #fff;
  border: none;
  border-radius: 24px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  padding: 12px 28px;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(45,77,42,0.09);
  transition: background 0.22s, box-shadow 0.22s, transform 0.14s;
  cursor: pointer;
}
.cta-btn:hover, .cta-btn:focus {
  background: #658441;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 16px rgba(45,77,42,0.13);
}
header img {
  height: 48px;
  width: auto;
  border-radius: 16px;
  margin-right: 16px;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: #B7C986;
  color: #2D4D2A;
  border: none;
  font-size: 2rem;
  border-radius: 18px;
  padding: 6px 16px;
  margin-left: 14px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  z-index: 1101;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #2D4D2A;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 10px 32px rgba(45,77,42,0.17);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  padding: 10px 0 0 0;
  transform: translateX(-110vw);
  transition: transform 0.34s cubic-bezier(.65,.05,.36,1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #eaeff3;
  color: #2D4D2A;
  border: none;
  font-size: 2.3rem;
  padding: 6px 19px 8px 14px;
  align-self: flex-end;
  border-radius: 18px;
  margin: 0 22px 10px 0;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #B7C986;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 0 36px;
  margin-top: 22px;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2D4D2A;
  padding: 12px 0 12px 8px;
  width: 100%;
  border-radius: 12px;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  background: #B7C98633;
  color: #B7C986;
}

@media (max-width: 992px) {
  header nav {
    display: none;
  }
  .cta-btn {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 993px) {
  .mobile-menu {
    display: none !important;
  }
}

/* LAYOUT AND SECTION SPACING */
main {
  margin-bottom: 40px;
}
section {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 2px 32px rgba(113, 163, 76, 0.08);
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  section {
    padding: 20px 6px;
    border-radius: 0;
  }
}

/* FLEX LAYOUT PATTERNS (MANDATORY) */
.features-grid, .benefits-grid, .categories-grid, .offers-list, .guides-grid, .testimonial-carousel {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.card-container,
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 24px;
  box-shadow: 0 2px 14px rgba(184,202,134,0.27);
  background: #fff;
}
.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: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 14px rgba(113, 163, 76, 0.12);
  margin-bottom: 24px;
  min-width: 0;
  width: 100%;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

@media (max-width: 768px) {
  .features-grid, .benefits-grid, .categories-grid, .offers-list, .guides-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* CARD & GRID ELEMENTS */
.feature, .category, .offer-card, .benefit, .guide {
  background: #F1F8F3;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(183,201,134,0.07);
  padding: 26px 24px 20px 24px;
  flex: 1 1 270px;
  min-width: 220px;
  transition: box-shadow 0.23s, transform 0.17s;
}
.feature:hover, .offer-card:hover, .benefit:hover, .guide:hover, .category:hover {
  box-shadow: 0 4px 36px rgba(113,163,76,0.17);
  transform: translateY(-4px) scale(1.025);
}
.offers-list {
  gap: 24px;
  padding-left: 0;
  list-style: none;
  width: 100%;
}
.offer-card {
  position: relative;
  padding: 32px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
}
.badge, .discount-badge {
  display: inline-block;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  background: #B7C986;
  border-radius: 18px;
  padding: 3px 18px;
  top: 16px;
  left: 18px;
  box-shadow: 0 1px 8px rgba(113,163,76,0.14);
}
.discount-badge { background: #2D4D2A; }

.categories-grid {
  flex-wrap: wrap;
  gap: 24px;
}
.category {
  flex: 1 1 220px;
  min-width: 190px;
  padding: 20px 18px 16px 18px;
  background: #fff;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(183,201,134,0.11);
}
.category-highlight {
  background: #B7C986;
  color: #2D4D2A;
  border-radius: 14px;
  padding: 18px 24px;
  margin-top: 18px;
  font-weight: 600;
  font-size: 1.08rem;
}
.category-highlight strong {
  font-size: 1.2rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}

/* NEWSLETTER & FORMS */
.newsletter-section {
  background: #F1F8F3;
  border-radius: 28px;
  box-shadow: 0 2px 18px rgba(183,201,134,0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  padding: 32px 20px;
}
form {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 12px;
}
input[type="email"], textarea {
  padding: 12px 18px;
  border-radius: 18px;
  border: 1.5px solid #B7C986;
  font-size: 1rem;
  color: #283d22;
  background: #fff;
  transition: border 0.17s;
  min-width: 170px;
  max-width: 100%;
}
input[type="email"]:focus, textarea:focus {
  border: 1.5px solid #2D4D2A;
  box-shadow: 0 2px 8px rgba(183,201,134,0.14);
}
textarea {
  min-height: 80px;
  width: 100%;
  resize: vertical;
}
button[type="submit"] {
  background: #2D4D2A;
  color: #fff;
  border: none;
  border-radius: 18px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  padding: 11px 30px;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(45,77,42,0.09);
  transition: background 0.19s, box-shadow 0.17s, transform 0.14s;
  cursor: pointer;
}
button[type="submit"]:hover, button[type="submit"]:focus {
  background: #658441;
  transform: translateY(-1px) scale(1.04);
}
.review-form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}
.review-form-field label {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
}

/* TESTIMONIALS */
.testimonial-carousel {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.testimonial-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 20px rgba(173, 191, 134, 0.14);
  max-width: 430px;
  min-width: 240px;
  margin-bottom: 20px;
  color: #1B2E15;
  font-size: 1.08rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.testimonial-card blockquote {
  color: #2D4D2A;
  border-left: 5px solid #B7C986;
  margin: 0 0 6px 0;
  padding: 10px 16px 6px 22px;
  font-size: 1.14rem;
  background: #f6fce7;
  border-radius: 12px 15px 13px 14px;
  line-height: 1.55;
}
.testimonial-card footer {
  font-size: 0.97rem;
  margin-top: 5px;
  color: #658441;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
}

/* BUTTONS & BADGES */
button, .cta-btn {
  transition: background 0.15s, color 0.15s, box-shadow 0.15s, transform 0.12s;
}

/* FOOTER */
footer {
  background: #2D4D2A;
  color: #fff;
  border-radius: 24px 24px 0 0;
  padding: 20px 0 14px 0;
  margin-top: 24px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 10px;
  justify-content: flex-start;
}
footer nav a {
  color: #B7C986;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.02rem;
  transition: color 0.16s;
}
footer nav a:hover, footer nav a:focus {
  color: #fff;
  text-decoration: underline;
}
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  font-size: 1rem;
  color: #d8ead8;
}
.contact-info img {
  height: 18px;
  margin-right: 6px;
  vertical-align: middle;
}
.office-hours {
  color: #B7C986;
  font-size: 0.98rem;
  margin-bottom: 7px;
}
.brand-line {
  font-size: 1rem;
  color: #e0efc7;
  margin-top: 4px;
}

@media (max-width: 768px) {
  footer .container {
    gap: 11px;
    padding: 0 8px;
  }
  footer nav {
    gap: 12px;
  }
  .contact-info {
    gap: 12px;
    font-size: 0.98rem;
  }
}

/* CONTACT PAGE */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1.09rem;
  margin-bottom: 13px;
}
.map-embed {
  background: #e6f0d3;
  padding: 16px 12px;
  border-radius: 16px;
  color: #2D4D2A;
  font-size: 1.01rem;
  text-align: center;
}
.address {
  font-size: 1.12rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  margin-bottom: 12px;
}

/* CONFIRMATION PAGE */
.confirmation-message {
  background: #B7C98633;
  color: #2D4D2A;
  border-radius: 15px;
  padding: 22px;
  margin-bottom: 14px;
  font-size: 1.13rem;
}
.next-steps ul {
  padding-left: 1.2em;
  margin-bottom: 16px;
}
.next-steps li {
  color: #3A5634;
}

/***** RESPONSIVENESS *****/
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 7px;
    padding: 8px 8px;
  }
  h1 { font-size: 1.56rem; }
  h2 { font-size: 1.21rem; }
  h3 { font-size: 1.05rem; }
  main, section {
    padding: 0;
  }
  .feature, .category, .offer-card, .benefit, .guide {
    min-width: 0;
    padding: 18px 11px 16px 13px;
    border-radius: 12px;
    font-size: 1rem;
  }
  .testimonial-card {
    min-width: 0;
    max-width: 100%;
    border-radius: 13px;
    padding: 14px 7px;
  }
  .badge, .discount-badge {
    font-size: 0.92rem;
    top: 10px;
    left: 10px;
    padding: 3px 12px;
  }
}

/* MICRO-INTERACTIONS */
.cta-btn:active {
  transform: scale(0.99);
}
input[type='email']::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #b9c8a8;
}
input[type='email']::-moz-placeholder, textarea::-moz-placeholder {
  color: #b9c8a8;
}
input[type='email']:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #b9c8a8;
}
input[type='email']::placeholder, textarea::placeholder {
  color: #b9c8a8;
  opacity: 1;
}

/* SCROLLBAR STYLE (for subtlety) */
body {
  scrollbar-width: thin;
  scrollbar-color: #B7C986 #F1F8F3;
}
body::-webkit-scrollbar {
  width: 8px;
}
body::-webkit-scrollbar-thumb {
  background: #B7C986;
  border-radius: 6px;
}
body::-webkit-scrollbar-track {
  background: #F1F8F3;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  border-top: 2px solid #B7C986;
  box-shadow: 0 -4px 28px rgba(74,146,25,0.08);
  color: #2D4D2A;
  z-index: 1300;
  padding: 18px 22px 14px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  justify-content: center;
  transition: transform 0.28s cubic-bezier(.7,.1,.3,.9), opacity 0.18s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(160px);
}
.cookie-banner-text {
  color: #2D4D2A;
  text-align: center;
  font-size: 1.03rem;
  margin-bottom: 2px;
}
.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.cookie-banner button {
  padding: 9px 22px;
  border-radius: 18px;
  border: none;
  font-weight: 700;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 1px 8px rgba(183,201,134,0.17);
  transition: background 0.16s, color 0.16s, transform 0.13s;
  margin-top: 0;
}
.cookie-btn-accept {
  background: #2D4D2A;
  color: #fff;
}
.cookie-btn-accept:hover, .cookie-btn-accept:focus {
  background: #658441;
}
.cookie-btn-reject {
  background: #B7C986;
  color: #2D4D2A;
}
.cookie-btn-reject:hover, .cookie-btn-reject:focus {
  background: #2D4D2A;
  color: #fff;
}
.cookie-btn-settings {
  background: #fff;
  color: #658441;
  border: 2px solid #B7C986;
}
.cookie-btn-settings:hover, .cookie-btn-settings:focus {
  background: #B7C98622;
}

@media (max-width: 480px) {
  .cookie-banner {
    padding: 14px 4px 11px 4px;
    font-size: 0.96rem;
  }
  .cookie-banner-buttons {
    gap: 8px;
  }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  z-index: 1400;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(45,77,42,0.18);
  transition: opacity 0.22s;
  opacity: 1;
  pointer-events: all;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 44px rgba(113,163,76,0.14);
  padding: 34px 27px 28px 27px;
  min-width: 310px;
  max-width: 98vw;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal-title {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: #2D4D2A;
}
.cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.06rem;
}
.cookie-category label {
  font-size: 1rem;
}
.cookie-toggle {
  appearance: none;
  width: 40px;
  height: 20px;
  background: #B7C98688;
  border-radius: 12px;
  position: relative;
  outline: none;
  cursor: pointer;
  border: 1.5px solid #B7C986;
  transition: background 0.19s;
}
.cookie-toggle:checked {
  background: #2D4D2A;
  border-color: #2D4D2A;
}
.cookie-toggle::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 2px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.21s;
  box-shadow: 0 1px 6px rgba(113,163,76,0.10);
}
.cookie-toggle:checked::before {
  left: 21px;
  background: #B7C986;
}
.cookie-modal-close {
  position: absolute;
  top: 13px; right: 17px;
  background: transparent;
  border: none;
  font-size: 1.45rem;
  color: #2D4D2A;
  cursor: pointer;
  border-radius: 12px;
  padding: 2px 9px;
  transition: background 0.15s, color 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #e6f0d3;
  color: #658441;
}
.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}
.cookie-modal-actions button {
  padding: 9px 22px;
  border-radius: 18px;
  border: none;
  font-weight: 700;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  cursor: pointer;
}

/* UTILITIES */
.hide {
  display: none !important;
}

/************** END CSS **************/
