/* === Reset & Base === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-primary: #1b3a5c;
  --color-secondary: #244e7a;
  --color-accent: #e8792b;
  --color-background: #f5f6f8;
  --color-surface: #ffffff;
  --color-text: #1a1a2e;
  --color-muted: #5a6272;
  --color-accent-hover: #d4691f;
  --color-primary-light: #2a5080;
  --color-border: #dde1e7;
  --color-footer-bg: #0f2540;
  --color-footer-text: #c8d0dc;
  --color-hero-overlay: rgba(15, 37, 64, 0.72);
  --color-white: #ffffff;

  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.14);

  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;

  --font-heading: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;

  --max-width: 1160px;
  --nav-height: 72px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-accent-hover);
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-primary);
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.6rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.1rem;
}

p {
  margin-bottom: var(--space-md);
  color: var(--color-muted);
}

p:last-child {
  margin-bottom: 0;
}

/* === Container === */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

/* === Skip Link (Accessibility) === */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  background: var(--color-accent);
  color: var(--color-white);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  z-index: 10000;
  font-weight: 600;
}

.skip-link:focus {
  top: var(--space-sm);
}

/* === Top Bar === */
.top-bar {
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 0.85rem;
  padding: var(--space-sm) 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.top-bar a {
  color: var(--color-white);
  font-weight: 500;
  transition: opacity var(--transition-fast);
}

.top-bar a:hover {
  opacity: 0.85;
  color: var(--color-white);
}

.top-bar-phone {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.top-bar-hours {
  opacity: 0.85;
}

/* === Navigation === */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--nav-height);
}

.navbar-logo img {
  height: 44px;
  width: auto;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-primary);
}

.navbar-logo:hover {
  color: var(--color-primary);
}

.nav-links {
  display: none;
  gap: var(--space-xs);
}

.nav-links a {
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.95rem;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background-color var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: var(--space-md);
  right: var(--space-md);
  height: 2px;
  background-color: var(--color-accent);
  transform: scaleX(0);
  transition: transform var(--transition-base);
  transform-origin: center;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links a:hover {
  color: var(--color-primary);
  background-color: rgba(27, 58, 92, 0.05);
}

.nav-links a.active {
  color: var(--color-primary);
  font-weight: 600;
}

.nav-cta {
  display: none;
}

.nav-cta .btn {
  font-size: 0.9rem;
  padding: var(--space-sm) var(--space-lg);
}

/* === Mobile Menu Toggle === */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2.5px;
  background-color: var(--color-primary);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-fast);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* === Mobile Nav Menu === */
.nav-mobile {
  display: none;
  position: absolute;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background-color: var(--color-surface);
  box-shadow: var(--shadow-lg);
  padding: var(--space-md) 0;
  z-index: 999;
}

.nav-mobile.is-open {
  display: block;
}

.nav-mobile a {
  display: block;
  padding: var(--space-sm) var(--space-lg);
  color: var(--color-text);
  font-weight: 500;
  font-size: 1rem;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.nav-mobile a:hover,
.nav-mobile a.active {
  background-color: rgba(27, 58, 92, 0.05);
  color: var(--color-primary);
}

.nav-mobile .btn {
  margin: var(--space-md) var(--space-lg);
  text-align: center;
  display: block;
}

/* === Buttons === */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: background-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast), color var(--transition-fast);
  line-height: 1.4;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(232, 121, 43, 0.35);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn-secondary:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn-accent-outline {
  background-color: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.btn-accent-outline:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.btn-lg {
  font-size: 1.1rem;
  padding: 0.9rem 2.25rem;
}

.btn-sm {
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

/* === Hero Section === */
.hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--color-primary);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--color-hero-overlay);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: var(--space-2xl) 0;
  color: var(--color-white);
  max-width: 680px;
}

.hero-badge {
  display: inline-block;
  background-color: rgba(232, 121, 43, 0.2);
  border: 1px solid rgba(232, 121, 43, 0.5);
  color: var(--color-accent);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
}

.hero h1 {
  color: var(--color-white);
  font-size: 2rem;
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.hero p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
  margin-bottom: var(--space-lg);
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: center;
}

.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-white);
  font-weight: 600;
  font-size: 1.05rem;
  transition: opacity var(--transition-fast);
}

.hero-phone:hover {
  opacity: 0.85;
  color: var(--color-white);
}

/* === Section Common === */
.section {
  padding: var(--space-xl) 0;
}

.section-lg {
  padding: var(--space-2xl) 0;
}

.section-alt {
  background-color: var(--color-surface);
}

.section-dark {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.section-dark h2,
.section-dark h3 {
  color: var(--color-white);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.8);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  margin-bottom: var(--space-sm);
}

