/* --- CSS RESET & BASE --- */
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;
}
body {
  line-height: 1.6;
  background: #F5F7FA;
  color: #22576A;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
a {
  color: #19A180;
  text-decoration: none;
  transition: color 0.25s;
}
a:hover {
  color: #137156;
}

/* --- GLOBAL SPACING & CONTAINER --- */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.text-section {
  max-width: 700px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(34, 87, 106, 0.07);
}

/* ----- TYPOGRAPHY ----- */
h1, .hero h1 {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #22576A;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
h2 {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #137156;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}
h3 {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 1.18rem;
  font-weight: 600;
  color: #22576A;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
p, ul, ol, li, span {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #22576A;
  font-size: 1rem;
  line-height: 1.67;
}
p {
  margin-bottom: 10px;
}
.subheadline {
  font-size: 1.18rem;
  font-weight: 500;
  color: #19A180;
  margin-bottom: 20px;
}

ul, ol {
  padding-left: 24px;
  margin-bottom: 18px;
}
li {
  margin-bottom: 10px;
  font-size: 1rem;
}

/* Links with Arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  color: #19A180;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 6px;
  transition: color 0.22s;
}
.link-arrow:after {
  content: '→';
  margin-left: 6px;
  font-size: 1.2em;
  color: #19A180;
  transition: margin-left 0.22s;
}
.link-arrow:hover { color: #137156; }
.link-arrow:hover:after { margin-left: 14px; color: #137156; }

/* --- HEADER & NAVIGATION --- */
header {
  background: #FFF;
  box-shadow: 0 1px 14px rgba(34, 87, 106, 0.05);
  padding: 0 0 0 0;
  position: sticky;
  top: 0;
  z-index: 20;
}
header > .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding: 14px 18px;
}
header nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
header nav a {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #22576A;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 0;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
header nav a:hover {
  background: #F5F7FA;
  color: #19A180;
}
header img {
  max-height: 48px;
  border-radius: 10px;
}
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 20px;
  padding: 12px 34px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.18s, box-shadow 0.21s, color 0.18s;
  box-shadow: 0 2px 14px rgba(25,161,128,0.09);
}
.btn-primary {
  background: #19A180;
  color: #fff;
  margin-left: 18px;
  margin-right: 0;
  box-shadow: 0 2px 18px rgba(34,87,106,0.10);
}
.btn-primary:hover, .btn-primary:focus {
  background: #137156;
  color: #fff;
  box-shadow: 0 3px 20px rgba(25,161,128,0.14);
}
.btn-secondary {
  background: #fff7f0;
  border: 2px solid #19A180;
  color: #19A180;
  margin-left: 0;
  box-shadow: 0 1px 8px rgba(25,161,128,0.07);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #19A180;
  color: #FFF;
}

/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(98deg, #e3f6f5 35%, #fffbe8 100%);
  padding: 40px 0 54px 0;
  border-radius: 0 0 32px 32px;
  margin-bottom: 50px;
  box-shadow: 0 2px 30px rgba(25,161,128,0.06);
}
.hero .container {
  align-items: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 26px;
}
@media (max-width: 768px) {
  .hero {
    padding: 24px 0 28px 0;
    border-radius: 0 0 18px 18px;
  }
}

/* --- FEATURE & CARD GRIDS (Flexbox only) --- */
.feature-grid, .case-study-list, .customer-logos, .client-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  align-items: flex-start;
}
.feature {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 14px rgba(34,87,106,0.08);
  padding: 30px 24px;
  min-width: 210px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.feature:hover {
  box-shadow: 0 8px 26px rgba(25,161,128,0.14);
  transform: translateY(-4px) scale(1.015);
}
.feature img {
  max-height: 44px;
  margin-bottom: 10px;
  background: #f6faf6;
  border-radius: 12px;
  padding: 5px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 2px 14px rgba(25,161,128,0.07);
  margin-bottom: 20px;
  position: relative;
  padding: 24px;
  flex: 1 1 240px;
  transition: box-shadow 0.18s;
}
.card:hover {
  box-shadow: 0 6px 24px rgba(25,161,128,0.13);
}

.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) {
  .feature-grid, .case-study-list, .customer-logos, .client-logos, .content-grid {
    flex-direction: column;
    gap: 20px !important;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* --- TESTIMONIALS --- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 20px;
  background: #fffbe8;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 18px rgba(34,87,106,0.07);
  max-width: 600px;
  font-style: italic;
  font-size: 1.07rem;
}
.testimonial-card p {
  color: #22576A;
  font-style: italic;
  margin-bottom: 0;
}
.testimonial-card span, .testimonial-card cite {
  color: #137156;
  font-style: normal;
  font-size: 0.95rem;
  font-weight: bold;
}
/* Ensures text contrast and readability on light backgrounds */
.testimonial-card {
  color: #244;
}

.customer-logos, .client-logos {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 16px;
}
.customer-logos img, .client-logos img {
  background: #FFF;
  border-radius: 8px;
  box-shadow: 0 1px 6px rgba(34,87,106,0.04);
  height: 38px;
  padding: 4px 9px;
}

/* --- SERVICE, PROCESS & HIGHLIGHT LISTS --- */
.service-list img {
  vertical-align: middle;
  margin-right: 7px;
}
.process-highlights ul, .project-highlights ul, .next-steps ul, .quality-guarantee {
  list-style: none;
  padding-left: 0;
}
.quality-guarantee {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  font-weight: bold;
  color: #137156;
}
.quality-guarantee img {
  height: 36px;
  background: #e3f6f5;
  border-radius: 12px;
  padding: 4px;
}

/* --- CONTACT DETAILS --- */
.contact-details p, .map-location p, .opening-hours p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 3px 0 8px 0;
}
.contact-details img,
.map-location img {
  height: 24px;
  border-radius: 6px;
  background: #e3f6f5;
  padding: 3px;
}
.opening-hours {
  margin-top: 10px;
}

/* --- BUTTON & LINK MICRO-INTERACTIONS --- */
.btn-primary, .btn-secondary, .mobile-menu-toggle, .mobile-menu-close {
  outline: none;
}
.btn-primary:active, .btn-secondary:active {
  transform: scale(0.97);
  box-shadow: 0 1px 6px rgba(25,161,128,0.15);
}
.btn-primary:focus, .btn-secondary:focus {
  box-shadow: 0 0 0 2px #FFF, 0 0 0 5px #19A18044;
}

/* --- FAQ / ACCORDION --- */
.faq-accordion > div {
  background: #fffbe8;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(34,87,106,0.06);
  margin-bottom: 18px;
  padding: 22px 18px;
  transition: box-shadow 0.18s;
}
.faq-accordion > div:hover {
  box-shadow: 0 4px 18px rgba(25,161,128,0.11);
}
.faq-accordion h2 {
  font-size: 1.16rem;
  color: #22576A;
  margin-bottom: 6px;
  font-family: 'Roboto Slab', Georgia, serif;
}
.faq-accordion p {
  margin-bottom: 0;
}

/* --- CONTACT CTA --- */
.contact-prompt {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 10px rgba(25,161,128,0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 24px;
  margin-top: 30px;
}

/* --- FOOTER --- */
footer {
  background: #22576A;
  color: #fff;
  padding: 44px 0 28px 0;
  font-size: 1rem;
  border-radius: 24px 24px 0 0;
  margin-top: 40px;
}
footer > .container {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 44px;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer nav a {
  color: #fff;
  font-weight: 500;
  padding: 4px 0;
  border-radius: 5px;
  font-size: 1rem;
  transition: background 0.18s, color 0.18s;
}
footer nav a:hover { color: #19A180; background: #f5f7faf0; }
footer img {
  max-height: 36px;
  background: #fff;
  border-radius: 9px;
  padding: 2px 12px;
  margin-bottom: 6px;
}
footer p, footer a {
  color: #fff;
  font-size: 1rem;
}
footer a:hover { color: #19A180; }
footer div > p {
  margin-bottom: 4px;
}

@media (max-width: 980px) {
  footer > .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  background: #19A180;
  border: none;
  font-size: 2rem;
  color: #fff;
  padding: 9px 18px;
  border-radius: 16px;
  margin-left: 14px;
  cursor: pointer;
  transition: background 0.18s, transform 0.13s;
  z-index: 99;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  outline: 3px solid #19A18088;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #fff;
  padding: 0 28px;
  z-index: 1000;
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(.42,0,.6,1.1), opacity 0.25s;
  box-shadow: 0 2px 24px rgba(34,87,106,0.14);
}
body.mobile-menu-open .mobile-menu {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
  transition-delay: 0s;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #19A180;
  font-size: 2rem;
  align-self: flex-end;
  margin: 38px 0 4px 0;
  cursor: pointer;
  padding: 3px 10px;
  border-radius: 10px;
  transition: color 0.18s, background 0.14s;
}
.mobile-menu-close:focus, .mobile-menu-close:active {
  background: #e3f6f5;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 46px;
  width: 100%;
}
.mobile-nav a {
  color: #22576A;
  font-size: 1.14rem;
  font-weight: 600;
  padding: 14px 0 14px 8px;
  border-radius: 8px;
  transition: background 0.18s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #e3f6f5;
  color: #19A180;
}

@media (max-width: 1000px) {
  header > .container nav, header > .container .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}

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


/* --- COOKIE CONSENT BANNER & MODAL --- */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 24px;
  z-index: 1200;
  background: #fffdf8;
  color: #22576A;
  border-radius: 20px;
  box-shadow: 0 4px 36px rgba(34,87,106,0.13);
  padding: 20px 22px 18px 22px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
  opacity: 1;
  animation: fadeinBanner 0.5s;
}
@keyframes fadeinBanner {
  0% { opacity: 0; transform: translateY(25px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-banner p {
  flex: 2 1 270px;
  color: #22576A;
  font-size: 1rem;
}
.cookie-banner .cookie-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.cookie-btn {
  display: inline-flex;
  align-items: center;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 18px;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  min-width: 80px;
  transition: background 0.16s, color 0.18s;
}
.cookie-btn.accept {
  background: #19A180;
  color: #fff;
}
.cookie-btn.accept:hover {
  background: #137156;
  color: #fff;
}
.cookie-btn.reject {
  background: #FFF;
  color: #137156;
  border: 2px solid #19A180;
}
.cookie-btn.reject:hover {
  background: #fffbe8;
  color: #137156;
  border: 2px solid #137156;
}
.cookie-btn.settings {
  background: #fff7f0;
  color: #19A180;
  border: 2px solid #e3f6f5;
}
.cookie-btn.settings:hover {
  background: #19A180;
  color: #fff;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    max-width: 98vw;
    left: 2vw;
    right: 2vw;
    bottom: 14px;
    padding: 16px 10px;
  }
  .cookie-banner p {
    font-size: 0.98rem;
  }
}

/* COOKIE MODAL */
.cookie-modal-backdrop {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(34,87,106,0.33);
  z-index: 1250;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  animation: fadeinModal 0.4s;
}
@keyframes fadeinModal {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fffbe8;
  border-radius: 22px;
  box-shadow: 0 4px 34px rgba(34,87,106,0.20);
  padding: 36px 28px 30px 28px;
  max-width: 450px;
  width: 90vw;
  color: #22576A;
  display: flex;
  flex-direction: column;
  gap: 22px;
  z-index: 1300;
  animation: popin 0.36s;
}
@keyframes popin {
  0% { transform: scale(0.89); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.35rem;
  margin-bottom: 0;
  color: #137156;
}
.cookie-modal ul {
  list-style: none;
  padding-left: 0;
  font-size: 1rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.cookie-category input[type="checkbox"] {
  accent-color: #19A180;
  width: 18px;
  height: 18px;
  margin-right: 5px;
}
.cookie-category label {
  font-size: 1rem;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 6px;
}
@media (max-width: 500px) {
  .cookie-modal {
    padding: 18px 6vw 16px 6vw;
    max-width: 99vw;
  }
  .cookie-modal h2 {
    font-size: 1.05rem;
  }
}

/* --- ANIMATIONS & MICRO-INTERACTIONS --- */
.feature, .card, .btn-primary, .btn-secondary, .testimonial-card, .faq-accordion > div, .cookie-banner, .cookie-modal {
  transition: box-shadow 0.2s, transform 0.18s, background 0.18s, color 0.18s;
}

/* --- MEDIA QUERIES (RESPONSIVE) --- */
@media (max-width: 850px) {
  .section {
    padding: 30px 7px;
    margin-bottom: 36px;
  }
}
@media (max-width: 760px) {
  h1, .hero h1 { font-size: 1.7rem; }
  h2 { font-size: 1.1rem; }
  .footer .container { gap: 20px; }
}
@media (max-width: 500px) {
  h1, .hero h1 { font-size: 1.2rem; }
  h2 { font-size: 1.01rem; }
  .section { padding: 16px 2vw; margin-bottom: 20px; border-radius: 12px; }
}
@media (max-width: 500px) {
  .btn-primary, .btn-secondary { padding: 10px 13vw; font-size: 0.98rem; }
}

/* --- UTILITIES / HELPERS --- */
.d-none { display: none !important; }
.text-center { text-align: center !important; }
.align-center { align-items: center !important; }
.align-start { align-items: flex-start !important; }
.flex-col { flex-direction: column !important; }
.flex-row { flex-direction: row !important; }
.gap-20 { gap: 20px !important; }
.gap-32 { gap: 32px !important; }
.mt-20 { margin-top: 20px !important; }
.mb-20 { margin-bottom: 20px !important; }

/* --- SPECIAL BRAND COLORS (fallbacks for older browsers) --- */
:root {
  --primary: #22576A;
  --secondary: #F5F7FA;
  --accent: #19A180;
  --accent-dark: #137156;
}

/* --- PRINT OVERRIDE for brand appearance --- */
@media print {
  body {
    background: #fff;
    color: #000;
  }
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
}
