/* =================== RESET & NORMALIZE =================== */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background-color: #F8FAFC;
  color: #2E5D44;
  min-height: 100vh;
  line-height: 1.6;
  font-size: 1rem;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
  color: #2E5D44;
  font-weight: 700;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, ul, ol, li {
  font-size: 1rem;
  margin-bottom: 10px;
}
a {
  color: #2E5D44;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #175a39;
  text-decoration: underline;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
ul, ol {
  padding-left: 1.5em;
}

/* Flex container utility for the grid style */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

/* =================== LAYOUT & SECTIONS =================== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px 0 rgba(46, 93, 68, 0.06);
  position: relative;
}
.hero {
  background: linear-gradient(120deg, #A0CFC2 0%, #F8FAFC 100%);
  padding: 60px 0 40px 0;
  margin-bottom: 60px;
  border-radius: 0 0 28px 28px;
  box-shadow: 0 4px 16px 0 rgba(46, 93, 68, 0.08);
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 20px;
}
.hero h1,
.hero p {
  color: #2E5D44;
}

/* =================== HEADER =================== */
header {
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(46, 93, 68, 0.06);
  width: 100%;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
header nav {
  display: flex;
  gap: 28px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #2E5D44;
  position: relative;
  padding: 4px 6px;
  transition: color 0.18s;
}
header nav a:hover,
header nav a:focus {
  color: #A0CFC2;
}
header .btn {
  margin-left: 24px;
}

/* =================== BUTTONS =================== */
.btn, .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 12px;
  border: none;
  background: #A0CFC2;
  color: #2E5D44;
  box-shadow: 0 2px 8px 0 rgba(46,93,68,0.10);
  cursor: pointer;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s;
  margin: 8px 0 0 0;
  text-align: center;
  gap: 8px;
  letter-spacing: 0.03em;
  outline: none;
}
.btn-primary {
  background: #2E5D44;
  color: #fff;
  box-shadow: 0 4px 12px 0 rgba(46, 93, 68, 0.14);
}
.btn:hover,
.btn:focus {
  background: #2E5D44;
  color: #fff;
  box-shadow: 0 6px 12px 0 rgba(46,93,68,0.15);
}
.btn-primary:hover,
.btn-primary:focus {
  background: #A0CFC2;
  color: #2E5D44;
}

/* =================== FLEX GRIDS =================== */
/* Feature grid (used for 3-4 items in a row) */
.feature-grid,
.service-list,
.service-grid,
.inspiration-cards,
.article-list,
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid {
  margin-top: 20px;
  width: 100%;
}
.feature-grid > li,
.feature-grid > div {
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(46,93,68,0.07);
  border-radius: 16px;
  padding: 28px 18px;
  flex: 1 1 220px;
  min-width: 260px;
  max-width: 310px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border: 2.5px solid #A0CFC2;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, border-color 0.22s, transform 0.19s;
}
.feature-grid > li:hover,
.feature-grid > div:hover {
  box-shadow: 0 6px 20px 0 rgba(46,93,68,0.16);
  border-color: #2E5D44;
  transform: translateY(-6px) scale(1.02);
}
.service-list {
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.service-list > div {
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 280px;
  background: #F8FAFC;
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 rgba(46, 93, 68, 0.09);
  border: 2px solid #A0CFC2;
  padding: 24px 18px 16px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  position: relative;
  transition: box-shadow 0.16s, border-color 0.2s;
}
.service-list > div:hover {
  box-shadow: 0 8px 18px 0 rgba(46,93,68,0.14);
  border-color: #2E5D44;
}
.service-list .price {
  background: #A0CFC2;
  color: #2E5D44;
  padding: 4px 12px;
  border-radius: 8px;
  font-weight: 700;
  display: inline-block;
  margin-top: 8px;
  text-align: right;
  font-size: 1rem;
}
.service-grid {
  gap: 24px;
  flex-wrap: wrap;
}
.service-card {
  background: #fff;
  border: 2px solid #A0CFC2;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(46,93,68,.09);
  flex: 1 1 290px;
  min-width: 240px;
  max-width: 340px;
  padding: 28px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: border-color 0.2s, box-shadow 0.18s;
}
.service-card:hover {
  box-shadow: 0 8px 26px 0 rgba(46,93,68,0.13);
  border-color: #2E5D44;
}
.service-card .bottom-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 16px;
}
.service-card .price {
  font-size: 1.1rem;
  background: #A0CFC2;
  color: #2E5D44;
  border-radius: 6px;
  padding: 5px 12px;
  font-weight: 600;
}
.inspiration-cards > div {
  background: #fff;
  border: 2px solid #A0CFC2;
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 rgba(46,93,68,0.07);
  padding: 26px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  min-width: 220px;
  flex: 1 1 220px;
}
.tip-box {
  background: #A0CFC2;
  color: #2E5D44;
  border-left: 5px solid #2E5D44;
  padding: 10px 18px;
  border-radius: 7px;
  margin-top: 5px;
  font-weight: 600;
  font-size: .98rem;
}
.article-list {
  flex-direction: column;
  gap: 20px;
  list-style-type: none;
  margin-top: 24px;
}
.article-list li {
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(46,93,68,0.08);
  border: 2px solid #A0CFC2;
  padding: 22px 16px;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, border-color 0.19s;
}
.article-list li:hover {
  border-color: #2E5D44;
  box-shadow: 0 8px 16px 0 rgba(46,93,68,.15);
}
.process-steps {
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.process-steps > li {
  background: #F8FAFC;
  border-radius: 16px;
  border: 2px solid #A0CFC2;
  padding: 20px 14px;
  flex: 1 1 200px;
  min-width: 180px;
  max-width: 290px;
  box-shadow: 0 2px 8px 0 rgba(46,93,68,0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

/* =================== TESTIMONIALS =================== */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 20px;
  background: #F8FAFC;
  border: 2px solid #A0CFC2;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(46,93,68,0.08);
  font-size: 1.05rem;
  margin-bottom: 20px;
  position: relative;
}
.testimonial-card p {
  color: #204433;
  font-size: 1.04rem;
  margin-bottom: 8px;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #2E5D44;
  opacity: 0.8;
  font-size: 0.96rem;
  font-weight: 500;
}
.testimonial-meta span:last-child {
  color: #EDBA28; /* Star color for ratings */
  font-size: 1.13rem;
  font-weight: 700;
}

/* =================== MISCELLANEOUS LAYOUTS =================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border: 2px solid #A0CFC2;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(46,93,68,0.08);
  padding: 24px 18px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.card:hover {
  border-color: #2E5D44;
  box-shadow: 0 8px 16px 0 rgba(46,93,68,0.15);
}
.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;
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* =================== FORMS, SEARCH, FAQ =================== */
.search-bar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 16px 0 16px 0;
  width: 100%;
}
.search-bar input[type=search] {
  font-size: 1rem;
  padding: 10px 18px;
  border: 2px solid #A0CFC2;
  border-radius: 7px;
  outline: none;
  transition: border-color .19s;
  width: 100%;
}
.search-bar input[type=search]:focus {
  border-color: #2E5D44;
}
.categories {
  margin: 26px 0 0 0;
  font-size: 1.01rem;
  color: #407C60;
}
.faq-accordion > div {
  background: #fff;
  border-radius: 12px;
  border: 2px solid #A0CFC2;
  box-shadow: 0 2px 8px 0 rgba(46,93,68,.08);
  margin-bottom: 18px;
  padding: 12px 20px;
}
.faq-accordion h3 {
  font-size: 1.12rem;
  margin-bottom: 8px;
  cursor: pointer;
  position: relative;
  padding-right: 24px;
}
.faq-accordion h3::after {
  content: '\25BC';
  position: absolute;
  right: 0;
  top: 2px;
  font-size: 0.95em;
  color: #2E5D44;
  transition: transform 0.3s;
}
.faq-accordion .active h3::after {
  transform: rotate(180deg);
}
.faq-accordion > div > div {
  display: none;
  margin-top: 8px;
  color: #2E5D44;
  font-size: 0.98rem;
}
.faq-accordion .active > div {
  display: block;
}

.map-placeholder {
  background: #A0CFC2;
  color: #204433;
  border-left: 5px solid #2E5D44;
  border-radius: 12px;
  padding: 14px 18px;
  margin: 12px 0 16px 0;
  font-size: 1rem;
  font-weight: 500;
}

/* =================== FOOTER =================== */
footer {
  background: #2E5D44;
  color: #fff;
  padding: 38px 0 24px 0;
  margin-top: 60px;
  border-radius: 28px 28px 0 0;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}
footer nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.8;
  transition: color 0.21s, opacity 0.18s;
  padding: 3px;
}
footer nav a:hover,
footer nav a:focus {
  color: #A0CFC2;
  opacity: 1;
  text-decoration: underline;
}
footer .contact-info p, footer .contact-info a {
  color: #A0CFC2;
  font-size: 0.97rem;
  opacity: 0.98;
  letter-spacing: 0.01em;
  margin-bottom: 4px;
}
footer .social-media {
  display: flex;
  gap: 20px;
  align-items: center;
  margin: 8px 0 0 0;
}
footer .social-media a img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: filter 0.18s, opacity 0.18s;
}
footer .social-media a:hover img {
  filter: brightness(1) sepia(1) saturate(4) hue-rotate(115deg);
  opacity: 1;
}

