:root {
  --primary: #2f69c9;
  --primary-dark: #2557a8;
  --secondary: #46b96c;
  --accent: #f39a1f;
  --text: #27364d;
  --muted: #66758a;
  --bg: #f3f6fb;
  --white: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 8px 24px rgba(31, 61, 120, 0.08);
  --radius: 16px;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.45;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: 2.2rem;
  color: var(--primary-dark);
  margin-bottom: 30px;
}

.center {
  text-align: center;
}

/* HEADER */
.header {
  background: var(--white);
  border-bottom: 1px solid #edf2f7;
  position: sticky;
  top: 0;
  z-index: 30;
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav a {
  color: var(--text);
  font-weight: 600;
}

.nav a:hover {
  color: var(--primary);
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--text);
  transition: 0.25s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-6px);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 10px;
  font-weight: 700;
  border: none;
  transition: 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-orange {
  background: var(--accent);
  color: #fff;
}

.btn-orange:hover {
  background: #e48d18;
}

.btn-blue {
  background: var(--primary);
  color: #fff;
}

.btn-blue:hover {
  background: var(--primary-dark);
}

.btn-green {
  background: var(--secondary);
  color: #fff;
}

.btn-green:hover {
  background: #3ea85a;
}

.btn-outline {
  background: #fff;
  color: var(--primary-dark);
  border: 1px solid #d9e3f0;
  box-shadow: 0 3px 10px rgba(37, 87, 168, 0.08);
}

.btn-outline:hover {
  background: #f7faff;
}

.btn-small {
  min-height: 40px;
  padding: 0 16px;
}

/* EVENT BANNER */
.event-banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 18px 0;
}

.event-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.event-banner-text strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.event-banner-text p {
  margin: 0;
  opacity: 0.95;
}

.event-banner-actions {
  display: flex;
  gap: 12px;
}

/* HERO */
.hero {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.86) 40%, rgba(255,255,255,0.2) 65%),
    linear-gradient(180deg, #ffffff 0%, #eef4fb 100%);
  padding: 42px 0 34px;
}

.hero-inner {
  min-height: 430px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 30px;
}

.hero-text h1 {
  font-size: 3.25rem;
  line-height: 1.06;
  color: var(--primary-dark);
  margin-bottom: 18px;
}

