/* ========================
   CSS RESET & NORMALIZE
   ======================== */
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, menu, 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, 
main, 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;
}
html {
  box-sizing: border-box;
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background-color: #fff;
  color: #235135;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  min-height: 100vh;
  position: relative;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}
a {
  color: #235135;
  text-decoration: none;
  transition: color .2s cubic-bezier(.49,.04,.45,1.42);
}
a:hover, a:focus {
  color: #62ad88;
  outline: none;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 16px;
  border: none;
  cursor: pointer;
  background: none;
  outline: none;
}

/* =====================
   BRANDING VARIABLES
   ===================== */
:root {
  --primary: #235135;
  --secondary: #ffffff;
  --accent: #62ad88;
  --brand-secondary-bg: #D9EAD3;
  --brand-accent-light: #7FC29B;
  --dark: #112C1E;
  --error: #D85252;
  --warn: #FFAB00;
  --radius: 18px;
  --radius-card: 20px;
  --shadow: 0 4px 18px rgba(35,81,53,0.04), 0 1.5px 8px rgba(35,81,53,0.09);
  --shadow-bold: 0 6px 32px rgba(35,81,53,.13), 0 2px 10px rgba(98,173,136,.11);
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/* ===============
   TYPOGRAPHY HIERARCHY
   =============== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 800;
  line-height: 1.13;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.75rem;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  letter-spacing: -1px;
  margin-top: 0;
}
h3 {
  font-size: 1.375rem;
  font-weight: 700;
}
h4 {
  font-size: 1.125rem;
}
h5 {
  font-size: 1rem;
}
h6 {
  font-size: 0.95rem;
}
strong, b {
  font-weight: 700;
}
p, li, blockquote {
  font-family: var(--font-body);
  color: #235135;
  font-size: 1rem;
  margin-bottom: 16px;
}
.subheadline {
  font-size: 1.25rem;
  font-family: var(--font-display);
  color: var(--primary);
  opacity: 0.88;
  font-weight: 600;
}

/* ===============
   LAYOUT & SPACING PRINCIPLES
   =============== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  background: var(--secondary);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 26px;
  margin-bottom: 20px;
  background: var(--secondary);
  box-shadow: var(--shadow-bold);
  border-radius: var(--radius-card);
  min-height: 100px;
  color: #192D22;
}
.testimonial-card p {
  font-weight: 500;
  font-size: 1.15rem;
  margin-bottom: 0;
}
.testimonial-card strong {
  font-size: 0.98rem;
  color: var(--primary);
  font-family: var(--font-body);
  font-weight: 700;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  box-shadow: var(--shadow);
  padding: 24px 24px 18px 24px;
  border-radius: var(--radius);
  background: var(--brand-secondary-bg);
  min-width: 210px;
  max-width: 345px;
  margin-bottom: 20px;
}
.feature-item img {
  width: 42px;
  height: 42px;
  margin-bottom: 4px;
}

/* Cards and Grids for Specific Sections */
.service-list, .article-list, .species-list, .guide-list, .tip-list, .webinar-list, .feature-list, .benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.article-card, .guide-card, .tip-card, .webinar-card {
  background: var(--secondary);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  padding: 28px 24px 20px 24px;
  min-width: 260px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.price {
  color: var(--primary);
  background: var(--brand-secondary-bg);
  border-radius: 10px;
  padding: 6px 15px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-block;
  margin-top: 12px;
}

/* ===============
   HEADER & NAVIGATION
   =============== */
header {
  width: 100%;
  background: var(--primary);
  color: var(--secondary);
  box-shadow: 0 2px 16px rgba(35,81,53,0.045);
  z-index: 50;
  position: relative;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0 12px 0;
  width: 100%;
}
header nav a {
  display: flex;
  align-items: center;
  color: var(--secondary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  margin: 0 0.42rem;
  transition: color 0.18s;
}
header nav a:hover {
  color: var(--accent);
}
header nav ul {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
header nav ul li {
  display: flex;
  align-items: center;
}
.cta-btn {
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  border-radius: 80px;
  padding: 10px 30px;
  margin-left: 12px;
  box-shadow: 0 2px 12px rgba(98,173,136,0.16);
  transition: background 0.2s, transform 0.16s;
  border: none;
  position: relative;
  display: inline-block;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #4B9E76;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}

/* ===============
   HERO SECTIONS
   =============== */
section:first-of-type .container {
  padding-top: 28px;
}
section:first-of-type h1 {
  color: var(--primary);
}

/* ===============
   FILTERS
   =============== */
.category-filters, .species-filters, .location-filters, .topic-filters {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 12px;
}
.category-filters a, .species-filters a,
.location-filters a, .topic-filters a {
  background: var(--brand-secondary-bg);
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 600;
  padding: 7px 19px;
  border-radius: 22px;
  font-size: 1rem;
  transition: background .13s, color .15s;
  margin-bottom: 0;
}
.category-filters a:hover,
.species-filters a:hover,
.location-filters a:hover,
.topic-filters a:hover {
  background: var(--accent);
  color: #fff;
}
.category-filters strong,
.species-filters strong,
.location-filters strong,
.topic-filters strong {
  font-weight: 700;
  color: var(--primary);
}

/* ===============
   FOOTER
   =============== */
footer {
  background: var(--primary);
  color: var(--secondary);
  padding: 38px 0 16px 0;
  width: 100%;
  font-size: 0.98rem;
  margin-top: 50px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
.footer-nav {
  display: flex;
  gap: 18px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  padding-right: 8px;
  padding-left: 8px;
  border-radius: 5px;
  transition: background .14s, color .13s;
}
.footer-nav a:hover {
  color: var(--accent);
  background: rgba(255,255,255,0.079);
}
.footer-info {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-info img {
  width: 44px;
  height: 44px;
  margin-right: 5px;
}
.footer-info p{
  color: white;
}
/* ===============
   LEGAL TEXT SECTIONS
   =============== */
.legal {
  background: var(--brand-secondary-bg);
  border-radius: var(--radius-card);
  padding: 32px 28px;
}
.legal h1 {
  color: var(--primary);
  margin-bottom: 16px;
}
.legal .text-section {
  font-size: 1.01em;
  color: #23382B;
}
.legal strong {
  font-weight: 700;
}

/* ===============
   MAIN PAGE: SLIDER STYLES
   =============== */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  width: 100%;
}

/* =========================
   BUTTONS, INTERACTIONS
   ========================= */
.button, .cta-btn, button {
  outline: none;
  box-shadow: none;
  transition: background 0.19s, color 0.16s, box-shadow 0.13s, transform 0.13s;
}
.button:hover, .cta-btn:hover, .button:focus, .cta-btn:focus {
  box-shadow: 0 4px 20px rgba(98,173,136,0.16);
  background: #4B9E76;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}

/* ===============
   LISTS
   =============== */
ul {
  list-style: none;
  margin-bottom: 16px;
  padding-left: 0;
}
.text-section ul li, .benefit-list ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.07rem;
  margin-bottom: 7px;
}
.text-section ul li img,
.benefit-list ul li img {
  height: 30px;
  width: 30px;
  flex-shrink: 0;
}

/* ============================
   RESPONSIVE BURGER/MOBILE MENU
   ============================ */
.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 40px;
  font-size: 2.1rem;
  width: 50px;
  height: 50px;
  padding: 0;
  margin-left: auto;
  z-index: 150;
  transition: background .18s, color .18s;
  align-items: center;
  justify-content: center;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--primary);
  color: #fff;
  outline: none;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35,81,53,0.97);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  transform: translateX(100%);
  transition: transform 0.37s cubic-bezier(.6,.18,0,1.02);
  z-index: 1000;
  padding: 32px 0 0 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2.4rem;
  margin: 0 30px 24px 0;
  cursor: pointer;
  border: none;
  transition: color .16s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
  margin-right: 34px;
  margin-top: 34px;
}
.mobile-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 800;
  background: none;
  padding: 8px 0;
  border-radius: 10px;
  transition: background .13s, color .13s;
  width: 100%;
  text-align: right;
  min-width: 170px;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--accent);
  color: #fff;
}

/* =============================
   COOKIE CONSENT BANNER & MODAL
   ============================= */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: var(--brand-secondary-bg);
  color: var(--primary);
  box-shadow: 0 -4px 24px rgba(35,81,53,0.09);
  padding: 28px 24px 26px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  z-index: 2000;
  transition: transform .38s cubic-bezier(.5,.06,0,1.01);
}
.cookie-banner.hide {
  transform: translateY(130%);
  pointer-events: none;
  opacity: 0;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 4px;
}
.cookie-banner button {
  background: var(--primary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 28px;
  padding: 9px 22px;
  transition: background .15s, color .15s;
  border: none;
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  background: var(--accent);
  color: #fff;
}
.cookie-banner button.cookie-settings {
  background: var(--brand-accent-light);
  color: var(--primary);
}
.cookie-banner button.cookie-settings:hover {
  background: var(--accent);
  color: #fff;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  z-index: 2200;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(35,81,53,0.38);
  animation: fadeIn .2s 1;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: var(--secondary);
  color: var(--primary);
  border-radius: var(--radius-card);
  max-width: 432px;
  padding: 38px 32px 30px 32px;
  box-shadow: 0 8px 42px rgba(35,81,53,0.19);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal-content h3 {
  margin-bottom: 10px;
  font-weight: 800;
}
.cookie-modal-content label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 1.08em;
}
.cookie-modal-content input[type="checkbox"]:not(:disabled) {
  accent-color: var(--accent);
  width: 20px;
  height: 20px;
}
.cookie-modal-content input[disabled] {
  opacity: 0.56;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 12px;
}
.cookie-modal-actions button {
  background: var(--primary);
  color: #fff;
  border-radius: 25px;
  padding: 8px 22px;
  font-weight: 700;
  font-size: 1em;
  border: none;
  transition: background .15s, color .15s;
}
.cookie-modal-actions button:hover,
.cookie-modal-actions button:focus {
  background: var(--accent);
}
.cookie-modal-close {
  position: absolute;
  right: 24px;
  top: 24px;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
}
.cookie-modal-close:hover {
  color: var(--accent);
}

/* ===============
   CONFIRMATION PAGE
   =============== */
.confirmation {
  background: var(--brand-secondary-bg);
  padding: 42px 32px 28px 32px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-bold);
  text-align: center;
}
.next-steps {
  background: var(--secondary);
  border-radius: var(--radius);
  padding: 28px 18px;
  margin-top: 20px;
  box-shadow: var(--shadow);
}
.next-steps .cta-btn {
  margin-top: 14px;
}