/* =================== MOBILE MENU =================== */
.mobile-menu-toggle {
  position: fixed;
  top: 18px;
  right: 20px;
  width: 50px;
  height: 50px;
  z-index: 1090;
  background: #2E5D44;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.22s, box-shadow 0.2s;
  box-shadow: 0 2px 10px 0 rgba(46, 93, 68, 0.14);
  cursor: pointer;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #A0CFC2;
  color: #2E5D44;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #2E5D44;
  box-shadow: 2px 0 18px 3px rgba(0,0,0,.14);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  z-index: 1999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2rem;
  margin: 18px 18px 0 18px;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 2001;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: #A0CFC2;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  margin: 30px 0 0 36px;
  width: 80%;
  gap: 28px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 0;
  padding: 13px 10px 9px 10px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #2E5D44;
  background: #A0CFC2;
}
/* Show only on mobile */
@media (min-width: 1025px) {
  .mobile-menu-toggle,
  .mobile-menu {
    display: none !important;
  }
}

/* =================== COOKIE CONSENT BANNER =================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #2E5D44;
  color: #fff;
  z-index: 2050;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 18px 16px 16px 16px;
  box-shadow: 0 -2px 16px 0 rgba(46,93,68,0.17);
  gap: 20px;
  font-size: 1rem;
  transition: transform 0.3s;
  transform: translateY(0);
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-left: 22px;
}
.cookie-banner .cookie-btn {
  padding: 8px 20px;
  border-radius: 7px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.16s, color 0.18s;
}
.cookie-banner .cookie-accept {
  background: #A0CFC2;
  color: #2E5D44;
  border: 2.5px solid #A0CFC2;
}
.cookie-banner .cookie-accept:hover,
.cookie-banner .cookie-accept:focus {
  background: #fff;
  color: #2E5D44;
  border-color: #2E5D44;
}
.cookie-banner .cookie-reject {
  background: #fff;
  color: #2E5D44;
  border: 2.5px solid #A0CFC2;
}
.cookie-banner .cookie-reject:hover,
.cookie-banner .cookie-reject:focus {
  background: #A0CFC2;
  color: #2E5D44;
  border-color: #2E5D44;
}
.cookie-banner .cookie-settings {
  background: transparent;
  color: #A0CFC2;
  border: 2.5px solid #A0CFC2;
}
.cookie-banner .cookie-settings:hover, 
.cookie-banner .cookie-settings:focus {
  background: #A0CFC2;
  color: #2E5D44;
}

/* Cookie modal popup */
.cookie-modal-overlay {
  position: fixed;
  z-index: 2100;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(46, 93, 68, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.2s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px 0 rgba(46,93,68,0.11);
  padding: 38px 30px 30px 30px;
  min-width: 300px;
  max-width: 420px;
  color: #2E5D44;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modalSlideIn 0.32s cubic-bezier(.77,0,.18,1);
}
@keyframes modalSlideIn {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  margin-bottom: 6px;
}
.cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
}
.cookie-toggle {
  appearance: none;
  width: 38px;
  height: 22px;
  background: #A0CFC2;
  border-radius: 12px;
  position: relative;
  outline: none;
  transition: background 0.2s;
  cursor: pointer;
  border: none;
}
.cookie-toggle:checked {
  background: #2E5D44;
}
.cookie-toggle:before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 10px;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: left 0.2s;
  box-shadow: 0 1px 4px 0 rgba(0,0,0,0.11);
}
.cookie-toggle:checked:before {
  left: 18px;
}
.cookie-toggle[disabled],
.cookie-toggle:disabled {
  background: #dedede;
  cursor: not-allowed;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #2E5D44;
  cursor: pointer;
  padding: 4px;
  z-index: 1;
}
.cookie-close:focus, .cookie-close:hover {
  color: #A0CFC2;
}

