/* === CSS RESET & BASE STYLES === */
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.5;
  background: #181e22;
  color: #F3F5F0;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.02em;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: #85A53A;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #c4ec76;
  outline: none;
}
ol, ul {
  list-style: none;
}
strong {
  font-weight: 700;
}

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

h1,h2,h3,h4 {
  font-family: 'Montserrat', Arial, 'Segoe UI', sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #F3F5F0;
}
h1 { font-size: 2.25rem; margin-bottom: 20px; }
h2 { font-size: 1.75rem; margin-bottom: 18px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }
h4 { font-size: 1.125rem; margin-bottom: 8px; color: #85A53A; font-weight: 700; }

p,li {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #E0E3DC;
  margin-bottom: 12px;
}
p:last-child,li:last-child{margin-bottom:0;}

/* === COLORS (BRAND & AESTHETIC) === */
:root {
  --primary: #245239;
  --secondary: #4A7812;
  --accent: #85A53A;
  --background: #181e22;
  --card-bg: #23282e;
  --section-bg: #181e22;
  --testimonial-bg: #F3F5F0;
  --border-metal: #737c87;
  --text-main: #F3F5F0;
  --text-contrast: #23282e;
}

/* === UTILITY CONTAINERS & SPACING PATTERNS === */
.container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--section-bg);
}
.content-wrapper {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  background: var(--card-bg);
  border: 1px solid var(--border-metal);
  box-shadow: 0 6px 18px 0 rgba(20,24,27,0.21);
  border-radius: 12px;
  margin-bottom: 20px;
  position: relative;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 28px 24px;
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 rgba(52, 61, 70, 0.14);
  background: var(--testimonial-bg);
  color: var(--text-contrast);
  margin-bottom: 28px;
  min-width: 0;
}
.testimonial-card p,
.testimonial-card strong {
  color: var(--text-contrast) !important;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Extra util for repeat elements */
.section > * + * { margin-top: 20px; }

/* === HEADER & NAVIGATION === */
header {
  background: #20272c;
  border-bottom: 2px solid var(--border-metal);
  box-shadow: 0 4px 16px 0 rgba(34, 39, 45, 0.09);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
header img {
  max-height: 48px;
  margin-right: 20px;
}
nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
nav a {
  color: var(--text-main);
  font-family: 'Montserrat', Arial, 'Segoe UI', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
nav a:hover,
nav a:focus {
  background: var(--accent);
  color: #23282e !important;
}
nav .cta {
  background: var(--accent);
  color: #23282e !important;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: 10px;
  margin-left: 8px;
  box-shadow: 0 2px 8px 0 rgba(133,165,58,0.10);
  letter-spacing: 0.03em;
  transition: transform 0.15s, background 0.24s;
  border: 1px solid #618327;
}
nav .cta:hover, nav .cta:focus {
  background: #bddd5b;
  color: #23282e !important;
  transform: translateY(-3px) scale(1.04);
}

.mobile-menu-toggle {
  background: none;
  color: var(--accent);
  border: none;
  font-size: 2.1rem;
  cursor: pointer;
  margin-left: 24px;
  display: none;
  z-index: 101;
}

/* === MOBILE NAVIGATION === */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34, 39, 45, 0.98);
  z-index: 2003;
  transform: translateX(-105%);
  transition: transform 0.32s cubic-bezier(.87,0,.13,1);
  display: flex;
  flex-direction: column;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: var(--accent);
  border: none;
  font-size: 2.2rem;
  cursor: pointer;
  align-self: flex-end;
  margin: 24px 24px 0 0;
  z-index: 2004;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #F3F5F0;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 28px;
  gap: 28px;
  flex: 1 1 auto;
}
.mobile-nav a {
  color: var(--text-main);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  padding: 12px 28px;
  border-radius: 7px;
  transition: background 0.18s, color 0.2s, transform 0.14s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--accent);
  color: #23282e !important;
  transform: scale(1.04);
}

