/* =========================================================
   # DEBUGGING:
========================================================= */

/*

* {
  outline: 1px solid rgba(255,0,0,0.3) !important;
}

*/


/* =========================================================
   # BASE SETTINGS	Min 320px | mobile 500px | max 1500px 
========================================================= */

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  color: #222;
  background: #fff;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  text-wrap: balance;
}

h1 { font-size: clamp(1.8rem, 3vw + 1rem, 2.4rem); }
h2 { font-size: clamp(1.5rem, 2.5vw + 0.8rem, 2rem); }
h3 { font-size: clamp(1.2rem, 2vw + 0.6rem, 1.6rem); }
h4 { font-size: clamp(1rem, 1.8vw + 0.5rem, 1.3rem); }
h5 { font-size: clamp(0.9rem, 1.4vw + 0.4rem, 1.1rem); }
h6 { font-size: clamp(0.8rem, 1vw + 0.3rem, 1rem); }

#info-card-1 { align-self: flex-start; }
#info-card-2 { align-self: center; }
#info-card-3 { align-self: flex-end; }
#info-card-4 { align-self: flex-start; }
#info-card-5 { align-self: center; }
#info-card-6 { align-self: flex-end; }
#info-card-7 { align-self: flex-start; }
#info-card-8 { align-self: center; }
#info-card-9 { align-self: flex-end; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 500px) {
  .container {
    padding: 5px !important;
  }
}

/* =========================================================
   # TOPBAR:
========================================================= */

.topbar {
  background: #2b2b2b;
  color: #fff;
  font-size: clamp(10px, 1vw + 0.25rem, 13px);
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(6px, 0.6vw + 4px, 9px) clamp(12px, 2vw, 20px);
  width: 100%;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow: visible;
}

.topbar-left {
  flex: 1 1 auto;
  min-width: 0;
}

.topbar-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(8px, 1.2vw, 16px);
  line-height: 1.2;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow: visible;
  width: 100%;
  margin-right: clamp(0%, 1vw, 2%);
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: clamp(4px, 0.8vw, 8px);
  color: #fff;
  font-size: clamp(11px, 0.9vw + 0.4rem, 15px);
  text-decoration: none;
  line-height: 1.2;
  transition: color 0.35s ease, opacity 0.35s ease, transform 0.25s ease;
  flex-shrink: 1;
  min-width: 0;
  transform: translateY(0);
}

.contact-link svg {
  width: clamp(14px, 1.5vw + 8px, 20px);
  height: clamp(14px, 1.5vw + 8px, 20px);
  flex-shrink: 0;
  fill: #fff;
  transition: transform 0.35s ease, opacity 0.35s ease, filter 0.35s ease;
  display: block;
  position: relative;
  top: 0.5px;
}

.contact-link span {
  display: inline-block;
  line-height: 1.1;
  vertical-align: middle;
  white-space: nowrap;
  font-size: inherit;
  padding-bottom: 1px;
}

.contact-link:hover {
  opacity: 0.85;
  transform: translateY(-1.5px);
}

.contact-link:hover svg {
  transform: scale(1.05) translateY(-1px);
  filter: drop-shadow(0 1px 4px rgba(255, 255, 255, 0.25));
}

.topbar-right a[href^="mailto"] {
  margin-right: clamp(10%, 1.5vw, 28px);
}

.topbar-right a[href^="https://wa.me"] {
  margin-right: clamp(-6px, -0.5vw, -8px);
}

/* ==================
   > RESPONSIVE
================== */

@media (max-width: 500px) {
  .topbar .container {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    padding: clamp(5px, 1vw + 2px, 8px) clamp(10px, 3vw, 16px);
  }

  .topbar-right {
    justify-content: center;
    flex-wrap: wrap;
    gap: clamp(6px, 2vw, 12px);
    margin-right: 0;
  }

  .contact-link {
    font-size: clamp(10px, 3.5vw, 13px);
    line-height: 1.2;
  }

  .contact-link svg {
    width: clamp(13px, 4vw, 18px);
    height: clamp(13px, 4vw, 18px);
    top: 0;
  }

  .topbar {
    font-size: clamp(9px, 2.8vw, 12px);
  }
}

/* =========================================================
   # HERO HEADER:
========================================================= */

.hero {
  position: relative;
  width: 100%;
  overflow: visible;
  z-index: 1;
}

