/* =========================
   CSS RESET & BASELINE
   ========================= */
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;
}
html {
  font-size: 100%; /*16px*/
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #182419;
  background-color: #f5f6fa;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: middle;
  border-radius: 10px;
}
a {
  color: #13365e;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #edaf22;
  outline: none;
}
ul, ol {
  padding-left: 1.5em;
  margin-bottom: 1.2em;
}
li {
  margin-bottom: 0.5em;
}
strong { font-weight: 700; }
em { font-style: italic; }
hr { border: none; border-top: 1px solid #dddbce; margin: 24px 0; }

/* ==============
   CUSTOM FONTS
   =============== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #243d25;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 16px; line-height: 1.15; }
h2 { font-size: 2rem; margin-bottom: 14px; }
h3 { font-size: 1.375rem; margin-bottom: 10px; }
h4 { font-size: 1.125rem; margin-bottom: 8px; }
h5 { font-size: 1rem; }
h6 { font-size: 0.9rem; }
p, ul, ol, blockquote {
  font-size: 1.07rem;
  margin-bottom: 16px;
}
blockquote {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
  color: #174927;
  background: #f1f4ee;
  border-left: 5px solid #83a974;
  padding: 20px 28px;
  border-radius: 0 10px 10px 0;
  margin-bottom: 10px;
}

/* ==================
   BRAND COLORS & VARS
   ================== */
:root {
  --color-primary: #13365e;
  --color-secondary: #f5f6fa;
  --color-accent: #edaf22;
  --color-green: #83a974;
  --color-earth: #bdaa81;
  --color-bark: #564b3d;
  --color-error: #e35c5c;
  --color-bg: #f5f6fa;
  --color-shadow: rgba(30,45,27,0.08);
}

/* ===============
   CONTAINER
   =============== */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 18px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

/* ===============
   SECTIONS & FLEXBOX LAYOUTS
   =============== */
.section, 
.about-company, .features, .services, .service-overview, .pricing-overview, .faq, .testimonials, .project-examples,
.team, .blog-intro, .blog-posts, .newsletter, .contact-info-section, .contact-faq, .privacy-policy, .gdpr-info, .cookie-policy, .terms-of-service, .thank-you-message {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 8px 28px var(--color-shadow);
  box-sizing: border-box;
}

@media (max-width: 900px) {
  .section,
  .about-company, .features, .services, .service-overview, .pricing-overview, .faq, .testimonials, .project-examples,
  .team, .blog-intro, .blog-posts, .newsletter, .contact-info-section, .contact-faq, .privacy-policy, .gdpr-info, .cookie-policy, .terms-of-service, .thank-you-message {
    padding: 28px 6px;
    margin-bottom: 38px;
    border-radius: 19px;
  }
}

/* ===============
   FLEXBOX PATTERNS
   =============== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #f8f7f5;
  border-radius: 18px;
  box-shadow: 0 3px 14px var(--color-shadow);
  transition: box-shadow .25s;
}
.card:hover {
  box-shadow: 0 6px 22px rgba(103,129,99,0.16);
}
.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: #f1f4ee;
  border-radius: 16px;
  box-shadow: 0 6px 18px var(--color-shadow);
  margin-bottom: 20px;
  transition: box-shadow .18s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 32px rgba(100,144,99,0.20);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

@media (max-width: 768px) {
  .text-image-section, .content-grid, .card-container, .features .feature-grid {
    flex-direction: column;
    gap: 22px !important;
  }
}

/* ===============
   HERO SECTION
   =============== */
.hero {
  background-color: #eaf7eb;
  border-radius: 0 0 36px 36px;
  box-shadow: 0 8px 32px var(--color-shadow);
  min-height: 320px;
  margin-bottom: 48px;
  padding: 56px 0 40px 0;
}
.hero h1 {
  color: #243d25;
  font-size: 2.8rem;
}
.hero .subheadline {
  font-size: 1.35rem;
  color: #4f644c;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 24px;
}
.hero .btn-primary {
  margin-top: 14px;
}

@media (max-width: 768px) {
  .hero { padding: 40px 0 28px 0; }
  .hero h1 { font-size: 2rem; }
}


/* ===============
   FEATURES GRID
   =============== */
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}