/* === HERO SECTION === */
.hero {
  background: linear-gradient(135deg, rgba(36,82,57,0.99) 0%, rgba(24,30,34,0.96) 100%);
  padding-top: 52px;
  padding-bottom: 52px;
  border-bottom: 2px solid var(--border-metal);
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 24px;
}
.hero h1 {
  color: var(--accent);
  font-size: 2.7rem;
  margin-bottom: 10px;
  font-weight: 900;
}
.hero p {
  font-size: 1.13rem;
  color: #E0E3DC;
}
.hero .cta {
  margin-top: 18px;
  align-self: flex-start;
}

/* === FEATURES GRID & CARDS === */
.features, .services-preview, .services, .benefits {
  background: #1f2328;
}
.feature-grid, .benefit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 36px;
  justify-content: flex-start;
}
.feature-grid > div, .benefit-grid > div {
  background: var(--card-bg);
  border: 1.5px solid var(--border-metal);
  border-radius: 13px;
  box-shadow: 0 3px 14px 0 rgba(24,30,34,0.15);
  padding: 28px 22px;
  min-width: 220px;
  flex: 1 1 265px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  transition: box-shadow 0.23s, transform 0.17s;
}
.feature-grid > div:hover, .benefit-grid > div:hover {
  box-shadow: 0 7px 32px 0 rgba(133,165,58,0.25), 0 3px 14px 0 rgba(24,30,34,0.18);
  transform: translateY(-4px) scale(1.03);
  border-color: var(--accent);
}
.feature-grid img, .benefit-grid img {
  height: 40px;
  width: 40px;
  margin-bottom: 4px;
}
.feature-grid h3, .benefit-grid h3 {
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 700;
}
.feature-grid p, .benefit-grid p {
  color: #CFD7C9;
  font-size: 0.98rem;
}

/* === TESTIMONIALS === */
.stars {
  display: flex;
  flex-direction: row;
  gap: 4px;
  margin-bottom: 8px;
}
.stars img {
  width: 22px;
  height: 22px;
  filter: drop-shadow(0 0 2.5px #85A53A55);
}

.testimonials .testimonial-card,
.customer-success-stories .testimonial-card,
.project-highlights .testimonial-card,
.benefits .testimonial-card {
  background: var(--testimonial-bg);
  color: var(--text-contrast);
  border: 1px solid var(--border-metal);
  box-shadow: 0 3px 18px 0 rgba(26,32,34,0.12);
}
.testimonial-card p {
  color: var(--text-contrast);
}
.testimonial-card strong {
  color: var(--secondary);
  font-weight: 700;
}

/* === PRICING TABLE === */
.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  justify-content: start;
}
.pricing-table > div {
  background: var(--card-bg);
  border: 1.5px solid var(--border-metal);
  border-radius: 12px;
  box-shadow: 0 5px 18px 0 rgba(36,82,57,0.14);
  padding: 30px 22px;
  min-width: 220px;
  flex: 1 1 265px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  transition: box-shadow 0.2s, border-color 0.21s, transform 0.16s;
}
.pricing-table > div:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 38px 0 rgba(133,165,58,0.24);
  transform: translateY(-5px) scale(1.04);
}
.pricing-table h2 {
  margin-bottom: 7px;
  color: var(--accent);
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.pricing-table ul {
  color: #caddb3;
  padding: 0;
  font-size: 1rem;
  list-style: disc inside;
}
.pricing-table li {
  margin-bottom: 8px;
}

/* === FAQ === */
.faq-list, .project-summaries, .article-summaries, .case-studies-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 24px;
}
.faq-list > div, .project-summaries > div, .article-summaries > div, .case-studies-list > div {
  background: var(--card-bg);
  border: 1px solid var(--border-metal);
  border-radius: 9px;
  box-shadow: 0 2px 14px 0 rgba(35,40,46,0.11);
  padding: 20px 17px;
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-list h3, .project-summaries h3, .article-summaries h4, .case-studies-list h3 {
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
}

/* === CTA BUTTONS / LINKS === */
.cta {
  background: var(--accent);
  color: #23282e !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: .02em;
  padding: 12px 32px;
  border-radius: 14px;
  border: 1.5px solid #85A53A;
  box-shadow: 0 2px 8px 0 rgba(133,165,58,0.12);
  transition: transform 0.15s, background 0.24s, box-shadow 0.19s;
  display: inline-block;
  cursor: pointer;
  margin-top: 6px;
  text-align: center;
}
.cta:hover, .cta:focus {
  background: #bddd5b;
  color: #23282e !important;
  box-shadow: 0 6px 20px 0 rgba(133,165,58,0.22);
  transform: scale(1.05);
}

/* === BLOG & ARTICLE TAGS === */
.article-category, .category-tags a{
  background: var(--accent);
  color: #252e23;
  border-radius: 8px;
  padding: 4px 13px;
  margin-right: 8px;
  font-size: 0.94rem;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  display: inline-block;
  margin-bottom: 7px;
}
.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}
.category-tags a {
  background: var(--card-bg);
  color: var(--accent) !important;
  border: 1px solid var(--accent);
  transition: background 0.13s, color 0.19s;
  font-size: 0.97rem;
}
.category-tags a:focus, .category-tags a:hover {
  background: var(--accent);
  color: #23282e !important;
}