.hero-inner {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.hero-bg {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center top;
  display: block;
  user-select: none;
}

.hero-wrapper {
  position: relative;
  overflow: visible;
}

.hero-content {
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
  max-width: 100%;
  padding: 0 20px;
  z-index: 5;
  opacity: 1;
  transition: top 0.6s ease, opacity 0.6s ease;
  will-change: top, opacity;
}

.hero-titel {
  color: #fff;
  white-space: nowrap;
  font-size: clamp(15px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  text-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
  margin: 0;
  text-align: center;
}

.bijna-overlay {
  position: absolute;
  z-index: 4;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 2.5s ease;
}

.bijna-overlay svg {
  transition: width 0.3s ease, height 0.3s ease;
}

.bijna-overlay.ready {
  visibility: visible;
  opacity: 1;
}

.bijna-svg {
  color: #fff;
  width: 75px;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 25px rgba(0,0,0,0.45));
  transition: width 0.3s ease, height 0.3s ease;
}

/* ==================
   > RESPONSIVE
================== */

@media (min-width: 1200px) {
  .hero-bg {
    max-height: 650px;
  }
}


/* =========================================================
   # LOGO HEADER:
========================================================= */

.logo-overlay {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 2.5s ease;
}

.logo-overlay.ready {
  visibility: visible;
  opacity: 1;
}

.logo-img {
  display: block;
  width: clamp(100px, 20vw, 360px);
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.28));
}


/* =========================================================
   # FEATURES BUTTONS:
========================================================= */

.feature-section-block {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 80px));
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: clamp(16px, 2vw, 24px);
  margin: -80px auto 120px;
  padding: 0 clamp(16px, 4vw, 40px);
  max-width: 1200px;
  width: 100%;
  opacity: 0;
  animation: featureSectionBlockUp 1.2s ease 1s forwards; 
  overflow: visible;
}

@keyframes featureSectionBlockUp {
  0% {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 80px));
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.feature-section-offset {
  transform: translateY(30%);
  cursor: pointer;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(14px, 1vw, 20px);
  padding: clamp(20px, 2vw, 40px);
}

.feature-section {
  flex: 1 1 calc(25% - 24px);
  background: #fff;
  border-radius: 18px;
  aspect-ratio: 1 / 1.3;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  padding: clamp(6px, 1vw, 10px);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.feature-section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  width: 100%;
  height: auto;
  padding: clamp(5%, 4vw, 5%) 6%;
  gap: 0.35rem;
  position: relative;
  overflow: hidden;
  max-width: 100%;
  cursor: pointer;
}

.feature-section .feature-section-icon {
  width: clamp(34px, 4vw, 48px);
  height: auto;
  margin-bottom: clamp(3px, 0.5vw, 8px);
}

.feature-section .feature-section-icon svg {
  width: 100%;
  height: auto;
  display: block;
}

.feature-section-titel {
  margin: 0;
  font-weight: 700;
  line-height: 1.15;
  font-size: clamp(0.7rem, 0.6rem + 0.9vw, 1.1rem);
  text-align: center;
  color: #1f1f1f;
  max-width: 95%;
  overflow-wrap: break-word;
  word-break: break-word;
}

.feature-section-info-titel {
  margin: clamp(3px, 0.4vw, 8px) 0 clamp(3px, 0.4vw, 8px);
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  color: #1f1f1f;
  font-size: clamp(0.65rem, 0.5rem + 0.9vw, 1.05rem);
  max-width: 90%;
  overflow-wrap: break-word;
  word-break: break-word;
}

.feature-section p {
  margin: 0;
  color: #333;
  line-height: 1.35;
  font-size: clamp(0.5rem, 0.45rem + 0.6vw, 0.9rem);
  text-align: center;
  overflow: hidden;
  position: relative;
}

.newline {
  display: block;
  margin-top: 0.8em;
  content: "";
  line-height: 1.4;
}

/* ==================
   > RESPONSIVE
================== */

@media (min-width: 500px) and (max-width: 1200px) {
  .feature-section .feature-section-icon {
    width: clamp(24px, calc((100vw - 500px) / 12.5 + 24px), 60px);
    height: auto;
    margin-bottom: clamp(3px, calc((100vw - 500px) / 150 + 3px), 8px);
    transition: width 0.25s ease, margin-bottom 0.25s ease;
}

  .feature-section-info-titel {
    font-size: clamp(0.7rem, calc((100vw - 500px) / 180 + 0.7rem), 1.05rem);
    line-height: 1.25;
    margin: clamp(2px, 0.4vw, 8px) 0 clamp(2px, 0.4vw, 8px);
    transition: font-size 0.25s ease;
  }

  .feature-section-titel {
    font-size: clamp(0.75rem, calc((100vw - 500px) / 180 + 0.75rem), 1.05rem);
    transition: font-size 0.25s ease;
  }
}

