/* =============================================
   Dakkapel Amsterdam — style.css
   Forest Green + Warm Wood Construction Theme
   ============================================= */

/* --- Variables --- */
:root {
  --primary: #2D6A4F;
  --primary-light: #3D8B6A;
  --secondary: #8B6914;
  --secondary-light: #A67D1A;
  --accent: #4ECDC4;
  --accent-dark: #3BA89F;
  --dark: #1B4332;
  --dark-deeper: #142F24;
  --light: #F0F4F0;
  --light-warm: #F7F5F0;
  --white: #FFFFFF;
  --text: #212529;
  --text-light: #6C757D;
  --border: #D4DCD4;
  --radius: 6px;
  --radius-lg: 12px;
  --shadow: 0 2px 16px rgba(27,67,50,.07);
  --shadow-lg: 0 8px 32px rgba(27,67,50,.10);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color .2s;
}

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

ul, ol {
  list-style: none;
}

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

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; margin-bottom: 1rem; }
h3 { font-size: 1.4rem; margin-bottom: .75rem; }
h4 { font-size: 1.15rem; }

p {
  margin-bottom: 1rem;
}

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

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: .8rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  text-align: center;
  cursor: pointer;
  transition: all .25s;
  border: none;
  font-family: inherit;
  line-height: 1.4;
  letter-spacing: .2px;
}

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

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

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

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

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

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

.btn-white {
  background: var(--white);
  color: var(--dark);
  font-weight: 600;
}

.btn-white:hover {
  background: var(--light);
  color: var(--dark);
}

.btn-cta {
  background: var(--accent);
  color: var(--dark);
  font-weight: 700;
}

.btn-cta:hover {
  background: var(--accent-dark);
  color: var(--dark);
}

/* =============================================
   Top Bar
   ============================================= */
.top-bar {
  background: var(--dark);
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  padding: .5rem 0;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.top-bar-left a {
  color: rgba(255,255,255,.85);
  font-weight: 500;
}

.top-bar-left a:hover {
  color: var(--accent);
}

.top-bar-left span {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}

.top-bar-right .btn {
  padding: .35rem 1rem;
  font-size: .78rem;
  border-radius: 4px;
  background: var(--primary);
  color: var(--white);
}

.top-bar-right .btn:hover {
  background: var(--primary-light);
  color: var(--white);
}

/* =============================================
   Header / Navigation
   ============================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  transition: box-shadow .3s;
  border-bottom: 1px solid var(--border);
}

.header.scrolled {
  box-shadow: var(--shadow-lg);
  border-bottom-color: transparent;
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo svg {
  height: 44px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-menu > li > a {
  font-weight: 500;
  color: var(--text);
  padding: .5rem 0;
  position: relative;
  font-size: .9rem;
  transition: color .2s;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: var(--primary);
}

.nav-menu > li > a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
}

/* Dropdown */
.has-dropdown {
  position: relative;
}

.has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: .35rem;
  vertical-align: middle;
  transition: transform .2s;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .2s;
  padding: .5rem 0;
  z-index: 100;
  border: 1px solid var(--border);
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: .5rem 1.25rem;
  color: var(--text);
  font-size: .85rem;
  font-weight: 500;
}

.dropdown li a:hover,
.dropdown li a.active {
  background: var(--light);
  color: var(--primary);
}

/* CTA in nav */
.nav-cta .btn {
  padding: .5rem 1.25rem;
  font-size: .85rem;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: all .3s;
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* =============================================
   Hero
   ============================================= */
.hero {
  background: linear-gradient(160deg, var(--primary) 0%, var(--dark) 55%, var(--dark-deeper) 100%);
  color: var(--white);
  padding: 4.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(78,205,196,.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025' fill-rule='evenodd'%3E%3Cpath d='M20 0L0 20h8l12-12 12 12h8z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: var(--white);
  font-size: 2.6rem;
  margin-bottom: 1.25rem;
  font-weight: 800;
  line-height: 1.15;
}

.hero p {
  font-size: 1.1rem;
  opacity: .9;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-badges {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  opacity: .85;
  font-weight: 500;
}

.hero-badge-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius);
  background: rgba(78,205,196,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  color: var(--accent);
}

/* Hero Form */
.hero-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 12px 48px rgba(0,0,0,.2);
  border-top: 4px solid var(--secondary);
}

.hero-form-wrap h3 {
  color: var(--dark);
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

/* =============================================
   Trust Strip
   ============================================= */
.trust-strip {
  background: var(--light);
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 600;
  color: var(--dark);
  font-size: .88rem;
}

.trust-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  border: 1px solid var(--border);
}

/* =============================================
   Sections
   ============================================= */
.section {
  padding: 5rem 0;
}

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

.section-warm {
  background: var(--light-warm);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
}

.section-label {
  display: inline-block;
  color: var(--secondary);
  font-weight: 700;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: .5rem;
  position: relative;
  padding-left: 2rem;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.25rem;
  height: 2px;
  background: var(--secondary);
}

/* =============================================
   Dakkapel Types Grid (Service Cards)
   ============================================= */
.types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.type-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
  border: 1px solid var(--border);
  border-top: 3px solid var(--primary);
  position: relative;
}

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

