/* =======================================================================
   RESET & ROOT VARIABELEN
   ======================================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-color: #ffffff;
  --text-color: #1e392d;
  --underline-color: #1e392d;
  --underline-hover-color: gray;
  --accent-color: #007BFF;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --header-bg-color: rgba(255, 255, 255, 0.55);
  --cta-background: linear-gradient(135deg, #60041c, #7a1f2d);
  --cta-text-color: #fff;
  --footer-bg-color-start: #ffffff;
  --footer-bg-color-end: #f9f9f9;
  --tweet-bg-color-start: #f3f3f3;
  --tweet-bg-color-end: #e6e6e6;
  --secondary-text-color: #777;
  --divider-color: #ddd;
}


html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-color);
  overflow-x: hidden;
  background-color: var(--bg-color);
  transition: background-color 0.3s, color 0.3s;

  font-size: clamp(1rem, 1.8vw, 1.1rem); /* <-- responsive typografie */
  line-height: 1.6;
  word-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}

/* ========================
   GLOBALE TYPOGRAFIE
   ======================== */

:root {
  --font-scale-xs: clamp(0.75rem, 1.2vw, 0.875rem);
  --font-scale-sm: clamp(0.875rem, 1.3vw, 1rem);
  --font-scale-base: clamp(1rem, 1.5vw, 1.125rem);
  --font-scale-md: clamp(1.125rem, 2vw, 1.25rem);
  --font-scale-lg: clamp(1.5rem, 3vw, 2rem);
  --font-scale-xl: clamp(2rem, 4vw, 3rem);
  --font-scale-xxl: clamp(2.5rem, 5vw, 4rem);
}

body {
  font-family: 'Inter', sans-serif;
  font-size: var(--font-scale-base);
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
  word-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background-color 0.3s, color 0.3s;
}

h1 {
  font-size: var(--font-scale-xl);
  font-weight: 700;
  margin-bottom: 0.5em;
}

h2 {
  font-size: var(--font-scale-lg);
  font-weight: 600;
  margin-bottom: 0.6em;
}

h3 {
  font-size: var(--font-scale-md);
  font-weight: 600;
  margin-bottom: 0.6em;
}

h4 {
  font-size: var(--font-scale-sm);
  font-weight: 600;
  margin-bottom: 0.5em;
}

p {
  font-size: var(--font-scale-base);
  line-height: 1.6;
  margin-bottom: 1em;
}

li {
  font-size: var(--font-scale-base);
}

/* =======================================================================
   HEADER
   ======================================================================= */
/* === Sticky scroll effect op header === */
.header {
    position: fixed;
    top: 0;
    height: 80px;
    width: 100%;
    z-index: 1000;
    background-color: #ffffff;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    left: 0; /* <- ook deze is belangrijk */
    padding: 20px 5%;

    /* Belangrijk voor uitlijning: */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header.scrolled {
    background-color: #ffffff; /* of #f6f6f6 / jouw gewenste kleur */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.header.scrolled a {
    color: #1e392d !important;
}

.header:not(.scrolled) a {
  color: #1e392d; /* iets donkerder rood voor contrast */
}

/* Menulinks na scrollen (licht/donker afhankelijk van design) */
.header.scrolled a {
  color: #1e392d; /* of wit: #fff, afhankelijk van achtergrondkleur */
}



/* =======================================================================
   HERO-VIDEO EN OVERLAY
   ======================================================================= */


.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px 5%;
  margin: 32px auto 0 auto;
  max-width: 1980px;
}

.hero-content {
  width: 100%;
  max-width: 1980px;
  display: flex;
  align-items: cover;
  gap: 40px;
}

.hero-image-row {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 30px;
  overflow: hidden;
}

.hero-image-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* fills, crops edges */
  border-radius: 10px; /* match parent */
}




/* =======================================================================
   NAVBAR
   ======================================================================= */
.navbar-left,
.navbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.navbar-right { justify-content: flex-end; }

.navbar-left a,
.navbar-right a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: bold;
}

.navbar-right a.cta { position: relative; }

.navbar-right a.cta::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 2px;
  background-color: var(--underline-color);
  transition: background-color 0.3s ease;
}

.navbar-right a.cta:hover::after { background-color: var(--underline-hover-color); }

.hamburger { display: none; }



/* =======================================================================
   LOGO
   ======================================================================= */
.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.logo img {
  max-width: 180px;
  height: auto;
}

