/* -------------------------------------------------------
   RESET & BASELINE STYLES
-------------------------------------------------------- */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #FFF8F3;
  color: #2B353A;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: #00334E;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FF7733;
}
ul, ol {
  list-style: none;
}
button, input, textarea, select {
  font-family: inherit;
  font-size: 16px;
  border: none;
  background: none;
  outline: none;
}
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 700;
  color: #00334E;
  line-height: 1.2;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
h4, h5 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}
p, ul, ol, dl, dd {
  margin-bottom: 16px;
  font-size: 1.05rem;
}
strong, b {
  font-weight: 700;
  color: #00334E;
}

/* -------------------------------------------------------
   BRAND COLORS
-------------------------------------------------------- */
:root {
  --tt-primary: #00334E;
  --tt-secondary: #D8E3E7;
  --tt-accent: #70C1B3;
  --tt-warm-1: #FFEEE5;
  --tt-warm-2: #FFF8F3;
  --tt-warm-3: #FFD6B1;
  --tt-orange: #FF7733;
  --tt-card-shadow: 0 2px 12px 0 rgba(54, 54, 53, 0.10);
  --tt-radius: 18px;
  --tt-radius-small: 12px;
}

/* -------------------------------------------------------
   CONTAINER AND LAYOUT
-------------------------------------------------------- */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
  max-width: 1080px;
}
.content-wrapper {
  background: white;
  border-radius: var(--tt-radius);
  box-shadow: var(--tt-card-shadow);
  padding: 36px 26px;
  margin-bottom: 36px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
@media (max-width: 768px) {
  .content-wrapper {
    padding: 22px 10px;
  }
  .section {
    padding: 20px 5px;
    margin-bottom: 36px;
  }
}

/* -------------------------------------------------------
   HEADER & NAVIGATION
-------------------------------------------------------- */
header {
  background: var(--tt-primary);
  padding: 0;
  box-shadow: 0 4px 24px -8px #00334e22;
  position: relative;
  z-index: 10;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 75px;
}
header img {
  height: 44px;
  width: auto;
}
nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
nav a {
  color: #fff;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 6px 12px;
  border-radius: var(--tt-radius-small);
  transition: background 0.15s, color 0.15s;
}
nav a:hover, nav a:focus {
  background: var(--tt-accent);
  color: var(--tt-primary);
}
.button-primary {
  margin-left: 18px;
  background: var(--tt-orange);
  color: #fff !important;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 10px 26px;
  border-radius: 25px;
  box-shadow: 0 2px 8px 0 rgba(255, 119, 51, 0.13);
  transition: background 0.15s, transform 0.22s;
  display: inline-block;
}
.button-primary:hover, .button-primary:focus {
  background: #E95F00;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}

/* Mobile Burger */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 7px 13px;
  border-radius: var(--tt-radius-small);
  cursor: pointer;
  transition: background 0.16s;
  z-index: 1202;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #13455d;
}
@media (max-width: 960px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,28,51,0.85);
  backdrop-filter: blur(2px);
  transform: translateX(100%);
  transition: transform 0.22s cubic-bezier(0.8, 0, 0.23, 1);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #fff;
  color: var(--tt-primary);
  border: none;
  font-size: 2.2rem;
  font-weight: bold;
  margin: 32px 36px 0 0;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1201;
  box-shadow: 0 1px 5px 0 #00334e22;
  transition: background 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #D8E3E7;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin: 40px 36px 0 0;
  gap: 14px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  padding: 14px 30px;
  border-radius: var(--tt-radius);
  transition: background 0.13s, color 0.13s;
  min-width: 200px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--tt-accent);
  color: var(--tt-primary);
}
@media (min-width: 961px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* Focus indication */
a:focus, button:focus {
  outline: 2px solid var(--tt-accent);
  outline-offset: 1px;
}

/* -------------------------------------------------------
   CARDS & FLEX LAYOUTS
-------------------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--tt-radius);
  box-shadow: var(--tt-card-shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 26px 22px;
  flex: 1 1 290px;
  min-width: 260px;
  max-width: 99%;
  transition: box-shadow 0.18s, transform 0.19s;
}
.card:hover {
  box-shadow: 0 6px 27px -5px #00334e1b;
  transform: translateY(-4px) scale(1.017);
}
.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) {
  .content-grid, .card-container, .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
}

/* Feature item layout */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 16px;
}