@media (min-width: 1200px) {
  .feature-section .feature-section-icon {
    width: 55px;
    margin-bottom: 8px;
  }

  .feature-section-info-titel {
    font-size: 1.05rem;
  }

  .feature-section-titel {
    font-size: 1.05rem;
  }
}

@media (max-width: 500px) {
  .feature-section-block {
    display: flex;
	top: 160%;
	flex-wrap: wrap;
	justify-content: center;
    gap: clamp(10px, 2.5vw, 14px);
    margin: clamp(-60px, -10vw, -30px) auto 60px;
  }
  
  .feature-section-offset {
    transform: none !important;
    cursor: pointer;
  }
  
  .feature-section-inner {
    padding: 8px;
    gap: 0.25rem;
  }

  .feature-section {
    flex: 1 1 calc(50% - 12px);
    aspect-ratio: 1 / 0.8;
    max-width: 210px;
  }
	
  .feature-section .feature-section-icon {
    width: clamp(22px, 8vw, 32px);
    margin-bottom: 3px;
  }

  .feature-section-info-titel {
    font-size: clamp(0.6rem, 2.5vw, 0.85rem);
  }

  .feature-section-titel {
    font-size: clamp(0.65rem, 2.8vw, 0.9rem);
  }
}

/* =========================================================
   # INTERACTIEVE VRAGEN (ISOLATED):
========================================================= */

.qna-section {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(6px, 1vw, 10px);
  width: 100%;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  line-height: 1.4;
  margin-block: clamp(20px, 4vw, 40px);
  overflow: visible;
  font-family: inherit;
  padding-left: 5%;
}

.qna-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(6px, 1vw, 15px);
  white-space: normal;
  width: 100%;
  min-height: 1.8em;
}

.qna-question {
  flex: 1;
  text-align: left;
  font-weight: 500;
  word-break: break-word;
  font-size: clamp(0.85rem, 1.6vw, 1rem);
  color: #222;
  font-family: inherit;
}

.qna-buttons {
  display: inline-flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: clamp(4px, 0.8vw, 8px);
  font-size: clamp(0.85rem, 1.6vw, 1rem);
  font-weight: 500;
  font-family: inherit;
  color: #222;
}

.qna-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid #bbb;
  border-radius: 4px;
  color: #222;
  padding: clamp(2px, 0.5vw, 6px) clamp(8px, 1vw, 12px);
  font: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-size: inherit;
  font-weight: inherit;
}

.qna-btn svg {
  width: 20px;
  height: 20px;
  fill: #1f1f1f;
  transition: fill 0.2s ease;
}

.qna-btn:hover {
  background: #f5f5f5;
  border-color: #888;
}

.qna-btn.active {
  background: #0065d3;
  color: #fff;
  border-color: #0065d3;
}

.qna-btn.active svg {
  fill: #fff;
}

.qna-response {
  text-align: left;
  font-style: normal;
  opacity: 0;
  transition: opacity 0.4s ease;
  white-space: normal;
  overflow: visible;
  font-size: clamp(0.85rem, 1.6vw, 1rem);
  font-weight: 500;
  font-family: inherit;
}

.qna-response.show {
  opacity: 1;
}

/* ==================
   > RESPONSIVE
================== */

@media (max-width: 500px) {
  .qna-line {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
  }

  .qna-response {
    grid-column: 1 / -1;
    margin-top: 4px;
    padding-block: 6px;
    font-weight: 700;
  }
}


/* =========================================================
   # DEGROVI WAARDEN (ISOLATED):
========================================================= */

.degrovi-section {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(6px, 1vw, 10px);
  width: 100%;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  line-height: 1.4;
  margin-block: clamp(20px, 4vw, 40px);
  overflow: visible;
  padding-left: 5%;
}

.degrovi-waarden-tekst {
  flex: 1 1 100%;
  min-width: 320px;
  font-weight: 700;
  text-align: left;
}

.degrovi-waarden-tekst ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(8px, 1vw, 12px);
}

.degrovi-waarden-tekst li {
  display: flex;
  align-items: flex-start;
  gap: clamp(8px, 1vw, 12px);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.5;
  color: #1f1f1f;
  background: none;
  padding: 0;
  border: none;
  box-shadow: none;
  transition: none;
}

