
:root {
  --primary: #0f172a;
  --primary-fg: #ffffff;
  --secondary: #e2e8f0;
  --secondary-fg: #0f172a;
  --accent: #c2410c;
  --accent-fg: #ffffff;
  --background: #fafafa;
  --foreground: #1a1a2e;
  --muted: #64748b;
  --border: #e2e8f0;
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Oswald', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-body); color: var(--foreground); background: var(--background); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

/* Container */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

/* Top Bar */
.top-bar { height: 4px; background: var(--accent); }

/* Header */
.header { background: white; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.header .container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo-icon { width: 40px; height: 40px; background: var(--primary); color: white; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 700; font-size: 0.875rem; }
.logo-text { display: flex; flex-direction: column; }
.logo-text .name { font-family: var(--font-heading); font-weight: 700; font-size: 1.125rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--primary); }
.logo-text .subtitle { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
.nav { display: flex; align-items: center; gap: 2rem; }
.nav a { font-size: 0.875rem; font-weight: 500; color: var(--foreground); transition: color 0.2s; }
.nav a:hover { color: var(--accent); }
.btn-cta { background: var(--accent) !important; color: white !important; padding: 0.5rem 1.25rem; font-family: var(--font-heading); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.8rem !important; transition: background 0.2s; }
.btn-cta:hover { background: var(--primary) !important; }
.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.mobile-menu-btn span { display: block; width: 24px; height: 2px; background: var(--primary); margin: 5px 0; transition: 0.3s; }
.mobile-nav { display: none; background: white; border-bottom: 1px solid var(--border); padding: 1rem 1.5rem; }
.mobile-nav.active { display: flex; flex-direction: column; gap: 1rem; }
.mobile-nav a { font-size: 1rem; padding: 0.5rem 0; }

@media (max-width: 768px) {
  .nav { display: none; }
  .mobile-menu-btn { display: block; }
}

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.875rem 2rem; font-family: var(--font-heading); font-weight: 700; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; transition: all 0.2s; cursor: pointer; border: none; }
.btn-accent { background: var(--accent); color: white; }
.btn-accent:hover { background: var(--primary); }
.btn-outline { border: 2px solid var(--primary); color: var(--primary); background: transparent; }
.btn-outline:hover { background: var(--primary); color: white; }
.btn-white { background: white; color: var(--primary); }
.btn-white:hover { background: var(--secondary); }
.btn-white-outline { border: 2px solid white; color: white; background: transparent; }
.btn-white-outline:hover { background: white; color: var(--primary); }
.btn-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-row.center { justify-content: center; }

/* Hero */
.hero { background: var(--secondary); padding: 5rem 0; }
.hero h1 { font-family: var(--font-heading); font-size: 3.5rem; font-weight: 700; text-transform: uppercase; line-height: 1.1; color: var(--primary); margin-bottom: 1.5rem; }
.hero p { font-size: 1.25rem; color: var(--muted); line-height: 1.7; margin-bottom: 2rem; max-width: 560px; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero h1 { font-size: 2.5rem; }
}
.accent { color: var(--accent); }
.text-accent { color: var(--accent); }

/* Region Hero */
.region-hero { position: relative; height: 450px; background: var(--primary); display: flex; align-items: center; overflow: hidden; }
.region-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, var(--primary) 60%, rgba(194,65,12,0.3)); }
.region-hero-content { position: relative; z-index: 2; }
.region-hero h1 { font-family: var(--font-heading); font-size: 3.5rem; font-weight: 700; text-transform: uppercase; line-height: 1.1; color: white; margin-bottom: 1.5rem; }
.region-hero p { font-size: 1.25rem; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 2rem; max-width: 560px; }
@media (max-width: 768px) {
  .region-hero { height: 380px; }
  .region-hero h1 { font-size: 2.5rem; }
}

/* Steps */
.steps { display: flex; flex-direction: column; gap: 1.5rem; }
.step { display: flex; align-items: flex-start; gap: 1rem; }
.step-num { width: 36px; height: 36px; background: var(--primary); color: white; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 700; font-size: 1rem; flex-shrink: 0; }

