/* ==== CSS RESET & NORMALIZATION ==== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html, body {
  width: 100%;
  height: 100%;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background: #F7F5E6;
  color: #2B5C3B;
  line-height: 1.6;
  min-height: 100vh;
  scroll-behavior: smooth;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #2B5C3B;
  text-decoration: none;
  transition: color .2s;
  font-weight: 600;
}
a:focus, a:hover {
  color: #7FB069;
}
ul, ol {
  list-style: none;
}
button {
  font-family: inherit;
  font-size: 16px;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
  transition: background .2s, color .2s;
}

/* ==== FONTS ==== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  color: #2B5C3B;
  margin-bottom: 18px;
  letter-spacing: -1px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  margin-top: 36px;
  margin-bottom: 24px;
}
h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 14px;
}
p, li {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
}
strong {
  font-weight: 700;
}

/* ==== BASIC LAYOUT ==== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

/* ==== HEADER/STICKY ==== */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 16px rgba(43, 92, 59, 0.06);
  position: sticky;
  top: 0;
  z-index: 60;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  gap: 16px;
}
.logo img {
  max-height: 40px;
}
nav.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
nav.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #2B5C3B;
  padding: 6px 12px;
  border-radius: 18px;
  transition: background 0.18s, color 0.18s;
}
nav.main-nav a:hover,
nav.main-nav a:focus {
  background: #7FB069;
  color: #fff;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: 1rem;
  color: #fff;
  background: #2B5C3B;
  border-radius: 32px;
  padding: 14px 32px;
  margin-left: 24px;
  margin-right: 0;
  box-shadow: 0 6px 28px rgba(43,92,59,0.16);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.18s, box-shadow 0.16s;
  border: 3px solid #7FB069;
}
.cta-btn:hover, .cta-btn:focus {
  background: #7FB069;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 32px rgba(43,92,59,0.20);
}

button.mobile-menu-toggle {
  display: none;
  position: relative;
  z-index: 101;
  color: #2B5C3B;
  background: #F7F5E6;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  border: 2px solid #2B5C3B;
}
button.mobile-menu-toggle:focus,
button.mobile-menu-toggle:hover {
  background: #7FB069;
  color: #fff;
  border-color: #7FB069;
}

/* ==== MOBILE BURGER MENU ==== */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(43,92,59, 0.97);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.85,.01,.25,.99);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 40px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.5rem;
  color: #fff;
  background: none;
  border: none;
  margin-right: 28px;
  margin-bottom: 18px;
  transition: color .2s;
}
.mobile-menu-close:hover {
  color: #7FB069;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  align-items: flex-start;
  padding: 18px 38px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  border-bottom: 2px solid transparent;
  padding-bottom: 8px;
  transition: border .18s, color .16s;
  margin-bottom: 4px;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: #F7F5E6;
  border-bottom: 2px solid #F7F5E6;
}

/* ========= HERO =========== */
.hero {
  background: #2B5C3B;
  color: #fff;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 12px 48px rgba(43,92,59,0.12);
  margin-bottom: 60px;
  padding: 68px 0 44px;
}
.hero h1, .hero h2 {
  color: #fff;
  font-size: 2.6rem;
  font-weight: 900;
}
.hero p {
  color: #F7F5E6;
  max-width: 540px;
  margin-bottom: 36px;
  font-size: 1.15rem;
}
.hero .cta-btn {
  margin-left: 0;
  background: #7FB069;
  border-color: #F7F5E6;
  color: #2B5C3B;
}
.hero .cta-btn:hover,
.hero .cta-btn:focus {
  background: #F7F5E6;
  color: #2B5C3B;
}

/* ===== GENERIC FLEX CONTAINERS ===== */
.features-grid,
.service-list,
.topics-list,
.project-statistics,
.testimonial-slider,
.testimonial-list,
.team-section ul,
.brand-info ul.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
  margin-bottom: 24px;
}
.features-grid > div,
.service-list > div,
.testimonial-card,
.topics-list ul > li,
.project-statistics ul > li {
  background: #fff;
  box-shadow: 0 4px 24px rgba(43,92,59,0.09);
  border-radius: 22px;
  padding: 28px 22px 24px 22px;
  flex: 1 1 220px;
  min-width: 230px;
  max-width: 310px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  border: 2px solid #F7F5E6;
  transition: border .16s, box-shadow .18s;
}
.features-grid > div:hover,
.service-list > div:hover {
  border: 2px solid #7FB069;
  box-shadow: 0 4px 32px rgba(127,176,105,0.25);
}
.features-grid img,
.service-list img {
  width: 42px;
  height: 42px;
  margin-bottom: 8px;
}
.service-list .service-price {
  color: #7FB069;
  font-weight: 900;
  font-size: 1.12rem;
  margin-top: 6px;
}

