:root {
  --green: #16A34A;
  --dark: #0F3D2E;
  --orange: #F97316;
  --bg: #F9FAFB;
  --text: #111827;
  --muted: #6B7280;
  --border: #E5E7EB;
}

/* =========================
   RESET & BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* =========================
   TOEGANKELIJKHEID (focus)
========================= */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

/* =========================
   HEADER & STICKY SCROLL EFFECT
========================= */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--dark);
  padding: 5px 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.header.scrolled {
  background: var(--dark);
  padding: 8px 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.logo {
  color: white;
  font-size: 20px;
  font-weight: bold;
}

.logo-wrap {
  display: flex;
  align-items: center;
  padding: 5px 5px;
}

.logo-img {
  width: 225px;
  max-width: 100%;
  height: auto;
  display: block;
  transition: 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

/* =========================
   NAVIGATIE
========================= */
.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 6px 0;
  transition: 0.2s;
}

.nav-link:hover {
  color: #4ade80;
}

/* DROPDOWN */
.dropbtn {
  color: white;
  font-weight: 500;
  cursor: pointer;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 5px;
  user-select: none;
  transition: 0.2s;
}

.dropbtn:hover {
  color: #4ade80;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 10px;
}

.dropdown-content {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 240px;
  background: white;
  border-radius: 12px;
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.2s;
  z-index: 999;
}

.dropdown-content a {
  display: block;
  padding: 12px 16px;
  color: #111827;
  text-decoration: none;
  transition: 0.2s;
}

.dropdown-content a:hover {
  background: #f3f4f6;
  color: var(--green);
  padding-left: 20px;
}

/* DESKTOP DROPDOWN HOVER */
@media (min-width: 901px) {
  .dropdown:hover .dropdown-content,
  .dropdown:focus-within .dropdown-content {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

/* =========================
   MOBILE MENU
========================= */
.menu-toggle {
  display: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  transition: 0.2s;
  padding: 4px 8px;
  border-radius: 8px;
}

.menu-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
    position: relative;
    z-index: 2000;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--dark);
    padding: 20px;
    flex-direction: column;
    gap: 10px;
    z-index: 1500;
    pointer-events: auto;
  }

  .nav.active {
    display: flex;
  }

  .dropdown-content {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    pointer-events: auto;
  }

  .dropdown.active .dropdown-content {
    display: block;
  }

  .nav, .nav *,
  .dropdown, .dropdown-content, .dropdown-content a {
    pointer-events: auto !important;
  }
}

/* =========================
   HERO BANNER (standaard padding - kan overschreven worden)
========================= */
.hero {
  background: linear-gradient(135deg, var(--dark), var(--green));
  color: white;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.hero p {
  max-width: 700px;
  margin: 0 auto;
  color: #d1fae5;
  line-height: 1.6;
}

/* =========================
   SEARCH BOX
========================= */
.search-box {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  align-items: stretch;
}

.search-box input {
  flex: 1;
  max-width: 500px;
  padding: 14px;
  border: none;
  border-radius: 12px 0 0 12px;
  box-sizing: border-box;
}

.search-box button {
  padding: 14px 22px;
  border: none;
  background: var(--orange);
  color: white;
  font-weight: bold;
  border-radius: 0 12px 12px 0;
  cursor: pointer;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .search-box {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }

  .search-box input,
  .search-box button {
    width: 100%;
    max-width: none;
    border-radius: 12px;
  }
}

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 20px;
  background: var(--orange);
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  transition: 0.2s;
}

.btn:hover {
  background: #f59e0b;
  transform: translateY(-2px);
}

/* =========================
   SECTIONS
========================= */
.section {
  padding: 60px 40px;
}