/* ===============
   MISC
   =============== */
::-webkit-scrollbar {
  width: 10px;
  background: var(--brand-secondary-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 8px;
}

hr {
  border: none;
  border-top: 1.5px solid var(--brand-secondary-bg);
  margin: 30px 0 30px 0;
}

/* ===============
   MEDIA QUERIES
   =============== */
@media (max-width: 1160px) {
  .container {
    max-width: 97vw;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 900px) {
  .service-list, .article-list, .species-list, .guide-list, .tip-list, .webinar-list, .feature-list, .benefit-list {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.05rem;
  }
  h2 {
    font-size: 1.55rem;
  }
  .container {
    padding-left: 7px;
    padding-right: 7px;
  }
  .content-wrapper, .testimonial-slider, .card-container, .content-grid, .service-list, .article-list, .species-list, .guide-list, .tip-list, .webinar-list, .feature-list, .benefit-list {
    flex-direction: column;
    gap: 18px !important;
  }
  .testimonial-card, .card, .article-card, .guide-card, .tip-card, .webinar-card, .feature-item {
    width: 100%;
    max-width: 100%;
    min-width: unset;
  }
  .feature-item {
    padding: 16px 12px 13px 12px;
  }
  header nav ul {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    position: absolute;
    right: 18px;
    top: 16px;
    z-index: 150;
  }
  header nav {
    padding-right: 60px;
    gap: 0;
  }
  .footer-info {
    flex-direction: column;
    gap: 10px;
    text-align: left;
  }
  .category-filters, .species-filters, .location-filters, .topic-filters {
    flex-wrap: wrap;
    gap: 10px;
  }
  .confirmation {
    padding: 21px 7px 13px 7px;
  }
  .cookie-modal-content {
    max-width: 98vw;
    padding: 23px 8vw 17px 6vw;
  }
}
@media (max-width: 500px) {
  .testimonial-card, .article-card, .guide-card, .feature-item, .tip-card, .webinar-card {
    padding: 14px 9px 11px 9px;
  }
  footer .container {
    gap: 16px;
  }
  .footer-info img {
    width: 38px;
    height: 38px;
  }
  .cookie-banner {
    padding: 16px 7px 14px 7px;
  }
}

/* ===============
   FLEXBOX ALIGNMENT
   =============== */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ========== END ========== */