/* ===== FEATURED TEXT-IMAGE SECTIONS ===== */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* ===== TESTIMONIALS ===== */
.testimonial-slider,
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 22px;
  background: #F7F5E6;
  color: #222;
  border-radius: 22px;
  box-shadow: 0 2px 14px rgba(43,92,59,0.09);
  border: 2px solid #7FB069;
  min-width: 230px;
  position: relative;
  margin-bottom: 20px;
  font-size: 1.08rem;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.97rem;
  font-weight: 700;
  color: #2B5C3B;
  margin-top: 10px;
}
.testimonial-card .rating {
  color: #FFC93C;
  font-size: 1.3rem;
  letter-spacing: 2px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
}
.testimonial-card p {
  color: #222;
  font-size: 1.08rem;
  font-weight: 500;
}

/* ====== PROJECT STATISTICS AND TOPICS ======= */
.project-statistics ul,
.topics-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.project-statistics ul li,
.topics-list ul li {
  background: #fff;
  border: 2px solid #7FB069;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(43,92,59,0.07);
  padding: 22px 28px;
  min-width: 160px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.04rem;
  color: #2B5C3B;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.topics-list ul li img {
  width: 28px;
  height: 28px;
  margin-right: 10px;
}

/* ==== MAP AND EMBEDDED ==== */
.map-embed {
  margin-top: 18px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.map-embed p {
  font-size: 1rem;
  color: #2B5C3B;
  font-weight: 700;
}

/* ==== CONTACT INFO ==== */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 17px 0 8px 0;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #2B5C3B;
  font-weight: 500;
}
.contact-info img {
  width: 24px;
  height: 24px;
}

/* ==== TEAMS, LEGAL, ETC. ==== */
.team-section ul {
  gap: 12px;
  margin-top: 8px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #2B5C3B;
}
.founder-quote {
  font-size: 1.12rem;
  font-style: italic;
  color: #7FB069;
  margin: 16px 0;
}