.section-header p {
  font-size: 1.05rem;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

/* === Service Cards Grid === */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.service-card {
  background-color: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.service-card:hover .service-card-img img {
  transform: scale(1.04);
}

.service-card-body {
  padding: var(--space-lg);
}

.service-card-body h3 {
  margin-bottom: var(--space-sm);
}

.service-card-body p {
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-accent);
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.service-card-link:hover {
  gap: var(--space-sm);
  color: var(--color-accent-hover);
}

.service-card-link::after {
  content: '\2192';
}

/* === Icon Cards === */
.icon-card {
  text-align: center;
  padding: var(--space-lg);
}

.icon-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: rgba(232, 121, 43, 0.1);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  font-size: 1.5rem;
  font-weight: 700;
}

.icon-card h3 {
  margin-bottom: var(--space-sm);
  font-size: 1.1rem;
}

.icon-card p {
  font-size: 0.9rem;
}

/* === USP / Feature Row === */
.usp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.usp-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.usp-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background-color: rgba(27, 58, 92, 0.08);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
}

.usp-text h3 {
  font-size: 1.05rem;
  margin-bottom: var(--space-xs);
}

.usp-text p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* === About / Split Layout === */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.split-img {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.split-img img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

.split-content h2 {
  margin-bottom: var(--space-md);
}

.split-content p {
  margin-bottom: var(--space-md);
}

/* === Certifications / Logo Bar === */
.cert-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  padding: var(--space-lg) 0;
}

.cert-bar img {
  height: 56px;
  width: auto;
  opacity: 0.75;
  transition: opacity var(--transition-fast);
  filter: grayscale(20%);
}

.cert-bar img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* === CTA Banner === */
.cta-banner {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-xl) 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-lg);
  font-size: 1.05rem;
}

.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

/* === Contact Section === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background-color: rgba(232, 121, 43, 0.1);
  color: var(--color-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.contact-info-item h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.contact-info-item p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.contact-info-item a {
  color: var(--color-accent);
  font-weight: 600;
}

.contact-phone-big {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.01em;
}

.contact-phone-big a {
  color: var(--color-primary);
}

.contact-phone-big a:hover {
  color: var(--color-accent);
}

/* === Contact Form === */
.contact-form {
  background-color: var(--color-surface);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  margin-bottom: var(--space-lg);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.7rem var(--space-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background-color: var(--color-background);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(232, 121, 43, 0.15);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-muted);
  opacity: 0.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

/* === Opening Hours Table === */
.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid var(--color-border);
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table td {
  padding: var(--space-sm) 0;
  font-size: 0.95rem;
}

.hours-table td:first-child {
  font-weight: 600;
  color: var(--color-text);
}

.hours-table td:last-child {
  text-align: right;
  color: var(--color-muted);
}

/* === Page Header / Breadcrumb === */
.page-header {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-xl) 0 var(--space-lg);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  z-index: 0;
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: 0.85rem;
  opacity: 0.8;
}

.breadcrumb a {
  color: var(--color-white);
  opacity: 0.85;
}

.breadcrumb a:hover {
  opacity: 1;
  color: var(--color-white);
}

.breadcrumb span {
  opacity: 0.6;
}

/* === Sticky Phone Bar (Mobile) === */
.sticky-phone {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background-color: var(--color-accent);
  color: var(--color-white);
  text-align: center;
  padding: var(--space-sm) var(--space-md);
  font-weight: 700;
  font-size: 1rem;
  justify-content: center;
  align-items: center;
  gap: var(--space-sm);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
  transition: background-color var(--transition-fast);
}

.sticky-phone a {
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.sticky-phone a:hover {
  color: var(--color-white);
}

.sticky-phone:hover {
  background-color: var(--color-accent-hover);
}

/* === Footer === */
.footer {
  background-color: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer h4 {
  color: var(--color-white);
  font-size: 1rem;
  margin-bottom: var(--space-md);
  position: relative;
  padding-bottom: var(--space-sm);
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background-color: var(--color-accent);
}

.footer p {
  color: var(--color-footer-text);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a {
  color: var(--color-footer-text);
  font-size: 0.9rem;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-white);
  padding-left: var(--space-xs);
}

.footer-logo {
  margin-bottom: var(--space-md);
}

.footer-logo img {
  height: 40px;
  width: auto;
  opacity: 0.9;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  font-size: 0.9rem;
}

.footer-contact-item:last-child {
  margin-bottom: 0;
}

.footer-contact-label {
  font-weight: 600;
  color: var(--color-white);
  min-width: 60px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  margin-bottom: 0;
  opacity: 0.7;
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-md);
}

.footer-bottom-links a {
  color: var(--color-footer-text);
  font-size: 0.82rem;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.footer-bottom-links a:hover {
  opacity: 1;
  color: var(--color-white);
}

.footer-certs {
  display: flex;
  gap: var(--space-md);
  align-items: center;
  margin-top: var(--space-sm);
}

.footer-certs img {
  height: 40px;
  width: auto;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.footer-certs img:hover {
  opacity: 1;
}

/* === Diensten Page === */
.dienst-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
  align-items: center;
}

.dienst-detail:last-child {
  margin-bottom: 0;
}

.dienst-detail-img {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.dienst-detail-img img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

.dienst-detail-content h3 {
  margin-bottom: var(--space-sm);
}

.dienst-detail-content ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.dienst-detail-content ul li {
  position: relative;
  padding-left: var(--space-sm);
  margin-bottom: var(--space-sm);
  font-size: 0.95rem;
  color: var(--color-muted);
  list-style: none;
}

.dienst-detail-content ul li::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-md));
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-accent);
}

