/* CSS RESET & NORMALIZE */
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 {
  box-sizing: border-box;
  font-size: 16px;
  height: 100%;
  background: #fff;
  scroll-behavior: smooth;
}
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  color: #192E2A;
  background: #fff;
  min-height: 100vh;
  font-weight: 400;
}
img { max-width: 100%; height: auto; display: block; }
ol, ul { list-style: none; }
a { text-decoration: none; color: inherit; }
button, input, select, textarea { font-family: inherit; font-size: 1rem; color: inherit; background: none; border: none; outline: none; }

/* BRAND COLORS & FONTS */
:root {
  --primary: #125C29;
  --primary-dark: #0b3c18;
  --secondary: #2F90D8;
  --secondary-light: #65c0ff;
  --accent: #E6F9E1;
  --text-dark: #152121;
  --text-light: #fff;
  --grey-bg: #F7FBF8;
  --grey: #CDE4D2;
  --card-bg: #fff;
  --card-shadow: 0 6px 24px rgba(46,90,50,0.11);
  --radius: 20px;
  --font-main: 'Roboto', Arial, sans-serif;
  --font-display: 'Montserrat', 'Roboto', Arial, sans-serif;
}

@font-face {
  font-family: 'Montserrat';
  font-weight: 700;
  font-display: swap;
  src: local('Montserrat Bold'), url('https://fonts.gstatic.com/s/montserrat/v26/JTURjIg1_i6t8kCHKm45_dJE3gnD-w.ttf') format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-weight: 900;
  font-display: swap;
  src: local('Montserrat Black'), url('https://fonts.gstatic.com/s/montserrat/v26/JTURjIg1_i6t8kCHKm45_ZpC3gnD-w.ttf') format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-weight: 400;
  font-display: swap;
  src: local('Roboto'), url('https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu4mxMKTU1Kg.ttf') format('truetype');
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--primary);
  letter-spacing: 0.02em;
  font-weight: 900;
  text-rendering: optimizeLegibility;
}
h1 { font-size: 2.75rem; line-height: 1.1; margin-bottom: 26px; }
h2 { font-size: 2rem; margin-bottom: 24px; font-weight: 800; }
h3 { font-size: 1.25rem; margin-bottom: 18px; font-weight: 700; }
h4 { font-size: 1.05rem; margin-bottom: 12px; font-weight: 700; }
h5,h6 { font-size: 1rem; font-weight: 700; }
p, ul, li { font-family: var(--font-main); color: var(--text-dark); font-size: 1rem; line-height: 1.7; }
strong { font-weight: 700; color: var(--primary); }

/* LAYOUT & SPACING */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--grey-bg);
  border-radius: var(--radius);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  padding: 28px 28px 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s cubic-bezier(.85,0,.2,1);
}
.card:hover {
  box-shadow: 0 12px 24px rgba(47, 144, 216, 0.14);
}
.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;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--card-shadow);
  margin-bottom: 20px;
  min-width: 220px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/***** HEADER & NAVIGATION *****/
header {
  background: #fff;
  border-bottom: 3px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 1100;
  width: 100%;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
  padding: 28px 0 22px 0;
}
.main-nav img {
  height: 52px;
  width: auto;
  margin-right: 10px;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  padding: 7px 12px;
  border-radius: 6px;
}
.main-nav a.cta.primary {
  background: var(--secondary);
  color: #fff;
  font-weight: 800;
  padding: 9px 22px;
  margin-left: 18px;
  border-radius: var(--radius);
  box-shadow: 0 4px 18px rgba(47,144,216,0.07);
  transition: background 0.18s;
}
.main-nav a.cta.primary:hover,
.main-nav a.cta.primary:focus {
  background: var(--primary);
  color: #fff;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--accent);
  color: var(--secondary);
}

/***** BURGER MENU *****/
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  color: var(--primary);
  background: #fff;
  border-radius: 10px;
  padding: 7px 16px 6px 16px;
  margin-right: 18px;
  border: 2px solid var(--accent);
  cursor: pointer;
  z-index: 1500;
  transition: background 0.2s, box-shadow 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover { background: var(--accent); box-shadow: 0 4px 14px #b5edbb33; }
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #fff;
  transform: translateX(-105%);
  transition: transform 0.38s cubic-bezier(.86,-0.12,.42,1.05);
  z-index: 1300;
  box-shadow: 0 8px 28px #2f90d817;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--accent);
  color: var(--primary);
  font-size: 2.3rem;
  border-radius: 12px;
  align-self: flex-end;
  margin: 24px 22px 0 0;
  padding: 5px 20px;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
  z-index: 1400;
}
.mobile-menu-close:hover, .mobile-menu-close:focus { background: var(--secondary); color:#fff; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  margin: 52px 0 0 40px;
}
.mobile-nav a {
  font-size: 1.18rem;
  font-family: var(--font-display);
  color: var(--primary-dark);
  font-weight: 800;
  transition: color 0.2s, background 0.2s;
  padding: 9px 16px;
  border-radius: 9px;
}
.mobile-nav a:hover {
  background: var(--secondary);
  color: #fff;
}