/* ======= FOOTER ======= */
footer {
  background: #222;
  color: #F7F5E6;
  padding: 46px 0 20px 0;
  margin-top: 40px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 48px 32px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 20px 0 20px;
  margin-bottom: 16px;
}
.brand-info {
  flex: 3 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.brand-info img {
  height: 50px;
  width: auto;
}
.brand-info p {
  color: #F7F5E6;
  font-size: 1rem;
}
ul.social-links {
  display: flex;
  gap: 18px;
  margin-top: 8px;
}
ul.social-links li img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
  transition: opacity .18s;
}
ul.social-links li:hover img {
  opacity: 0.6;
}
.footer-links, .legal-links {
  flex: 2 1 220px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-links h3 {
  font-size: 1.15rem;
  color: #7FB069;
  font-weight: 900;
  margin-bottom: 0.6em;
}
.footer-links nav, .legal-links nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a, .legal-links a {
  color: #F7F5E6;
  font-size: 1rem;
  font-weight: 600;
  padding: 2px 0;
  transition: color .18s;
}
.footer-links a:hover, .legal-links a:hover {
  color: #7FB069;
}
footer small {
  color: #aaa;
  display: block;
  text-align: center;
  width: 100%;
  font-size: 0.97rem;
  margin-top: 18px;
  letter-spacing: .2px;
}

/* ===== COOKIES BANNER ===== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #2B5C3B;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 200;
  box-shadow: 0 -4px 32px rgba(43,92,59,.11);
  padding: 22px 10vw 22px 36px;
  font-size: 1.02rem;
  gap: 16px;
  transition: transform .26s cubic-bezier(.79,.09,.39,.99);
  transform: translateY(0);
}
.cookie-banner.hide {
  transform: translateY(140%);
}
.cookie-buttons {
  display: flex;
  gap: 18px;
}
.cookie-btn {
  border-radius: 24px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 12px 32px;
  border: 2px solid #F7F5E6;
  outline: none;
  background: #7FB069;
  color: #fff;
  transition: background 0.2s, color 0.15s, border .2s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #F7F5E6;
  color: #2B5C3B;
  border: 2px solid #7FB069;
}
.cookie-btn.reject {
  background: #F7F5E6;
  color: #2B5C3B;
  border: 2px solid #7FB069;
}
.cookie-btn.reject:hover {
  background: #2B5C3B;
  color: #F7F5E6;
}
.cookie-btn.settings {
  background: none;
  color: #F7F5E6;
  border: 2px solid #F7F5E6;
}
.cookie-btn.settings:hover {
  background: #2B5C3B;
  color: #7FB069;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(43,92,59,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 400;
  transition: opacity .18s;
}
.cookie-modal-overlay.show {
  display: flex;
}
.cookie-modal {
  background: #fff;
  color: #2B5C3B;
  border-radius: 24px;
  padding: 34px 38px 32px 38px;
  max-width: 440px;
  width: 95%;
  box-shadow: 0 8px 44px rgba(43,92,59,0.27);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.35rem;
  font-weight: 900;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin: 0 0 14px 0;
  color: #2B5C3B;
}
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.cookie-category label {
  font-weight: 700;
  margin-right: 10px;
}
.cookie-category input[type="checkbox"] {
  accent-color: #7FB069;
  width: 20px;
  height: 20px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 2rem;
  color: #2B5C3B;
  background: none;
  border: none;
  cursor: pointer;
  transition: color .15s;
}
.cookie-modal .cookie-modal-close:hover {
  color: #7FB069;
}
.cookie-modal-actions {
  display: flex;
  gap: 18px;
  margin-top: 12px;
}

/* ==== CARDS AND CARD SETS (for .card-container, .card, generic) ==== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(43,92,59,0.10);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px 20px;
  border: 2px solid #F7F5E6;
  transition: border .17s, box-shadow .18s;
}
.card:hover {
  border: 2px solid #7FB069;
  box-shadow: 0 4px 30px rgba(43,92,59,0.13);
}

/* ==== FEATURE ITEM ==== */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-item h3 {
  font-size: 1.18rem;
  color: #2B5C3B;
}
.feature-item p {
  font-size: 1rem;
  color: #555;
}

/* ==== SPACING AND LAYOUTS ==== */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* ==== SECTION STYLES ==== */
section:not(.hero) {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 2px 36px rgba(127,176,105,0.12);
  margin-bottom: 60px;
  padding: 36px 0;
}

/* ==== UL & OL LISTS ==== */
ul, ol {
  margin-left: 0;
  margin-bottom: 12px;
  padding-left: 24px;
}
li {
  margin-bottom: 10px;
  line-height: 1.7;
}

/* == Buttons, Inputs, Interactives == */
input, textarea, select {
  border-radius: 10px;
  border: 2px solid #7FB069;
  padding: 12px 14px;
  font-size: 1rem;
  margin-bottom: 16px;
  outline: none;
  width: 100%;
  max-width: 460px;
  background: #f8fbf2;
  color: #2B5C3B;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  transition: border-color 0.18s;
}
input:focus, textarea:focus, select:focus {
  border-color: #2B5C3B;
}

/* ====== ANIMATIONS & MICRO-INTERACTIONS ====== */
.cta-btn,
.card,
.features-grid > div,
.service-list > div {
  transition: box-shadow .23s, border .15s, transform .17s;
}
.cta-btn:active,
.card:active,
.features-grid > div:active,
.service-list > div:active {
  transform: scale(0.99);
}
.testimonial-card:hover {
  box-shadow: 0 6px 30px rgba(127,176,105,0.19);
  border: 2.5px solid #7FB069;
}

/* ===== RESPONSIVE DESIGN: MOBILE-FIRST ===== */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 100vw;
    padding: 0 10px;
  }
  .footer-links, .legal-links {
    flex-basis: 180px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  .cta-btn {
    padding: 12px 18px;
    font-size: 0.98rem;
  }
  .hero {
    padding: 36px 0 24px 0;
    border-radius: 0 0 20px 20px;
  }
  .section, section:not(.hero) {
    padding: 22px 0;
    border-radius: 16px;
  }
  .container {
    padding: 0 6vw;
  }
  nav.main-nav {
    display: none;
  }
  .cta-btn {
    margin-left: 0;
  }
  
  button.mobile-menu-toggle {
    display: flex;
  }
  .brand-info {
    flex: 1 1 100%;
    margin-bottom: 16px;
  }
  .footer-links, .legal-links {
    flex: 1 1 100%;
    margin-bottom: 10px;
  }
  .footer-links nav, .legal-links nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
  }
  .features-grid,
  .service-list,
  .testimonial-slider,
  .testimonial-list,
  .project-statistics ul,
  .topics-list ul,
  .contact-info {
    flex-direction: column;
    gap: 18px;
  }
  .features-grid > div,
  .service-list > div,
  .testimonial-card,
  .project-statistics ul li,
  .topics-list ul li,
  .card {
    min-width: 0;
    max-width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 18px;
    font-size: 0.97rem;
  }
}
@media (max-width: 540px) {
  .container { padding: 0 2vw; }
  .hero { padding: 22px 0 14px 0; }
  h1, h2 { font-size: 1.18rem; }
  .testimonial-card,
  .features-grid > div,
  .service-list > div {
    padding: 15px 8px;
  }
}

/* ==== ACCESSIBILITY/FOCUS VISIBLE ==== */
:focus {
  outline: 2px solid #7FB069 !important;
  outline-offset: 2px;
}

/* ==== Z-INDEX QUICK FIXES ==== */
header { z-index: 60; }
.mobile-menu { z-index: 100; }
.cookie-banner { z-index: 200; }
.cookie-modal-overlay { z-index: 400; }

/* ==== CUSTOM UTILITIES ==== */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-1 { margin-top: 6px !important; }
.mb-1 { margin-bottom: 6px !important; }

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