.degrovi-waarden-tekst li:hover {
  background: none;
  transform: none;
}

.degrovi-waarden-tekst .check-icon {
  flex-shrink: 0;
  width: clamp(35px, 2vw, 35px);
  height: clamp(35px, 2vw, 35px);
  fill: #2ecc71;
}

.degrovi-waarden {
  background-color: #ffffff;
  padding: clamp(15px, 2vw, 20px);
}

.degrovi-waarden-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: clamp(20px, 2vw, 35px);
}

/* ==================
   > RESPONSIVE
================== */

@media (max-width: 500px) {
  .degrovi-waarden-container {
    flex-direction: column;
    text-align: center;
    gap: clamp(25px, 5vw, 40px);
  }

  .degrovi-waarden-tekst {
    width: 100%;
    margin: 0;
  }

  .degrovi-waarden-tekst li {
    font-size: clamp(0.85rem, 3vw, 0.95rem);
    gap: clamp(6px, 2vw, 10px);
  }

  .degrovi-waarden-tekst .check-icon {
    width: clamp(35px, 2vw, 35px);
    height: clamp(35px, 2vw, 35px);
  }
}

/* =========================================================
   # ACCORDION PAGES:
========================================================= */

.info-accordion {
  position: relative;
  z-index: 6;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 60px 40px 70px;
  box-sizing: border-box;
  margin-top: var(--feature-space, 160px);
  transition: margin-top 0.25s ease;
  overflow-x: hidden;
}

.info-accordion .container {
  max-width: 1500px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: clamp(25px, 2.5%, 50px);
  box-sizing: border-box;
}

.info-card {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  width: 80%;
  padding: 12px;
  transition: box-shadow 0.18s ease, transform 0.18s ease;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  align-self: center;
}

.info-card .info-content {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition:
    max-height 0.45s ease-in-out,
    opacity 0.35s ease-in-out;
  will-change: max-height, opacity;
}

.info-card .info-content,
.info-card .info-content * {
  cursor: default;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.14);
}

.info-inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  position: relative;
  padding: 0px;
  gap: 0px;
}

.info-card .info-inner {
  flex-direction: row;
  align-items: flex-start;
  gap: 0px;
  cursor: pointer;
}

.info-thumb {
  flex: 0 0 auto;
  display: flex;
  cursor: pointer;
  align-items: flex-start;
  justify-content: flex-start;
  margin-right: 18px;
  padding-left: 0;
}

.info-thumb img {
  width: clamp(70px, calc(70px + ((120 - 70) * ((100vw - 320px) / (1200 - 320)))), 120px);
  height: auto;  
  display: block;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transition: width 0.35s ease;
}

.info-top {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0;
  cursor: pointer;
}

.info-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-titel {
  margin-top: 0;
  margin-bottom: 5px;
  font-size: clamp(0.9rem, 1vw + 0.6rem, 1.26rem);
  font-weight: 700;
  color: #1f1f1f;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 6px;
  align-items: flex-start;
  max-width: 100%;
}

.info-preview {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
  font-size: clamp(0.85rem, 0.9vw + 0.25rem, 1rem);
}

.info-content {
  will-change: max-height, opacity, transform;
  overflow: hidden;
  cursor: default !important;
  pointer-events: none !important;
  max-height: 0;
  opacity: 0;
  color: #333;
  margin-top: 6px;
  padding: 0 24px 0px;
  font-size: 1rem;
  line-height: 1.6;
  transition:
    max-height 0.45s ease-in-out,
    opacity 0.3s ease-in-out;
}

.toggle-btn {
  position: absolute;
  bottom: -10px;
  right: 0px;
  width: 36px;
  height: 36px;
  border: none;
  background: none;
  cursor: pointer;
  box-shadow: none;
  z-index: 5;
  padding: 6px;
  display: flex;
  outline: none;
  align-items: center;
  justify-content: center;
}

.toggle-btn:hover .toggle-icon {
  transform: scale(1.12);
}

.toggle-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  stroke: none;
  fill: none;
  transform-origin: center;
  transition: transform 0.35s ease;
}

.info-card.open .info-content {
  pointer-events: auto;
  opacity: 1;
  max-height: 1000px;
}

.info-card.open .toggle-icon {
  transform: rotate(180deg);
}

.info-card.open { 
  cursor: default;
}

.info-card.open .info-inner {
  cursor: pointer;
}