/****** HERO SECTION STYLES ******/
.hero, .blog-hero {
  background: linear-gradient(100deg, var(--accent) 50%, #fff 100%);
  padding: 70px 0 48px;
  border-radius: 0 0 60px 60px;
  box-shadow: 0 11px 32px #2f90d814;
  margin-bottom: 56px;
}
.hero h1, .blog-hero h1 {
  text-shadow: 0 4px 10px #b5edbb1c;
}
.hero .cta.primary, .blog-hero .cta.primary {
  margin-top: 25px;
}

/***** FEATURE SECTIONS *****/
.features, .feature-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 32px;
  align-items: flex-start;
}
.feature, .service {
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 350px;
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: 0 0 0.7rem #cee6d422;
  padding: 28px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow 0.22s, background 0.18s;
}
.feature img, .service img {
  height: 46px;
  width: 46px;
  margin-bottom: 3px;
}
.feature:hover, .service:hover {
  background: var(--secondary-light);
  box-shadow: 0 8px 24px #97defe44;
}

/***** BLOG LIST *****/
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.blog-post {
  padding: 24px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 7px solid var(--secondary);
  transition: box-shadow 0.15s, border-color 0.19s;
}
.blog-post:hover { border-left: 7px solid var(--primary); box-shadow: 0 8px 18px #2f90d815; }

/***** NEWSLETTER *****/
.newsletter-section {
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  padding: 28px 24px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}

/***** CATEGORY TAGS *****/
.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 10px 0 20px 0;
}
.tag {
  background: var(--secondary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 3px 15px;
  border-radius: 32px;
  letter-spacing: .04em;
}

/***** PROJECT SECTIONS *****/
.project-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.project-item {
  background: var(--accent);
  border-radius: var(--radius);
  padding: 22px;
  min-width: 220px;
  flex: 1 1 220px;
  box-shadow: 0 5px 18px #97deb011;
  margin-bottom: 18px;
}

/***** TRUST SIGNALS *****/
.trust-signals {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 12px;
}
.trust-signals img {
  height: 34px; width: 34px;
}
.trust-signals span {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--secondary);
}

/***** GENERAL LISTS *****/
ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 17px 0 0 14px;
  padding-left: 16px;
}
ul li {
  font-size: 1rem;
  position: relative;
  padding-left: 18px;
  color: var(--primary-dark);
}
ul li:before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 3px;
  margin-right: 13px;
  position: absolute;
  left: 0;
  top: 10px;
}

/***** CTA BUTTONS *****/
.cta.primary {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.15rem;
  color: #fff;
  background: var(--primary);
  border-radius: 100px;
  padding: 15px 36px;
  letter-spacing: 0.04em;
  margin-top: 16px;
  box-shadow: 0 6px 24px #67cf8e11;
  border: none;
  transition: background 0.17s, box-shadow 0.18s, transform 0.11s;
  cursor: pointer;
  outline: none;
}
.cta.primary:hover,
.cta.primary:focus {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 10px 28px #2f90d833;
  transform: translateY(-2px) scale(1.025);
}