#logo-light  { display: inline; }
#logo-dark   { display: none;  }
.dark-mode #logo-light { display: none; }
.dark-mode #logo-dark  { display: inline; }

#favicon-light { display: inline; }
#favicon-dark  { display: none;  }
.dark-mode #favicon-light { display: none; }
.dark-mode #favicon-dark  { display: inline; }


.property-description {
    padding: 0 15%;
    text-align: center;
    color: var(--text-color);
    background-color: var(--bg-color);
    transition: background-color 0.3s, color 0.3s;
    max-width: none;
    margin-top: 75px;
}

.property-description h1 {
    font-size: var(--font-scale-xl);
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 30px;
    line-height: 1.2;
}

.property-description p {
    font-size: var(--font-scale-base);
    line-height: 1.6;
    margin-bottom: 125px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.usp-bg-wrapper {
  background-color: #f9f9f9;
  padding: 4rem 0;
  width: 100%;
}

.usp-filter {
  background-color: #f9f9f9;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
}

.usp-filter h2 {
  font-size: var(--font-scale-lg);
  color: #103A20;
  font-weight: 600;
  margin-bottom: 30px;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.filter-btn {
  padding: 10px 20px;
  border: 1px solid #103A20;
  border-radius: 25px;
  background-color: transparent;
  color: #103A20;
  font-size: var(--font-scale-base);
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s ease;
}

.filter-btn:hover {
  background-color: #103A20;
  color: white;
}

.real-services {
    background-color: #f9f9f9;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 0 15%;
    margin-top: 20px;
    margin-bottom: 80px;
    justify-content: center;
}

.service-item {
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
}

.service-card {
    margin-top: 30px;
    margin-bottom: 20px;
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--tweet-bg-color-start), var(--tweet-bg-color-end));
    padding: 24px;
    color: var(--text-color);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    box-sizing: border-box;
    cursor: pointer;
}

.service-card.bg1 {
  background-color: #e4ecec; /* zacht roze */
}

.service-card.bg2 {
  background-color: #d7e4e2; /* lichtblauw */
}

.service-card.bg3 {
  background-color: #cddcdb; /* lichtgroen */
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.service-card:hover .service-tag {
  background-color: #103A20;
  color: white;
  transition: all 0.2s ease;
}

.service-card .label {
    font-size: var(--font-scale-xs);
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-tag {
    background-color: white;
    color: #333;
    padding: 4px 12px;
    font-size: var(--font-scale-xs);
    font-weight: 500;
    border-radius: 999px;
    margin-top: 80px;
    margin-bottom: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    width: fit-content;
    transition: all 0.2s ease;
}

/* Highlight-stijl bij hover */
.service-tag.highlight {
  background-color: #103A20;
  color: white;
}

.service-image {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
    object-fit: contain;
}

.service-card-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 10px;
    text-align: left;
}

.service-card-title {
    font-weight: 700;
    font-size: var(--font-scale-md);
    margin-bottom: 8px;
    color: #222;
    text-decoration: none;
}

.service-card-description {
    font-size: var(--font-scale-sm);
    color: #444;
    line-height: 1.5;
}

.service-card-text {
    display: none;
}

.link-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
    width: 35px;
    height: 35px;
}

.link-icon:hover {
    background-color: rgba(255, 255, 255, 1);
}

.link-icon img {
    width: 100%;
    height: 100%;
}

.fullscreen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 1050;
}

.fullscreen-overlay.active {
    opacity: 1;
    visibility: visible;
}

.overlay-content {
    background-color: var(--bg-color);
    color: var(--text-color);
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 550px;
    max-height: 100vh;
    flex-direction: column;
    text-align: left;
    position: relative;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: 1px solid var(--divider-color); /* Adds an outlined border */
    border-radius: 8px;
    font-size: var(--font-scale-base);
    color: var(--text-color); /* Keeps consistent text color */
    cursor: pointer;
    width: 32px; /* Fixed width for consistency */
    height: 32px; /* Fixed height for consistency */
    display: flex; /* Centers the "X" */
    align-items: center; /* Centers the "X" vertically */
    justify-content: center; /* Centers the "X" horizontally */
    transition: background-color 0.3s, color 0.3s, border-color 0.3s; /* Smooth transitions */
}

.overlay-title {
    font-size: var(--font-scale-lg);
    font-weight: bold;
    color: var(--text-color);
    margin: 25px 0 10px;
}

.thumbnail-and-description {
    display: flex;
    align-items: center;
}

.overlay-thumbnail {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    margin-right: 15px;
    object-fit: cover;
}