/* =================== RESPONSIVE DESIGN =================== */
@media (max-width: 1100px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .feature-grid > li,
  .feature-grid > div,
  .service-list > div,
  .service-card,
  .inspiration-cards > div {
    min-width: 180px;
    max-width: 100%;
  }
}
@media (max-width: 900px) {
  .feature-grid,
  .service-list,
  .service-grid,
  .inspiration-cards {
    gap: 20px;
  }
  footer .container {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .container {
    padding-left: 7px;
    padding-right: 7px;
  }
  .section, .hero {
    padding: 28px 7px;
  }
  .hero {
    padding-top: 38px;
    padding-bottom: 28px;
  }
  header .btn {
    margin-left: 8px;
    padding: 10px 18px;
    font-size: 0.98rem;
  }
  header nav {
    gap: 12px;
  }
  /* Burger menu visible on mobile */
  .mobile-menu-toggle {
    display: flex !important;
  }
  header .container {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }
  header nav,
  header .btn {
    display: none;
  }
  .feature-grid,
  .service-list,
  .service-grid,
  .inspiration-cards {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid > li,
  .feature-grid > div,
  .service-list > div,
  .service-card,
  .inspiration-cards > div {
    flex: 1 1 100%;
    min-width: 0;
    max-width: 100%;
    margin-bottom: 16px;
  }
  .testimonial-card {
    align-items: flex-start;
    gap: 14px;
    padding: 18px 10px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 14px;
  }
  .process-steps {
    flex-direction: column;
    gap: 16px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 8px;
    font-size: 0.97rem;
    gap: 13px;
  }
  .cookie-banner .cookie-buttons {
    margin-left: 0;
    gap: 7px;
    flex-wrap: wrap;
  }
}
@media (max-width: 540px) {
  html {
    font-size: 14px;
  }
  .section,
  .hero {
    padding: 17px 2px;
    margin-bottom: 40px;
  }
  .footer {
    padding: 24px 0 16px 0;
  }
}

/* =================== GEOMETRIC STRUCTURED VISUALS =================== */
/* Angular card corners, shadow emphasis, geometric shapes */
.card, .feature-grid > li, .feature-grid > div, .service-list > div, .service-card, .testimonial-card, .inspiration-cards > div {
  border-radius: 16px 32px 16px 32px;
  border-width: 2.5px;
  box-shadow: 0 2.5px 12px 0 rgba(46,93,68,0.09);
}
footer, .hero {
  border-radius: 0 0 32px 32px;
}
.tip-box, .map-placeholder {
  border-radius: 10px 20px 10px 20px;
  border-width: 3px;
}
.btn, .btn-primary {
  border-radius: 9px 18px 9px 18px;
}

/* Decorative geometric shape (for further dev: position: absolute; z-index/-1) */
/* Example only, should be used as a ::before/::after on sections for theme consistency */
.section::before {
  content: '';
  display: block;
  position: absolute;
  top: -25px;
  left: -25px;
  width: 56px;
  height: 56px;
  background: #A0CFC2;
  opacity:0.12;
  border-radius: 32% 68% 28% 72% / 64% 28% 72% 36%;
  z-index: 0;
  pointer-events: none;
}
.section::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -30px;
  right: -35px;
  width: 40px;
  height: 40px;
  background: #2E5D44;
  opacity: 0.09;
  border-radius: 22% 78% 78% 22% / 22% 22% 78% 78%;
  z-index: 0;
  pointer-events: none;
}

/* Ensure these don't disrupt content for .hero and .testimonial-card */
.hero::before, .hero::after, .testimonial-card::before, .testimonial-card::after {
  display: none;
}

/* =================== GENERAL INTERACTIONS & ANIMATIONS =================== */
.card, .feature-grid > li, .feature-grid > div, .service-list > div, .service-card, .testimonial-card, .inspiration-cards > div {
  transition: box-shadow 0.18s, border-color 0.15s, transform 0.21s;
}
.card:hover, .feature-grid > li:hover, .feature-grid > div:hover, .service-list > div:hover, .service-card:hover, .testimonial-card:hover, .inspiration-cards > div:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 6px 20px 0 rgba(46,93,68,0.18);
  border-color: #2E5D44;
}

.btn, .btn-primary, .cookie-btn {
  transition: background 0.15s, color 0.15s, box-shadow 0.15s, border 0.15s, transform 0.13s;
}
.btn:active, .btn-primary:active, .cookie-btn:active {
  transform: scale(0.96);
}

/* =================== UTILITIES =================== */
.d-none {
  display: none !important;
}

/* =================== PRINT =================== */
@media print {
  .mobile-menu,
  .mobile-menu-toggle,
  .cookie-banner,
  .cookie-modal-overlay {
    display: none !important;
  }
  header, footer {
    box-shadow: none;
    background: none;
  }
  .section, .card, .service-card, .testimonial-card {
    box-shadow: none !important;
  }
}