/*==================================================================
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;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #F7FCFB;
  color: #194D33;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a {
  color: #194D33;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus, a:active {
  color: #56B3A9;
  outline: none;
}
ul, ol {
  padding-left: 22px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  outline: none;
  border: none;
  background: none;
}

/*==================================================================
TYPOGRAPHY: creative_artistic
===================================================================*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900|Open+Sans:400,600&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: #194D33;
}
h1 {
  font-size: 2.5rem;
  color: #194D33;
  letter-spacing: -2px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: #56B3A9;
  letter-spacing: -1px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #194D33;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, li, span, small {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: #194D33;
}
small {
  font-size: 0.92rem;
  color: #325d48;
}

/* Artistic accents */
h1:after, h2:after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  margin: 10px 0 22px 0;
  background: #56B3A9;
  border-radius: 2px;
}

/*==================================================================
LAYOUT CONTAINERS
===================================================================*/
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0px; /* Redefined below for each section if needed */
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 32px 32px 24px 24px/28px 28px 24px 18px;
  box-shadow: 0 4px 40px 0 rgba(25, 77, 51, 0.06), 0 2px 6px 0 rgba(86,179,169,0.08);
  position: relative;
}
@media (max-width: 768px) {
  .section {
    padding: 24px 8px;
    border-radius: 20px;
  }
}

/* Card containers */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px 0 rgba(25,77,51,0.08);
  border: 2px solid #e6f0ec;
  padding: 32px 24px;
  min-width: 260px;
  flex: 1 1 280px;
  transition: box-shadow 0.3s, border-color 0.3s,
    transform 0.2s cubic-bezier(.54,.01,.57,.97);
}
.card:hover, .card:focus {
  box-shadow: 0 8px 40px 0 rgba(86,179,169,0.12);
  border-color: #56B3A9;
  transform: translateY(-4px) scale(1.03);
  z-index: 1;
}

.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;
  background: #E9F7EF;
  border-radius: 20px;
  box-shadow: 0 4px 20px 0 rgba(86,179,169, 0.08);
  margin-bottom: 20px;
  flex: 1 1 320px;
  min-width: 220px;
  max-width: 580px;
  border-left: 5px solid #56B3A9;
}
.testimonial-card p {
  color: #194D33;
  font-size: 1.08rem;
  font-style: italic;
  margin: 0;
}
.testimonial-card span {
  color: #467963;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding-left: 10px;
  border-left: 2px solid #56B3A9;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Artistic unique elements */
.feature-grid, .services-list, .team-overview, .project-showcase-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-grid > div, .services-list > div, .team-overview > div, .project-showcase-list > div {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 18px 18px 14px 16px;
  padding: 32px 18px 24px 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 18px 0 rgba(86,179,169,0.06);
  border-left: 4px solid #56B3A9;
  min-width: 220px;
  transition: box-shadow 0.28s, border-color 0.28s;
}
.feature-grid > div:hover, .services-list > div:hover, .team-overview > div:hover, .project-showcase-list > div:hover {
  box-shadow: 0 8px 40px 0 rgba(25,77,51,0.13);
  border-color: #194D33;
  transform: translateY(-3px) scale(1.025);
}
.team-overview {
  gap: 36px;
}


/* Spacing for common elements */
main > section:not(:last-child) {
  margin-bottom: 54px;
}
section h2 {
  margin-bottom: 18px;
}
section ul, section ol {
  margin-bottom: 10px;
}

/* FAQ list */
ul.faq-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
ul.faq-list li {
  background: #E9F7EF;
  border-radius: 16px;
  margin-bottom: 18px;
  padding: 18px 24px 12px 24px;
  box-shadow: 0 2px 14px 0 rgba(25,77,51,0.06);
}
ul.faq-list li strong {
  display: block;
  margin-bottom: 5px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #194D33;
}
ul.faq-list li p {
  font-size: 0.98rem;
  color: #325d48;
}

/* Newsletter & CTA Art */
.btn-primary, .btn-secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  padding: 12px 32px;
  margin: 8px 8px 8px 0;
  border-radius: 24px 30px 22px 17px/18px 22px 13px 19px;
  cursor: pointer;
  border: none;
  background: #56B3A9;
  color: #fff;
  box-shadow: 0 3px 12px 0 rgba(86,179,169, 0.13);
  text-shadow: 0 1px 0 #32b47c46;
  text-decoration: none;
  transition: background 0.25s, color 0.17s, transform 0.19s;
  outline: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: #194D33;
  color: #fff;
  transform: translateY(-1px) scale(1.03);
}
.btn-secondary {
  background: #194D33;
  color: #fff;
  border: 2px solid #56B3A9;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #56B3A9;
  color: #194D33;
  border-color: #194D33;
}