.section h2 {
  font-size: 28px;
  margin-bottom: 30px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* CARDS */
.card {
  background: white;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid var(--border);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.card h3 {
  color: var(--green);
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
}

.tag {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 10px;
  background: #ecfdf5;
  color: var(--green);
  font-size: 12px;
  border-radius: 20px;
}

/* =========================
   STATS COUNTERS
========================= */
.stats {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.stat {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 35px 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.stat:hover {
  transform: translateY(-5px);
}

.stat h3 {
  font-size: 42px;
  color: var(--green);
}

.count {
  font-size: 42px;
  font-weight: 700;
  color: var(--green);
  display: inline-block;
  min-width: 80px;
}

.stat p {
  color: var(--muted);
  margin-top: 10px;
}

/* =========================
   FOOTER
========================= */
.footer {
  background: var(--dark);
  color: white;
  margin-top: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.footer-col a {
  display: block;
  color: #d1fae5;
  text-decoration: none;
  margin-bottom: 8px;
  transition: 0.2s;
}

.footer-col a:hover {
  color: #4ade80;
  transform: translateX(3px);
}

.footer-newsletter {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.footer-newsletter input {
  flex: 1;
  min-width: 140px;
  padding: 10px 12px;
  border-radius: 10px;
  border: none;
  font-size: 14px;
  outline: none;
  transition: 0.2s;
}

.footer-newsletter input:focus {
  box-shadow: 0 0 0 2px var(--orange);
}

.footer-newsletter button {
  background: var(--orange);
  border: none;
  padding: 10px 18px;
  border-radius: 10px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.footer-newsletter button:hover {
  background: #f59e0b;
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: #d1fae5;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-mail {
  color: #d1fae5;
  text-decoration: none;
  display: inline-block;
  margin-top: 8px;
}

.footer-mail:hover {
  color: #4ade80;
}

/* =========================
   CATEGORY & ALPHABET FILTER
========================= */
.category-overview {
  padding: 40px 20px;
}

.category-header {
  max-width: 900px;
  margin: 0 auto 20px;
  background: white;
  border: 2px solid var(--border);
  border-radius: 16px;
  text-align: center;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.category-header h2 {
  font-size: 22px;
}

.alphabet-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.alphabet-filter a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  border-radius: 10px;
  text-decoration: none;
  color: #111827;
  transition: 0.2s;
}

.alphabet-filter a:hover {
  background: var(--green);
  color: white;
  transform: scale(1.05);
}

/* =========================
   CONTACT SECTION & FORMULIEREN
========================= */
.contact-section {
  padding: 80px 20px;
  background: var(--bg);
}

.contact-card {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 28px;
  padding: 50px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-top {
  text-align: center;
  margin-bottom: 30px;
}

.contact-badge {
  display: inline-block;
  background: rgba(22, 163, 74, 0.15);
  color: var(--green);
  font-weight: bold;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 15px;
  font-size: 13px;
}

.contact-card h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.contact-card p {
  color: var(--muted);
  font-size: 16px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-group {
  display: flex;
  flex-direction: column;
}

.input-group label {
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--dark);
}

/* ALLE FORMULIER ELEMENTEN */
.contact-form input,
.contact-form select,
.contact-form textarea,
.job-post-card input,
.job-post-card select,
.job-post-card textarea,
#advertiseForm input,
#advertiseForm select,
#advertiseForm textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1.5px solid var(--border);
  font-size: 15px;
  outline: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: white;
  font-family: inherit;
  color: var(--text);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder,
#advertiseForm input::placeholder,
#advertiseForm textarea::placeholder {
  color: #9CA3AF;
  font-weight: 400;
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover,
#advertiseForm input:hover,
#advertiseForm select:hover,
#advertiseForm textarea:hover {
  border-color: var(--green);
  background-color: #FEFEFE;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.job-post-card input:focus,
.job-post-card select:focus,
.job-post-card textarea:focus,
#advertiseForm input:focus,
#advertiseForm select:focus,
#advertiseForm textarea:focus {
  border-color: var(--green);
  background: white;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.15);
}

/* SELECT DROPDOWN */
.contact-form select,
.job-post-card select,
#advertiseForm select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2316A34A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 18px;
  cursor: pointer;
  font-weight: 500;
}

.contact-form select option,
#advertiseForm select option {
  padding: 12px;
  background: white;
  color: var(--text);
}

.contact-form textarea,
.job-post-card textarea,
#advertiseForm textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.contact-form button,
.job-post-card button,
#advertiseForm button {
  width: 100%;
  padding: 16px 24px;
  border-radius: 16px;
  border: none;
  background: linear-gradient(135deg, var(--green), #15803d);
  color: white;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.2);
}

.contact-form button:hover,
.job-post-card button:hover,
#advertiseForm button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(22, 163, 74, 0.3);
  background: linear-gradient(135deg, #15803d, var(--green));
}

.contact-form button:active,
.job-post-card button:active,
#advertiseForm button:active {
  transform: translateY(0px);
}

/* =========================
   VACATURE PAGINA
========================= */
.jobs-hero {
  position: relative;
  background: linear-gradient(rgba(15, 61, 46, 0.7), rgba(22, 163, 74, 0.7)), url('images/vacature-hero.jpg') center/cover no-repeat;
  background-color: var(--dark);
  color: white;
  text-align: center;
  padding: 80px 20px;
  overflow: hidden;
}

.jobs-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.jobs-badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.2);
  color: #d1fae5;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 20px;
  font-size: 14px;
  text-transform: uppercase;
  transition: transform 0.3s ease;
}