.info-card.open .info-content,
.info-card.open .info-content * {
  cursor: default !important;
}

.info-content ul {
  margin: 1.8em 0 1.8em 0.4em;
  list-style: none;
  line-height: 1.5;
}

.info-content li {
  position: relative;
  margin-bottom: 0.8em;
  padding-left: 2em;
}

.info-content li::before {
  content: "•"; 
  position: absolute;
  left: 0;
  top: -0.1em;
  font-size: 2em;
  line-height: 1;
  color: #000;
}

/* ==================
   > RESPONSIVE
================== */

@media (min-width: 500px) and (max-width: 1000px) {
  .info-titel {
    font-size: clamp(1rem, 1.2vw + 0.6rem, 1.26rem);
  }
  .info-preview {
    font-size: clamp(0.8rem, 2.5vw, 0.95rem);
    line-height: 1.45;
    margin-bottom: 10px;
	overflow-wrap: anywhere;
  }
  
  
  .info-content {
    font-size: clamp(0.85rem, 0.8vw + 0.3rem, 1rem);
    line-height: 1.6;
  }
}

@media (max-width: 900px) {
  .info-card {
    width: 95%;
  }
  
  .info-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .info-inner,
  .info-card .info-inner {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }

  .info-thumb {
	width: 100%;
    max-width: 400px;
    margin-bottom: 10px;
    align-self: flex-start;
    flex: 0 0 auto;
    margin-bottom: 0;
    justify-content: flex-start;
    width: auto;
  }

  .info-thumb img {
	width: clamp(70px, 8vw, 100px);
    height: auto;
  }

  .info-preview,
  .info-content {
    text-align: left;
	font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    line-height: 1.7;
    color: #333;
  }
}

@media (max-width: 600px) {
  .info-accordion {
    padding: 45px 0px;
	overflow-x: hidden;
  }
	
  .info-content ul {
    margin-left: 1.4em;
    padding-left: 1.2em;
  }

  .info-content li::before {
    font-size: 2.0em;
    top: 0.12em;
  }
}

.toggle-btn:focus,
.toggle-btn:focus-visible {
  outline: none;
  box-shadow: none;
  background: none;
}

.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.btn-link {
  display: inline-block;
  text-decoration: none;
  color: #1f1f1f;
  font-weight: 700;
  font-size: 0.95rem;
}

.btn-link:hover {
  text-decoration: underline;
}

.info-content-img {
  display: block;
  max-width: 50px;
  height: auto;
}

.info-card.open .info-preview {
  -webkit-line-clamp: unset;
  max-height: none;
  overflow: visible;
  transition: all 0.4s ease;
}

@media (max-width: 500px) {
  .info-accordion {
    padding: 40px 12px;
	overflow-x: hidden;
  }
  
  .info-accordion .container {
    gap: clamp(12px, 3vw, 24px);
	align-items: center;
  }

  .info-card {
	align-self: center !important;
    width: 100%;
	max-width: 100%;
    padding: 12px;
    border-radius: 14px;
	box-sizing: border-box;
  }
  
  .info-inner,
  .info-card .info-inner {
    flex-direction: row;
    align-items: center;
    text-align: left;
	flex-wrap: wrap;
  }

  .info-thumb {
    flex: 0 0 auto;
    margin-right: 12px;
    margin-bottom: 0;
    justify-content: flex-start;
    width: auto;
    padding-left: 0;
  }

  .info-thumb img {
    width: clamp(70px, 8vw, 100px);
    height: auto;
  }

  .info-titel {
    font-size: clamp(0.85rem, 0.6vw + 0.7rem, 1rem);
	word-break: break-word;
  }

  .info-preview {
    font-size: clamp(0.8rem, 2.5vw, 0.95rem);
    line-height: 1.45;
    margin-bottom: 10px;
	overflow-wrap: anywhere;
  }

  .info-content {
    font-size: clamp(0.8rem, 2.2vw, 0.95rem);
    line-height: 1.5;
    padding: 0 6px;
  }

  .toggle-btn {
    right: 0px;
    bottom: -20px;
  }
  
  .info-headline {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
  }

  .info-card.open .info-preview {
    -webkit-line-clamp: unset;
    max-height: none;
    overflow: visible;
    transition: all 0.4s ease;
  }
}

/* =========================================================
   # RUSTDESK URLS:
========================================================= */

.rustdesk-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px 30px;
}

.rustdesk-section h3 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #000;
  text-align: center;
  margin-bottom: 10px;
}

