/* CSS RESET & BASE STYLES */
html,body,div,span,applet,object,iframe,
h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,address,code,img,ins,kbd,q,samp,small,strong,sub,sup,u,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,input,button,figure,figcaption {margin:0;padding:0;border:0;outline:0;font-size:100%;font:inherit;vertical-align:baseline;box-sizing:border-box;}

html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }

body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #26334F;
  background: #fff;
  font-size: 16px;
  line-height: 1.5;
  background-color: #F7F5EF;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img {max-width:100%;display:block;}
a {color: inherit; text-decoration: none; transition: color 0.2s;}
a:focus, a:active { outline: 2px solid #A5C437; outline-offset: 2px; }

ul,ol { list-style: none; }
strong { font-weight: 600; }

h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #26334F;
  margin-bottom: 16px;
  line-height: 1.18;
  letter-spacing: -0.5px;
}
h1 { font-size: 2.4rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.4rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; }
@media (min-width:640px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2.2rem; }
  h3 { font-size: 1.6rem; }
}


/* LAYOUT */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
main {
  flex: 1 0 auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.content-wrapper {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(38,51,79,0.07), 0 0.5px 2.5px rgba(38,51,79,0.04);
  padding: 32px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  max-width: 650px;
}
@media (max-width: 768px) {
  .content-wrapper { padding: 18px 8px; }
  .section { padding: 24px 8px; }
}

/* FLEX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(38,51,79,0.08);
  padding: 24px 20px;
  flex: 1 1 260px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: 0 6px 22px rgba(38,51,79,0.13); transform: translateY(-2px); }

.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;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 16px; }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1.5px 10px rgba(38,51,79,0.08);
  margin-bottom: 28px;
  min-width: 0;
  position: relative;
  border: 1px solid #f1f2f3;
  transition: box-shadow 0.25s, border-color 0.22s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 18px rgba(38,51,79,0.10);
  border-color: #A5C437;
}
.testimonial-card p {
  color: #26334F;
  font-size: 1.1rem;
  line-height: 1.5;
}
.testimonial-card span {
  font-size: 1rem;
  color: #757575;
}
.star-rating { display: flex; gap: 3px; margin-top: 4px; }
.star-rating img { width: 22px; height: 22px; filter: grayscale(0); }

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 8px rgba(38,51,79,0.05);
  padding: 16px 14px;
  margin-bottom: 20px;
}

/* FEATURE GRID & SERVICE LISTS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid li {
  flex: 1 1 225px;
  min-width: 205px;
  padding: 20px 14px 16px 14px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1.5px 8px rgba(38,51,79,0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 12px;
  font-size: 1.04rem;
  border: 1px solid #f0f1f2;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.feature-grid li img {
  height: 34px; width: 34px; margin-bottom: 6px;
}
.feature-grid li span {
  color: #757575;
  font-size: 0.97rem;
  margin-top: 4px;
}
.feature-grid li:hover {
  border-color: #A5C437;
  box-shadow: 0 4px 14px rgba(38,51,79,0.09);
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 30px;
}
.service-list li {
  flex: 1 1 320px;
  min-width: 240px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 9px rgba(38,51,79,0.06);
  padding: 20px 14px 17px 20px;
  margin-bottom: 20px;
  color: #26334F;
  font-size: 1rem;
  border: 1px solid #f4f5f7;
  transition: box-shadow 0.2s, border-color 0.18s;
}
.service-list li strong {
  font-weight: bold;
  color: #26334F;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
}
.service-list li span {
  color: #757575;
  font-size: 0.97rem;
}
.service-list li:hover {
  box-shadow: 0 5px 18px rgba(38,51,79,0.10);
  border-color: #A5C437;
}

.project-highlights-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 30px;
}
.project-highlights-list li {
  flex: 1 1 340px;
  min-width: 220px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 9px rgba(38,51,79,0.06);
  padding: 20px 14px 17px 20px;
  margin-bottom: 20px;
  color: #26334F;
  font-size: 1rem;
  border: 1px solid #f4f5f7;
  transition: box-shadow 0.2s, border-color 0.18s;
}
.project-highlights-list li strong {
  font-weight: bold;
  color: #26334F;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
}
.project-highlights-list li span {
  color: #757575;
  font-size: 0.97rem;
}
.project-highlights-list li:hover {
  box-shadow: 0 5px 18px rgba(38,51,79,0.10);
  border-color: #A5C437;
}

/* FAQ ACCORDION */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #fff;
  border-radius: 9px;
  box-shadow: 0 1px 8px rgba(38,51,79,0.06);
  padding: 18px 18px 12px 18px;
  border: 1px solid #f0f1f2;
  transition: box-shadow 0.18s, border-color 0.24s;
}
.faq-item h3 {
  margin-bottom: 8px;
  font-size: 1.16rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #26334F;
  font-weight: 600;
  cursor: pointer;
}
.faq-answer {
  font-size: 1.01rem;
  color: #4d5770;
  padding-left: 2px;
  margin-bottom: 0;
}
.faq-item:focus-within, .faq-item:hover {
  box-shadow: 0 4px 16px rgba(165,196,55,0.07);
  border-color: #A5C437;
}