.overlay-description {
    font-size: var(--font-scale-base);
    color: var(--secondary-text-color);
    margin: 0;
}

.overlay-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 15px;
    width: 100%;
}

.overlay-button {
    display: flex;
    align-items: center;
    background-color: #fff;
    color: var(--text-color);
    background-color: var(--bg-color);
    border: 1px solid var(--divider-color);
    padding: 12px;
    font-size: var(--font-scale-base);
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
    justify-content: flex-start;
}

.overlay-button img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    flex-shrink: 0;
}

.overlay-button:hover {
    background-color: var(--underline-hover-color);
    border-color: var(--bg-color);
}


.belintro-container {
  background: linear-gradient(180deg, #0057FF 0%, #0047D9 100%);
  color: #ffffff;
  padding: 40px 0;
  display: flex;
  justify-content: center;
}

.belintro-inner {
  max-width: 420px;
  width: 100%;
  display: flex;
  gap: 14px;
  align-items: center;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  background-color: #1e1e1e;
  padding: 16px 18px;
}

.belintro-inner img {
  width: 56px;
  height: 56px;
  min-width: 72px;    
  min-height: 72px;
  border-radius: 8px;
  border: 2px solid #ffcc00;
  object-fit: cover;
  display: block;
}

.belintro-text {
  flex-grow: 1;
}

.belintro-title {
  font-weight: 600;
  font-size: var(--font-scale-sm); 
  color: #fff;
  line-height: 1.4;
  margin: 0 0 2px;
}

.belintro-sub {
  font-size: var(--font-scale-xs);
  color: #fff;
  line-height: 1.4;
  margin: 0 0 8px;
}

/* INLINE belintro — yellow ring + black gap, no size change */
.belintro-email {
  --field-h: 32px;                /* total inner control height */

  display: flex;
  align-items: center;
  gap: 0;
  max-width: 380px;
  width: 100%;
  margin-bottom: 8px;

  /* yellow ring */
  outline: 2px solid #ffcc00;
  outline-offset: 0;
  border-radius: 14px;

  /* black gap all around (like popup) */
  padding: 4px;
  background: transparent;
  box-sizing: border-box;

  /* hide any sub‑pixel seams */
  overflow: hidden;
}

.belintro-email input {
  flex: 1;
  min-width: 0;
  height: var(--field-h);
  line-height: var(--field-h);
  padding: 0 12px;

  background: #fff;
  border: 0;
  background-clip: padding-box;
  border-radius: 14px 0 0 14px;
  outline: none;
  font-size: var(--font-scale-sm);
  box-sizing: border-box;
  appearance: none;
}

.belintro-email button {
  height: var(--field-h);
  min-width: 38px;
  margin-right: 4px;

  background-color: #ffcc00;
  border: 0;
  background-clip: padding-box;
  border-radius: 0 16px 16px 0;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: var(--font-scale-sm);
  cursor: pointer;
  appearance: none;

  margin-left: -2px;  /* if you still see a hairline, use -2px */
}



.belintro-note {
  font-size: 0.75rem;
  color: #ccc;
  margin: 10px 0 0;
  text-align: left;
}   





.atende-section {
  position: relative;
  margin-top: 150px;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0;
  padding: 100px 15% 80px;
  background-color: #ffffff;
  overflow: visible;
  flex-wrap: nowrap;
  z-index: 0;
}

/* LINKERKOLOM */
.atende-left {
  flex: 0 0 56%;
  background: linear-gradient(rgba(20,20,20,0.58), rgba(20,20,20,0.58)),
              url("/images/hero-client-services.jpg") center/cover no-repeat;
  transform: translateY(-60px);
  padding: 50px 40px;
  border-radius: 16px;
  color: #fff;
  min-height: 100%;
  z-index: 1;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.atende-left .atende-text {
  max-width: 600px;
}

.atende-left h3 {
  font-size: var(--font-scale-sm);
  color: #b3e5fc;
  margin-bottom: 80px;
}

.atende-left h2 {
  font-size: calc(var(--font-scale-lg) * 0.85);
  margin-bottom: 30px;
}

.atende-left p {
  font-size: var(--font-scale-base);
  line-height: 1.6;
  padding-right: 40px;
  margin-bottom: 40px;
}

.atende-content {
  position: relative;
  z-index: 3;
  color: white;
}

.atende-button {
  background-color: #fff;
  color: #003366;
  padding: 12px 24px;
  margin-top: 4rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-scale-base);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: background 0.3s;
}

.atende-button:hover {
  background-color: #e0e0e0;
}

/* RECHTERKOLOM */
.atende-right {
  flex: 0 0 46%;
  background-color: #fff;
  padding: 50px 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  position: relative;
  min-height: 100%;
  z-index: 2;
  margin-left: -60px; /* overlap richting links */
  align-self: center;
}

.atende-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.atende-feature:last-child {
  border-bottom: none;
}

.atende-feature .icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.icon svg {
    width: 32px;
    height: 32px;
    stroke: #0A0A0A;
    stroke-width: 1;
    flex-shrink: 0;
}

.atende-feature h4 {
  margin: 0 0 6px;
  font-size: var(--font-scale-md);
  color: #003366;
}

.atende-feature p {
  margin: 0;
  font-size: var(--font-scale-base);
  color: #444;
}


.cta-section {
    background: linear-gradient(135deg, #1e392d, #1e392d);
    color: #fff;
    transition: background-color 0.3s, color 0.3s;
    padding: 60px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 40vh;
    gap: 30px;
    margin-top: 150px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.cta-container {
    max-width: 1200px;
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

.cta-section h2 {
    font-size: var(--font-scale-lg);
    letter-spacing: 0.5px;
    font-weight: bold;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: var(--font-scale-base);
    line-height: 1.5;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    border: none;
    border-radius: 12px;
    font-size: var(--font-scale-base);
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button .fas {
    margin-right: 10px;
    font-size: 1.2rem;
    line-height: 1;
    vertical-align: middle;
}

.cta-button.primary {
    background-color: #007BFF;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.cta-button.primary:hover {
    background-color: #0056b3;
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.5);
}

.cta-button.secondary {
    background-color: transparent;
    color: #007BFF;
    border: 2px solid #0056b3;
}

.cta-button.secondary:hover {
    background-color: #007BFF;
    color: #fff;
    transform: scale(1.05);
}


/* Achtergrond overlay */
.popup-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

/* Popup box */
.popup-content {
  background: #1e392d; 
  max-width: 500px;
  margin: 5% auto;
  padding: 20px;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* Sluit-knop */
.popup-close {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 24px;
  cursor: pointer;
}


/* Verwijder achtergrond van de belintro-container in de popup */
#belintro-popup .belintro-container {
  background: none !important;
}


.footer {
    background: linear-gradient(135deg, var(--footer-bg-color-start), var(--footer-bg-color-end));
    padding: 40px 10%;
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
    color: var(--text-color);
    transition: background-color 0.3s, color 0.3s;
}

.footer h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: var(--text-color);
}

.footer a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: var(--accent-color);
    transform: translateX(3px);
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-top: 30px;
}

.footer-column {
    flex: 1 1 160px;
    display: flex;
    flex-direction: column;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    font-size: 1rem;
}

.footer-column.tweet-card {
    flex: 1 1 100%;
    max-width: 350px;
    align-self: flex-start;
    background: linear-gradient(135deg, var(--tweet-bg-color-start), var(--tweet-bg-color-end));
    border-radius: 12px;
    padding: 20px;
    color: var(--text-color);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.footer-column.tweet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

/* ===== Footer Brand (vervangt tweetcard) ===== */
.footer-column.footer-brand {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 16px 0;
}

.footer-column.footer-brand .brand-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.footer-column.footer-brand .brand-logo {
  display: block;
  height: 34px;          /* pas aan naar wens: 28–48px werkt goed */
  width: auto;
  filter: none;          /* eventueel: drop-shadow(0 1px 0 rgba(0,0,0,.1)) */
}

.footer-column.footer-brand .brand-tagline {
  margin: 6px 0 0;
  font-size: 0.95rem;    /* sluit aan bij je body-schaal */
  color: var(--text-color);
  opacity: 0.9;
}


.footer-divider {
    height: 1px;
    background-color: #444;
    margin: 40px auto 20px;
    width: 100%;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    gap: 15px;
}

.footer-bottom .rights-reserved {
    font-size: 0.9rem;
    color: var(--text-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--text-color);
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--accent-color);
}


.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 8px 16px;
    background-color: var(--accent-color);
    color: var(--bg-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.5rem;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.back-to-top:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}



a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px dashed #007BFF;
  outline-offset: 4px;
}

@media (max-width: 600px) {
  .real-services {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0 16px;
  }

  .service-card {
    aspect-ratio: auto !important;
    padding: 20px 16px;
    min-height: auto;
  }

  .service-tag {
    margin-bottom: 12px;
  }

  .service-card-title {
    font-size: var(--font-scale-base);
    margin-bottom: 8px;
  }

  .service-card-description {
    font-size: var(--font-scale-base);
    line-height: 1.3;
  }
}

@media (max-width: 600px) {
 

 .belintro-inner {
    max-width: 84%;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: left; 
  }

  /* Force the image to the left */
  .belintro-inner img {
    align-self: flex-start;
  }

  .belintro-inner > * {
    width: 100%; /* Make inner elements take full width so text aligns left */
  }
}

  .belintro-email {
    position: relative;
    width: 100%;
    max-width: 100%;
  }

  .belintro-email input {
    width: 100%;
    padding-right: 44px; /* ruimte voor de knop */
    border-radius: 8px;
  }

  .belintro-email button {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    height: 32px;
    width: 40px;
    border-radius: 6px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .belintro-sub {
  font-size: var(--font-scale-xs);
    line-height: 1.4;
  }

  .belintro-sub::before,
  .belintro-sub span {
    display: none;
  }
}

@media (max-width: 768px) {
  .header {
    background-color: #ffffff !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  }

  .header a {
    color: #1e392d !important;
  }
}

@media (max-width: 992px) {
    .navbar-left,
    .navbar-right {
        display: none;
    }

    .header {
        display: flex;
        height: 60px;
        align-items: center;
        justify-content: space-between;
    }

    .logo {
        order: 1;
        margin: 0 auto 0 0;
        max-width: 130px;
        padding-left: 5%;
    }

    .hamburger {
        display: flex;
        order: 2;
        margin-left: auto;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        left: 20px;
        top: 20px;
        z-index: 1001;
        cursor: pointer;
        width: 30px;
        height: 25px;
        background: transparent;
        border: none;
        padding: 0;
    }

    .hamburger .bar {
        width: 100%;
        height: 3px;
        background-color: var(--text-color);
        border-radius: 2px;
        transform-origin: center;
        transition: transform 0.3s, opacity 0.3s;
        position: relative;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8.5px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8.5px) rotate(-45deg);
    }

    .mobile-menu {
        position: fixed;
        flex-direction: column;
        background-color: var(--bg-color);
        width: 75%;
        max-width: 300px;
        padding: 20px;
        box-shadow: 0 4px 8px var(--shadow-color);
        top: 0;
        left: 0;
        height: 100%;
        transform: translateX(-100%);
        transition: transform 0.3s;
        z-index: 1000;
    }

    .mobile-menu.active {
        transform: translateX(0);
        z-index: 1003;
    }

    .mobile-menu a {
        text-decoration: none;
        color: var(--text-color);
        padding: 15px 20px;
        font-size: 1em;
        display: block;
    }

    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1002;
    }

    .mobile-menu-overlay.active {
        display: block;
    }


  .hero {
    background-position: center 10%;
    min-height: 50vh;
  }

  .hero-overlay{
    left: 50%;
    top: 55%;
    transform:translate(-50%,-50%);
    width: 100%;
    max-width: 100%;
    padding: 1.6rem 1.8rem 2rem;
    text-align:left;
    border-radius:14px;
    gap:1rem;
  }

  .property-description {
    text-align: left;
    padding: 30px;
    margin-top: 0;
  }

.property-description h1 {
    font-size: var(--font-scale-lg);
    line-height: 1.3;
  }

.property-description p {
    margin-bottom: 2rem;
  }


.usp-bg-wrapper {
  padding: 2rem 0;
 }


.usp-filter h2 {
    font-size: var(--font-scale-lg);
    line-height: 1.3;
  }

    .real-services {
        grid-template-columns: 1fr;
        justify-items: center;
        margin-bottom: 30px;
        font-size: var(--font-scale-base);
        line-height: 1.5;
        padding: 0 5%;
    }


    .service-item {
        max-width: 100%;
        margin: 0 10px;
    }

    .service-card {
        max-width: 100%;
    }

    .service-card-title {
        font-weight: bold;
        font-size: var(--font-scale-base);
        margin: 0 5px 0 0;
    }

    .service-card-description {
        font-size: var(--font-scale-base);
        margin: 0 5px 0 0;
    }


    .cta-section {
        padding: 20px 5%;
        height: auto;
        margin-top: 3.75rem;
    }

    .cta-container {
        text-align: left;
        max-width: 100%;
    }

    .cta-section h2 {
        font-size: var(--font-scale-lg);
        line-height: 1.3;
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .cta-section p {
        display: block;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }

    .cta-button {
        font-size: var(--font-scale-base);
        width: 100%;
        padding: 12px 20px;
    }

    .footer {
        background: #f0f0f0;
    }


    .footer-columns {
        flex-direction: column;
        gap: 18px;
    }
 
    .footer-column {
       flex: 0 0 auto;
       margin-bottom: 0; /* voor de zekerheid */
    }

    .footer h4 {
        font-size: var(--font-scale-md);
        margin: 0 0 6px 0;
    }

    .footer-column ul {
        margin: 0;
        padding: 0;
    }


    .footer-column ul li {
        margin-bottom: 4px; /* eventueel verlagen */
    }


    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0; 
    }

    .footer-bottom .social-icons {
        margin-top: 0;
        margin-left: 0;
    }

    .footer .tweet-card {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .footer .tweet-header {
        margin-right: auto;
    }

    .footer .tweet-card::after {
        top: auto;
        bottom: 10px;
        right: 10px;
    }

    .footer .tweet-logo {
        margin: 0 auto 10px;
    }

    .footer .tweet-content {
       font-size: var(--font-scale-base);
    }

   .back-to-top {
       font-size: var(--font-scale-base);
       font-weight: normal;
       right: 5px;
   }
}

@media (max-width: 992px) {
/* Verberg standaard alle close-buttons */
.close-button {
  display: none;
}

/* Toon de close-button alleen als de overlay actief is */
#fullscreenOverlay.active .close-button,
#modalOverlay.active .close-button {
  display: block;
 }
}