/* Sections */
.section { padding: 5rem 0; }
.section-white { background: white; }
.section-light { background: var(--secondary); }
.section-secondary { background: var(--secondary); }
.section-primary { background: var(--primary); color: white; padding: 5rem 0; }
.section-title { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; text-transform: uppercase; color: var(--primary); text-align: center; margin-bottom: 1rem; }
.section-subtitle { font-size: 1.125rem; color: var(--muted); text-align: center; margin-bottom: 3rem; max-width: 640px; margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }

/* Region Grid */
.region-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }
.region-card { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem; background: white; border: 1px solid var(--border); font-weight: 500; font-size: 0.9rem; transition: all 0.2s; }
.region-card:hover { border-color: var(--accent); background: #fff7ed; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.region-badge { font-size: 0.7rem; background: #dcfce7; color: #166534; padding: 0.2rem 0.5rem; font-weight: 600; white-space: nowrap; }
.region-badge-full { background: #fef3c7; color: #92400e; }

/* Two Column Layout */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; gap: 2rem; } }

/* Cards */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.card { background: white; padding: 2.5rem; border-top: 4px solid var(--accent); box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.card-icon { font-size: 2.5rem; margin-bottom: 1.5rem; }
.card h3 { font-family: var(--font-heading); font-size: 1.25rem; text-transform: uppercase; color: var(--primary); margin-bottom: 0.75rem; }
.card p { color: var(--muted); line-height: 1.7; }

/* Info Grid */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
@media (max-width: 768px) { .info-grid { grid-template-columns: 1fr; } }
.info-item { text-align: center; padding: 2rem; }
.info-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.info-item h3 { font-family: var(--font-heading); font-size: 1.125rem; text-transform: uppercase; color: var(--primary); margin-bottom: 0.5rem; }
.info-item p { color: var(--muted); font-size: 0.9rem; }

/* Feature Items */
.feature-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.feature-icon { width: 48px; height: 48px; background: var(--secondary); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }
.feature-item h3 { font-size: 1rem; color: var(--primary); margin-bottom: 0.25rem; }
.feature-item p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

/* Provider Cards */
.provider-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; }
.provider-card { background: white; border: 1px solid var(--border); padding: 1.5rem; transition: all 0.2s; position: relative; }
.provider-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); transform: translateY(-2px); }
.provider-available { border-left: 4px solid #16a34a; }
.provider-full { border-left: 4px solid #f59e0b; opacity: 0.8; }
.provider-status { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: #16a34a; margin-bottom: 0.75rem; }
.provider-status-full { color: #f59e0b; }
.provider-card h3 { font-family: var(--font-heading); font-size: 1.25rem; text-transform: uppercase; color: var(--primary); margin-bottom: 0.5rem; }
.provider-place { font-size: 0.875rem; color: var(--muted); margin-bottom: 0.5rem; }
.provider-spec { font-size: 0.8rem; color: var(--accent); font-weight: 500; margin-bottom: 1rem; }
.provider-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.provider-website { font-size: 0.875rem; font-weight: 700; color: var(--accent); text-decoration: underline; }
.provider-website:hover { color: var(--primary); }
.provider-link { font-size: 0.875rem; font-weight: 700; color: var(--primary); text-decoration: underline; }
.provider-link:hover { color: var(--accent); }

/* Search Box */
.search-box { background: white; padding: 2.5rem; border-top: 4px solid var(--primary); box-shadow: 0 10px 25px rgba(0,0,0,0.1); max-width: 480px; margin: 0 auto; }
.search-row { display: flex; gap: 0.75rem; margin-top: 0.5rem; }
.search-input { flex: 1; padding: 0.875rem 1rem; border: 2px solid var(--border); font-size: 1rem; font-family: var(--font-body); }
.search-input:focus { outline: none; border-color: var(--primary); }
.search-btn { padding: 0.875rem 1.5rem; background: var(--accent); color: white; border: none; font-family: var(--font-heading); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; cursor: pointer; transition: background 0.2s; white-space: nowrap; }
.search-btn:hover { background: var(--primary); }

/* Forms */
.form-container { background: white; padding: 2.5rem; border-top: 4px solid var(--accent); box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--primary); margin-bottom: 0.5rem; }
.form-input { width: 100%; padding: 0.75rem 1rem; border: 2px solid var(--border); font-size: 0.9rem; font-family: var(--font-body); transition: border-color 0.2s; }
.form-input:focus { outline: none; border-color: var(--primary); }
textarea.form-input { min-height: 100px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 768px) { .form-row { grid-template-columns: 1fr; } }
.form-checkbox { display: flex; gap: 0.75rem; align-items: flex-start; }
.form-checkbox input { margin-top: 0.25rem; }
.form-checkbox label { font-size: 0.8rem; color: var(--muted); line-height: 1.5; }
.form-checkbox a { color: var(--accent); text-decoration: underline; }
.form-submit { width: 100%; padding: 1rem; background: var(--accent); color: white; border: none; font-family: var(--font-heading); font-weight: 700; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.05em; cursor: pointer; transition: background 0.2s; margin-top: 1rem; }
.form-submit:hover { background: var(--primary); }

/* Footer */
.footer { background: var(--primary); color: white; padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
.footer h3 { font-family: var(--font-heading); font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 1rem; }
.footer ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer li, .footer a { font-size: 0.875rem; color: rgba(255,255,255,0.7); }
.footer a:hover { color: white; }
.footer-bottom { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.8rem; color: rgba(255,255,255,0.5); text-align: center; }

/* Prose */
.prose h2 { margin-top: 2rem; }
.prose p { color: var(--muted); line-height: 1.8; margin-bottom: 1rem; }
.prose ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.prose li { color: var(--muted); line-height: 1.8; list-style: disc; margin-bottom: 0.25rem; }
.prose a { color: var(--accent); text-decoration: underline; }

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: var(--primary-fg);
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  border-top: 4px solid var(--accent);
  animation: slideUp 0.4s ease-out;
}
@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .cookie-content { flex-direction: column; text-align: center; }
}
.cookie-text { flex: 1; }
.cookie-text h4 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  color: var(--accent);
}
.cookie-text p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin: 0;
}
.cookie-text a {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 500;
}
.cookie-text a:hover { color: white; }
.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .cookie-buttons { width: 100%; flex-direction: column; }
}
.cookie-btn {
  padding: 0.75rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.cookie-btn-accept {
  background: var(--accent);
  color: white;
}
.cookie-btn-accept:hover { background: white; color: var(--primary); }
.cookie-btn-necessary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.5);
}
.cookie-btn-necessary:hover { border-color: white; background: rgba(255,255,255,0.1); }

