/* =========================
   BAGGOE SECURITY - FULL CSS
   White / Corporate
   Green & Red separated
   No external fonts
   Full-width sticky menubar
   ========================= */

:root{
  /* Logo colors */
  --olive: #6b7427;
  --red:   #b92d3f;

  /* Base */
  --bg: #ffffff;
  --text: #0f172a;
  --muted: #475569;

  --surface: #ffffff;
  --surface-2: #f8fafc;

  --border: #e5e7eb;
  --shadow: 0 10px 30px rgba(2, 6, 23, 0.06);

  --radius: 14px;
}

/* ===== Reset / Base ===== */
*{ box-sizing: border-box; }
html, body{ height: 100%; }

body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);

  /* sticky footer */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main{ flex: 1; }

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: none; }

.container{
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.narrow{ max-width: 720px; }
.muted{ color: var(--muted); }
.full{ width: 100%; }
.center{ text-align: center; }

/* =========================
   TOPBAR (optional)
   ========================= */
.topbar{
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.topbar-inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}
.topbar a:hover{ color: var(--olive); }
.sep{ color: #94a3b8; padding: 0 8px; }

.dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  display: inline-block;
  margin-right: 8px;
}
.dot-green{ background: var(--olive); }
.dot-red{ background: var(--red); }

/* =========================
   FULL WIDTH MENUBAR (SITE HEADER)
   Use this HTML on every page:
   <header class="site-header">
     <div class="site-header-inner">
       <div class="header-content container">
         <a class="brand" href="/"><img class="brand-logo" ...></a>
         <nav class="main-nav">...</nav>
       </div>
     </div>
   </header>
   ========================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header-inner{
  width: 100%;
}

.header-content{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand-logo{
  height: 66px;
  width: auto;
  display: block;
}

/* Homepagina logo (kleiner, subtiel) */
.logo-home-small{
  height: 80px;      /* duidelijk kleiner */
  width: auto;
  opacity: 0.9;
}


.main-nav{
  display: flex;
  align-items: center;
  gap: 18px;
}

.main-nav a{
  font-weight: 650;
  color: var(--text);
  padding: 8px 10px;
  border-radius: 8px;
}

.main-nav a:hover{
  background: var(--surface-2);
}

.main-nav a.active{
  color: var(--olive);
  font-weight: 800;
}

/* CTA nav button (green only) */
.main-nav .nav-cta{
  background: rgba(107,116,39,0.12);
  border: 1px solid rgba(107,116,39,0.35);
  color: var(--olive);
  padding: 8px 14px;
  font-weight: 850;
}

/* Mobile nav (simple wrap) */
@media (max-width: 768px){
  .header-content{
    flex-direction: column;
    height: auto;
    padding: 10px 0;
    gap: 10px;
  }
  .main-nav{
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* =========================
   TAGS / BADGES
   ========================= */
.tag{
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 10px;
  border-radius: 999px;
  font-weight: 900;
}
.tag-green{
  color: var(--olive);
  background: rgba(107,116,39,0.10);
  border: 1px solid rgba(107,116,39,0.22);
}
.tag-red{
  color: var(--red);
  background: rgba(185,45,63,0.10);
  border: 1px solid rgba(185,45,63,0.22);
}

/* =========================
   BUTTONS (no mix)
   ========================= */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 14px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 900;
  transition: transform .15s ease, filter .15s ease, background .15s ease;
}
.btn:hover{ transform: translateY(-1px); }

.btn-green{
  background: var(--olive);
  color: #fff;
  border-color: rgba(107,116,39,0.4);
}
.btn-green:hover{ filter: brightness(1.03); }

.btn-red{
  background: var(--red);
  color: #fff;
  border-color: rgba(185,45,63,0.4);
}
.btn-red:hover{ filter: brightness(1.03); }

.btn-outline{
  background: #fff;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover{ background: var(--surface-2); }

.text-link{
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.text-link-green{ color: var(--olive); }
.text-link-green:hover{ color: #55601f; }
.text-link-red{ color: var(--red); }
.text-link-red:hover{ color: #8f1f2d; }

/* =========================
   SECTIONS / TYPO
   ========================= */
.section{ padding: 44px 0; }          /* compact */
.section-alt{
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-light{ background: var(--surface-2); }

.section-head{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.section-head h2{
  margin: 0;
  font-size: 22px;
}

h1{
  margin: 10px 0 10px;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.08;
}

.page-title{
  font-size: 30px;
  margin: 0 0 8px;
}
.page-intro{
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.lead{
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.7;
}

/* =========================
   HERO (home)
   ========================= */
.hero{ padding: 28px 0 18px; }

.hero-grid{
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 16px;
  align-items: stretch;
}

.hero-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.metrics{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.metric{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: #fff;
  min-width: 150px;
  box-shadow: 0 8px 18px rgba(2,6,23,0.03);
}
.metric-k{ font-weight: 950; font-size: 18px; }
.metric-v{ color: var(--muted); font-size: 12px; margin-top: 2px; }

.hero-visual{
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface-2);
  box-shadow: var(--shadow);
  display: flex;
  padding: 16px;
}

.hero-visual-title{
  font-weight: 950;
  margin-bottom: 6px;
}

.hero-visual-actions{
  margin-top: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

/* =========================
   PROCESS (Werkwijze modern)
   ========================= */
.process{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.process-card{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 10px 22px rgba(2,6,23,0.05);
  transition: transform .18s ease, box-shadow .18s ease;
}
.process-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(2,6,23,0.08);
}

.process-top{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.process-pill{
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.pill-green{
  color: var(--olive);
  background: rgba(107,116,39,0.10);
  border-color: rgba(107,116,39,0.22);
}
.pill-red{
  color: var(--red);
  background: rgba(185,45,63,0.10);
  border-color: rgba(185,45,63,0.22);
}

.process-line{
  height: 2px;
  flex: 1;
  border-radius: 999px;
  opacity: .85;
}
.line-green{ background: rgba(107,116,39,0.35); }
.line-red{ background: rgba(185,45,63,0.35); }

.process-card h3{ margin: 0 0 6px; font-size: 16px; }

.mini-list{
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}
.mini-list li{
  padding-left: 14px;
  position: relative;
}
.mini-list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 2px;
}
.process-green .mini-list li::before{ background: var(--olive); }
.process-red .mini-list li::before{ background: var(--red); }

/* =========================
   SERVICES (modern tiles)
   ========================= */
.services-modern{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.service-tile{
  position: relative;
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 10px 22px rgba(2,6,23,0.05);
  transition: transform .18s ease, box-shadow .18s ease;
  overflow: hidden;
}
.service-tile:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(2,6,23,0.09);
}

.service-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.service-head h3{ margin: 0; font-size: 16px; }

.service-badge{
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .10em;
  text-transform: uppercase;
  padding: 6px 9px;
  border-radius: 999px;
  border: 1px solid transparent;
  white-space: nowrap;
}
.badge-green{
  color: var(--olive);
  background: rgba(107,116,39,0.10);
  border-color: rgba(107,116,39,0.22);
}
.badge-red{
  color: var(--red);
  background: rgba(185,45,63,0.10);
  border-color: rgba(185,45,63,0.22);
}

.service-points{
  margin-top: 12px;
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service-points span{
  font-size: 12px;
  color: var(--muted);
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 6px 9px;
  border-radius: 999px;
}

.service-arrow{
  position: absolute;
  right: 14px;
  bottom: 12px;
  font-weight: 950;
  color: #111827;
  opacity: .6;
  transition: transform .18s ease, opacity .18s ease;
}
.service-tile:hover .service-arrow{
  transform: translateX(4px);
  opacity: .9;
}

/* accent strips (no mix) */
.tile-green{ border-left: 4px solid var(--olive); }
.tile-red{ border-left: 4px solid var(--red); }

/* corner accent */
.tile-green::after,
.tile-red::after{
  content:"";
  position:absolute;
  right:-40px;
  top:-40px;
  width:120px;
  height:120px;
  border-radius: 999px;
  opacity: .10;
}
.tile-green::after{ background: var(--olive); }
.tile-red::after{ background: var(--red); }

/* =========================
   DIENSTEN PAGE (compact)
   ========================= */
.services-page{
  display: grid;
  gap: 18px; /* compact */
}

.service-block{
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(2,6,23,0.04);
}
.service-block.green{ border-left: 6px solid var(--olive); }
.service-block.red{ border-left: 6px solid var(--red); }

.service-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.service-header h2{
  font-size: 18px;
  margin: 0;
}

.service-label{
  font-size: 11px;
  font-weight: 950;
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid transparent;
}
.service-label.green{
  background: rgba(107,116,39,0.12);
  color: var(--olive);
  border-color: rgba(107,116,39,0.25);
}
.service-label.red{
  background: rgba(185,45,63,0.12);
  color: var(--red);
  border-color: rgba(185,45,63,0.25);
}

.service-list{
  margin-top: 10px;
  padding-left: 18px;
  color: var(--muted);
}
.service-list li{
  margin-bottom: 6px;
  font-size: 14px;
}

/* CTA box (compact) */
.cta-box{
  text-align:center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(2,6,23,0.04);
}
.cta-box h2{
  margin: 0 0 6px;
  font-size: 20px;
}
.cta-box p{
  margin: 0 0 12px;
  font-size: 14px;
}
.cta-inner{
  display: flex;
  align-items: center;
  justify-content: space-between; /* DIT is de sleutel */
  gap: 24px;
}

.cta-actions{
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}


/* =========================
   CONTACT / FORMS
   ========================= */
.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.card{
  background:#fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 8px 18px rgba(2,6,23,0.04);
}
.card-accent-green{ border-left: 4px solid var(--olive); }
.card-accent-red{ border-left: 4px solid var(--red); }

.info{
  margin-top: 10px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.info-row{
  display:flex;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  background:#fff;
}
.info-row:last-child{ border-bottom:none; }
.k{ color: var(--muted); }
.v{ font-weight: 950; }

.note{
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--surface-2);
  border: 1px solid var(--border);
}
.note-red{
  border-color: rgba(185,45,63,0.22);
  background: rgba(185,45,63,0.05);
}

.form{ margin-top: 12px; }
.row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.field{ margin-bottom: 12px; }

label{
  display:block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
}

input, select, textarea{
  width:100%;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background:#fff;
  color: var(--text);
  outline:none;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(107,116,39,0.60);
  box-shadow: 0 0 0 3px rgba(107,116,39,0.14);
}

.alert{
  background: rgba(185,45,63,0.08);
  border: 1px solid rgba(185,45,63,0.22);
  color: #7f1d1d;
  padding: 10px 12px;
  border-radius: 12px;
  margin: 10px 0 12px;
}
.hint{ font-size:12px; margin-top:10px; }
.hp{ display:none; }

/* =========================
   FOOTER
   ========================= */
.footer{
  border-top: 1px solid var(--border);
  padding: 14px 0;
  background:#fff;
}

.footer-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.footer-bottom{
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 960px){
  .hero-grid{ grid-template-columns: 1fr; }
  .process{ grid-template-columns: 1fr; }
  .services-modern{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .row{ grid-template-columns: 1fr; }
  .section{ padding: 28px 0; }
  .page-title{ font-size: 26px; }
}