.type-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  color: var(--primary);
  border: 1px solid var(--border);
}

.type-card h3 {
  font-size: 1.15rem;
  margin-bottom: .6rem;
}

.type-card p {
  color: var(--text-light);
  font-size: .92rem;
  margin-bottom: 1rem;
  line-height: 1.65;
}

.type-card .btn {
  font-size: .85rem;
  padding: .45rem 1.1rem;
}

/* =============================================
   Process / Werkwijze — Stacked Build Steps
   ============================================= */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}

.process-step {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  counter-increment: step;
  border-left: 4px solid var(--accent);
  text-align: left;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.process-step h3 {
  font-size: 1.05rem;
  margin-bottom: .5rem;
}

.process-step p {
  color: var(--text-light);
  font-size: .88rem;
  line-height: 1.65;
}

/* Process detail page — Zigzag Blocks */
.process-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.process-blocks {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.block-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.25rem;
  align-items: start;
}

.block-number {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary), var(--dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.block-content h3 {
  margin-bottom: .5rem;
  font-size: 1.1rem;
}

.block-content p {
  color: var(--text-light);
  font-size: .92rem;
  line-height: 1.7;
}

/* Connector line between blocks */
.block-item + .block-item {
  position: relative;
}

.block-item + .block-item::before {
  content: '';
  position: absolute;
  left: 28px;
  top: -2rem;
  width: 2px;
  height: 2rem;
  background: repeating-linear-gradient(to bottom, var(--border) 0, var(--border) 4px, transparent 4px, transparent 8px);
}

/* =============================================
   Reviews
   ============================================= */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 3rem;
  color: var(--primary);
  opacity: .12;
  font-family: Georgia, serif;
  line-height: 1;
}

.review-stars {
  color: var(--secondary);
  font-size: 1rem;
  margin-bottom: .75rem;
  letter-spacing: 2px;
}

.review-text {
  color: var(--text);
  font-style: italic;
  margin-bottom: 1rem;
  font-size: .92rem;
  line-height: 1.7;
}

.review-author {
  font-weight: 700;
  color: var(--dark);
  font-size: .88rem;
}

.review-location {
  color: var(--text-light);
  font-size: .82rem;
}

/* =============================================
   FAQ
   ============================================= */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 2.5rem 1.25rem 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  position: relative;
  font-family: inherit;
  line-height: 1.5;
}

.faq-q::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: var(--primary);
  transition: transform .2s;
  font-weight: 300;
}

.faq-q.open::after {
  content: '\2212';
}

.faq-a {
  display: none;
  padding: 0 0 1.25rem;
  color: var(--text-light);
  line-height: 1.8;
  font-size: .92rem;
}

/* =============================================
   CTA Banner
   ============================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139,105,20,.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1.9rem;
}

.cta-banner p {
  opacity: .9;
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   Forms
   ============================================= */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .875rem;
}

.form-group {
  margin-bottom: .25rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: .82rem;
  margin-bottom: .35rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .7rem .875rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .92rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(45,106,79,.1);
}

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

.form-submit {
  margin-top: .875rem;
}

.form-submit .btn {
  width: 100%;
  padding: .875rem;
  font-size: 1rem;
}

.form-msg {
  display: none;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-top: 1rem;
  font-weight: 500;
  font-size: .92rem;
}

.form-msg.success {
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}

.form-msg.error {
  background: #FEF2F2;
  color: #991B1B;
  border: 1px solid #FECACA;
}

/* =============================================
   Contact Page
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  border-top: 3px solid var(--secondary);
}

.contact-form-wrap h3 {
  color: var(--dark);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius);
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--primary);
  border: 1px solid var(--border);
}

.contact-info-text h4 {
  margin-bottom: .2rem;
  font-size: .95rem;
}

.contact-info-text p {
  color: var(--text-light);
  font-size: .92rem;
  margin-bottom: 0;
}

.contact-info-text a {
  color: var(--primary);
  font-weight: 500;
}

.contact-info-text a:hover {
  color: var(--secondary);
}

/* =============================================
   Service Area / Werkgebied
   ============================================= */
.area-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.area-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
}

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

.area-card h3 {
  margin-bottom: .6rem;
}

.area-card p {
  color: var(--text-light);
  margin-bottom: 1.25rem;
  font-size: .92rem;
  line-height: 1.65;
}

/* =============================================
   About Page
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 1rem;
}

.about-text p {
  margin-bottom: 1rem;
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
}

.about-image {
  background: linear-gradient(135deg, var(--primary), var(--dark));
  border-radius: var(--radius-lg);
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04' fill-rule='evenodd'%3E%3Cpath d='M20 0L0 20h8l12-12 12 12h8z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-item {
  padding: 2rem 1rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: .25rem;
  line-height: 1;
}

.stat-label {
  color: var(--text-light);
  font-size: .88rem;
  font-weight: 500;
}

/* =============================================
   Check List
   ============================================= */