@media (max-width: 992px) {
  .real-services-extra {
    display: none;
  }

  .atende-section {
    flex-direction: column;
    padding: 0 5%;
  }

  .atende-left,
  .atende-right {
    flex: 1 1 100%;
    margin-left: 0;
    transform: none;
    border-radius: 16px;
    padding: 30px 20px;
  }

  .atende-left {
    margin-bottom: 30px;
    background-position: center center;
    background-size: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding-bottom: 60px;
  }

  .atende-right {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  }

  .atende-left p {
    padding-right: 0;
  }

  .atende-button {
    width: 100%;
    text-align: center;
  }

  .atende-feature {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
  }

  .atende-feature .icon img {
    width: 32px;
    height: 32px;
  }
}


@media (max-width: 768px) {
  .header {
    padding: 0 5% !important;         /* geen verticale padding */
  }


  .hero {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    position: relative;
    top: 0;                /* zorg dat hij niet naar beneden schuift */
  }

  .hero-image-row {
    margin: 0 !important;
    border-radius: 0 !important;
    height: 250px;
    overflow: hidden;
  }

  .hero-image-row img {
    border-radius: 0 !important;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .property-description {
    margin-top: 0 !important;
  }
}



@media (min-width: 993px) {
  .mobile-menu,
  .mobile-menu.active {
    transform: translateX(-100%) !important;
    opacity: 0 !important;
    pointer-events: none;
    visibility: hidden;
  }

  .mobile-menu-overlay,
  .hamburger {
    display: none !important;
  }
}

@media (min-width: 1024px) {
    .desktop-only-break {
        display: block;
    }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}


@media (max-width: 992px) {
  .footer-column.footer-brand {
    align-items: flex-start;
    gap: 8px;
    padding: 8px 0 0;
  }
  .footer-column.footer-brand .brand-logo {
    height: 30px;
  }
  .footer-column.footer-brand .brand-tagline {
    font-size: 0.95rem;
  }
}


@media (max-width: 768px) {
  /* de groene/witte popup-doos zelf */
  #belintro-popup .popup-content {
    width: 90vw;          /* ~80% van het scherm */
    max-width: 90vw;      /* forceer geen smaller max-width */
    padding: 18px;
  }

  /* zorg dat de zwarte belintro-kaart niet smaller is dan de popup */
  #belintro-popup .belintro-container,
  #belintro-popup .belintro-inner {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }
}

/* Fallback + modern focus */
#belintro-popup .belintro-email input:focus,
#belintro-popup .belintro-email input:focus-visible,
#belintro-popup .belintro-email button:focus,
#belintro-popup .belintro-email button:focus-visible {
  box-shadow: 0 0 0 4px rgba(255, 204, 0, 0.25);
  border-radius: 8px; /* optioneel: mooiere rand */
}



/* ===== Popup extra styles ===== */
.no-scroll {
  overflow: hidden;
}