.jobs-badge:hover {
  transform: scale(1.05);
}

.jobs-hero h1 {
  font-size: 42px;
  margin: 20px 0;
  line-height: 1.2;
}

.jobs-hero p {
  font-size: 18px;
  line-height: 1.7;
  color: #d1fae5;
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.jobs-hero-content,
.jobs-badge,
.jobs-hero h1,
.jobs-hero p {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
}

.jobs-badge { animation-delay: 0.2s; }
.jobs-hero h1 { animation-delay: 0.4s; }
.jobs-hero p { animation-delay: 0.6s; }

.jobs-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.jobs-top {
  text-align: center;
  margin-bottom: 40px;
}

.jobs-top h2 {
  font-size: 32px;
  color: var(--green);
  margin-bottom: 15px;
}

.jobs-top p {
  color: var(--muted);
  font-size: 16px;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.job-card {
  background: white;
  border-radius: 20px;
  padding: 30px 25px;
  border: 1px solid var(--border);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.job-tag {
  display: inline-block;
  padding: 4px 12px;
  background: #ecfdf5;
  color: var(--green);
  font-size: 12px;
  font-weight: bold;
  border-radius: 12px;
  margin-bottom: 12px;
}

.job-card h3 {
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 10px;
}

.job-company {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 15px;
}

.job-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 20px;
}

.job-btn {
  display: inline-block;
  text-decoration: none;
  background: var(--orange);
  color: white;
  font-weight: bold;
  padding: 12px 20px;
  border-radius: 12px;
  transition: transform 0.3s, background 0.3s;
}

.job-btn:hover {
  background: #f59e0b;
  transform: translateY(-2px);
}

.job-post-section {
  padding: 80px 20px;
  background-color: var(--bg);
  display: flex;
  justify-content: center;
}

.job-post-card {
  background-color: white;
  border-radius: 20px;
  max-width: 700px;
  width: 100%;
  padding: 50px 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.job-post-card h2 {
  font-size: 28px;
  color: var(--green);
  margin-bottom: 15px;
}

.job-post-card p {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 30px;
}

.job-post-card .input-group {
  margin-bottom: 20px;
}

.job-post-card label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--dark);
}

.job-post-card textarea {
  resize: vertical;
  min-height: 120px;
}

/* =========================
   TOEGANKELIJKHEID (ARIA)
========================= */
.menu-toggle[aria-expanded="true"] {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
}

.dropbtn[aria-expanded="true"] {
  color: #4ade80;
}

/* =========================
   DROPDOWN POSITIE FIX - CONTACT MENU
========================= */
@media (min-width: 901px) {
  .nav .dropdown:last-child .dropdown-content,
  .nav .dropdown:last-of-type .dropdown-content {
    left: auto !important;
    right: 0 !important;
  }
  .nav .dropdown:nth-last-child(2) .dropdown-content {
    left: auto !important;
    right: 0 !important;
  }
}

@media (max-width: 900px) {
  .nav .dropdown:last-child .dropdown-content,
  .nav .dropdown:last-of-type .dropdown-content {
    left: 0 !important;
    right: auto !important;
  }
}

/* =========================
   EXTRA FIX VOOR ADVERTEREN.HTML - SELECT VELD
========================= */
#advertiseForm select,
form#advertiseForm select,
.contact-form#advertiseForm select,
select#advType {
  width: 100% !important;
  padding: 16px 18px !important;
  border-radius: 16px !important;
  border: 1.5px solid var(--border) !important;
  font-size: 15px !important;
  background: white !important;
  color: var(--text) !important;
  cursor: pointer !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2316A34A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>") !important;
  background-repeat: no-repeat !important;
  background-position: right 18px center !important;
  background-size: 18px !important;
  font-family: inherit !important;
}