.rustdesk-section svg {
  display: block;
  margin-bottom: 1.5rem;
  max-width: 200px;
  height: auto;
}

.rustdesk-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  flex-wrap: no-wrap;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.rustdesk-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s ease;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
}

.rustdesk-item svg {
  width: clamp(180px, 25vw, 220px);
  height: auto;
  margin-top: 10px;
  margin-bottom: 10px;
  transition: transform 0.25s ease, filter 0.25s ease;
  display: block;
  max-width: 100%;
  pointer-events: all;
}

.rustdesk-item span {
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: #222;
}

.rustdesk-item:hover svg {
  transform: scale(1.04);
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.15));
}

/* ==================
   > RESPONSIVE
================== */

@media (max-width: 500px) {
  .rustdesk-buttons {
    flex-direction: column;
	max-width: 40%;
    gap: 22px;
  }

  .rustdesk-item svg {
    width: clamp(220px, 80vw, 260px);
  }
}

@media (min-width: 500px) and (max-width: 1200px) {
  .rustdesk-buttons {
    flex-wrap: nowrap;
    gap: clamp(12px, 2vw, 20px);
  }

  .rustdesk-item svg {
    width: clamp(160px, 22vw, 200px);
  }
}

@media (min-width: 1200px) {
  .rustdesk-buttons {
    max-width: 65%;
  }

  .rustdesk-item svg {
    width: 200px;
  }
}

/* =========================================================
   # OVERIGE EXPERTISES:
========================================================= */

.expertises-afsluit {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 25px 60px 25px;
  text-align: center;
  box-sizing: border-box;
}

.expertises-afsluit .expertises-content {
  margin: 0 auto;
  text-align: left;
  font-weight: 500;
  padding: 0;
  box-sizing: border-box;
}

.expertises-afsluit p {
  font-size: 1rem;
  line-height: 1.7;
  color: #000;
  margin: 0;
}

/* ==================
   > RESPONSIVE
================== */

@media (max-width: 800px) {
  .expertises-afsluit {
    padding: 50px 20px;
  }
}

@media (max-width: 500px) {
  .expertises-afsluit p {
    font-size: 0.95rem;
  }
}


/* =========================================================
   # TARIEVEN:
========================================================= */

.tarieven {
  max-width: 1500px;
  width: 100%;
  padding: 00px 40px 30px;
  box-sizing: border-box;
  margin: 0 auto;
}

.tarieven .container {
  max-width: 1500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  margin: 0 5% auto;
}

.tarieven-titel {
  width: 100%;
  font-size: clamp(0.9rem, 1vw + 0.6rem, 1.26rem);
  text-align: left;
  align-self: flex-start;
}

.tarieven-tekst {
  width: 100%;
  text-align: left;
  align-self: flex-start;
}

.tarieven-tekst h3 {
  font-size: clamp(0.9rem, 1vw + 0.6rem, 1.26rem);
  margin: 0;
  font-weight: 700;
  color: #1f1f1f;
}

.tarieven-tekst p {
  line-height: 1.6;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: #222;
  margin-bottom: 15px;
}

.tarief-niveaus {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 20px;
  max-width: 1000px;
  margin-right: auto;
}

.tarief-niveau {
  flex: 1 1 0;
  min-width: 0;
  padding: 25px 0;
  box-sizing: border-box;
  transition: background 0.3s, transform 0.3s;
  text-align: center;
}

.tarief-niveau:hover {
  transform: translateY(-3px);
}

.divider {
  width: 2px;
  background: #ddd;
  flex-shrink: 0;
  margin: 0;
}

.tarief-niveau h3 {
  color: #0078d4;
  margin-bottom: 10px;
  font-size: clamp(0.65rem, 2.5vw, 1.25rem);
  white-space: nowrap;
}

.tarief-niveau p {
  color: #444;
  font-size: clamp(0.6rem, 1.5vw, 0.95rem);
  line-height: 1.5;
}

.reiskosten {
  font-size: 12px !important;
  color: #666;
  margin-right: auto;
}

/* ==================
   > RESPONSIVE
================== */

@media (max-width: 900px) and (min-width: 500px) {
  .tarief-niveaus {
	flex-wrap: nowrap;
    gap: clamp(10px, 2vw, 20px);
  }
  .tarief-niveau h3 {
    font-size: clamp(0.65rem, 2.5vw, 1.25rem);
  }
  .tarief-niveau p {
    font-size: clamp(0.7rem, 1vw, 0.9rem);
  }
  .tarief-niveau {
    padding: clamp(15px, 2vw, 25px);
  }
}