/* -------------------------------------------------------
   TESTIMONIALS STYLE
-------------------------------------------------------- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: var(--tt-warm-1);
  border-radius: var(--tt-radius);
  box-shadow: 0 2px 14px 0 #00334e15;
  color: #1C2833;
  font-size: 1.1rem;
  font-style: italic;
  position: relative;
  transition: box-shadow 0.2s, background 0.17s;
}
.testimonial-card p {
  margin: 0 0 8px 0;
  color: #22404A;
  font-family: 'Roboto', sans-serif;
}
.testimonial-card div {
  font-style: normal;
  color: #00334E;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
}
.testimonial-card:hover {
  background: #fff;
  box-shadow: 0 6px 26px -3px #00334e23;
}

/* -------------------------------------------------------
   SERVICE GRID (DIENSTEN-PAGINA)
-------------------------------------------------------- */
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.service-grid > div {
  background: #fff;
  border-radius: var(--tt-radius);
  box-shadow: var(--tt-card-shadow);
  padding: 26px 22px;
  flex: 1 1 275px;
  min-width: 230px;
  transition: box-shadow 0.15s, transform 0.16s;
}
.service-grid > div:hover {
  box-shadow: 0 6px 18px -3px #70C1B345;
  transform: scale(1.012) translateY(-3px);
}
@media (max-width: 768px) {
  .service-grid {
    flex-direction: column;
    gap: 16px;
  }
}

/* -------------------------------------------------------
   LISTS, DL, and FAQ
-------------------------------------------------------- */
ul, ol {
  margin-left: 14px;
  margin-bottom: 16px;
}
ul li, ol li {
  padding-left: 1.3em;
  position: relative;
  margin-bottom: 10px;
  color: #264155;
}
ul li:before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--tt-accent);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 9px;
}
ol li {
  counter-increment: ol;
  list-style-type: decimal;
  color: #00334E;
  padding-left: 1.9em;
}
ol {
  counter-reset: ol;
}
dt {
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  color: #00334E;
  margin-bottom: 4px;
  margin-top: 10px;
}
dd {
  margin-bottom: 12px;
  margin-left: 0;
}