/* === ADDRESS & CONTACT BLOCKS === */
.address-block {
  background: var(--card-bg);
  border: 1px solid var(--border-metal);
  border-radius: 11px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.address-block p, .address-block a {
  color: #caddb3;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 9px;
}
.address-block img{
  width: 21px;
  height: 21px;
  opacity: 0.8;
}
.contact-form-info {
  background: var(--section-bg);
  border-left: 3px solid var(--accent);
  padding: 13px 18px;
  border-radius: 8px;
  color: #b2c899;
}

/* === MAP SECTION === */
.map-section {
  background: var(--card-bg);
  border-radius: 13px;
}
.embedded-map-code {
  background: #20272c;
  border-radius: 8px;
  padding: 10px 16px;
  color: #F3F5F0;
  font-size: 0.95rem;
}
.public-transport-information {
  margin-top: 8px;
  color: #AABAA1;
  font-size: .97rem;
}

/* === TIMELINES, OVERVIEW === */
.timeline-overview {
  background: var(--card-bg);
  border-left: 3px solid var(--accent);
  padding: 15px 18px;
  border-radius: 8px;
  margin: 19px 0 9px 0;
  color: #CFD7C9;
  font-size: 1.02rem;
}
.before-after-summaries {
  background: var(--card-bg);
  padding: 12px 17px;
  border-radius: 9px;
  font-size: .97rem;
  color: #b2c899;
}

/* === FOOTER === */
footer {
  background: #181e22;
  border-top: 2.5px solid var(--border-metal);
  padding: 32px 0 26px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
footer nav {
  gap: 16px;
  margin-bottom: 14px;
}
footer nav a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 4px 8px;
  border-radius: 5px;
  transition: background 0.18s, color 0.18s;
}
footer nav a:hover, footer nav a:focus {
  background: var(--accent);
  color: #23282e !important;
}
.footer-info {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  font-size: 0.98rem;
  color: #839279;
  margin-top: 8px;
}
.footer-info a {
  color: #a6ce57;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-info img {
  width: 18px;
  height: 18px;
}

/* ============= COOKIE CONSENT BANNER ============= */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #353a3d;
  color: #F3F5F0;
  width: 100vw;
  padding: 20px 16px 18px 16px;
  box-shadow: 0 -7px 24px rgba(36,82,57,0.19);
  z-index: 9000;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
  animation: slideUpBanner 0.44s cubic-bezier(.81,.01,.11,.94);
}
@keyframes slideUpBanner {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  flex: 1 1 350px;
  font-size: 1rem;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-banner button {
  border: none;
  border-radius: 8px;
  background: var(--accent);
  color: #23282e;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 9px 18px;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, transform 0.12s;
  margin-right: 0;
  margin-bottom: 0;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #bddd5b;
  color: #23282e;
  transform: translateY(-2px) scale(1.04);
}
.cookie-banner .cookie-secondary {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  font-weight: 600;
}
.cookie-banner .cookie-secondary:hover,
.cookie-banner .cookie-secondary:focus {
  background: var(--accent);
  color: #23282e;
}

/* === COOKIE MODAL (PREFERENCES) === */
.cookie-modal-backdrop {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(36,82,57,0.55);
  z-index: 9900;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModalBg 0.33s ease;
}
@keyframes fadeInModalBg {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #20272c;
  color: #F3F5F0;
  border-radius: 16px;
  padding: 36px 28px 24px 28px;
  min-width: 290px;
  max-width: 96vw;
  width: 370px;
  box-shadow: 0 8px 48px 0 rgba(32,39,44,0.26);
  z-index: 9901;
  animation: slideDownModal 0.33s cubic-bezier(.62,0,.25,1.06);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@keyframes slideDownModal {
  from { transform: translateY(-55px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  color: var(--accent);
  font-size: 1.13rem;
}
.cookie-toggle-group {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 16px;
}
.cookie-toggle-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
}
.cookie-toggle-item label {
  color: #caddb3;
  font-size: 0.98rem;
  font-weight: 500;
  flex: 1 1 auto;
}
.cookie-toggle-switch {
  width: 38px;
  height: 22px;
  border-radius: 12px;
  background: #353a3d;
  border: 1.5px solid #85A53A;
  position: relative;
  transition: background 0.18s;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.cookie-toggle-switch input {
  display: none;
}
.cookie-toggle-switch span {
  display: block;
  width: 18px;
  height: 18px;
  background: #85A53A;
  border-radius: 50%;
  position: absolute;
  left: 2px;
  top: 1.5px;
  transition: transform 0.21s;
}
.cookie-toggle-switch input:checked + span {
  transform: translateX(16px);
  background: #bddd5b;
}
.cookie-modal-footer {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 12px;
}
.cookie-modal-footer button {
  min-width: 88px;
}

/* ==== RESPONSIVE DESIGN (Mobile-first) === */
@media (max-width: 1075px) {
  .container {
    max-width: 97vw;
  }
}
@media (max-width: 900px) {
  .feature-grid,
  .benefit-grid,
  .pricing-table,
  .project-summaries,
  .faq-list,
  .article-summaries,
  .case-studies-list {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  section,
  .section {
    padding: 28px 8px;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1.08rem; }
  .content-wrapper {
    padding: 0;
    max-width: 97vw;
    gap: 13px;
  }
  .feature-grid,
  .benefit-grid,
  .pricing-table,
  .project-summaries,
  .case-studies-list {
    flex-direction: column;
    gap: 12px;
  }
  .feature-grid > div,
  .benefit-grid > div,
  .pricing-table > div,
  .project-summaries > div,
  .faq-list > div,
  .case-studies-list > div {
    min-width: 0;
    width: 100%;
    padding: 18px 11px;
  }
  .testimonial-card {
    padding: 18px 11px;
    border-radius: 10px;
  }
  header .container {
    flex-direction: row;
    gap: 12px;
  }
  nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .footer-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 13px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 17px;
    padding: 16px 4px 13px 4px;
    font-size: 0.97rem;
  }
}

@media (max-width: 498px) {
  html, body { font-size: 15px; }
  .container { padding-left: 4px; padding-right: 4px; }
  h1 { font-size: 1.18rem; }
  h2 { font-size: 1.02rem; }
  .cookie-modal, .cookie-banner { font-size: 0.97rem; padding-left: 6px; padding-right: 6px; }
  .feature-grid > div, .benefit-grid > div {
    padding-left: 7px; padding-right: 7px;
  }
}

/* === FOCUS STATES FOR ACCESSIBILITY === */
.cta:focus, button:focus, .mobile-menu-close:focus, .mobile-menu-toggle:focus, nav a:focus, .mobile-nav a:focus {
  box-shadow: 0 0 0 3px #bddd5b99;
  outline: none;
  z-index: 3;
}

/* === MICRO-INTERACTIONS === */
button, .cta, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.16s, color 0.13s, transform 0.13s, box-shadow 0.19s;
}

/**************************/
/*  END OF STYLE.CS  */
/**************************/
