/* --- CSS RESET & NORMALIZE --- */
* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #F8FBF5;
}
body {
  background-color: #F7FAF6;
  color: #214331;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: #235942;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus-visible {
  outline: 2px dashed #FFD166;
  outline-offset: 2px;
}
a:hover {
  color: #A4683B;
}
ul, ol {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  color: #214331;
  font-weight: 700;
  letter-spacing: 0.015em;
  line-height: 1.15;
  margin-bottom: 20px;
}
h1 {
  font-size: 2rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.125rem;
  margin-bottom: 14px;
}
p {
  color: #233D30;
  margin-bottom: 18px;
  font-size: 1rem;
}
strong {
  color: #214331;
  font-weight: 700;
}
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  margin: 0 auto;
  padding: 0;
}

/* --- FLEX LAYOUT KEY CLASSES --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(141,166,151,0.08);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: #F6FCEF;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(178,201,180,0.09);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 20px;
  min-width: 240px;
  flex: 1 1 300px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(110,168,152,0.11);
  transform: translateY(-2px) scale(1.019);
}
.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;
  background: #FFFDF8;
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(255,173,111,0.07);
  padding: 20px;
  margin-bottom: 20px;
  min-width: 260px;
}
.testimonials .testimonial-card {
  background: #F0F6EB;
  border: 1.5px solid #E1ECDB;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 24px;
}

/* --- HEADER --- */
header {
  background: #C9E7D1;
  box-shadow: 0 2px 12px rgba(50, 90, 66, 0.035);
  position: relative;
  z-index: 102;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 16px;
}
header img {
  height: 46px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #214331;
  padding: 6px 12px;
  border-radius: 12px;
  transition: background 0.22s, color 0.22s;
  position: relative;
}
.main-nav a.active, .main-nav a:hover {
  background: #E2FCEF;
  color: #206F4B;
}
.main-nav a.cta {
  background: #FFD166;
  color: #214331;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(215, 209, 136, 0.09);
  transition: background 0.22s, color 0.22s, box-shadow 0.18s;
}
.main-nav a.cta:hover {
  background: #FFE6A1;
  color: #1B4332;
  box-shadow: 0 4px 22px rgba(255,209,102,0.12);
}
.mobile-menu-toggle {
  background: #FFD166;
  color: #214331;
  font-size: 2rem;
  padding: 7px 17px 7px 13px;
  border-radius: 17px;
  border: 0;
  margin-left: 18px;
  cursor: pointer;
  align-items: center;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  z-index: 111;
  transition: box-shadow 0.15s;
  box-shadow: 0 2px 10px rgba(255,209,102,0.06);
}
.mobile-menu-toggle:hover {
  background: #FFF2C2;
}

/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(120deg, #E7F3F1 0%, #F5F7F3 70%);
  padding: 56px 0 44px 0;
  border-radius: 0 0 34px 34px;
  box-shadow: 0 3px 48px 4px rgba(177, 218, 178, .14);
  margin-bottom: 36px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 650px;
  gap: 14px;
}
.hero h1 {
  color: #234135;
  font-size: 2.25rem;
  margin-bottom: 12px;
  word-break: break-word;
}
.hero p {
  font-size: 1.14rem;
  color: #31724E;
}
.hero .cta {
  margin-top: 18px;
}
.team-photo {
  text-align: center;
  margin: 16px 0 0 0;
}
.team-photo img {
  max-width: 140px;
  border-radius: 60px;
  background: #F6F9FA;
  box-shadow: 0 8px 28px 0 rgba(205, 247, 208, 0.19);
  padding: 12px;
}

/* --- GENERAL BUTTONS & CTA --- */
.cta {
  background: #FFD166;
  color: #214331;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  border-radius: 18px;
  padding: 12px 32px;
  box-shadow: 0 4px 18px rgba(255,209,102,0.15);
  text-align: center;
  display: inline-block;
  margin-top: 4px;
  transition: background 0.22s, transform 0.16s, box-shadow 0.2s;
  outline: none;
  border: 0;
  cursor: pointer;
}
.cta:focus {
  outline: 2px dashed #214331;
  outline-offset: 3px;
}
.cta:hover, .cta:active {
  background: #FFE6A1;
  color: #234135;
  transform: translateY(-1.5px) scale(1.018);
  box-shadow: 0 8px 32px rgba(255,209,102,0.30);
}

/* --- ICONS IN LISTS --- */
ul li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 15px;
  padding-left: 0;
  color: #2A6247;
  font-size: 1rem;
}
ul li img {
  width: 24px;
  height: 24px;
  margin-right: 4px;
}