.hero-text p {
  font-size: 1.25rem;
  color: var(--muted);
  margin-bottom: 26px;
  max-width: 620px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-image {
  display: flex;
  justify-content: flex-end;
}

.hero-image img {
  width: 100%;
  max-width: 560px;
  height: 360px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

/* STEPS */
.steps {
  padding: 56px 0 28px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 24px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid #ebf0f6;
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.card h3 {
  font-size: 1.85rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.card p {
  color: var(--muted);
  font-size: 1.08rem;
  margin-bottom: 18px;
}

.card a {
  color: var(--primary);
  font-weight: 700;
}

/* HOMEPAGE PROVIDERS */
.providers {
  padding: 24px 0 28px;
}

.provider-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.provider {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #ebf0f6;
}

.provider img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.provider-content {
  padding: 18px 18px 20px;
}

.provider-content h3 {
  font-size: 1.8rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.provider-content p {
  color: #5a697d;
  min-height: 64px;
  margin-bottom: 12px;
}

.provider-icons {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.provider-grid.provider-grid-count-1 {
  grid-template-columns: minmax(320px, 420px);
  justify-content: center;
}

.provider-grid.provider-grid-count-2 {
  grid-template-columns: repeat(2, minmax(320px, 420px));
  justify-content: center;
}

.provider-grid.provider-grid-count-3 {
  grid-template-columns: repeat(3, 1fr);
}

.provider-grid.provider-grid-count-1 .provider,
.provider-grid.provider-grid-count-2 .provider {
  width: 100%;
}

.dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-block;
}

.dot.green {
  background: var(--secondary);
}

.dot.orange {
  background: var(--accent);
}

.dot.blue {
  background: var(--primary);
}

/* CTA */
.cta {
  padding: 28px 0 34px;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.cta-box {
  padding: 28px;
  border-radius: 18px;
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-box h3 {
  font-size: 2rem;
  margin-bottom: 14px;
}

.cta-box ul {
  list-style: none;
  margin-bottom: 22px;
}

.cta-box li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
}

.cta-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
}

.blue {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.green {
  background: linear-gradient(135deg, #54c16f, #3ea85a);
}

.cta-link {
  display: inline-flex;
  background: rgba(255,255,255,0.95);
  color: var(--text);
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 700;
}

/* TESTIMONIALS */
.testimonials {
  padding: 12px 0 42px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  padding: 26px;
  border-radius: 14px;
  border: 1px solid #ebf0f6;
  box-shadow: var(--shadow);
}

.testimonial-card p {
  color: var(--primary-dark);
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.testimonial-card span {
  color: var(--muted);
}

/* BEZOEKERS */
.visitor-travel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 24px 0;
}

.visitor-travel-card {
  background: #f8fbff;
  border: 1px solid #e5edf7;
  border-radius: 16px;
  padding: 20px;
}

.visitor-travel-card span {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.visitor-travel-card h3 {
  color: var(--primary-dark);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.visitor-travel-card p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0;
}

.location-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  margin-top: 24px;
  background: #fff;
  border: 1px solid #ebf0f6;
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.location-info h3 {
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.location-info p {
  line-height: 1.8;
  margin-bottom: 18px;
}

.location-map {
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid #e5edf7;
  min-height: 320px;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

@media (max-width: 900px) {
  .visitor-travel-grid,
  .location-card {
    grid-template-columns: 1fr;
  }

  .location-map,
  .location-map iframe {
    min-height: 280px;
  }
}

@media (max-width: 640px) {
  .location-card {
    padding: 20px;
  }

  .location-info .btn {
    width: 100%;
  }
}

/* MAINTENANCE */
.maintenance-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(47,105,201,0.14), transparent 35%),
    radial-gradient(circle at bottom right, rgba(243,154,31,0.16), transparent 35%),
    linear-gradient(180deg, #ffffff 0%, #eef4fb 100%);
}

.maintenance-wrapper {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.maintenance-card {
  width: 100%;
  max-width: 680px;
  background: #ffffff;
  border: 1px solid #ebf0f6;
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 38px;
  text-align: center;
}

.maintenance-logo {
  justify-content: center;
  margin-bottom: 24px;
}

.maintenance-card h1 {
  color: var(--primary-dark);
  font-size: 2.5rem;
  margin: 16px 0 14px;
}

.maintenance-card p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
  margin-bottom: 10px;
}

@media (max-width: 640px) {
  .maintenance-card {
    padding: 26px 20px;
  }

  .maintenance-card h1 {
    font-size: 2rem;
  }
}

/* EVENT DETAIL PAGE */
.event-page-hero {
  padding: 40px 0 24px;
  background: linear-gradient(180deg, #ffffff 0%, #eef4fb 100%);
}

.back-link {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--primary-dark);
  font-weight: 700;
}

.event-page-hero-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid #ebf0f6;
}

.event-badge {
  display: inline-block;
  background: #eef4fb;
  color: var(--primary-dark);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.event-page-hero-content h1 {
  font-size: 2.8rem;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.event-intro {
  color: #5f6f85;
  font-size: 1.08rem;
  line-height: 1.7;
  margin-bottom: 22px;
}

.event-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.event-meta-card {
  background: #f8fbff;
  border: 1px solid #e5edf7;
  border-radius: 14px;
  padding: 16px;
}

.event-meta-label {
  display: block;
  color: #6b7a90;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.event-meta-card strong {
  color: var(--text);
  font-size: 1rem;
}

.event-page-hero-image img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.event-content-section {
  padding: 10px 0 60px;
}

.event-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 24px;
  align-items: start;
}

.event-content-card,
.event-side-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 26px;
  box-shadow: var(--shadow);
  border: 1px solid #ebf0f6;
}

.event-content-card + .event-content-card,
.event-side-card + .event-side-card {
  margin-top: 20px;
}

.event-content-card h2,
.event-side-card h3 {
  color: var(--primary-dark);
  margin-bottom: 14px;
}

.event-content-card p,
.event-side-card p {
  color: var(--text);
  line-height: 1.7;
}

.event-location-text {
  margin-bottom: 18px;
}

.event-map {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid #e5edf7;
}

.event-info-list {
  list-style: none;
  display: grid;
  gap: 14px;
}

.event-info-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid #edf2f7;
}

.event-info-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.event-info-list span {
  color: #6b7a90;
  font-size: 0.9rem;
}

.event-info-list strong {
  color: var(--text);
}

.event-side-btn {
  margin-top: 16px;
  width: 100%;
}

.event-not-found {
  padding: 60px 0;
}

/* PROVIDERS OVERVIEW PAGE */
.providers-page-hero {
  padding: 38px 0 20px;
  background: linear-gradient(180deg, #ffffff 0%, #eef4fb 100%);
}

.providers-page-hero-card {
  background: #ffffff;
  border: 1px solid #ebf0f6;
  box-shadow: var(--shadow);
  border-radius: 20px;
  padding: 32px;
}

.providers-page-label {
  display: inline-block;
  background: #eef4fb;
  color: var(--primary-dark);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.providers-page-hero-card h1 {
  font-size: 2.7rem;
  color: var(--primary-dark);
  margin-bottom: 14px;
}

.providers-page-hero-card p {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 760px;
  line-height: 1.7;
}

.providers-page-section {
  padding: 12px 0 60px;
}

.providers-toolbar {
  background: #ffffff;
  border: 1px solid #ebf0f6;
  box-shadow: var(--shadow);
  border-radius: 18px;
  padding: 22px;
  margin-bottom: 24px;
}

.providers-filter-form {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr auto;
  gap: 16px;
  align-items: end;
}

.providers-search-group,
.providers-filter-group {
  display: grid;
  gap: 8px;
}

.providers-search-group label,
.providers-filter-group label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.providers-search-group input,
.providers-filter-group select {
  width: 100%;
  height: 50px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0 14px;
  font-size: 1rem;
  background: #fff;
}

.providers-search-group input:focus,
.providers-filter-group select:focus {
  outline: 2px solid rgba(47, 105, 201, 0.15);
  border-color: var(--primary);
}

.providers-filter-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.providers-results-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.providers-results-head h2 {
  color: var(--primary-dark);
  font-size: 1.8rem;
}

.providers-results-head p {
  color: var(--muted);
  font-weight: 600;
}

.providers-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.provider-list-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #ebf0f6;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.provider-list-image {
  position: relative;
}

.provider-list-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.provider-list-placeholder {
  width: 100%;
  height: 220px;
  display: grid;
  place-items: center;
  background: #eef4fb;
  color: var(--muted);
  font-weight: 700;
}

.provider-badge-featured {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent);
  color: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
}

.provider-list-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.provider-list-meta {
  margin-bottom: 12px;
}

.provider-category-tag {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: #eef4fb;
  color: var(--primary-dark);
  font-size: 0.85rem;
  font-weight: 700;
}

.provider-list-content h3 {
  color: var(--primary-dark);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.provider-list-content p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 18px;
  flex: 1;
}

.provider-list-actions {
  margin-top: auto;
}

.providers-empty-state {
  background: #ffffff;
  border: 1px solid #ebf0f6;
  box-shadow: var(--shadow);
  border-radius: 18px;
  padding: 34px;
  text-align: center;
}

.providers-empty-state h3 {
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.providers-empty-state p {
  color: var(--muted);
  margin-bottom: 18px;
  line-height: 1.7;
}

/* PROVIDER DETAIL PAGE */
.provider-detail-hero {
  padding: 40px 0 24px;
  background: linear-gradient(180deg, #ffffff 0%, #eef4fb 100%);
}

.provider-detail-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid #ebf0f6;
}

.provider-detail-content h1 {
  font-size: 2.7rem;
  color: var(--primary-dark);
  margin: 14px 0 16px;
}

.provider-detail-intro {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
  margin-bottom: 22px;
}

.provider-detail-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.provider-detail-image img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.provider-detail-placeholder {
  width: 100%;
  min-height: 320px;
  display: grid;
  place-items: center;
  background: #eef4fb;
  color: var(--muted);
  border-radius: 16px;
  font-weight: 700;
}

.provider-detail-section {
  padding: 10px 0 60px;
}

.provider-detail-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 24px;
  align-items: start;
}

.provider-detail-info-card,
.provider-side-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 26px;
  box-shadow: var(--shadow);
  border: 1px solid #ebf0f6;
}

.provider-side-card + .provider-side-card {
  margin-top: 20px;
}

.provider-detail-info-card h2,
.provider-side-card h3 {
  color: var(--primary-dark);
  margin-bottom: 14px;
}

.provider-detail-info-card p,
.provider-side-card p {
  color: var(--text);
  line-height: 1.7;
}

.provider-detail-longtext {
  line-height: 1.8;
  color: var(--text);
}

.provider-detail-longtext p {
  margin-bottom: 12px;
}

.provider-contact-items {
  display: grid;
  gap: 14px;
}

.provider-contact-item {
  display: grid;
  gap: 5px;
  padding-bottom: 14px;
  border-bottom: 1px solid #edf2f7;
}

.provider-contact-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.provider-contact-label {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.provider-address-text {
  color: var(--text);
  line-height: 1.6;
}

.provider-info-link {
  color: var(--primary-dark);
  text-decoration: none;
  word-break: break-word;
}

.provider-info-link:hover {
  text-decoration: underline;
}

.provider-side-actions {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.provider-side-btn {
  width: 100%;
}

.provider-map {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid #e5edf7;
}

.provider-not-found {
  padding: 60px 0;
}

/* CONTENT PAGES */
.content-hero {
  padding: 38px 0 20px;
  background: linear-gradient(180deg, #ffffff 0%, #eef4fb 100%);
}

.content-hero-card {
  background: #ffffff;
  border: 1px solid #ebf0f6;
  box-shadow: var(--shadow);
  border-radius: 20px;
  padding: 32px;
}

.content-label {
  display: inline-block;
  background: #eef4fb;
  color: var(--primary-dark);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.content-hero-card h1 {
  font-size: 2.7rem;
  color: var(--primary-dark);
  margin-bottom: 14px;
}

.content-hero-card p {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 780px;
  line-height: 1.7;
}

.content-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.content-page-section {
  padding: 12px 0 60px;
}

.content-page-section > .container {
  display: grid;
  gap: 24px;
}

.content-page-layout {
  display: grid;
  gap: 24px;
}

.content-page-card {
  background: #ffffff;
  border: 1px solid #ebf0f6;
  box-shadow: var(--shadow);
  border-radius: 18px;
  padding: 28px;
}

.content-page-card h2 {
  color: var(--primary-dark);
  margin-bottom: 14px;
}

.content-page-card p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 14px;
}

.content-page-card p:last-child {
  margin-bottom: 0;
}

.content-page-card a {
  color: var(--primary-dark);
  font-weight: 700;
}

.content-list {
  margin: 12px 0 18px;
  padding-left: 22px;
}

.content-list li {
  margin-bottom: 8px;
  line-height: 1.7;
  color: var(--text);
}

/* STANDHOUDERS */
.standhouder-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.standhouder-feature-card {
  background: #ffffff;
  border: 1px solid #ebf0f6;
  box-shadow: var(--shadow);
  border-radius: 18px;
  padding: 22px;
}

.standhouder-feature-card span {
  display: inline-flex;
  background: #eef4fb;
  color: var(--primary-dark);
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.standhouder-feature-card h3 {
  color: var(--primary-dark);
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.standhouder-feature-card p {
  color: var(--muted);
  line-height: 1.6;
}

.content-two-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: stretch;
}

.content-two-column .content-page-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.warning-card {
  border: 1px solid #f6d29b;
  background: #fffaf1;
}

.standhouder-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.standhouder-cta-card h2 {
  margin-bottom: 10px;
}

.standhouder-cta-card p {
  line-height: 1.7;
  opacity: 0.95;
  max-width: 720px;
}

/* FOOTER */
.footer {
  background: linear-gradient(135deg, #2457aa, #2f69c9);
  color: #fff;
  margin-top: 12px;
}

.footer-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-brand {
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #fff;
}

/* ORGANISATIE */
.organisatie-hero-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
  background: #ffffff;
  border: 1px solid #ebf0f6;
  box-shadow: var(--shadow);
  border-radius: 20px;
  padding: 32px;
}

.organisatie-hero-content h1 {
  font-size: 2.7rem;
  color: var(--primary-dark);
  margin-bottom: 14px;
}

.organisatie-hero-content p {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 780px;
  line-height: 1.7;
}

.organisatie-hero-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.organisatie-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.organisatie-team-card {
  background: #ffffff;
  border: 1px solid #ebf0f6;
  box-shadow: var(--shadow);
  border-radius: 18px;
  padding: 22px;
  text-align: center;
}

.organisatie-avatar {
  width: 90px;
  height: 90px;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #eef4fb;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.organisatie-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.organisatie-team-card h3 {
  color: var(--primary-dark);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.organisatie-team-card p {
  color: var(--muted);
  line-height: 1.6;
}

.organisatie-highlight-card {
  border: 1px solid #d9e8ff;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

@media (max-width: 1000px) {
  .organisatie-hero-card {
    grid-template-columns: 1fr;
  }

  .organisatie-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .organisatie-hero-image img {
    height: auto;
  }
}

@media (max-width: 640px) {
  .organisatie-team-grid {
    grid-template-columns: 1fr;
  }

  .organisatie-hero-card {
    padding: 20px;
  }

  .organisatie-hero-content h1 {
    font-size: 2rem;
  }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .providers-filter-form {
    grid-template-columns: 1fr 1fr;
  }

  .providers-filter-actions {
    grid-column: 1 / -1;
  }

  .providers-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1000px) {
  .standhouder-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .content-two-column {
    grid-template-columns: 1fr;
  }

  .standhouder-cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 960px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 20px;
    right: 20px;
    background: #fff;
    border-radius: 14px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .nav.open {
    display: flex;
  }

  .nav a,
  .nav .btn {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-inner,
  .cards,
  .provider-grid,
  .cta-inner,
  .testimonial-grid,
  .event-page-hero-card,
  .event-layout,
  .provider-detail-card,
  .provider-detail-layout {
    grid-template-columns: 1fr;
  }

  .event-meta-grid {
    grid-template-columns: 1fr;
  }

  .hero-image img,
  .event-page-hero-image img,
  .provider-detail-image img {
    height: auto;
  }

  .event-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .event-banner-actions {
    width: 100%;
  }

  .event-banner-actions .btn {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .providers-page-hero-card h1 {
    font-size: 2rem;
  }

  .providers-filter-form,
  .providers-list-grid {
    grid-template-columns: 1fr;
  }

  .providers-results-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .providers-filter-actions {
    width: 100%;
  }

  .providers-filter-actions .btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .hero-text h1 {
    font-size: 2.2rem;
  }

  .hero-text p,
  .event-intro,
  .provider-detail-intro {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .card h3,
  .provider-content h3,
  .cta-box h3 {
    font-size: 1.4rem;
  }

  .event-page-hero-content h1,
  .provider-detail-content h1,
  .content-hero-card h1 {
    font-size: 2rem;
  }

  .hero-buttons,
  .provider-detail-actions,
  .content-hero-actions {
    flex-direction: column;
  }

  .hero-buttons .btn,
  .provider-detail-actions .btn,
  .content-hero-actions .btn,
  .standhouder-cta-card .btn {
    width: 100%;
  }

  .standhouder-feature-grid {
    grid-template-columns: 1fr;
  }

  .event-page-hero-card,
  .event-content-card,
  .event-side-card,
  .cta-box,
  .card,
  .testimonial-card,
  .provider-detail-card,
  .provider-detail-info-card,
  .provider-side-card,
  .providers-page-hero-card,
  .providers-toolbar,
  .providers-empty-state,
  .content-hero-card,
  .content-page-card {
    padding: 20px;
  }

  .standhouder-cta-card {
    padding: 22px;
  }

  .footer-inner {
    padding: 20px 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
}

/* INSCHRIJVINGEN */
.registration-card {
  max-width: 900px;
}

.public-form {
  display: grid;
  gap: 18px;
}

.public-form .form-group,
.public-form .form-group-row {
  display: grid;
  gap: 8px;
}

.public-form .form-group-row {
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.public-form label {
  font-weight: 700;
  color: var(--text);
}

.public-form input,
.public-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 1rem;
  background: #fff;
}

.public-form input {
  min-height: 48px;
}

.public-form textarea {
  resize: vertical;
}

.public-form input:focus,
.public-form textarea:focus {
  outline: 2px solid rgba(47, 105, 201, 0.15);
  border-color: var(--primary);
}

.public-form-options {
  display: grid;
  gap: 12px;
}

.public-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
  color: var(--text);
}

.public-check input {
  width: auto;
  min-height: auto;
  margin-top: 4px;
}

.form-actions-public {
  display: flex;
  justify-content: flex-start;
}

.form-message {
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 700;
  margin-bottom: 18px;
}

.form-message-error {
  background: #fdecea;
  color: #b42318;
}

.form-message-success {
  background: #edf9f0;
  color: #237a45;
}

@media (max-width: 760px) {
  .public-form .form-group-row {
    grid-template-columns: 1fr;
  }

  .form-actions-public .btn {
    width: 100%;
  }
}