/* Netherlands Map */
.map-container { display: flex; gap: 3rem; align-items: flex-start; justify-content: center; margin: 2rem auto 0; max-width: 900px; flex-wrap: wrap; }
.map-wrapper { position: relative; flex: 0 0 320px; }
.netherlands-map { width: 100%; height: auto; display: block; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1)); }
.netherlands-map path { fill: #e2e8f0; stroke: white; stroke-width: 2; cursor: pointer; transition: fill 0.2s, transform 0.1s; }
.netherlands-map path:hover { fill: var(--accent); transform: scale(1.02); transform-origin: center; }
.netherlands-map path.active { fill: var(--primary); }
.map-tooltip { position: absolute; bottom: -30px; left: 50%; transform: translateX(-50%); background: white; padding: 0.5rem 1rem; border-radius: 4px; box-shadow: 0 2px 8px rgba(0,0,0,0.15); font-size: 0.85rem; font-weight: 600; color: var(--primary); white-space: nowrap; pointer-events: none; transition: opacity 0.2s; }
.map-region-selector { background: white; border: 1px solid var(--border); padding: 1.5rem; box-shadow: 0 4px 16px rgba(0,0,0,0.1); min-width: 280px; max-width: 350px; flex: 1; }
.map-region-selector h3 { font-family: var(--font-heading); font-size: 1.25rem; text-transform: uppercase; color: var(--primary); margin-bottom: 0.5rem; }
.map-region-selector p { font-size: 0.875rem; color: var(--muted); margin-bottom: 1rem; }
.map-region-btn { display: block; width: 100%; text-align: left; padding: 0.75rem 1rem; margin-bottom: 0.5rem; background: var(--secondary); border: none; font-size: 0.9rem; font-weight: 500; color: var(--primary); cursor: pointer; transition: all 0.2s; font-family: var(--font-body); }
.map-region-btn:hover { background: var(--accent); color: white; }
@media (max-width: 768px) { 
  .map-container { flex-direction: column; align-items: center; }
  .map-wrapper { flex: 0 0 auto; width: 100%; max-width: 280px; }
  .map-region-selector { width: 100%; max-width: 100%; }
}