/* BUTTONS / CALL-TO-ACTIONS */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 32px;
  border-radius: 30px;
  background: #A5C437;
  color: #26334F;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 6px rgba(165,196,55,0.13);
  margin-top: 12px;
  margin-bottom: 12px;
  transition: background 0.18s, color 0.15s, box-shadow 0.17s, border 0.1s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #26334F;
  color: #fff;
  box-shadow: 0 3px 20px rgba(38,51,79,0.12);
}

button {
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background 0.14s, color 0.12s;
}

/* HEADER / NAVIGATION */
header {
  background: #fff;
  border-bottom: 1px solid #ececec;
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 99;
  min-height: 62px;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 11px;
  padding-bottom: 11px;
  position: relative;
}
header nav {
  display: flex;
  gap: 18px;
  margin-left: 36px;
  flex-wrap: wrap;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #26334F;
  opacity: 0.88;
  padding: 4px 10px;
  border-radius: 7px;
  transition: background 0.14s, color 0.14s, opacity 0.2s;
}
header nav a:hover, header nav a.active {
  background: #A5C4372b;
  color: #A5C437;
  opacity: 1;
}

/* Hide nav and cta-btn on mobile, show burger */
.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: #A5C437;
  color: #26334F;
  font-size: 2.3rem;
  border-radius: 50%;
  border: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  margin-right: 0;
  cursor: pointer;
  transition: background 0.17s, color 0.14s, box-shadow 0.15s;
  box-shadow: 0 1px 8px rgba(165,196,55,0.11);
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #26334F;
  color: #fff;
}

@media (max-width: 900px) {
  header nav, header .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 550px) {
  header .container { padding-top: 5px; padding-bottom: 5px; }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(38,51,79,0.98);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.44,0.12,0.18,1.0);
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.6rem;
  align-self: flex-end;
  margin: 22px 18px 12px 0;
  cursor: pointer;
  transition: color 0.16s;
  z-index: 2010;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #A5C437;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  margin: 30px 0 0 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.28rem;
  font-weight: 500;
  color: #fff;
  padding: 9px 18px 9px 8px;
  border-radius: 8px;
  margin-bottom: 2px;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: #A5C437;
  color: #26334F;
}
@media (max-width: 470px) {
  .mobile-nav { margin-left: 15px; }
  .mobile-nav a { font-size: 1.13rem; padding: 9px 8px; }
}

/* FOOTER */
footer {
  background: #fff;
  border-top: 1px solid #ececec;
  padding: 0;
  flex-shrink: 0;
}
.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 8px;
  padding: 32px 0 12px 0;
}
.footer-wrapper > a {
  flex: 0 0 auto;
}
.footer-wrapper > div, .footer-wrapper nav {
  min-width: 163px;
}
footer h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 9px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #26334F;
}
footer ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
footer ul li {
  font-size: 1rem;
  color: #26334F;
  opacity: 0.92;
  display: flex;
  align-items: center;
  gap: 8px;
}
footer ul li img { width: 18px; height: 18px; }
.footer-wrapper nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-wrapper nav a {
  color: #26334F;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  opacity: 0.85;
  border-radius: 5px;
  padding: 2px 6px;
  transition: background 0.13s, color 0.14s, opacity 0.13s;
}
.footer-wrapper nav a:hover {
  background: #A5C4372c;
  color: #A5C437;
  opacity: 1;
}
.social-links {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: 15px;
}
.social-links a img { filter: grayscale(1) brightness(0.7); transition: filter 0.17s; }
.social-links a:hover img { filter: grayscale(0) brightness(1.1); }
.footer-bottom {
  width:100%;
  text-align: left;
  color: #aaa;
  font-size: 0.95rem;
  padding: 7px 0 18px 0;
  border-top: 1px solid #ececec;
}

@media (max-width: 1020px) {
  .footer-wrapper { gap: 28px; }
}
@media (max-width: 740px) {
  .footer-wrapper {
    flex-direction: column;
    gap: 32px;
    padding: 16px 0 5px 0;
  }
}

