/* --- 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, 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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F1F7F3;
  color: #223126;
}
ol, ul {
  list-style: none;
}
a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  display: block;
}
*, *:before, *:after {
  box-sizing: inherit;
}
:root {
  --primary: #2A4A38;
  --secondary: #5A9277;
  --accent: #F1F7F3;
  --surface: #FFFFFF;
  --shadow: rgba(42,74,56,0.06);
}
/* --- TYPOGRAPHY --- */
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #223126;
  background: var(--accent);
}
h1, .hero h1 {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}
h2 {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
}
h3 {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 10px;
}
p, li, ul, span {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #223126;
}
p {
  margin-bottom: 16px;
}
a {
  color: var(--secondary);
  font-weight: 500;
}
a:hover, a:focus {
  color: var(--primary);
}
strong {
  color: var(--primary);
  font-weight: bold;
}
/* --- PRIMARY STRUCTURE --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--surface);
  border-radius: 18px;
  box-shadow: 0 2px 20px var(--shadow);
}

main > section {
  margin-bottom: 60px;
}

/* --- HERO --- */
.hero {
  width: 100%;
  background: linear-gradient(120deg, #F1F7F3 0%, #E9F3ED 100%);
  padding: 60px 0 40px 0;
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  min-height: 340px;
}
.hero .container {
  justify-content: center;
  align-items: center;
}
.hero .content-wrapper {
  text-align: center;
  align-items: center;
  gap: 24px;
}
.hero p {
  font-size: 1.2rem;
  color: var(--secondary);
}

/* --- NAVIGATION --- */
header {
  width: 100%;
  background: var(--surface);
  box-shadow: 0 1px 10px var(--shadow);
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  gap: 16px;
}
header img {
  height: 44px;
  max-width: 150px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 12px;
  color: var(--primary);
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--accent);
  color: var(--secondary);
}
.main-nav .cta-primary {
  background: var(--secondary);
  color: #fff;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 999px;
  transition: background 0.22s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px var(--shadow);
}
.main-nav .cta-primary:hover, .main-nav .cta-primary:focus {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 20px var(--shadow);
}
.mobile-menu-toggle {
  background: var(--secondary);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 2rem;
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  transition: background 0.2s;
  margin-left: 10px;
  cursor: pointer;
  z-index: 51;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--primary);
  background: var(--primary);
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(41,72,56, 0.96);
  color: #fff;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-110%);
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  padding-top: 40px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  margin-left: 20px;
  margin-bottom: 32px;
  cursor: pointer;
  align-self: flex-start;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  padding: 0 36px;
}
.mobile-nav a {
  font-size: 1.25rem;
  color: #fff;
  font-weight: 600;
  padding: 12px 4px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
  text-align: left;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: #fff;
}
@media (max-width: 1024px) {
  .main-nav {
    gap: 12px;
  }
}
@media (max-width: 920px) {
  .main-nav {
    gap: 7px;
  }
}
@media (max-width: 860px) {
  /* Show mobile menu toggle, hide nav */
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
/* --- SECTIONS & FLEX LAYOUTS --- */
.about .container, .section .container, .features .container, .services .container, .testimonials .container, .contact .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--surface);
  border-radius: 16px;
  box-shadow: 0 2px 10px var(--shadow);
  transition: box-shadow 0.2s, transform 0.17s;
  padding: 30px 20px;
  flex: 1 1 320px;
  min-width: 240px;
  z-index: 1;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 30px var(--shadow);
  transform: translateY(-4px) scale(1.02);
}
.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: 13px;
  margin-bottom: 20px;
  box-shadow: 0 1px 12px var(--shadow);
  min-width: 250px;
  max-width: 550px;
  color: #222;
  transition: box-shadow 0.18s, transform 0.13s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 20px #9eccbb1b;
  transform: scale(1.02);
}
.testimonial-card p {
  font-size: 1.1rem;
  color: #223126;
  margin-bottom: 0;
}
.testimonial-card span {
  color: var(--secondary);
  font-weight: 500;
  font-size: 0.98rem;
  margin-left: 7px;
}
.features ul, .services ul, .about ul, .contact ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: flex-start;
}
.features ul li, .services ul li, .about ul li, .contact ul li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--surface);
  border-radius: 12px;
  box-shadow: 0 1px 8px var(--shadow);
  padding: 20px 18px;
  flex: 1 1 220px;
  min-width: 190px;
  max-width: 350px;
  transition: box-shadow 0.18s, transform 0.11s;
}
.features ul li:hover, .services ul li:hover {
  box-shadow: 0 4px 16px #5a927719;
  transform: translateY(-2px) scale(1.01);
}
.features ul li img, .about ul li img, .contact ul li img {
  width: 37px;
  height: 37px;
  margin-bottom: 10px;
}
.contact ul {
  gap: 14px;
}
.contact ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  min-width: 0;
  max-width: 100%;
}
.info-text {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding: 0;
}
/* --- BUTTONS & CALL TO ACTIONS --- */
.cta-primary {
  display: inline-block;
  background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 95%);
  color: #fff;
  font-weight: 700;
  font-family: 'Open Sans', Arial, sans-serif;
  border: none;
  border-radius: 25px;
  font-size: 1.06rem;
  padding: 12px 32px;
  box-shadow: 0 2px 12px var(--shadow);
  cursor: pointer;
  outline: none;
  transition: background 0.23s, color 0.2s, transform 0.16s, box-shadow 0.18s;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(90deg, var(--primary) 10%, var(--secondary) 100%);
  color: #fff;
  box-shadow: 0 6px 22px #2a4a381c;
  transform: scale(1.03);
}
.btn {
  display: inline-block;
  background: var(--secondary);
  color: #fff;
  border-radius: 20px;
  border: none;
  padding: 10px 24px;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.18s, color 0.17s;
  cursor: pointer;
}
.btn:hover, .btn:focus {
  background: var(--primary);
}
/* --- FOOTER --- */
footer {
  width: 100%;
  background: var(--primary);
  color: #fff;
  padding: 36px 0 18px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: stretch;
}
.footer-main-nav, .footer-utility-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 8px;
}
.footer-main-nav a, .footer-utility-nav a {
  color: #fff;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  opacity: 0.94;
  transition: color 0.16s, opacity 0.18s;
}
.footer-main-nav a:hover, .footer-utility-nav a:hover {
  color: var(--secondary);
  opacity: 1;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 16px 0 12px 0;
}
.footer-social a img {
  display: block;
  width: 27px;
  height: 27px;
  border-radius: 7px;
  background: var(--surface);
  transition: box-shadow 0.18s, transform 0.13s;
}
.footer-social a:hover img, .footer-social a:focus img {
  box-shadow: 0 2px 12px #c7e2de77;
  transform: translateY(-4px) scale(1.12);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  opacity: 0.84;
  padding-top: 5px;
}
.footer-brand img {
  height: 25px;
  width: 25px;
}
/* --- COOKIE CONSENT BANNER --- */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  color: var(--primary);
  box-shadow: 0 -2px 16px #3e5c4d36;
  padding: 24px 18px 18px 18px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  animation: cookieBannerSlideIn 0.6s cubic-bezier(0.77,0,0.18,1);
}
@keyframes cookieBannerSlideIn {
  from { transform: translateY(120px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-consent-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 6px;
}
.cookie-consent-banner .cookie-btn {
  background: var(--secondary);
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 10px 23px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, color 0.2s, transform 0.17s;
}
.cookie-consent-banner .cookie-btn:hover, .cookie-consent-banner .cookie-btn:focus {
  background: var(--primary);
  color: #fff;
  transform: scale(1.04);
}
.cookie-consent-banner .cookie-settings-btn {
  background: #E9F3ED;
  color: var(--primary);
  border: 1px solid var(--secondary);
}
.cookie-consent-banner .cookie-settings-btn:hover {
  background: var(--secondary);
  color: #fff;
}
/* --- COOKIE MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(42, 74, 56, 0.68);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.22s linear;
}
@keyframes modalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  max-width: 420px;
  width: 92vw;
  box-shadow: 0 6px 38px #3e5c4ddb;
  padding: 32px 22px 22px 22px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modalPopIn 0.2s cubic-bezier(0.66,0,0.13,1);
}
@keyframes modalPopIn {
  from { transform: translateY(48px) scale(0.98); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.32rem;
  margin-bottom: 10px;
  color: var(--secondary);
  font-family: 'Roboto Slab', serif;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  gap: 14px;
}
.cookie-modal-category label {
  font-weight: 500;
  color: var(--primary);
  font-size: 1.07rem;
  flex: 1 1 220px;
}
.cookie-modal-category input[type=checkbox] {
  width: 24px;
  height: 24px;
}
.cookie-modal-category .cookie-essential {
  color: #b5b5b5;
  font-style: italic;
  margin-left: 8px;
}
.cookie-modal .modal-buttons {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}
.cookie-modal .cookie-btn {
  background: var(--secondary);
  color: #fff;
  border: none;
  border-radius: 15px;
  padding: 10px 20px;
  font-size: 1rem;
  transition: background 0.18s, color 0.18s;
  cursor: pointer;
}
.cookie-modal .cookie-btn:hover, .cookie-modal .cookie-btn:focus {
  background: var(--primary);
}
/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1020px) {
  .card-container, .content-grid, .features ul, .services ul {
    flex-direction: column;
    gap: 24px;
  }
  .card, .features ul li, .services ul li {
    min-width: 0;
    max-width: 100%;
  }
}
@media (max-width: 860px) {
  .footer-main-nav,
  .footer-utility-nav {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
  }
  .footer-social {
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
  .section, main > section {
    padding: 30px 7px;
  }
  .hero {
    padding: 40px 0;
    min-height: 200px;
  }
  .hero .content-wrapper {
    gap: 15px;
  }
  .features ul, .services ul, .about ul {
    gap: 14px;
    flex-direction: column;
  }
  .content-wrapper {
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 17px;
    align-items: flex-start;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 8px;
    max-width: 94vw;
    padding: 16px 7px;
  }
}
@media (max-width: 480px) {
  h1, .hero h1 {
    font-size: 1.7rem;
  }
  h2 {
    font-size: 1.22rem;
  }
  .cta-primary, .btn {
    font-size: 1rem;
    padding: 10px 16px;
  }
  header .container {
    padding: 8px 5px;
  }
  .footer-brand {
    font-size: 0.96rem;
  }
}
/* --- MICRO-INTERACTIONS --- */
.card, .testimonial-card, .features ul li, .services ul li, .cta-primary, .footer-social a img, .main-nav a {
  transition: box-shadow 0.18s, transform 0.13s, background 0.19s, color 0.18s;
}

/* --- UTILITIES --- */
.mt-2  { margin-top: 2px; }
.mt-12 { margin-top: 12px; }
.mb-32 { margin-bottom: 32px; }
.hidden { display: none !important; }

/************************************************************/
/********************** END OF CSS FILE **********************/
/************************************************************/