/* ===========================
   CSS RESET & BASE TYPOGRAPHY
   =========================== */
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 {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #204051;
  background: #F1F4EF;
  min-height: 100vh;
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: #204051;
  transition: color 0.23s;
}
a:hover, a:focus {
  color: #88A096;
}
strong {
  font-weight: 600;
  color: #204051;
}

/* TYPOGRAPHY SCALE */
h1, .hero h1 { font-family: 'Montserrat', Arial, sans-serif; font-size: 2.5rem; font-weight: 700; margin-bottom: 24px; letter-spacing: -0.5px; color: #204051; }
h2 { font-family: 'Montserrat', Arial, sans-serif; font-size: 2rem; font-weight: 600; margin-bottom: 18px; color: #204051; letter-spacing: -0.5px; }
h3 { font-family: 'Montserrat', Arial, sans-serif; font-size: 1.4rem; font-weight: 500; margin-bottom: 12px; color: #204051; letter-spacing: -0.2px; }
h4, h5, h6 { font-family: 'Montserrat', Arial, sans-serif; color: #204051; }
p { font-size: 1rem; margin-bottom: 10px; color: #204051; }
.section p { margin-bottom: 14px; }


/* =============================
   BRAND COLOR SCHEME AND TOKENS
   ============================= */
:root {
  --color-primary: #204051;
  --color-secondary: #88A096;
  --color-accent: #F1F4EF;
  --color-dark-text: #204051;
  --color-light-text: #ffffff;
  --color-link-hover: #88A096;
  --color-border: #D8DFDB;
  --color-shadow: rgba(32, 64, 81, 0.08);
  --color-card-bg: #fff;
  --color-focus: #E7F0EE;
}

/* ===========================
   CONTAINER & LAYOUT FLEXBOX
   =========================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-card-bg);
  border-radius: 16px;
  box-shadow: 0 2px 14px var(--color-shadow);
  margin-bottom: 20px;
  padding: 24px;
  position: relative;
  flex: 1 1 300px;
  min-width: 260px;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.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 {
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 2px 12px var(--color-shadow);
  margin-bottom: 20px;
  border: 1px solid var(--color-border);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.section .testimonial-card { margin-bottom: 24px; }

/* ================================
   HEADER & NAVIGATION & CTAs
   ================================ */
header {
  background: #fff;
  box-shadow: 0 2px 10px var(--color-shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  gap: 18px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-primary);
  padding: 4px 0;
  position: relative;
  transition: color 0.2s;
}
header nav a:hover, header nav a:focus {
  color: var(--color-secondary);
}
.cta-primary,
.cta-secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  outline: none;
  border-radius: 25px;
  padding: 14px 32px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 2px 10px var(--color-shadow);
  min-width: 170px;
  transition: background 0.2s, color 0.2s, box-shadow 0.22s;
}
.cta-primary {
  background: var(--color-primary);
  color: #fff;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--color-secondary);
  color: #204051;
  box-shadow: 0 4px 18px var(--color-shadow);
}
.cta-secondary {
  background: #fff;
  color: var(--color-primary);
  border: 2px solid var(--color-secondary);
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--color-secondary);
  color: #fff;
  border-color: var(--color-secondary);
  box-shadow: 0 4px 18px var(--color-shadow);
}

/* Mobile Hamburger */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-primary);
  cursor: pointer;
  padding: 0 4px;
  margin-left: 8px;
  border-radius: 8px;
  transition: background 0.1s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #f6f7f5;
}

/* =====================
   HERO SECTIONS
   ===================== */
.hero {
  background: var(--color-accent);
  padding: 60px 0 40px 0;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 2px 18px var(--color-shadow);
  margin-bottom: 48px;
}
.hero .container {
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 24px;
  max-width: 700px;
}
.hero p {
  font-size: 1.13rem;
  color: #35566f;
}

/* ========================================
   ICON LISTS, VALUE PROPS, SERVICES, etc.
   ======================================== */
.icon-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 20px;
}
.icon-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  padding: 15px 22px;
  border-radius: 14px;
  font-size: 1.08rem;
  box-shadow: 0 1px 6px var(--color-shadow);
  color: var(--color-primary);
  min-width: 210px;
}
.icon-list img {
  width: 30px;
  height: 30px;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 12px 0;
  border-bottom: 1px solid #E9ECE7;
  font-size: 1.06rem;
  color: #204051;
}
.service-list li:last-child { border-bottom: none; }

.service-block {
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 2px 14px var(--color-shadow);
  margin-bottom: 20px;
  flex: 1 1 240px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid var(--color-border);
}

/* Project lists */
.project-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.project-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px var(--color-shadow);
  padding: 20px 22px;
  flex: 1 1 340px;
  min-width: 230px;
  max-width: 360px;
  margin-bottom: 20px;
  border: 1px solid var(--color-border);
}