.check-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: .6rem;
  color: var(--text);
  line-height: 1.6;
  font-size: .95rem;
}

.check-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.6;
}

/* =============================================
   Area Detail Page
   ============================================= */
.area-detail-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  color: var(--white);
  padding: 4rem 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.area-detail-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025' fill-rule='evenodd'%3E%3Cpath d='M20 0L0 20h8l12-12 12 12h8z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.area-detail-header h1 {
  color: var(--white);
  position: relative;
  z-index: 1;
}

.area-detail-header p {
  opacity: .9;
  max-width: 600px;
  margin: 1rem auto 0;
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}

.area-content {
  max-width: 780px;
  margin: 0 auto;
}

.area-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.area-content p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-size: 1.02rem;
}

/* =============================================
   Page Header
   ============================================= */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  color: var(--white);
  padding: 4rem 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025' fill-rule='evenodd'%3E%3Cpath d='M20 0L0 20h8l12-12 12 12h8z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: .75rem;
  position: relative;
  z-index: 1;
}

.page-header p {
  opacity: .9;
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* =============================================
   Diensten Detail
   ============================================= */
.dienst-detail {
  padding: 3.5rem 0;
}

.dienst-detail:nth-child(even) {
  background: var(--light);
}

.dienst-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.dienst-detail:nth-child(even) .dienst-inner {
  direction: rtl;
}

.dienst-detail:nth-child(even) .dienst-inner > * {
  direction: ltr;
}

.dienst-image {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  border-radius: var(--radius-lg);
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.dienst-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04' fill-rule='evenodd'%3E%3Cpath d='M20 0L0 20h8l12-12 12 12h8z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.dienst-content h2 {
  margin-bottom: 1rem;
}

.dienst-content p {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.8;
}

/* =============================================
   Footer
   ============================================= */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.8);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
}

.footer h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: .75rem;
}

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

.footer-about p {
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer-links li {
  margin-bottom: .5rem;
}

.footer-links a {
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  transition: color .2s;
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin-bottom: .875rem;
  font-size: .88rem;
}

.footer-contact-icon {
  font-size: .95rem;
  min-width: 18px;
  text-align: center;
  margin-top: 2px;
  color: var(--accent);
}

.footer-contact-item a {
  color: rgba(255,255,255,.65);
}

.footer-contact-item a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 3rem;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}

.footer-bottom-links {
  display: flex;
  gap: 1.25rem;
}

.footer-bottom-links a {
  color: rgba(255,255,255,.4);
  font-size: .8rem;
}

.footer-bottom-links a:hover {
  color: var(--accent);
}

/* =============================================
   Floating Call Button (Mobile)
   ============================================= */
.float-call {
  display: none;
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 1.4rem;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(45,106,79,.35);
  z-index: 999;
  transition: background .2s;
  text-decoration: none;
}

.float-call:hover {
  background: var(--primary-light);
  color: var(--white);
}

/* =============================================
   Responsive
   ============================================= */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-badges {
    justify-content: center;
  }

  .hero-form-wrap {
    max-width: 540px;
    margin: 0 auto;
  }

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

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

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

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

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

@media (max-width: 768px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }

  .top-bar-left {
    gap: 1rem;
    font-size: .78rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 5rem 1.5rem 2rem;
    box-shadow: -4px 0 24px rgba(0,0,0,.1);
    transition: right .3s;
    align-items: stretch;
    gap: 0;
    z-index: 1000;
    overflow-y: auto;
    border-left: 1px solid var(--border);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu > li > a {
    padding: .75rem 0;
    display: block;
    border-bottom: 1px solid var(--border);
    font-size: .92rem;
  }

  .has-dropdown .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 1rem;
    background: transparent;
    border: none;
  }

  .has-dropdown > a::after {
    display: none;
  }

  .nav-cta {
    margin-top: 1rem;
  }

  .nav-cta .btn {
    display: block;
    text-align: center;
  }

  .hero {
    padding: 3rem 0;
  }

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

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

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

  .process-steps {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

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

  .dienst-detail:nth-child(even) .dienst-inner {
    direction: ltr;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    gap: .75rem;
    text-align: center;
  }

  .trust-items {
    gap: 1rem;
  }

  .cta-banner {
    padding: 3rem 0;
  }

  .float-call {
    display: flex;
  }

  .top-bar-right {
    display: none;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.6rem; }
  .hero { padding: 2.5rem 0; }
  .section { padding: 3rem 0; }
  .hero-form-wrap { padding: 1.25rem; }
  .type-card { padding: 1.5rem; }
  .container { padding: 0 1rem; }

  .top-bar-left {
    flex-wrap: wrap;
    gap: .5rem;
  }
}