/*----------------------------------------------------------------------
Header & Navigation (Creative Artistic)
----------------------------------------------------------------------*/
header {
  background: #fff;
  box-shadow: 0 2px 14px 0 rgba(25,77,51,0.04);
  border-bottom: 4px solid #56B3A9;
  position: sticky;
  top: 0;
  z-index: 99;
  padding: 0;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  gap: 0;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #194D33;
  border-radius: 24px;
  padding: 8px 14px;
  transition: background 0.18s, color 0.16s;
}
header nav a:hover, header nav a:focus {
  background: #E9F7EF;
  color: #56B3A9;
}
header nav .btn-primary {
  padding: 10px 28px;
  font-size: 1.06rem;
  margin-left: 20px;
  margin-right: 0;
}
header img {
  height: 50px;
  width: auto;
  margin-right: 24px;
}
.mobile-menu-toggle {
  display: none;
  background: #56B3A9;
  color: #fff;
  font-size: 2.1rem;
  border-radius: 18px;
  padding: 0 12px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.21s;
  z-index: 1003;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #194D33;
  color: #fff;
  transform: scale(1.03);
}

/*----------------------------------------------------------------------
Mobile Navigation Menu
----------------------------------------------------------------------*/
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  inset: 0;
  background: #194D33;
  color: #fff;
  z-index: 1100;
  padding-top: 88px;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.9,.03,.27,.95);
  width: 100vw;
  height: 100vh;
  box-shadow: -8px 0px 36px 0 rgba(25,77,51,0.19);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 2.2rem;
  background: #56B3A9;
  color: #fff;
  border-radius: 16px;
  border: none;
  padding: 2px 18px 5px 12px;
  cursor: pointer;
  z-index: 1102;
  transition: background 0.15s, transform 0.12s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #1a715e;
  transform: scale(1.12);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  padding: 24px 28px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  padding: 10px 0;
  border-radius: 18px;
  width: 100%;
  transition: background 0.15s, color 0.21s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #56B3A9;
  color: #E9F7EF;
}