#advertiseForm select:hover {
  border-color: var(--green) !important;
  background-color: #FEFEFE !important;
}

#advertiseForm select:focus {
  border-color: var(--green) !important;
  outline: none !important;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.15) !important;
}

#advertiseForm select option {
  padding: 12px !important;
  background: white !important;
  color: var(--text) !important;
}

@media (max-width: 768px) {
  #advertiseForm select,
  select#advType {
    padding: 14px 16px !important;
    font-size: 14px !important;
  }
}

/* =========================
   CTA SECTION - KLAAR OM TE GROEIEN?
========================= */
.cta-block {
  background: linear-gradient(135deg, #0F3D2E, #16A34A);
  text-align: center;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
  margin: 0;
}

.cta-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.cta-block::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 20px, transparent 20px, transparent 40px);
  pointer-events: none;
}

.cta-block .circle-1,
.cta-block .circle-2,
.cta-block .circle-3 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
}

.cta-block .circle-1 { width: 300px; height: 300px; top: -150px; right: -100px; }
.cta-block .circle-2 { width: 200px; height: 200px; bottom: -100px; left: -80px; }
.cta-block .circle-3 { width: 150px; height: 150px; top: 50%; left: 20%; }

.cta-block .cta-icon {
  font-size: 72px;
  margin-bottom: 25px;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.2));
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

.cta-block h2 {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff, #FFD966);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
  letter-spacing: -1px;
  display: inline-block;
}

.cta-block p {
  font-size: 18px;
  color: #d1fae5;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #F97316, #f59e0b);
  color: white;
  text-decoration: none;
  border-radius: 60px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  border: none;
  cursor: pointer;
}

.cta-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.3);
  background: linear-gradient(135deg, #f59e0b, #F97316);
}

.cta-btn-primary:active {
  transform: translateY(2px);
}

.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: transparent;
  color: white;
  text-decoration: none;
  border-radius: 60px;
  font-weight: 700;
  font-size: 16px;
  border: 2px solid rgba(255,255,255,0.8);
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta-btn-secondary:hover {
  background: white;
  color: #0F3D2E;
  border-color: white;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.cta-footer {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 20px;
}

.cta-footer span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cta-footer span::before {
  content: "✓";
  color: #FFD966;
  font-weight: bold;
  font-size: 16px;
}

/* =========================
   RESPONSIVE (ALGEMEEN)
========================= */
@media (max-width: 768px) {
  .hero h1 { font-size: 34px; }
  .section { padding: 50px 20px; }
  .stats { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; text-align: center; }
  .jobs-hero h1 { font-size: 32px; }
  .jobs-hero p { font-size: 16px; }
  .job-post-card { padding: 35px 25px; }
  .jobs-grid { grid-template-columns: 1fr; }
  .job-card { padding: 25px 20px; }
  .header { padding: 12px 16px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .count { font-size: 36px; }
  .stat h3 { font-size: 36px; }
  
  .contact-form input,
  .contact-form select,
  .contact-form textarea,
  #advertiseForm input,
  #advertiseForm select,
  #advertiseForm textarea {
    padding: 14px 16px;
    font-size: 14px;
  }
  
  .contact-form button,
  #advertiseForm button {
    padding: 14px 20px;
  }
  
  .input-group label { font-size: 13px; }
  
  /* CTA responsive */
  .cta-block { padding: 60px 20px; }
  .cta-block h2 { font-size: 34px; }
  .cta-block p { font-size: 16px; }
  .cta-btn-primary, .cta-btn-secondary { padding: 12px 24px; font-size: 14px; }
  .cta-footer { gap: 16px; font-size: 11px; }
  .cta-block .cta-icon { font-size: 56px; }
}

@media (max-width: 480px) {
  .jobs-hero h1 { font-size: 26px; }
  .jobs-hero p { font-size: 15px; }
  .contact-card { padding: 30px 20px; }
}