@media (max-width: 500px) {
  .tarieven {
    padding: 10px;
  }

  .tarief-niveaus {
    flex-wrap: nowrap;
    gap: 8px;
  }

  .divider {
    width: 1px;
  }

  .tarief-niveau {
    padding: 10px 0;
  }

  .tarief-niveau h3 {
    font-size: clamp(0.55rem, 3vw, 0.85rem);
    white-space: nowrap;
  }

  .tarief-niveau p {
    font-size: clamp(0.55rem, 2.5vw, 0.8rem);
  }

  .tarieven-tekst {
    max-width: 100%;
    text-align: left;
  }
}

/* =========================================================
   # CONTACT FORM:
========================================================= */

.contact-blok {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0px 40px 70px;
  box-sizing: border-box;
  overflow: hidden;
}

.contact-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: left;
  gap: clamp(20px, 4vw, 60px);
  max-width: 1500px;
  margin: 0 auto;
  transition: all 0.4s ease;
}

.container-usp-contact {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  margin: 0 5% auto;
  padding: 0 20px;
}

.contact-container {
  position: relative;
  flex: 1 1 clamp(320px, 45%, 600px);
  max-width: clamp(400px, 45%, 500px);
  background: #fff;
  border-radius: 18px;
  padding: clamp(20px, 3vw, 30px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  transition: all 0.5s ease;
}

.contact-tekst {
  font-size: clamp(0.9rem, 1vw + 0.6rem, 1.26rem);
  font-weight: 700;
  line-height: 1.6;
  color: #1f1f1f;
  margin-bottom: 40px;
}

.contact-image {
  position: relative;
  flex: 1 1 clamp(320px, 45%, 550px);
  max-width: clamp(320px, 45%, 500px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.8s ease;
  z-index: 1;
}

.contact-image img {
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  transition: all 0.8s ease;
}

.form-group {
  margin-bottom: 22px;
  text-align: left;
}

.form-group label {
  font-size: 15px;
  font-weight: 600;
  color: #1f1f1f;
  margin-bottom: 12px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 15px;
  border: 1px solid #ddd;
  border-radius: 0px;
  font-family: inherit;
  resize: vertical;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1f1f1f;
  box-shadow: 0 0 0 3px rgba(31, 31, 31, 0.1);
}

.error {
  border-color: #d63447 !important;
}

.error-msg {
  color: #d63447;
  font-size: 13px;
  margin-top: 5px;
  display: block;
  line-height: 1.3;
}

/* ======================
   SHAKE ANIMATIE
====================== */
@keyframes shake {
  0% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-6px); }
  20%, 40%, 60%, 80% { transform: translateX(6px); }
  100% { transform: translateX(0); }
}

.shake {
  animation: shake 0.5s ease;
}

.form-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.btn-verzend {
  background: #1f1f1f;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  padding: 12px 30px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-verzend:hover {
  background: #333;
  transform: translateY(-2px);
}

.form-status {
  font-size: 14px;
  color: #1f1f1f;
  margin-left: 20px;
  flex-grow: 1;
}

.success-check {
  display: none;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 20px;
}

.success-check svg {
  width: 120px;
  height: 120px;
  fill: #27ae60;
}

.success-visible {
  display: flex !important;
  animation: fadeIn 0.8s ease forwards;
}

#bedanktTekst {
  text-align: center;
  color: #1f1f1f;
  font-size: clamp(20px, 3vw, 22px);
  font-weight: 800;
  margin-top: 10px;
  margin-bottom: 0;
  display: none;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==================
   > RESPONSIVE
================== */

@media (max-width: 800px) {
  .contact-image {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateX(0%) translateY(-50%);
    opacity: 0.25;
    filter: blur(1px);
    z-index: 1;
  }
  .contact-image img {
    width: clamp(650px, 80vw, 600px);
  }
  .contact-container {
    z-index: 2;
    backdrop-filter: blur(4px);
  }
}

@media (max-width: 500px) {
  .contact-blok {
    padding: 5px !important;
  }
  .contact-image {
    transform: translateX(25%) translateY(-50%);
    opacity: 0.2;
  }
  .contact-container {
    padding: clamp(10px, 4vw, 25px);
  }
  .container-usp-contact {
    padding: 5px !important;
  }
}


/* =========================================================
   # FOOTER:
========================================================= */