/* Only show burger on mobile */
@media (max-width: 1080px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (max-width: 1080px) {
  .mobile-menu {
    display: flex;
  }
}

@media (min-width: 1081px) {
  .mobile-menu {
    display: none !important;
  }
}

/*==================================================================
FOOTER
===================================================================*/
footer {
  background: #E9F7EF;
  color: #194D33;
  border-top: 4px solid #56B3A9;
  margin-top: 48px;
  padding: 30px 0;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}
footer img {
  width: 54px;
  height: auto;
  margin-bottom: 8px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
footer nav a {
  color: #194D33;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 3px 0;
  transition: color 0.18s;
}
footer nav a:hover, footer nav a:focus {
  color: #56B3A9;
}
.footer-contact {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #214d3a;
}
.footer-contact a {
  color: #56B3A9;
  font-weight: 600;
  text-decoration: underline dotted;
}
.footer-contact a:hover {
  color: #194D33;
}

@media (max-width: 1080px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
  }
  footer {
    padding: 22px 0 10px 0;
  }
}

/*==================================================================
RESPONSIVE LAYOUTS + FLEX
===================================================================*/
@media (max-width: 960px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .feature-grid, .services-list, .team-overview, .project-showcase-list {
    flex-direction: column;
    justify-content: flex-start;
    gap: 28px;
  }
  .feature-grid > div, .services-list > div, .team-overview > div, .project-showcase-list > div {
    min-width: 0;
    width: 100%;
    flex-basis: unset;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 97vw;
    padding-left: 2vw;
    padding-right: 2vw;
  }
  .card-container,
  .content-grid,
  .feature-grid,
  .services-list,
  .team-overview,
  .project-showcase-list,
  .card,
  .testimonial-card {
    flex-direction: column !important;
    gap: 20px;
    align-items: stretch !important;
  }
  .section {
    margin-bottom: 36px;
    padding: 18px 3px;
  }
  .testimonial-card {
    min-width: unset;
    max-width: 100%;
    flex-basis: unset;
    padding: 16px 9px;
  }
  .card {
    min-width: unset;
    width: 100%;
    padding: 18px 8px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
}

/*==================================================================
FORMS (creative artistic, consistent spacing)
===================================================================*/
input[type="text"], input[type="email"], textarea {
  padding: 13px 19px;
  border: 1.7px solid #b6d8cb;
  border-radius: 14px;
  font-size: 1rem;
  background: #fff;
  margin-bottom: 18px;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: #56B3A9;
}

label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #194D33;
  margin-bottom: 6px;
}

/*==================================================================
COOKIE CONSENT BANNER & MODAL
===================================================================*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #194D33;
  color: #fff;
  padding: 24px 16px;
  z-index: 1200;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  box-shadow: 0 -6px 32px 0 rgba(25,77,51,0.21);
  font-size: 1rem;
  transition: transform 0.25s;
}
.cookie-banner[hidden] {
  transform: translateY(120%);
  pointer-events: none;
  opacity: 0;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 14px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 8px 20px;
  border-radius: 18px 16px 16px 13px/15px 14px 13px 16px;
  cursor: pointer;
  margin: 0;
  outline: none;
  border: none;
  background: #56B3A9;
  color: #fff;
  box-shadow: 0 2px 10px 0 rgba(86,179,169,0.09);
  transition: background 0.18s, color 0.15s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #fff;
  color: #194D33;
}
.cookie-banner .cookie-settings {
  background: #fff;
  color: #56B3A9;
  border: 1.6px solid #56B3A9;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: #194D33;
  color: #fff;
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 1205;
  background: rgba(25,77,51,0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.3s;
}
.cookie-modal[hidden] {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  padding: 38px 24px 28px 32px;
  border-radius: 24px 14px 18px 21px;
  color: #194D33;
  box-shadow: 0 8px 44px 0 rgba(25,77,51,0.12);
  min-width: 320px;
  max-width: 93vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal-content h2 {
  font-size: 1.35rem;
  color: #56B3A9;
}
.cookie-modal-content .cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 12px;
}
.cookie-modal-content .cookie-category label {
  font-size: 1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #194D33;
  font-weight: 600;
}
.cookie-modal-content .cookie-category input[type="checkbox"] {
  transform: scale(1.3);
  accent-color: #56B3A9;
  margin-right: 6px;
}
.cookie-modal-content .essential-label {
  color: #56B3A9;
  font-weight: 700;
  text-decoration: underline dotted;
}
.cookie-modal-close {
  position: absolute;
  top: 10px;
  right: 24px;
  font-size: 2.1rem;
  background: #56B3A9;
  color: #fff;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  padding: 4px 14px 3px 8px;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #194D33;
  color: #fff;
}
.cookie-modal-content .cookie-modal-actions {
  margin-top: 8px;
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-modal-content .cookie-modal-actions button {
  padding: 8px 22px;
  font-size: 1rem;
  border-radius: 16px 20px 14px 15px/13px 22px 11px 11px;
  background: #56B3A9;
  color: #fff;
  border: none;
  transition: background 0.18s, color 0.15s;
}
.cookie-modal-content .cookie-modal-actions button:hover, .cookie-modal-content .cookie-modal-actions button:focus {
  background: #194D33;
  color: #fff;
}

@media (max-width: 540px) {
  .cookie-modal-content {
    padding: 18px 7px 18px 11px;
    min-width: 0;
    width: 97vw;
    margin: 0 4px;
  }
}

/*==================================================================
ANIMATIONS & MICRO-INTERACTIONS
===================================================================*/
@keyframes btn-pulse {
  0% { box-shadow: 0 0 0 0 rgba(86,179,169, 0.22); }
  70% { box-shadow: 0 0 0 12px rgba(86,179,169, 0.0); }
  100% { box-shadow: 0 0 0 0 rgba(86,179,169, 0); }
}
.btn-primary:active, .btn-secondary:active {
  animation: btn-pulse 0.5s;
}
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.section, .card, .testimonial-card, .feature-grid > div {
  animation: fade-in-up 0.5s ease-in;
}

/* Decorative artistic blobs (optional) */
.blob-left, .blob-right {
  position: absolute;
  z-index: 0;
  opacity: 0.17;
  width: 180px;
  height: 180px;
  pointer-events: none;
  filter: blur(4px);
}
.blob-left {
  left: -65px;
  top: -65px;
  background: #56B3A9;
  border-radius: 50% 50% 39% 61% / 60% 42% 58% 40%;
}
.blob-right {
  right: -65px;
  bottom: -65px;
  background: #E9F7EF;
  border-radius: 50% 42% 78% 66% / 64% 80% 40% 70%;
}

/*==================================================================
ARTISTIC ICONS/ELEMENTS
===================================================================*/
.card img,
.feature-grid img,
.services-list img,
.team-overview img,
.project-showcase-list img {
  width: 56px;
  height: 56px;
  margin-bottom: 10px;
  border-radius: 16px;
  background: #E9F7EF;
  padding: 12px;
  box-shadow: 0 2px 10px 0 rgba(25,77,51,0.05);
}

ul li img {
  vertical-align: middle;
  margin-right: 10px;
  height: 28px;
  width: 28px;
  background: #E9F7EF;
  border-radius: 10px;
  padding: 4px;
  box-shadow: 0 2px 10px 0 rgba(56,140,117,0.06);
}

/*==================================================================
ARTICLE/BLOG PREVIEW
===================================================================*/
article {
  background: #fff;
  border-radius: 20px;
  padding: 28px 22px 20px 22px;
  margin-bottom: 24px;
  box-shadow: 0 2px 22px 0 rgba(25,77,51,0.07);
  border-left: 3px solid #56B3A9;
  transition: box-shadow 0.18s, border-color 0.22s;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
article:hover, article:focus {
  box-shadow: 0 8px 44px 0 rgba(86,179,169,0.11);
  border-color: #194D33;
}

/*==================================================================
VISUAL DIVIDERS & SPACING CONSISTENCY
===================================================================*/
hr, .divider {
  border: none;
  border-top: 2px solid #56B3A9;
  margin: 34px 0 28px 0;
  opacity: 0.25;
}

/*==================================================================
MISCELLANEOUS
===================================================================*/
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background: #e9f7ef;
  border-radius: 8px;
}
::-webkit-scrollbar-track {
  background: transparent;
}

/* Required: Prevent content overlapping */
.card, .testimonial-card, .project-showcase-list > div, .feature-grid > div, .services-list > div, .team-overview > div, .card-container > div { margin-bottom: 20px !important; }

/* For high-contrast testimonial readability */
.testimonial-card, .testimonial-card p, .testimonial-card span {
  background: #E9F7EF !important;
  color: #194D33 !important;
}

/* General utility classes */
.mt-32 { margin-top: 32px !important; }
.mb-24 { margin-bottom: 24px !important; }
.mb-40 { margin-bottom: 40px !important; }

/* Hide elements visually but remain accessible */
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* END */