/**** TESTIMONIALS ****/
.testimonials {
  margin: 70px 0 0 0;
}
.testimonials .testimonial-card {
  background: #fff;
  color: var(--primary-dark);
  border-left: 5px solid var(--secondary);
  box-shadow: 0 6px 24px #2f90d813;
  margin-bottom: 20px;
  align-items: flex-start;
  gap: 18px;
  min-width: 230px;
}
.testimonial-card p {
  color: var(--primary-dark);
  font-size: 1.1rem;
  font-family: var(--font-main);
  font-weight: 500;
  margin-bottom: 7px;
}
.testimonial-card span {
  font-family: var(--font-display);
  font-size: 0.98rem;
  color: var(--secondary);
  font-weight: 700;
  margin-top: 3px;
}
.testimonial-card:after {
  content: '';
  display: block;
  flex: 0 0 0;
}
.testimonial-card:hover { box-shadow: 0 12px 28px #2f90d818; border-left:6px solid var(--primary); transition: box-shadow 0.21s, border-color 0.19s; }

/***** MAP PLACEHOLDER *****/
.map-placeholder {
  background: var(--grey-bg);
  border-radius: var(--radius);
  padding: 28px 22px;
  margin-top: 24px;
  box-shadow: 0 5px 22px #2f90d807;
  font-size: 1.06rem;
}

/***** FOOTER *****/
footer {
  background: var(--primary);
  color: var(--text-light);
  margin-top: 60px;
  box-shadow: 0 -5px 28px #125c2913;
  position: relative;
  z-index: 3;
}
footer .container {
  padding: 0 20px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 44px 0 33px 0;
}
.footer-logo img {
  height: 54px;
  width: auto;
  margin-bottom: 5px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-menu a {
  color: var(--accent);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .03em;
  transition: color 0.15s;
}
.footer-menu a:hover { color: var(--secondary-light); }
.company-info {
  font-size: 0.98rem;
  color: var(--text-light);
  max-width: 340px;
  margin-top: 6px;
  font-family: var(--font-main);
  line-height: 1.75;
}
.company-info img {
  width: 15px; height: 15px; vertical-align: middle; margin-right: 6px;
}

/***** COOKIE CONSENT BANNER *****/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  border-top: 3px solid var(--primary);
  box-shadow: 0 -8px 40px #192e2a18;
  width: 100vw;
  min-height: 72px;
  padding: 26px 18px 18px 18px;
  z-index: 2200;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  font-size: 1.07rem;
  transition: transform 0.28s cubic-bezier(.64,.04,.32,1.17), opacity 0.19s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide { opacity: 0; pointer-events: none; transform: translateY(110%); }
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  margin-top: 9px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 40px;
  padding: 10px 20px;
  border: none;
  outline: none;
  transition: background 0.18s, color 0.17s, box-shadow 0.15s;
  cursor: pointer;
}
.cookie-banner .accept {
  background: var(--primary);
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus { background: var(--secondary); }
.cookie-banner .reject {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus { background: var(--secondary); color: #fff; border-color: var(--secondary); }
.cookie-banner .settings {
  background: var(--accent);
  color: var(--primary);
  border: 2px solid var(--primary);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus { background: var(--secondary-light); color: #fff; border-color: var(--secondary); }

/***** COOKIE SETTINGS MODAL *****/
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width:100vw; height:100vh;
  background: rgba(21,33,33,0.52);
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.19s;
}
.cookie-modal-overlay.hide { opacity: 0; pointer-events: none; }
.cookie-modal {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 8px 40px #2f90d82a;
  min-width: 320px;
  max-width: 440px;
  padding: 38px 30px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: modal-fadein 0.26s cubic-bezier(.36,.79,.49,1.3);
}
@keyframes modal-fadein { from { opacity: 0; transform: scale(0.95);} to { opacity:1; transform: scale(1);}}
.cookie-modal .close-modal {
  position: absolute;
  top: 15px; right: 19px;
  font-size: 2rem;
  color: var(--secondary);
  background: none;
  border: none;
  cursor: pointer;
  padding: 7px 11px;
  border-radius: 8px;
}
.cookie-modal .close-modal:hover { background: var(--accent); color:var(--primary); }
.cookie-modal h2 {
  font-size: 1.5rem;
  margin-bottom: 4px;
  color: var(--primary);
  font-weight: 800;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 9px 0 8px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
}
.cookie-category input[type=checkbox] {
  accent-color: var(--primary);
  width: 21px; height: 21px;
}
.cookie-category .essential {
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--primary);
}

/***** TEXT/CONTENT SECTIONS *****/
.text-section {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/***** RESPONSIVE DESIGN (Mobile-first) *****/
@media (max-width: 1150px) {
  .main-nav { gap: 22px; }
  .footer-menu { gap:7px; }
}
@media (max-width: 900px) {
  .main-nav { gap: 13px; font-size:0.98rem; padding: 16px 0 10px 0; }
  .footer-logo img { height:39px; }
  footer .content-wrapper { gap:28px; padding:28px 0 15px 0; }
  .container { max-width: 98%; }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    top: 19px;
    right: 20px;
    z-index: 1400;
  }
  .container {
    padding: 0 10px;
  }
  .content-wrapper {
    gap: 21px;
  }
  .feature-grid, .features, .service-list, .project-list {
    flex-direction: column;
    gap: 18px;
  }
  .blog-list {
    flex-direction: column;
    gap: 16px;
  }
  .testimonials, .testimonial-card { gap: 12px; }
  .section {
    padding: 24px 5px;
    margin-bottom: 35px;
  }
  .footer-menu {
    flex-direction: column;
    gap: 7px;
  }
  .company-info { margin-top: 13px; }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .map-placeholder {
    padding: 16px 10px;
    font-size: 1rem;
  }
}
@media (max-width: 500px) {
  .container, .content-wrapper { padding: 0 2px; gap: 15px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.25rem; }
  .main-nav, .footer-menu { font-size: 0.98rem; }
}

/****** UTILITY CLASSES ******/
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mb-32 { margin-bottom: 32px; }
.grid-2 { display: flex; flex-wrap: wrap; gap: 18px; }

/***** MICRO-INTERACTIONS *****/
a, button, .cta.primary, .main-nav a, .mobile-menu-toggle { transition: box-shadow 0.16s, background 0.15s, color 0.15s, border 0.13s, transform 0.13s; }
input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}
.card:active, .feature:active, .service:active, .testimonial-card:active {
  transform: scale(0.97);
}

/***** ACCENT GEOMETRIC SHAPES (decorative only) *****/
/* Use only for overlays/effects, never for content! */
.geometric-accent {
  position: absolute;
  width: 90px; height: 90px;
  background: var(--accent);
  border-radius: 19px;
  z-index: 1;
  opacity: 0.18;
  top:-40px; right:-40px;
  pointer-events:none;
}

/***** END OF STYLES *****/