/* =====================================
   FAQ Accordions/Items
   ===================================== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq-item {
  background: #fff;
  border-radius: 12px;
  padding: 20px 22px;
  box-shadow: 0 2px 10px var(--color-shadow);
  border: 1px solid var(--color-border);
}
.faq-item h2 {
  font-size: 1.25rem;
  margin-bottom: 7px;
}
.faq-item p {
  font-size: 1rem;
}

/* =====================================
   PROCESS STEPS / OL
   ===================================== */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-left: 0;
}
.process-steps li {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px var(--color-shadow);
  padding: 18px 20px;
  font-size: 1.07rem;
  color: #204051;
  border: 1px solid var(--color-border);
  margin-bottom: 0;
}

/* =====================
   CTA BANNER
   ===================== */
.cta-banner {
  margin-bottom: 0;
  background: #204051;
  color: #fff;
  padding: 48px 0;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 2px 18px var(--color-shadow);
}
.cta-banner .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 16px;
}
.cta-banner h2 { color: #fff; }
.cta-banner p { color: #e5ede7; }
.cta-banner a.cta-secondary, .cta-banner a.cta-primary {
  margin-top: 18px;
}
.cta-banner .cta-secondary {
  background: #fff;
  color: #204051;
  border: 2px solid #88A096;
}
.cta-banner .cta-secondary:hover {
  background: #88A096;
  color: #fff;
  border-color: #88A096;
}

/* =============================
   FOOTER
   ============================= */
footer {
  background: #F1F4EF;
  padding: 40px 0 10px 0;
  border-top: 1px solid #e0e7e2;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}
footer nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
}
footer nav a {
  color: #527580;
  font-size: 0.98rem;
  transition: color 0.2s;
}
footer nav a:hover, footer nav a:focus { color: #204051; }
.contact-footer {
  font-size: 0.95rem;
  color: #2a4759;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  line-height: 1.5;
}
.contact-footer img {
  display: inline-block;
  vertical-align: middle;
  width: 18px;
  height: 18px;
  margin-right: 4px;
}
.footer-copy {
  color: #80a6ae;
  font-size: 0.92rem;
  text-align: center;
  margin-top: 10px;
}

/* ===============
   TEAM & CONTACT
   =============== */
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 10px;
}
.team-member {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px var(--color-shadow);
  padding: 20px;
  flex: 1 1 200px;
  min-width: 200px;
  max-width: 320px;
  border: 1px solid var(--color-border);
  margin-bottom: 20px;
}
.contact-details {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 12px var(--color-shadow);
  border: 1px solid var(--color-border);
  max-width: 480px;
  margin-bottom: 20px;
}
.contact-details ul {
  margin: 8px 0 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: #204051;
}
.open-hours {
  margin-top: 14px;
  font-size: 0.97rem;
  color: #527580;
}

/* ===========================
   COOKIE BANNER & CONSENT MODAL
   =========================== */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #204051;
  color: #fff;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 10px 18px 10px;
  box-shadow: 0 -2px 18px rgba(32,64,81,0.04);
  gap: 22px;
  flex-wrap: wrap;
  font-size: 1rem;
  animation: cookieBannerSlideIn 0.5s cubic-bezier(0.22,1,0.36,1);
}
@keyframes cookieBannerSlideIn {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner p {
  flex: 3 1 320px;
  color: #fff;
  margin: 0 12px 0 0;
  font-size: 1rem;
}
.cookie-consent-banner .cookie-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-consent-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 18px;
  border-radius: 20px;
  border: none;
  margin: 2px 0;
  cursor: pointer;
  transition: background 0.19s, color 0.19s;
  font-weight: 600;
}
.cookie-accept { background: #88A096; color: #204051; }
.cookie-accept:hover { background: #a8b9b0; }
.cookie-reject { background: #fff; color: #204051; border: 1px solid #A1B8B8; }
.cookie-reject:hover { background: #e2ebea; }
.cookie-settings { background: transparent; color: #fff; border: 1.5px solid #88A096; }
.cookie-settings:hover { background: #88A096; color: #204051; }

/* Cookie Preferences Modal */
.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(33,56,54,0.33);
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.3s;
}
@keyframes modalFadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 48px rgba(32,64,81,0.18);
  padding: 34px 28px 24px 28px;
  width: 95vw;
  max-width: 420px;
  color: #204051;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 19px;
  animation: modalPopIn 0.23s cubic-bezier(.9,.01,.2,1.07);
}
@keyframes modalPopIn {
  from { transform: scale(0.92); opacity: 0.7; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.cookie-modal .category-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 18px;
}
.cookie-modal .modal-close {
  position: absolute;
  right: 17px;
  top: 17px;
  background: transparent;
  color: #204051;
  border: none;
  font-size: 1.9rem;
  cursor: pointer;
}
.cookie-modal label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
}
.cookie-modal input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #88A096;
  margin-right: 5px;
}
.cookie-modal .mandatory {
  font-size: 0.96rem;
  color: #A9B2AF;
  font-style: italic;
}
.cookie-modal .modal-footer {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}
.cookie-modal .modal-footer button {
  font-size: 1rem;
  padding: 7px 17px;
  border-radius: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  cursor: pointer;
}
.cookie-modal .modal-save {
  background: #88A096;
  color: #204051;
}
.cookie-modal .modal-save:hover { background: #204051; color: #fff; }
.cookie-modal .modal-cancel {
  background: #fff;
  color: #204051;
  border: 1.5px solid #88A096;
}
.cookie-modal .modal-cancel:hover { background: #f7faf9; }

/* ============================
   MOBILE MENU OVERLAY & NAV
   ============================ */
.mobile-menu {
  display: none;
  position: fixed;
  z-index: 250;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #F1F4EF;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.45,0,.55,1.19);
  box-shadow: -2px 0 18px rgba(33,56,54,0.10), 1px 0 1.5px #aac4be;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu .mobile-menu-close {
  align-self: flex-end;
  margin: 18px 17px 10px 0;
  background: none;
  border: none;
  color: #204051;
  font-size: 2.1rem;
  cursor: pointer;
  border-radius: 8px;
  line-height: 1;
  transition: background .12s;
}
.mobile-menu .mobile-menu-close:hover, .mobile-menu .mobile-menu-close:focus {
  background: #eaf1ef;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px 30px;
  width: 100%;
  align-items: flex-start;
}
.mobile-nav a {
  font-size: 1.18rem;
  color: #204051;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 10px 0;
  width: 100%;
  border-radius: 8px;
  transition: background 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #eaf1ef;
}

/* =====================
   UTILITIES & EFFECTS
   ===================== */
.box-shadow {
  box-shadow: 0 2px 14px var(--color-shadow);
}
.rounded { border-radius: 16px; }
.text-section { margin-bottom: 35px; }
.next-steps ul {
  margin-top: 8px;
  margin-bottom: 0;
  list-style: disc inside;
  padding-left: 15px;
}

/* ---------------------------------
   TRANSITIONS, MICRO-INTERACTIONS
   --------------------------------- */
button, .cta-primary, .cta-secondary, a {
  transition: background 0.2s, color 0.2s, box-shadow 0.22s, border 0.2s;
}

.testimonial-card {
  transition: box-shadow 0.18s, border 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 5px 24px rgba(32,64,81,0.18);
  border-color: #b3c3bb;
}
.card:hover, .service-block:hover, .project-item:hover, .team-member:hover {
  box-shadow: 0 6px 26px rgba(32,64,81,0.17);
  border-color: #c2cfc6;
}

input, textarea, select {
  border: 1.2px solid #D8DFDB;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: #88A096;
  background: #f5f8f6;
}

/* ===============================
   RESPONSIVE DESIGN (MOBILE-FIRST)
   =============================== */
@media (max-width: 1020px) {
  .container { max-width: 96vw; padding: 0 12px; }
  .hero .content-wrapper { max-width: 92vw; }
}
@media (max-width: 900px) {
  .card-container, .project-list, .team-list, .content-grid {
    gap: 16px;
  }
  .card, .project-item, .service-block, .team-member {
    min-width: 200px;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  /* FLEX DIRECTION COLUMN */
  .content-wrapper, .card-container, .project-list, .team-list, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .icon-list { flex-direction: column; gap: 18px; }
  .text-image-section { flex-direction: column; gap: 18px; }
  .section {
    padding: 32px 10px;
    margin-bottom: 38px;
  }
  .hero {
    padding: 36px 0 20px 0;
    margin-bottom: 22px;
    border-radius: 0 0 14px 14px;
  }
  .cta-banner {
    padding: 32px 0;
    border-radius: 16px 16px 0 0;
  }
  header .container {
    gap: 8px;
    padding: 10px 8px;
  }
  footer .container {
    padding: 0 8px;
    gap: 15px;
  }
  .testimonial-card, .card, .service-block, .project-item, .team-member {
    padding: 16px;
  }
}
@media (max-width: 600px) {
  html { font-size: 15px; }
  h1, .hero h1 { font-size: 1.7rem; }
  h2 { font-size: 1.28rem; }
  .cta-primary, .cta-secondary { font-size: 0.95rem; padding: 11px 18px; min-width: 120px; }
  .cookie-consent-banner { font-size: 0.96rem; flex-direction: column; gap: 10px; }
  .cookie-consent-banner p { margin-bottom: 8px; }
}
@media (max-width: 500px) {
  .hero, .cta-banner { padding: 18px 0 9px 0; }
  .section { padding: 19px 2px; }
}

/* ====================================
   SHOW/HIDE NAV FOR MOBILE & DESKTOP
   ==================================== */
@media (max-width: 900px) {
  header nav { display: none; }
  .mobile-menu-toggle { display: inline-block; }
}
@media (min-width: 901px) {
  .mobile-menu-toggle, .mobile-menu { display: none !important; }
}

/* ===================================
   ACCESSIBILITY & HIDDEN CLASSES
   =================================== */
.sr-only, .visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}


/* ===============================
   ENSURE NO GRID/COLUMN USAGE
   =============================== */
/* No display: grid, grid-*, column-* anywhere. Only flex layouts. */