/* LIST STYLES */
ul li::marker, ol li::marker { display: none; }
ul li, ol li {
  margin-left: 0;
  margin-bottom: 4px;
}
ul li strong, ol li strong { color: #A5C437; }

/* FORMS (if any) */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border: 1px solid #dde1e6;
  border-radius: 7px;
  padding: 10px 12px;
  box-shadow: none;
  background: #fff;
  margin-bottom: 20px;
  width: 100%;
  transition: border 0.13s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #A5C437;
  outline: none;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #26334F;
  color: #fff;
  z-index: 3000;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  padding: 24px 18px 22px 18px;
  box-shadow: 0 -6px 32px 0 rgba(38,51,79,0.18);
  transition: transform 0.37s cubic-bezier(0.68,-0.2,0.32,1.2), opacity 0.36s;
  transform: translateY(0);
  font-size: 1.12rem;
}
.cookie-banner.closed {
  transform: translateY(140%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-message {
  flex: 1 1 380px;
  min-width: 0;
}
.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 28px;
  border: none;
  cursor: pointer;
  padding: 10px 22px;
  margin: 2px 0;
  transition: background 0.16s, color 0.16s, box-shadow 0.16s;
  background: #A5C437;
  color: #26334F;
  box-shadow: 0 1px 7px rgba(165,196,55,0.15);
}
.cookie-btn.cookie-settings {
  background: #fff; color: #26334F;
  border: 1.2px solid #A5C437;
  box-shadow: none;
}
.cookie-btn:focus, .cookie-btn:hover {
  background: #fff;
  color: #26334F;
  box-shadow: 0 2px 12px rgba(38,51,79,0.17);
}
.cookie-btn.cookie-settings:hover, .cookie-btn.cookie-settings:focus {
  background: #A5C437; color: #fff;}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    font-size: 1rem;
    padding: 22px 8px 20px 8px;
  }
  .cookie-banner-actions { gap: 7px; }
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(38,51,79,0.46);
  display: flex;
  align-items: center; justify-content: center;
  z-index: 4010;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 40px rgba(38,51,79,0.15);
  max-width: 450px;
  width: 94vw;
  padding: 38px 30px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  animation: cookieModalIn 0.32s cubic-bezier(0.52,0.15,0.32,1.1);
}
@keyframes cookieModalIn { from { transform: translateY(60px); opacity: 0;} to { transform: translateY(0); opacity: 1;} }

.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 10px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #26334F;
  cursor: pointer;
  padding: 5px;
  transition: color 0.15s;
  z-index: 1;
}
.cookie-modal-close:hover, .cookie-modal-close:focus { color: #A5C437; }
.cookie-modal h3 {
  font-size: 1.22rem;
  color: #26334F;
  margin-bottom: 4px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0 15px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
  background: #F7F5EF;
  border-radius: 8px;
  padding: 10px 10px 11px 16px;
  font-size: 1.03rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #26334F;
}
.cookie-category input[type=checkbox] {
  accent-color: #A5C437;
  pointer-events: auto;
}
.cookie-category.essential {
  opacity: 0.82;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 15px;
  flex-wrap: wrap;
}

@media (max-width: 440px) {
  .cookie-modal {
    padding: 17px 8px 18px 8px;
    max-width: 100vw;
    font-size: 0.98rem;
  }
}

/* ANIMATIONS/MICRO-INTERACTIONS */
.cta-btn, .cookie-btn, button {
  transition: background 0.15s, color 0.14s, box-shadow 0.14s, border 0.14s, transform 0.13s;
}
.cta-btn:active, .cookie-btn:active, button:active { transform: scale(0.97); }

/* UTILITIES */
.gap-8 { gap: 8px !important; }
.gap-12 { gap: 12px !important; }
.mt-20 { margin-top: 20px !important; }
.mb-20 { margin-bottom: 20px !important; }
@media (max-width: 700px) {
  .mb-20 { margin-bottom: 12px !important; }
}

/* RESPONSIVE OVERALL */
@media (max-width: 930px) {
  .feature-grid, .service-list, .project-highlights-list {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid li, .service-list li, .project-highlights-list li {
    min-width: 0;
    width: 100%;
    flex: 1 1 100%;
  }
}
@media (max-width: 700px) {
  .feature-grid, .service-list, .project-highlights-list, .card-container, .content-grid {
    gap: 12px;
  }
  .content-wrapper { gap: 16px; }
}

@media (max-width: 450px) {
  h1 { font-size: 1.38rem; }
  h2 { font-size: 1.13rem; }
}

/* MINIMALIST VISUAL ACCENTS */
hr {
  border: none;
  border-top: 1px solid #ececec;
  margin: 20px 0;
}

::-webkit-input-placeholder { color: #9ca3af; font-size:0.98rem; }
:-moz-placeholder { color: #9ca3af; font-size:0.98rem; }
::-moz-placeholder { color: #9ca3af; font-size:0.98rem; }
:-ms-input-placeholder { color: #9ca3af; font-size:0.98rem; }
::placeholder { color: #9ca3af; font-size:0.98rem; }

/* SCROLLBAR STYLES */
::-webkit-scrollbar { width: 10px; background: #f4f4f4; }
::-webkit-scrollbar-thumb { background: #ececec; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #A5C437; }

/* PRINT/NO-SELECT */
@media print {
  header, footer, .cta-btn, .mobile-menu, .cookie-banner, .cookie-modal, .cookie-modal-overlay { display: none !important; }
}

/* END OF CSS */