.feature {
  background: #f9faf7;
  border-radius: 18px;
  padding: 30px 18px 24px 18px;
  box-shadow: 0 4px 16px var(--color-shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 215px;
  min-width: 210px;
  max-width: 310px;
  transition: box-shadow .22s, transform .17s;
  margin-bottom: 0 !important;
  gap: 16px;
}
.feature img {
  height: 44px;
  width: 44px;
  border-radius: 8px;
  margin-bottom: 7px;
  background: #e6f3e5;
  padding: 6px;
  box-shadow: 0 2px 5px rgba(131,169,116,0.10);
}
.feature h3 { font-size: 1.11rem; color: #396d31; margin-bottom: 6px; }
.feature p { font-size: .99rem; color: #313a29; }
.feature:hover {
  box-shadow: 0 7px 28px rgba(131,169,116,0.17);
  transform: translateY(-2px) scale(1.025);
}

/* CTAs */
.cta {
  text-align: center;
  background: #eaf7eb;
  border-radius: 22px;
  padding: 40px 16px;
  margin-bottom: 36px;
  box-shadow: 0 5px 18px var(--color-shadow);
}
.cta h2 {
  margin-bottom: 14px;
}
.cta .btn-primary {
  margin-top: 14px;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #fdfbf6;
  padding: 18px 22px;
  border-radius: 12px;
  box-shadow: 0 2px 8px var(--color-shadow);
  margin-bottom: 0 !important;
}
.faq-item h3 { color: #396d31; font-size: 1.14rem; margin-bottom: 7px; }

/* PRICING TABLE */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 28px 0;
  background: #f3f8ee;
  border-radius: 10px;
  overflow: hidden;
  font-size: 1rem;
}
.pricing-table th,
.pricing-table td {
  padding: 14px 16px;
  text-align: left;
}
.pricing-table th {
  background: #d8e3cb;
  color: #243d25;
  font-weight: 600;
}
.pricing-table td {
  border-top: 1px solid #e4e7dd;
}

/* ===============
   TESTIMONIALS
   =============== */
.testimonial-card blockquote {
  background: none;
  border-left: 4px solid #83a974;
  margin: 0;
  padding: 0 0 0 16px;
  color: #243d25;
  font-size: 1.1rem;
  font-style: italic;
}
.testimonial-meta {
  font-family: 'Roboto', sans-serif;
  color: #556751;
  font-size: 1rem;
  letter-spacing: 0.01em;
  margin-left: 6px;
  margin-top: 0;
}


/* ===============
   BLOG LISTING & FILTER
   =============== */
.blog-categories-filter {
  font-size: 1rem;
  margin: 12px 0 22px;
  color: #243d25;
  gap: 8px;
}
.blog-categories-filter a {
  color: #396d31;
  padding: 2px 8px;
  border-radius: 7px;
  background: #eaf7eb;
  transition: background .17s, color .17s;
  margin: 0 2px;
}
.blog-categories-filter a:hover {
  background: #edaf22;
  color: #fff;
}
.blog-article-preview {
  background: #fbfaf8;
  border-radius: 14px;
  box-shadow: 0 2px 9px var(--color-shadow);
  padding: 20px 24px 15px 24px;
  margin-bottom: 22px;
  transition: box-shadow .17s, background .17s;
}
.blog-article-preview h3 { color: #243d25; font-size: 1.19rem; margin-bottom: 9px; }
.blog-article-preview p { color: #4f644c; font-size: 1rem; }
.blog-article-preview a {
  display: inline-block;
  margin-top: 10px;
  color: #edaf22;
  font-weight: 600;
  transition: color .16s;
}
.blog-article-preview:hover { background: #f6f9f2; box-shadow: 0 5px 23px rgba(103,129,99,0.13); }
.blog-article-preview a:hover { color: #13365e; }

/* ===============
   FOOTER
   =============== */
footer {
  background: #23311a;
  color: #d4e7be;
  padding: 0;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid #3f5430;
  padding: 52px 0 24px 0;
}
.footer-brand {
  flex: 2 1 240px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-brand img {
  width: 130px;
  border-radius: 9px;
}
.footer-contact h3 {
  font-size: 1.08rem;
  margin-bottom: 5px;
  color: #e4ebd7;
}
.footer-contact {
  flex: 2 1 230px;
}
.footer-contact ul {
  list-style: none;
  padding-left: 0;
}
.footer-contact li {
  color: #d4e7be;
  font-size: 0.97rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}
.footer-contact a {
  color: #b2cf93;
  text-decoration: underline;
  transition: color .17s;
}
.footer-contact a:hover {
  color: #edaf22;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 140px;
}
.footer-nav a {
  color: #edaf22;
  font-size: 0.97rem;
  transition: color .17s;
}
.footer-nav a:hover {
  color: #fff;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: flex-end;
}
.footer-social a img {
  height: 26px;
  width: 26px;
  filter: grayscale(0%) brightness(97%);
  transition: filter 0.17s;
  border-radius: 5px;
  background: #eaf7eb;
  padding: 2px;
}
.footer-social a:hover img {
  filter: grayscale(0%) brightness(113%);
  background: #edaf22;
}
.footer-bottom {
  text-align: center;
  padding: 18px 0 6px 0;
  font-size: 0.98rem;
  background: #223016;
}

@media (max-width: 900px) {
  .footer-top {
    flex-direction: column;
    gap: 18px;
    padding: 36px 0 12px 0;
  }
  .footer-contact, .footer-brand, .footer-nav, .footer-social {
    flex-basis: auto;
  }
}

/* ===============
   BUTTONS
   =============== */
.btn-primary, .btn-secondary {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.03rem;
  text-align: center;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  padding: 14px 32px;
  margin-bottom: 0;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 6px var(--color-shadow);
  transition: 
    background 0.19s,
    color 0.18s,
    box-shadow 0.18s,
    transform 0.19s;
}
.btn-primary {
  background: linear-gradient(118deg, #6b915c 0%, #296e28 100%);
  color: #fff;
  border: 1px solid #6c925c;
  box-shadow: 0 4px 20px rgba(41,110,40,0.09);
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(117deg, #edaf22 0%, #6b915c 100%);
  color: #13365e;
  transform: translateY(-2px) scale(1.033);
}
.btn-secondary {
  background: #edaf22;
  color: #13365e;
  border: 1px solid #edaf22;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #fff6df;
  color: #edaf22;
  border-color: #edaf22;
  box-shadow: 0 5px 13px rgba(237,175,34,.16);
  transform: translateY(-2px) scale(1.027);
}

/* Header Button */
header .btn-primary {
  margin-left: 18px;
  box-shadow: 0 1px 7px var(--color-shadow);
  font-size: 1rem;
  padding: 12px 25px;
  border-radius: 15px;
}

@media (max-width: 900px) {
  header .btn-primary {
    display: none;
  }
}

/* ================
   NAVIGATION BAR
   ================ */
header {
  background: #f5f6fa;
  box-shadow: 0 4px 20px var(--color-shadow);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 50;
  margin-bottom: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 20px;
}
header .container > a > img {
  height: 54px;
  width: auto;
  border-radius: 10px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 26px;
  font-size: 1rem;
  margin-left: 40px;
}
.main-nav a {
  color: #174927;
  padding: 6px 8px;
  border-radius: 9px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: color .17s, background .17s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #eaf7eb;
  color: #13365e;
}

/* HAMBURGER & MOBILE NAV */
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  background: #eaf7eb;
  border: none;
  color: #13365e;
  padding: 8px 15px;
  border-radius: 9px;
  cursor: pointer;
  margin-left: 18px;
  transition: background 0.18s, color 0.17s;
  z-index: 400;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #edaf22;
  color: #fff;
}
@media (max-width: 900px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(38,61,33,0.93);
  transform: translateX(105%);
  transition: transform 0.36s cubic-bezier(.86, .01, 0, 1);
  z-index: 495;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0%);
  pointer-events: all;
}
.mobile-menu-close {
  display: block;
  font-size: 2.4rem;
  background: none;
  border: none;
  color: #edaf22;
  padding: 18px 22px 6px 0;
  cursor: pointer;
  transition: color 0.18s;
  margin-right: 12px;
  margin-top: 14px;
  outline: none;
  z-index: 501;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 60px 32px 18px 36px;
  margin-top: 24px;
  width: 100vw;
  align-items: flex-start;
}
.mobile-nav a {
  color: #fffbe6;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.14rem;
  font-weight: 600;
  padding: 11px 20px;
  border-radius: 9px;
  background: none;
  transition: background .16s, color .14s;
  margin-right: 8px;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #edaf22;
  color: #13365e;
}

@media (max-width: 500px) {
  .mobile-nav {
    padding: 34px 0 18px 10px;
    gap: 12px;
  }
}

/* ===============
   COOKIE CONSENT BANNER
   =============== */
.cookie-consent-banner {
  position: fixed;
  z-index: 9999;
  bottom: 0; left: 0; right: 0;
  background: #eaf7eb;
  border-top: 2px solid #83a974;
  box-shadow: 0 -6px 40px rgba(50,70,49,0.13);
  padding: 26px 10px 21px 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  justify-content: center;
  font-size: 1rem;
  transition: transform 0.3s, opacity 0.3s;
  opacity: 1;
  transform: translateY(0%);
}
.cookie-consent-banner.hide {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-consent-banner .cookie-text {
  color: #243d25;
  font-size: 1rem;
  margin-right: 12px;
}
.cookie-consent-banner .cookie-btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  border: none;
  border-radius: 12px;
  padding: 9px 19px;
  margin-right: 9px;
  margin-top: 0;
  background: #edaf22;
  color: #13365e;
  box-shadow: 0 2px 6px var(--color-shadow);
  cursor: pointer;
  transition: background 0.13s, color 0.13s, transform .13s;
}
.cookie-consent-banner .cookie-btn:hover,
.cookie-consent-banner .cookie-btn:focus {
  background: #13365e;
  color: #fff;
  transform: translateY(-2px);
}
.cookie-consent-banner .cookie-btn.secondary {
  background: #eaf7eb;
  color: #13365e;
  border: 1.5px solid #83a974;
}
.cookie-consent-banner .cookie-btn.secondary:hover,
.cookie-consent-banner .cookie-btn.secondary:focus {
  background: #83a974;
  color: #fff;
}
@media (max-width: 700px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 6px !important;
  }
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  z-index: 10001;
  left: 0; top: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(18, 54, 94, 0.47);
  transition: opacity 0.28s;
  opacity: 1;
  pointer-events: all;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal .modal-dialog {
  background: #fff;
  padding: 38px 23px 28px 23px;
  border-radius: 22px;
  min-width: 320px;
  max-width: 98vw;
  box-shadow: 0 9px 33px var(--color-shadow);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 17px;
  position: relative;
}
.cookie-modal .modal-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.37rem;
  color: #243d25;
  margin-bottom: 9px;
  font-weight: 700;
}
.cookie-modal .modal-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.02rem;
  padding: 11px 0;
  border-bottom: 1px solid #f0f2e9;
}
.cookie-modal .modal-category:last-child {
  border-bottom: none;
}
.cookie-modal .category-label {
  color: #396d31;
  font-weight: 600;
}
.cookie-modal .category-desc {
  color: #4b5d39;
  font-size: 0.96rem;
}
.cookie-modal .toggle-switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 24px;
}
.cookie-modal .toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #eaf7eb;
  border-radius: 20px;
  transition: background .22s;
}
.cookie-modal .toggle-switch input:checked + .slider {
  background: #83a974;
}
.cookie-modal .slider:before {
  position: absolute;
  content: '';
  height: 19px;
  width: 19px;
  left: 3px; bottom: 2.5px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(58,88,41,0.09);
  transition: transform .22s;
}
.cookie-modal .toggle-switch input:checked + .slider:before {
  transform: translateX(17px);
}
.cookie-modal .modal-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 16px;
  justify-content: flex-end;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 12px; right: 15px;
  font-size: 1.55rem;
  background: none;
  border: none;
  color: #13365e;
  cursor: pointer;
  transition: color .19s;
}
.cookie-modal .modal-close:hover { color: #edaf22; }

/* ===============
   MISCELLANEOUS
   =============== */
.map-embed {
  width: 100%;
  background: #eaf7eb;
  padding: 14px 18px;
  border-radius: 11px;
  margin-bottom: 20px;
  color: #15471d;
  font-size: 0.97rem;
}

.contact-details {
  list-style: none;
  padding-left: 0;
  margin-bottom: 18px;
}
.contact-details li {
  font-size: 1.06rem;
  margin-bottom: 11px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #36351a;
}
.contact-details a {
  color: #13365e;
  text-decoration: underline;
  transition: color .14s;
}
.contact-details a:hover { color: #83a974; }

.project {
  background: #fdfbf6;
  border-left: 5px solid #edaf22;
  border-radius: 10px;
  padding: 20px 23px;
  box-shadow: 0 2px 8px var(--color-shadow);
  margin-bottom: 20px;
}
.project-results-highlights ul {
  color: #243d25;
  font-size: 1.05rem;
  margin-left: 0;
  padding-left: 1.5em;
  margin-bottom: 0;
}

.newsletter {
  background: #eaf7eb;
  border-radius: 17px;
  box-shadow: 0 1.5px 8px var(--color-shadow);
  text-align: center;
  padding: 40px 18px;
}
.newsletter h2 { margin-bottom: 11px; }

/* ===============
   RESPONSIVE
   =============== */
@media (max-width: 1250px) {
  .container { max-width: 95vw; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  h1 { font-size: 2.0rem !important; }
  h2 { font-size: 1.4rem !important; }
  .footer-top, .content-grid, .card-container {
    flex-direction: column;
    gap: 19px;
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  html { font-size: 14px; }
}

/* ===============
   MICRO-INTERACTIONS & TRANSITIONS
   =============== */
a, .btn-primary, .btn-secondary, .cookie-btn, .main-nav a, .footer-nav a {
  transition: color 0.18s, background 0.18s, box-shadow 0.18s, transform 0.15s;
}
.card, .feature, .testimonial-card, .faq-item, .blog-article-preview {
  transition: box-shadow 0.20s, background 0.15s, transform 0.15s;
}

/* ===============
   ORGANIC SHAPES & TEXTURES
   =============== */
.section, .card, .testimonial-card, .feature, .project, .faq-item, .blog-article-preview, .cta, .newsletter {
  border-radius: 19px 28px 16px 25px/26px 21px 23px 17px;
  background-image: url('data:image/svg+xml;utf8,<svg fill="none" xmlns="http://www.w3.org/2000/svg" width="280" height="38"><ellipse cx="140" cy="19" rx="140" ry="19" fill="%23f1f4ee" fill-opacity="0.13"/></svg>');
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 80% 24px;
}

/* ===============
   FORMS (newsletter etc.)
   =============== */
input[type="text"], input[type="email"], textarea {
  width: 100%;
  padding: 14px 13px;
  border-radius: 12px;
  border: 1.5px solid #bdaa81;
  background: #f5f6fa;
  font-size: 1rem;
  margin-bottom: 18px;
  transition: border .16s, background .13s;
}
input:focus, textarea:focus {
  border: 1.5px solid #83a974;
  outline: none;
  background: #eaf7eb;
}
label {
  font-size: 1rem;
  margin-bottom: 5px;
  color: #396d31;
}

/* ==============
   UTILITIES
   ============== */
.hide { display: none !important; }
.text-center { text-align: center !important; }
.bg-green { background: #eaf7eb !important; }
.bg-earth { background: #fdfbf6 !important; }
.lg-gap { gap: 38px !important; }
.md-gap { gap: 20px !important; }

/* ==============
   Z-INDEX (mobile menu, cookie, ...)
   ============== */
header,
.mobile-menu,
.cookie-consent-banner,
.cookie-modal {
  z-index: 9000+;
}