/* --- TESTIMONIALS --- */
.testimonials {
  background: #F0F6EB;
  border-radius: 24px;
  box-shadow: 0 2px 14px rgba(55,104,76,0.04);
  padding: 30px 20px;
  margin-bottom: 60px;
}
.testimonial-card .stars {
  color: #FFD166;
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  margin-bottom: 7px;
  display: block;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-card p {
  color: #183523;
  margin-bottom: 8px;
  font-size: 1.03rem;
}
.testimonial-card .customer {
  font-size: 0.95rem;
  color: #6C8D78;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 2px;
}

/* Guarantee contrast in testimonials */
.testimonial-card, .testimonials .testimonial-card {
  color: #1B2C19;
  background: #F7FAF6 !important;
  border: 1.5px solid #D3ECD4;
  box-shadow: 0 2px 16px rgba(120, 154, 111, 0.05);
}

/* --- CONTACT/LEGAL/CONFIRMATION SECTIONS --- */
.contact, .legal, .confirmation {
  background: #F8FBF5;
  border-radius: 24px;
  box-shadow: 0 2px 18px rgba(100,165,120,0.06);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.map-snippet {
  background: #E0FFF7;
  border-radius: 14px;
  padding: 16px 10px;
  margin-top: 17px;
  color: #214331;
  font-size: 1rem;
  box-shadow: 0 1px 6px rgba(120, 154, 111, 0.06);
}

/* --- FOOTER --- */
footer {
  background: #E8F5EA;
  border-top: 2px solid #C9E7D1;
  padding: 36px 0 18px 0;
  color: #214331;
  margin-top: auto;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}
footer .footer-nav,
footer .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
footer .footer-social {
  display: flex;
  align-items: center;
  gap: 13px;
}
footer .footer-social a {
  border-radius: 100%;
  background: #FFD166;
  padding: 8px;
  display: flex;
  align-items: center;
  transition: background 0.19s, filter 0.19s;
}
footer .footer-social a:hover {
  background: #FFE6A1;
  filter: brightness(1.04);
}
footer small {
  display: block;
  margin-top: 14px;
  width: 100%;
  color: #658171;
  text-align: left;
  font-size: 0.95rem;
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 310px;
  max-width: 99vw;
  height: 100vh;
  background: #F6FCFF;
  box-shadow: -8px 0 38px rgba(34, 100, 66, 0.13);
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.95,.05,.54,.97);
  display: flex;
  flex-direction: column;
  z-index: 9999;
  visibility: hidden;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu-close {
  background: #FFD166;
  color: #214331;
  font-size: 2.1rem;
  border-radius: 18px;
  border: none;
  position: absolute;
  top: 22px;
  right: 18px;
  z-index: 10002;
  width: 44px;
  height: 44px;
  cursor: pointer;
  box-shadow: 0 1px 8px rgba(255,209,102,0.08);
  transition: background 0.21s;
}
.mobile-menu-close:hover {
  background: #FFE6A1;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  margin-top: 66px;
  gap: 16px;
  padding: 0 26px;
  min-width: 210px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  color: #214331;
  padding: 13px 2px;
  border-radius: 11px;
  transition: background 0.18s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E0FFF7;
  color: #14583F;
}
.mobile-menu {
  overflow-y: auto;
}

/* --- HIDE DESKTOP NAV ON MOBILE --- */
@media (max-width: 900px) {
  .main-nav {
      display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
}
@media (min-width: 901px) {
  .mobile-menu-toggle {
    display: none !important;
  }
  .mobile-menu {
    display: none !important;
  }
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
  .container {
    padding: 0 7vw;
  }
}
@media (max-width: 900px) {
  .footer-nav nav, .footer-legal nav {
    gap: 13px;
  }
  .container {
    padding: 0 12px;
  }
}
@media (max-width: 768px) {
  .section, .testimonials, .contact, .legal, .confirmation {
    padding: 28px 9px;
    margin-bottom: 36px;
    border-radius: 16px;
  }
  .hero {
    padding: 36px 0 26px 0;
    border-radius: 0 0 18px 18px;
    min-height: unset;
  }
  .hero h1 {
    font-size: 1.35rem;
  }
  h2 {
    font-size: 1.17rem;
    margin-bottom: 13px;
  }
  .content-grid, .card-container {
    flex-direction: column !important;
    gap: 16px !important;
  }
  .testimonial-card {
    flex-direction: column;
    padding: 14px;
  }
  .text-image-section {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 18px;
  }
  footer .container {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.13rem;
  }
  .footer-nav nav, .footer-legal nav, .footer-social {
    gap: 9px;
  }
  .card {
    padding: 14px 8px;
  }
}

/* --- COOKIE CONSENT BANNER AND MODAL --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #FFFDF6;
  border-top: 2.5px solid #B9D6A3;
  box-shadow: 0 -2px 18px rgba(136,160,134,0.13);
  z-index: 11000;
  padding: 22px 18px 17px 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 17px;
  transition: transform 0.25s;
  font-size: 1rem;
}
.cookie-banner h3 {
  margin-bottom: 10px !important;
  font-size: 1.1rem;
  font-weight: 700;
}
.cookie-banner .cookie-btn {
  border: none;
  border-radius: 11px;
  padding: 8px 18px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-right: 7px;
  margin-top: 6px;
  font-weight: 600;
  cursor: pointer;
  min-width: 120px;
  margin-bottom: 6px;
  transition: background 0.21s, color 0.19s;
}
.cookie-banner .cookie-btn.accept {
  background: #FFD166;
  color: #214331;
}
.cookie-banner .cookie-btn.accept:hover {
  background: #FFE6A1;
  color: #192A1F;
}
.cookie-banner .cookie-btn.reject {
  background: #B9D6A3;
  color: #184029;
}
.cookie-banner .cookie-btn.reject:hover {
  background: #A0C39E;
}
.cookie-banner .cookie-btn.settings {
  background: #F0F6EB;
  color: #286049;
  border: 1px solid #B9D6A3;
}
.cookie-banner .cookie-btn.settings:hover {
  background: #EFF7CA;
}

/* Cookie modal overlay */
.cookie-modal-overlay {
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  background: rgba(30,56,44,0.18);
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.32s;
}
.cookie-modal-overlay.open {
  pointer-events: all;
  opacity: 1;
}
.cookie-modal {
  background: #F8FBF5;
  border-radius: 22px;
  box-shadow: 0 2px 24px rgba(50,119,74,0.11);
  padding: 36px 28px 30px 28px;
  max-width: 440px;
  min-width: 250px;
  font-size: 1rem;
  color: #184029;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal h2 {
  font-size: 1.15rem;
  margin-bottom: 7px;
}
.cookie-modal .cookie-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 2rem;
  border: none;
  background: #FFD166;
  color: #214331;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  box-shadow: 0 1px 10px rgba(255,209,102,0.07);
  cursor: pointer;
  transition: background 0.15s;
}
.cookie-modal .cookie-close:hover {
  background: #FFE6A1;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 4px;
}
.cookie-category {
  background: #F0F6EB;
  border-radius: 10px;
  padding: 10px 14px 10px 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
}
.cookie-category .toggle {
  appearance: none;
  width: 38px; height: 22px;
  background: #D5F5DE;
  border-radius: 14px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-category .toggle:checked {
  background: #73D38C;
}
.cookie-category .toggle:disabled {
  background: #B5D7BA;
  cursor: default;
}
.cookie-category .toggle::before {
  content: '';
  display: block;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 4px; top: 3px;
  box-shadow: 0 0.5px 5px rgba(41, 73, 52, 0.07);
  transition: left 0.18s;
}
.cookie-category .toggle:checked::before {
  left: 18px;
}
.cookie-category .toggle:disabled::before {
  background: #EFEFEF;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 13px;
  margin-top: 22px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  border: none;
  border-radius: 11px;
  padding: 8px 18px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.21s, color 0.17s;
}
.cookie-modal .cookie-btn.accept {
  background: #FFD166;
  color: #214331;
}
.cookie-modal .cookie-btn.accept:hover {
  background: #FFE6A1;
  color: #192A1F;
}
.cookie-modal .cookie-btn.reject {
  background: #B9D6A3;
  color: #184029;
}
.cookie-modal .cookie-btn.reject:hover {
  background: #A0C39E;
}
/* END COOKIE CONSENT */

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero, .section, .card, .testimonial-card, .contact, .legal, .confirmation, .footer-nav, .footer-legal, .footer-social {
  animation: fadeInUp 0.5s cubic-bezier(.33,.69,.62,1.01);
}

/* --- SCROLLBAR (Soft) --- */
::-webkit-scrollbar {
  width: 10px;
  background: #F6FCFF;
}
::-webkit-scrollbar-thumb {
  background: #E0FFF7;
  border-radius: 6px;
}

/* --- FORM ELEMENTS (for possible forms) --- */
input, textarea, select, button {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 11px;
  border: 1.2px solid #C9E7D1;
  background: #FAFDFC;
  padding: 8px 12px;
  margin-bottom: 16px;
  color: #214331;
  outline: none;
  transition: border 0.18s, box-shadow 0.16s;
  box-shadow: 0 1px 7px 0 rgba(185,214,163,0.06);
}
input:focus, textarea:focus, select:focus {
  border-color: #FFD166;
  box-shadow: 0 2px 12px rgba(255,209,102,0.13);
}

/* --- MISC --- */
hr {
  border: 0;
  border-top: 1.3px solid #B9D6A3;
  margin: 22px 0;
}

/* Make sure min spacing between cards and sections */
.section + .section,
.contact + .testimonials,
.testimonials + .contact {
  margin-top: 24px;
}
.card + .card,
.testimonial-card + .testimonial-card,
.feature-item + .feature-item {
  margin-top: 20px;
}

/* Z-index fixes for overlays */
.mobile-menu {
  z-index: 10020;
}
.cookie-banner {
  z-index: 12010;
}
.cookie-modal-overlay {
  z-index: 13000;
}

/* --- END --- */