/* -------------------------------------------------------
   FOOTER
-------------------------------------------------------- */
footer {
  background: var(--tt-primary);
  color: #fff;
  padding: 0;
  margin-top: 56px;
  box-shadow: 0 -2px 20px 0 #00334e22;
}
footer .container {
  padding-top: 36px;
  padding-bottom: 6px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #D8E3E715;
  padding-bottom: 16px;
  margin-bottom: 12px;
  gap: 18px;
}
.footer-top img {
  height: 42px;
}
.footer-top nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.footer-top nav a {
  color: #fff;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  background: transparent;
  border-radius: var(--tt-radius-small);
  transition: background 0.16s, color 0.16s;
  padding: 2px 9px;
}
.footer-top nav a:hover, .footer-top nav a:focus {
  background: var(--tt-accent);
  color: var(--tt-primary);
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-size: 0.98rem;
  color: #e0ecfa;
  opacity: 0.9;
  justify-content: flex-start;
  padding: 6px 0 18px 0;
}
@media (max-width: 700px) {
  .footer-top, .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

/* -------------------------------------------------------
   SCALING, SPACING, UTILITIES
-------------------------------------------------------- */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-1 { margin-top: 8px !important; }
.mb-1 { margin-bottom: 8px !important; }
.mt-2 { margin-top: 16px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mt-3 { margin-top: 24px !important; }
.mb-3 { margin-bottom: 24px !important; }

.text-center { text-align: center !important; }
.text-right { text-align: right !important; }

/* -------------------------------------------------------
   BUTTONS & INTERACTIONS
-------------------------------------------------------- */
.button-primary, .button-secondary {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.008em;
  box-shadow: 0 2px 8px 0 #00334e18;
  transition: background 0.16s, color 0.16s, transform 0.19s;
  border-radius: 25px;
  display: inline-block;
}
.button-secondary {
  background: var(--tt-accent);
  color: var(--tt-primary);
  padding: 10px 23px;
}
.button-secondary:hover, .button-secondary:focus {
  background: #45a094;
  color: #fff;
}

/* Micro-interaction for ALL buttons */
.button-primary:active, .button-secondary:active{
  transform: scale(0.97);
}

/* -------------------------------------------------------
   FORMS (for potential future contact forms)
-------------------------------------------------------- */
input[type="text"], input[type="email"], textarea {
  background: #fff;
  border: 1px solid #D8E3E7;
  border-radius: var(--tt-radius-small);
  padding: 10px 13px;
  margin-bottom: 18px;
  font-size: 1rem;
  color: #00334E;
  transition: border 0.14s;
  width: 100%;
}
input:focus, textarea:focus {
  border: 1.5px solid var(--tt-accent);
}
label {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-size: 1rem;
  color: #00334E;
  margin-bottom: 7px;
  font-weight: 500;
}

/* -------------------------------------------------------
   ICONS INLINE (e.g. contact info page)
-------------------------------------------------------- */
li img {
  width: 21px;
  height: 21px;
  vertical-align: middle;
  margin-right: 12px;
  margin-bottom: 2px;
  display: inline-block;
}

/* -------------------------------------------------------
   COOKIE CONSENT BANNER & MODAL
-------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--tt-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 20px 15px;
  z-index: 2222;
  box-shadow: 0 -5px 22px 0 #00334e33;
  transition: transform 0.27s cubic-bezier(0.7,0.2,0.2,1), opacity 0.18s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  transform: translateY(100px);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  margin: 0;
  font-size: 1rem;
  color: #fff;
}
.cookie-banner .cookie-btn {
  min-width: 140px;
  padding: 9px 17px;
  margin-left: 8px;
  border-radius: 20px;
  font-family: 'Montserrat', sans-serif;
  background: var(--tt-accent);
  color: var(--tt-primary);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  transition: background 0.12s, color 0.13s, box-shadow 0.14s;
  box-shadow: 0 2px 8px #70C1B330;
  cursor: pointer;
}
.cookie-banner .cookie-btn.accept {
  background: var(--tt-orange);
  color: #fff;
}
.cookie-banner .cookie-btn.reject {
  background: #fff;
  color: var(--tt-primary);
  border: 1px solid #D8E3E7;
}
.cookie-banner .cookie-btn.settings {
  background: var(--tt-accent);
  color: var(--tt-primary);
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  box-shadow: 0 6px 16px #00334e22;
  background: #FFD6B1;
  color: #00334E;
}

.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(0,28,51,0.58);
  z-index: 3332;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.20s;
}
.cookie-modal {
  background: #fff;
  border-radius: var(--tt-radius);
  max-width: 98vw;
  width: 420px;
  padding: 32px 26px 24px 26px;
  box-shadow: 0 8px 44px -2px #00334e31;
  color: var(--tt-primary);
  font-size: 1.07rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal h3 {
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.28rem;
  color: #00334E;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.cookie-category label {
  font-size: 1rem;
  color: #22404A;
  font-family: 'Roboto', sans-serif;
}
.cookie-category .toggle {
  width: 42px;
  height: 24px;
  border-radius: 12px;
  background: #D8E3E7;
  position: relative;
  transition: background 0.18s;
}
.cookie-category .toggle input[type="checkbox"] {
  display: none;
}
.cookie-category .toggle .slider {
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  background: var(--tt-accent);
  border-radius: 50%;
  transition: left 0.18s, background 0.18s;
}
.cookie-category .toggle input[type="checkbox"]:checked + .slider {
  left: 21px;
  background: var(--tt-orange);
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 18px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.cookie-modal .cookie-btn {
  min-width: 110px;
  padding: 9px 14px;
  border-radius: 18px;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  background: var(--tt-accent);
  color: var(--tt-primary);
  border: none;
  box-shadow: 0 1px 8px #00334e13;
  transition: background 0.13s, color 0.12s;
}
.cookie-modal .cookie-btn.save {
  background: var(--tt-orange);
  color: #fff;
}
.cookie-modal .cookie-btn.close {
  background: #fff;
  color: var(--tt-primary);
  border: 1px solid #D8E3E7;
}
.cookie-modal .cookie-btn:hover, .cookie-modal .cookie-btn:focus {
  background: #FFD6B1;
  color: #00334E;
}
.cookie-modal .cookie-close {
  position: absolute;
  right: 19px;
  top: 15px;
  width: 38px;
  height: 38px;
  background: #FFD6B1;
  color: var(--tt-primary);
  border: none;
  border-radius: 50%;
  font-size: 1.24rem;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 1px 3px #00334e11;
  transition: background 0.13s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal .cookie-close:hover, .cookie-modal .cookie-close:focus {
  background: #70C1B3;
  color: #fff;
}

@media (max-width: 576px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 18px 5px;
  }
  .cookie-modal {
    width: 98vw;
    padding: 17px 7px 11px 7px;
    min-width: 0;
  }
  .cookie-modal .cookie-modal-actions {
    gap: 8px;
    justify-content: stretch;
  }
}

/* -------------------------------------------------------
   RESPONSIVE TYPOGRAPHY & SPACING
-------------------------------------------------------- */
@media (max-width: 1100px) {
  h1 { font-size: 2.07rem; }
  h2 { font-size: 1.45rem; }
  .container { max-width: 98vw; }
}
@media (max-width: 700px) {
  h1 { font-size: 1.45rem; margin-bottom: 17px; }
  h2 { font-size: 1.15rem; margin-bottom: 12px; }
}

/* -------------------------------------------------------
   WARM FRIENDLY DECORATIVE TOUCHES
-------------------------------------------------------- */
body {
  background: var(--tt-warm-2);
}
.content-wrapper {
  border: 1.3px solid var(--tt-secondary);
}
.button-primary, .button-secondary, .mobile-menu-close, .cookie-btn {
  box-shadow: 0 2px 9px 0 var(--tt-warm-3)33;
}
.card, .testimonial-card, .service-grid > div {
  transition: box-shadow 0.16s, background 0.16s, transform 0.17s;
}
hr {
  border: none;
  border-top: 1px solid var(--tt-secondary);
  margin: 24px 0;
}

/* -------------------------------------------------------
   ACCESSIBILITY: HIDE VISUALLY BUT SHOW FOR SCREEN READERS
-------------------------------------------------------- */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

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