.degrovi-footer {
  background: #2b2b2b;
  color: #fff;
  width: 100%;
  overflow: hidden;
  font-size: clamp(12px, 1vw + 0.3rem, 15px);
}

.degrovi-footer .footer-top {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(20px, 3vw, 30px) clamp(20px, 4vw, 40px);
  flex-wrap: nowrap;
  padding-bottom: 0px;
  gap: clamp(40px, 2vw, 60px);
}

.footer-col {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 300px;
  text-align: left;
}

.footer-about {
  max-width: 38%;
}

.footer-logo {
  width: clamp(100px, 14vw, 180px);
  height: auto;
  display: block;
  margin-bottom: 6px;
  color: #fff;
  transition: width 0.6s ease, transform 0.6s ease;
  filter: none;
  forced-color-adjust: none;
}

.footer-text {
  display: none;
  font-size: clamp(11px, 0.9vw + 0.4rem, 15px);
  line-height: 1.5;
  margin-top: 6px;
  color: #ddd;
  white-space: normal;
  width: 100%;
  padding-right: 10%;
}

.footer-text-logo {
  font-size: clamp(11px, 0.9vw + 0.4rem, 15px);
  line-height: 1.5;
  margin-top: 6px;
  color: #ddd;
  white-space: normal;
  width: 100%;
  padding-right: 10%;
}

.footer-links h4,
.footer-contact h4 {
  color: #fff;
  font-size: clamp(13px, 1vw + 0.3rem, 18px);
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  text-align: left;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 6px;
}

.footer-links ul li a {
  color: #ddd;
  text-decoration: none;
  font-size: clamp(11px, 1vw + 0.35rem, 15px);
  transition: opacity 0.25s ease;
  white-space: nowrap;
}

.footer-links ul li a:hover {
  opacity: 0.8;
}

.footer-icons {
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 0.8vw, 10px);
  align-items: flex-start;
}

.footer-icons .contact-link {
  display: inline-flex;
  align-items: center;
  gap: clamp(6px, 1vw, 10px);
  font-size: clamp(11px, 1vw + 0.4rem, 15px);
  color: #fff;
  text-decoration: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
}

.footer-icons .contact-link:hover {
  opacity: 0.85;
  transform: translateY(-1.5px);
}

.footer-icons .contact-link:hover svg {
  transform: scale(1.05) translateY(-1px);
  filter: drop-shadow(0 1px 4px rgba(255, 255, 255, 0.25));
}

.footer-icons svg {
  width: clamp(14px, 1.8vw, 20px);
  height: clamp(14px, 1.8vw, 20px);
  fill: #fff;
  flex-shrink: 0;
}

.footer-contact p {
  margin-top: 10px;
  font-size: clamp(11px, 0.9vw + 0.35rem, 14px);
  color: #ddd;
  line-height: 1.4;
  text-align: left;
  white-space: normal;
}

.degrovi-footer .footer {
  background: #2b2b2b;
  text-align: center;
  padding: clamp(12px, 1.5vw, 16px);
  font-size: clamp(11px, 0.8vw + 0.35rem, 14px);
  color: #bbb;
}

.mk img {
  margin-top: 10px;
  width: 100%;
  max-width: 30px;
  height: auto;
  padding-right: 5px;
}

/* ==================
   > RESPONSIVE
================== */

@media (max-width: 500px) {
  .degrovi-footer .footer-top {
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    gap: 28px;
  }

  .footer-col {
    flex: 1 1 100%;
    width: 100%;
  }

  .footer-about {
    max-width: 100%;
  }

  .footer-text {
    padding-right: 10%;
  }
}


/* =========================================================
   # SCROLL2TOP ARROW:
========================================================= */

#scrollToTopBtn {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 9999;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#scrollToTopBtn.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

#scrollToTopBtn.fade-out {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

#scrollToTopBtn .toggle-icon {
  width: 40px;
  height: 40px;
  color: #000;
  stroke: none;
  fill: currentColor;
  transform: rotate(180deg);
  transition:
    transform 0.35s ease,
    color 0.35s ease,
    filter 0.35s ease;
}

#scrollToTopBtn:hover .toggle-icon {
  transform: rotate(180deg) scale(1.25) translateY(-2px);
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.3));
}

#scrollToTopBtn.over-footer .toggle-icon {
  color: #fff;
  fill: #fff;
  stroke: none;
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.4));
}


/* =========================================================
   # END OF FILE
========================================================= */