/* === Over Ons Page === */
.team-values {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  counter-reset: value-counter;
}

.value-card {
  background-color: var(--color-surface);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
  padding-left: calc(var(--space-lg) + var(--space-xl));
  counter-increment: value-counter;
  transition: box-shadow var(--transition-base);
}

.value-card:hover {
  box-shadow: var(--shadow-md);
}

.value-card::before {
  content: counter(value-counter, decimal-leading-zero);
  position: absolute;
  left: var(--space-lg);
  top: var(--space-lg);
  font-size: 2rem;
  font-weight: 800;
  color: rgba(232, 121, 43, 0.15);
  line-height: 1;
}

.value-card h3 {
  margin-bottom: var(--space-sm);
  font-size: 1.05rem;
}

.value-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* === Stats Row === */
.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  text-align: center;
}

.stat-item {
  padding: var(--space-md);
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1.1;
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-muted);
  font-weight: 500;
}

.section-dark .stat-label {
  color: rgba(255, 255, 255, 0.7);
}

/* === Map Embed === */
.map-container {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: none;
  display: block;
}

/* === Utility Classes === */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-accent {
  color: var(--color-accent);
}

.text-primary {
  color: var(--color-primary);
}

.text-white {
  color: var(--color-white);
}

.mb-0 {
  margin-bottom: 0;
}

.mb-sm {
  margin-bottom: var(--space-sm);
}

.mb-md {
  margin-bottom: var(--space-md);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

.mb-xl {
  margin-bottom: var(--space-xl);
}

.mt-lg {
  margin-top: var(--space-lg);
}

.mt-xl {
  margin-top: var(--space-xl);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* === Responsive: 480px === */
@media (min-width: 480px) {
  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .container {
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
  }
}

/* === Responsive: 768px === */
@media (min-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero {
    min-height: 500px;
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  .hero p {
    font-size: 1.15rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .dienst-detail {
    grid-template-columns: 1fr 1fr;
  }

  .dienst-detail:nth-child(even) .dienst-detail-img {
    order: 2;
  }

  .dienst-detail:nth-child(even) .dienst-detail-content {
    order: 1;
  }

  .team-values {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-row {
    grid-template-columns: repeat(4, 1fr);
  }

  .map-container iframe {
    height: 400px;
  }

  .sticky-phone {
    display: none;
  }

  body {
    padding-bottom: 0;
  }
}

/* === Responsive: 1024px === */
@media (min-width: 1024px) {
  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .hero {
    min-height: 560px;
  }

  .hero h1 {
    font-size: 3.1rem;
  }

  .hero-content {
    max-width: 720px;
  }

  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
  }

  .nav-cta {
    display: block;
  }

  .nav-mobile {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .usp-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }

  .section {
    padding: var(--space-2xl) 0;
  }

  .section-lg {
    padding: calc(var(--space-2xl) + var(--space-lg)) 0;
  }

  .contact-form {
    padding: var(--space-xl);
  }
}

/* === Responsive: 1200px === */
@media (min-width: 1200px) {
  .hero h1 {
    font-size: 3.4rem;
  }
}

/* === Mobile body padding for sticky phone bar === */
@media (max-width: 767px) {
  body {
    padding-bottom: 52px;
  }
}

/* === Print Styles === */
@media print {
  .navbar,
  .sticky-phone,
  .nav-toggle,
  .cta-banner,
  .footer {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
    padding-bottom: 0;
  }

  .hero {
    min-height: auto;
    background: none;
    color: #000;
    padding: var(--space-lg) 0;
  }

  .hero-overlay,
  .hero-bg {
    display: none;
  }

  .hero h1,
  .hero p {
    color: #000;
  }

  .service-card {
    box-shadow: none;
    border: 1px solid #ddd;
    break-inside: avoid;
  }

  a {
    color: #000;
    text-decoration: underline;
  }
}