/*
Theme Name: DeemsterDesign
Description: Een strak, modern custom theme voor webdesign pros. Built with love and a premium finish.
Author: Jouw Zoontje & Gemini
Template: astra
Version: 1.5 (Cleaned & Optimized)
*/

/* --- 1. SETUP & VARIABLES --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');

:root {
  /* Kleuren */
  --primary-blue: #007AFF;
  --primary-blue-darker: #006EE6;
  --secondary-green: #34C759;
  --secondary-green-darker: #2DB84D;
  --bg-light: #F8F8FA;
  --bg-dark: #0D0D0F;
  --card-bg-light: #FFFFFF;
  --card-bg-dark: #171719;
  --text-light: #F5F5F7;
  --text-dark: #1D1D1F;
  --border-color-light: #E5E5E7;
  --border-color-dark: #2A2A2C;
 
  /* Layout & Effecten */
  --border-radius-lg: 16px;
  --border-radius-md: 10px;
  --container-width: 1200px;
  --section-padding: 6rem 0;
  --shadow-subtle: 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-strong: 0 16px 40px rgba(0, 0, 0, 0.1);
  /* Premium transition */
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body, .hero, .section, .service-card, .image-card, .cta-section {
  transition: all 0.5s ease;
}

/* --- 2. BASIS STYLES --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--bg-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.dark-mode {
  color: var(--text-light);
  background: radial-gradient(circle at 50% 20%, #000814, #01030a 80%);
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

/* --- 3. SECTIES & GRIDS --- */
.section {
  padding: var(--section-padding);
}

.section__title,
.page .entry-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 4rem;
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -1.5px;
  position: relative;
  display: inline-block;
}

body.dark-mode .section__title,
body.dark-mode .page .entry-title {
  color: var(--text-light);
}

.section__title::after,
.page .entry-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  border-radius: 50px;
  background: linear-gradient(90deg, #007AFF, #34C759);
  box-shadow: 0 0 15px rgba(0,122,255,0.4);
}

.grid {
  display: grid;
  gap: 2.5rem;
}

.grid--3-cols {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.grid--4-cols {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* --- 4. HEADER & NAVIGATIE --- */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(248, 248, 250, 0.7);
  backdrop-filter: blur(12px);
  z-index: 999;
  transition: background-color 0.3s ease, border-color 0.3s ease, top 0.3s ease;
  border-bottom: 1px solid var(--border-color-light);
  padding: 1rem 0;
  overflow: visible !important;
}

body.dark-mode .site-header {
  background: rgba(17, 24, 39, 0.9);
  border-bottom: 1px solid #1f2937;
}

.main-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 100;
}

.site-logo img {
  width: 180px;
  height: auto;
  transition: transform 0.3s ease;
}

.site-logo img:hover {
  transform: scale(1.05);
}

body.dark-mode .site-logo img {
  filter: drop-shadow(0 0 10px rgba(0,122,255,0.4));
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1rem;
  align-items: center;
}

.nav-menu > li {
  position: relative;
  z-index: 20;
}

.nav-menu > li > a {
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  font-weight: 700;
  color: var(--text-dark);
  transition: all 0.25s ease;
  display: inline-block;
}

body.dark-mode .nav-menu > li > a {
  color: var(--text-light);
}

.nav-menu > li:hover > a {
  background: var(--primary-blue);
  color: #fff !important;
  box-shadow: 0 0 15px rgba(0,122,255,0.25);
}

.nav-menu .menu-item:last-child a {
  background: linear-gradient(135deg, #007AFF 0%, #00C896 100%);
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(0, 180, 255, 0.25);
}

.nav-menu .menu-item:last-child a:hover {
  background: linear-gradient(135deg, #00C896 0%, #007AFF 100%);
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 200, 150, 0.35);
}

/* Dropdown Menu Styling */
.nav-menu .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 230px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
  padding: 0.6rem 0;
  list-style: none;
  z-index: 9999 !important;
  animation: fadeDown 0.25s ease both;
  overflow: hidden;
}

body.dark-mode .nav-menu .sub-menu {
  background: rgba(15, 20, 30, 0.95);
  border: 1px solid rgba(0,122,255,0.25);
  box-shadow: 0 0 25px rgba(0,122,255,0.2);
}

.nav-menu li:hover > .sub-menu {
  display: block !important;
}

.nav-menu .sub-menu li {
  position: relative;
}

.nav-menu .sub-menu a {
  display: block;
  padding: 0.8rem 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
  border-radius: 8px;
  transition: all 0.25s ease;
}

body.dark-mode .nav-menu .sub-menu a {
  color: #f0f4ff;
}

.nav-menu .sub-menu a:hover {
  background: linear-gradient(135deg, #007AFF 0%, #00C896 100%);
  color: #fff !important;
  transform: translateX(3px);
  box-shadow: 0 0 15px rgba(0,200,150,0.25);
}

/* Sub-submenu */
.nav-menu .sub-menu .sub-menu {
  top: 0 !important;
  left: 100% !important;
  margin-left: 8px !important;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
}

body.dark-mode .nav-menu .sub-menu .sub-menu {
  background: rgba(15,20,30,0.95);
  border: 1px solid rgba(0,122,255,0.25);
}

.nav-menu .sub-menu .sub-menu[style] {
  left: 100% !important;
  right: auto !important;
}

.hamburger { 
  display: none; 
}

/* --- 5. HERO SECTIE --- */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 2rem 1.5rem;
  background: radial-gradient(circle at 50% 20%, rgba(0,122,255,0.3), rgba(0,0,0,0.9)),
              linear-gradient(120deg, #001122, #000814);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0,122,255,0.15), rgba(52,199,89,0.15));
  mix-blend-mode: overlay;
  opacity: 0.8;
}

body.dark-mode .hero {
  background: radial-gradient(circle at 50% 20%, rgba(0, 30, 80, 1), rgba(0, 0, 0, 1));
}

.hero__title {
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: #fff;
  letter-spacing: -2px;
  line-height: 1.1;
  text-shadow: 0 0 25px rgba(0,122,255,0.6);
}

body.dark-mode .hero__title {
  text-shadow: 0 0 35px rgba(0, 122, 255, 0.8);
}

.hero__subtitle {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  color: #b3d4ff;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 0 10px rgba(52,199,89,0.2);
}

body.dark-mode .hero__subtitle {
  color: #a9c7ff;
}

/* --- 6. KNOPPEN (BUTTONS) --- */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), background-color 0.3s ease;
}

.btn--primary {
  background: var(--primary-blue);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 122, 255, 0.2);
}

.btn--primary:hover {
  transform: translateY(-3px);
  background: var(--primary-blue-darker);
  box-shadow: 0 8px 25px rgba(0, 122, 255, 0.3);
}

body.dark-mode .btn--primary {
  box-shadow: 0 0 25px rgba(0,122,255,0.5);
}

/* Gradient Buttons */
.btn--gradient,
.cta-section .wpcf7 input[type="submit"] {
  background: linear-gradient(135deg, #007AFF 0%, #00C896 100%);
  color: #fff !important;
  border: none;
  font-weight: 700;
  border-radius: 50px;
  padding: 1rem 2.4rem;
  box-shadow: 0 6px 20px rgba(0, 180, 255, 0.25);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.btn--gradient:hover,
.cta-section .wpcf7 input[type="submit"]:hover,
.nav-menu .menu-item:last-child a:hover {
  background: linear-gradient(135deg, #00C896 0%, #007AFF 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 200, 150, 0.35);
}

.btn--gradient:focus,
.cta-section .wpcf7 input[type="submit"]:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(0,122,255,0.25);
}

.btn--gradient::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(0,122,255,0.7), rgba(0,255,180,0.7));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn--gradient:hover::after {
  opacity: 1;
}

/* --- 7. KAARTEN (CARDS) --- */
.service-card,
.image-card,
.review-card {
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  transform-style: preserve-3d;
  perspective: 800px;
}

.service-card {
  padding: 3rem;
  text-align: center;
  background: var(--card-bg-light);
  border: 1px solid var(--border-color-light);
  border-radius: var(--border-radius-lg);
}

body.dark-mode .service-card {
  background: #111827;
  border: 1px solid #1f2937;
}

.service-card:hover {
  transform: translateY(-12px) rotateY(6deg) rotateX(3deg) scale(1.02);
  box-shadow: var(--shadow-strong),
    0 0 15px rgba(0, 122, 255, 0.3),
    0 0 30px rgba(0, 122, 255, 0.2),
    0 0 20px rgba(0,122,255,0.3),
    0 0 40px rgba(52,199,89,0.2);
  background: linear-gradient(145deg, rgba(0,122,255,0.05), rgba(52,199,89,0.05));
}

.service-card__icon {
  width: 70px;
  height: 70px;
  background-image: linear-gradient(45deg, var(--primary-blue) 0%, var(--primary-blue-darker) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: #fff;
  box-shadow: 0 6px 15px rgba(0, 122, 255, 0.25);
}

.service-card__title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

body.dark-mode .service-card__title {
  color: #fff;
}

.image-card {
  background: var(--card-bg-light);
  border: 1px solid var(--border-color-light);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

body.dark-mode .image-card {
  background: #111827;
  border: 1px solid #1f2937;
}

.image-card:hover {
  transform: translateY(-12px) rotateY(6deg) rotateX(3deg) scale(1.02);
  box-shadow: var(--shadow-strong),
    0 0 15px rgba(0, 122, 255, 0.3),
    0 0 30px rgba(0, 122, 255, 0.2),
    0 0 20px rgba(0,122,255,0.3),
    0 0 40px rgba(52,199,89,0.2);
  background: linear-gradient(145deg, rgba(0,122,255,0.05), rgba(52,199,89,0.05));
}

.image-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-card:hover img {
  transform: scale(1.08);
}

.image-card__content {
  padding: 2rem;
}

.image-card__title {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

body.dark-mode .image-card__title {
  color: #fff;
}

.image-card .btn {
  margin-top: 1rem;
  padding: 0.5rem 1.5rem;
  background: transparent;
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  font-weight: 700;
}

.image-card .btn:hover {
  background: var(--primary-blue);
  color: #fff;
  border-color: var(--primary-blue);
}

.review-card {
  text-align: center;
  padding: 2.5rem;
  background: var(--card-bg-light);
  border: 1px solid var(--border-color-light);
  border-radius: var(--border-radius-lg);
}

body.dark-mode .review-card {
  background: #111827;
  border: 1px solid #1f2937;
  box-shadow: 0 0 25px rgba(0, 122, 255, 0.15);
}

.review-card:hover {
  box-shadow:
    0 0 15px rgba(0, 122, 255, 0.3),
    0 0 30px rgba(0, 122, 255, 0.2);
}

.review-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  border: 3px solid var(--primary-blue);
}

.review-card__stars {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: #FFBF00;
}

.review-card cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-weight: 700;
}

/* --- 8. CTA & FOOTER --- */
.cta-section {
  padding: var(--section-padding);
  background: linear-gradient(120deg, #007AFF, #34C759, #006EE6);
  background-size: 300% 300%;
  animation: gradientFlow 6s ease infinite;
  color: #fff;
  text-align: center;
}

body.dark-mode .cta-section {
  background: linear-gradient(120deg, #001a4d, #001133);
}

.cta-section h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.site-footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 3rem 1rem;
  margin-top: 0;
  font-size: 0.9rem;
}

.site-footer a {
  color: #fff;
}

/* --- 9. PAGE & CONTACT FORM STYLING --- */
.page .entry-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  line-height: 1.8;
}

body.dark-mode .page .entry-content {
  color: var(--text-light);
}

.page .entry-content h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-blue);
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.page .entry-content p,
.page .entry-content ol {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

body.dark-mode .page .entry-content p,
body.dark-mode .page .entry-content ol {
  color: #d4d7e1;
}

/* Algemene Form Styling */
.wpcf7 form {
  background: var(--card-bg-light);
  border: 1px solid var(--border-color-light);
  border-radius: 16px;
  padding: 3rem 2rem;
  box-shadow: var(--shadow-subtle);
  transition: all 0.4s ease;
  max-width: 700px;
  margin: 3rem auto 0;
}

body.dark-mode .wpcf7 form {
  background: var(--card-bg-dark);
  border-color: var(--border-color-dark);
  box-shadow: 0 0 25px rgba(0,122,255,0.2);
}

.wpcf7 form label {
  font-weight: 700;
  color: var(--text-dark);
  display: block;
  margin-bottom: 0.4rem;
}

body.dark-mode .wpcf7 form label {
  color: var(--text-light);
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpcf7 select {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border-color-light);
  border-radius: 10px;
  background: #fff;
  font-size: 1rem;
  margin-bottom: 1.2rem;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

body.dark-mode .wpcf7 input[type="text"],
body.dark-mode .wpcf7 input[type="email"],
body.dark-mode .wpcf7 input[type="tel"],
body.dark-mode .wpcf7 textarea,
body.dark-mode .wpcf7 input[type="file"],
body.dark-mode .wpcf7 select {
  background: #111827;
  border-color: #2a2a2c;
  color: #f0f4ff;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 10px rgba(0,122,255,0.3);
  outline: none;
}

.wpcf7 input[type="submit"] {
  display: inline-block;
  background: var(--primary-blue);
  color: #fff;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1.05rem;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 122, 255, 0.25);
}

.wpcf7 input[type="submit"]:hover {
  background: var(--primary-blue-darker);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 122, 255, 0.35);
}

body.dark-mode .wpcf7 input[type="submit"] {
  background: #007aff;
  box-shadow: 0 0 20px rgba(0,122,255,0.4);
}

.wpcf7 input[type="file"] {
  border: 1px dashed rgba(0,122,255,0.4);
  padding: 0.6rem;
  background: rgba(255,255,255,0.2);
  border-radius: 10px;
  cursor: pointer;
}

/* Homepage CTA Form Special */
.cta-section .wpcf7 {
  max-width: 720px;
  margin: 2.5rem auto 0;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  border-radius: 24px;
  box-shadow: 0 0 40px rgba(0, 122, 255, 0.15);
  padding: 3rem 2rem;
  overflow: hidden;
  transform: translateY(40px) scale(0.96);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.cta-section .wpcf7.active {
  transform: translateY(0) scale(1);
  opacity: 1;
  box-shadow:
    0 0 40px rgba(0,122,255,0.15),
    0 0 80px rgba(0,255,200,0.12);
}

.cta-section .wpcf7 label {
  font-weight: 600;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 0.3rem;
  color: var(--text-dark);
}

body.dark-mode .cta-section .wpcf7 label {
  color: var(--text-light);
}

.cta-section .wpcf7 input[type="text"],
.cta-section .wpcf7 input[type="email"],
.cta-section .wpcf7 input[type="tel"],
.cta-section .wpcf7 textarea,
.cta-section .wpcf7 select {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(0,122,255,0.2);
  border-radius: 10px;
  background: rgba(255,255,255,0.25);
  color: #111;
  font-size: 1rem;
  transition: all 0.3s ease;
  margin-bottom: 1.2rem;
}

body.dark-mode .cta-section .wpcf7 input[type="text"],
body.dark-mode .cta-section .wpcf7 input[type="email"],
body.dark-mode .cta-section .wpcf7 input[type="tel"],
body.dark-mode .cta-section .wpcf7 textarea,
body.dark-mode .cta-section .wpcf7 select {
  background: rgba(20,25,35,0.65);
  color: #f8f8f8;
  border-color: rgba(0,122,255,0.3);
}

.cta-section .wpcf7 input[type="file"] {
  border: 1px dashed rgba(0,122,255,0.4);
  padding: 0.6rem;
  background: rgba(255,255,255,0.2);
  border-radius: 10px;
  cursor: pointer;
  margin-bottom: 1.2rem;
}

body.dark-mode .cta-section .wpcf7 input[type="file"] {
  border-color: rgba(0,122,255,0.6);
  background: rgba(10,15,25,0.7);
  color: #f0f4ff;
}

.cta-section .wpcf7 input:focus,
.cta-section .wpcf7 textarea:focus,
.cta-section .wpcf7 select:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 10px rgba(0,122,255,0.25);
  outline: none;
  background: rgba(255,255,255,0.35);
}

body.dark-mode .cta-section .wpcf7 input:focus,
body.dark-mode .cta-section .wpcf7 textarea:focus {
  background: rgba(10,15,25,0.9);
}

/* --- 10. Dark Mode Toggle --- */
#dark-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--card-bg-light);
  color: var(--text-dark);
  border: 1px solid var(--border-color-light);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s;
  font-size: 1.5rem;
}

body.dark-mode #dark-toggle {
  background: var(--card-bg-dark);
  color: var(--text-light);
  border: 1px solid var(--border-color-dark);
}

#dark-toggle:hover {
  transform: scale(1.1) rotate(-15deg);
  background: var(--primary-blue);
  color: #fff;
  border-color: var(--primary-blue);
}

/* --- 11. ANIMATIES --- */
@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes formFade {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

/* --- 12. RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
  .grid--3-cols {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
  .hero__title {
    font-size: 3.5rem;
  }
  body.admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 768px) {
  .section { 
    padding: 4rem 1.5rem; 
  }
  .section__title, 
  .page .entry-title { 
    font-size: 2.5rem; 
    margin-bottom: 2rem;
  }
  .hero__title { 
    font-size: 2.8rem; 
    letter-spacing: -1px;
  }
  .hero__subtitle { 
    font-size: 1.2rem; 
  }
  .page .entry-title { 
    font-size: 2.3rem; 
  }
  .wpcf7 form, 
  .cta-section .wpcf7 { 
    padding: 2rem 1.5rem; 
  }
  .nav-menu {
    display: none;
  }
  .hamburger {
    display: block;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 2rem;
    cursor: pointer;
  }
  body.dark-mode .hamburger {
    color: var(--text-light);
  }
  body.admin-bar .site-header {
    top: 0;
  }
}

@media (max-width: 480px) {
  .hero__title { 
    font-size: 2.2rem; 
  }
  .hero__subtitle { 
    font-size: 1rem; 
  }
  .section__title, 
  .page .entry-title { 
    font-size: 2rem; 
  }
  .btn { 
    padding: 0.8rem 1.8rem; 
    font-size: 0.9rem; 
  }
}

/* Fix voor WordPress Admin Bar */
body.admin-bar .site-header {
  top: 32px;
}


/* ============================================
   DEEMSTERDESIGN - CLEAN MENU FIX v5 (STABLE)
   ============================================ */

/* Basis layout */
.site-header, .main-navigation {
  overflow: visible !important;
  z-index: 1000 !important;
}

/* Hoofdmenu items */
.nav-menu > li {
  position: relative;
  z-index: 10;
}
.nav-menu > li > a {
  display: inline-block;
  padding: 0.8rem 1.2rem;
  font-weight: 700;
  border-radius: 8px;
  color: var(--text-dark);
  transition: all 0.25s ease;
}
body.dark-mode .nav-menu > li > a { color: var(--text-light); }

.nav-menu > li:hover > a {
  background: var(--primary-blue);
  color: #fff !important;
  box-shadow: 0 0 15px rgba(0,122,255,0.25);
}

/* Submenu standaard */
.nav-menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  padding: 0.6rem 0;
  background: rgba(255,255,255,0.96);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  list-style: none;
  animation: fadeSlide 0.25s ease both;
  backdrop-filter: blur(10px);
  z-index: 9999 !important;
}
body.dark-mode .nav-menu .sub-menu {
  background: rgba(10,15,25,0.95);
  border: 1px solid rgba(0,122,255,0.25);
}

/* Submenu tonen */
.nav-menu li:hover > .sub-menu {
  display: block !important;
}

/* Submenu links */
.nav-menu .sub-menu a {
  display: block;
  padding: 0.8rem 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  border-radius: 8px;
  transition: all 0.25s ease;
  white-space: nowrap;
}
body.dark-mode .nav-menu .sub-menu a { color: #f0f4ff; }

/* Hoverstijl */
.nav-menu .sub-menu a:hover {
  background: linear-gradient(135deg, #007AFF 0%, #00C896 100%);
  color: #fff !important;
  transform: translateX(3px);
  box-shadow: 0 0 15px rgba(0,200,150,0.25);
}

/* Tweede niveau opent naast */
.nav-menu .sub-menu .sub-menu {
  top: 0 !important;
  left: 100% !important;
  margin-left: 8px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Inline Astra overrides uitschakelen */
.nav-menu .sub-menu .sub-menu[style] {
  left: 100% !important;
  right: auto !important;
}

/* Kleine animatie */
@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.entry-content span {color:#404040!important;}
.page .entry-header { text-align:center;}



/* === FOOTER – DEEMSTERDESIGN v2 === */
.site-footer {
  color: #f0f4ff;
  background: #0b0c10;
  font-size: 0.95rem;
}

.footer-top {
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2.5rem;
  align-items: start;
}

.footer-logo {
  width: 248px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 12px rgba(0,122,255,0.35));
}

.footer-brand p {
  font-size: 0.95rem;
  opacity: 0.8;
  color: #cdd3e0;
}

.footer-column h4 {
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #007AFF, #00C896);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}
.footer-column ul li {
  margin-bottom: 0.5rem;
}
.footer-column ul a {
  color: #d0d4e0;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-column ul a:hover {
  color: #00c896;
}

.footer-column form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer-column input[type="email"] {
  padding: 0.8rem 1rem;
  border-radius: 8px;
  border: none;
  outline: none;
}
.footer-column button {
  border: none;
  cursor: pointer;
}

.footer-bottom {
  background: #050607;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
}

.footer-madeby {
  margin-top: 0.3rem;
  color: #9ea3b4;
}

.footer-bottom a {
  color: #999;
  text-decoration: none;
}
.footer-bottom a:hover {
  color: #00c896;
}




.gradient-bg {
  background: linear-gradient(135deg, #007aff 0%, #00c896 100%);
  color: #fff;
  padding: 6rem 1rem;
  text-align: center;
  border-radius: 0 0 80px 80px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.service-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.service-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.service-details {
  padding: 4rem 1rem;
}

.container.narrow {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}
.checklist li {
  margin: 0.6rem 0;
  font-size: 1.1rem;
}

.btn--gradient {
  display: inline-block;
  background: linear-gradient(90deg, #007AFF, #00C896);
  color: #fff;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn--gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 122, 255, 0.4);
}


/* === Neon 3D Service Cards === */
.neon-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 122, 255, 0.2);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 0 0 rgba(0, 122, 255, 0);
}

.neon-card .service-card__icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #007AFF, #00C896);
  border-radius: 50%;
  color: #fff;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 25px rgba(0, 200, 150, 0.35);
}

.neon-card h3 {
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.neon-card p {
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 1.8rem;
}

/* Glow border effect */
.neon-border {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(0,122,255,0.5), rgba(0,255,180,0.5));
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 0;
}

/* Button style inside card */
.neon-btn {
  font-weight: 700;
  color: #007aff;
  background: rgba(255,255,255,0.9);
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  z-index: 1;
}

.neon-card:hover .neon-btn {
  background: linear-gradient(135deg, #007AFF, #00C896);
  color: #fff;
  box-shadow: 0 0 20px rgba(0, 200, 150, 0.3);
  transform: translateY(-3px);
}

/* Hover: 3D lift + glow */
.neon-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow:
    0 0 25px rgba(0, 122, 255, 0.25),
    0 0 50px rgba(0, 200, 150, 0.15);
}
.neon-card:hover .neon-border {
  opacity: 1;
  transform: scale(1.05);
}

/* Neon focus in dark mode */
body.dark-mode .neon-card {
  background: rgba(10, 15, 25, 0.8);
  border: 1px solid rgba(0,122,255,0.3);
}
body.dark-mode .neon-card:hover {
  box-shadow:
    0 0 35px rgba(0,122,255,0.45),
    0 0 70px rgba(0,255,180,0.25);
}



/* Design Brief Generator Styles */
.design-brief-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 122, 255, 0.2);
    transition: all var(--transition-smooth);
}

body.dark-mode .design-brief-wrapper {
    background: rgba(20, 25, 35, 0.8);
    box-shadow: 0 20px 60px rgba(0, 122, 255, 0.4);
}

.brief-step {
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.intent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.intent-card {
    padding: 2rem;
    background: var(--card-bg-light);
    border-radius: var(--border-radius-lg);
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

body.dark-mode .intent-card {
    background: var(--card-bg-dark);
}

.intent-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: var(--shadow-strong), 0 0 20px rgba(0, 122, 255, 0.4);
    background: linear-gradient(135deg, rgba(0,122,255,0.1), rgba(52,199,89,0.1));
}

.intent-card.selected {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    color: #fff;
    box-shadow: 0 0 30px rgba(0, 200, 150, 0.5);
}

.intent-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.intent-card:hover .intent-icon {
    transform: scale(1.2) rotate(360deg);
}

.slider-input {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--border-color-light);
    outline: none;
    -webkit-appearance: none;
}

.slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-blue);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0,122,255,0.5);
    transition: transform 0.2s;
}

.slider-input:hover::-webkit-slider-thumb {
    transform: scale(1.3);
}

#budget-feedback {
    display: block;
    margin-top: 0.5rem;
    font-weight: 700;
    color: var(--secondary-green);
    transition: color 0.3s;
}

.preview-box {
    background: #f0f8ff;
    padding: 2rem;
    border-radius: var(--border-radius-md);
    margin: 1rem 0;
    border-left: 4px solid var(--primary-blue);
    animation: glowPulse 2s infinite;
}

body.dark-mode .preview-box {
    background: #1a1a2e;
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 5px rgba(0,122,255,0.3); }
    50% { box-shadow: 0 0 20px rgba(0,122,255,0.6); }
}

.brief-next-btn, .brief-submit-btn {
    @extend .btn--gradient; /* Gebruik je bestaande gradient btn */
    margin: 1rem 0.5rem;
    padding: 1rem 2rem;
}

.brief-next-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.conditional-fields {
    animation: slideInRight 0.4s ease;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .intent-grid { grid-template-columns: 1fr; }
    .design-brief-wrapper { padding: 2rem; }
}


/* === DeemsterDesign - Portfolio Neon Style === */
.portfolio-grid {
  padding: 6rem 1rem 8rem;
  background: var(--bg-light);
}

.portfolio-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  position: relative;
  text-align: center;
}
body.dark-mode .portfolio-card {
  background: #111827;
  box-shadow: 0 0 25px rgba(0,122,255,0.15);
}

/* Hover effect */
.portfolio-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow:
    0 15px 40px rgba(0,122,255,0.25),
    0 0 35px rgba(0,255,180,0.15);
}

/* Image */
.portfolio-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.portfolio-card:hover .portfolio-image img {
  transform: scale(1.07);
}

/* Content */
.portfolio-content {
  padding: 2rem 1.8rem;
}
.portfolio-content h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.portfolio-content p {
  color: #555;
  font-size: 0.96rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
body.dark-mode .portfolio-content p {
  color: #d4d7e1;
}

/* Gradient button (zelfde als CTA stijl) */
.neon-btn {
  display: inline-block;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #007AFF, #00C896);
  color: #fff !important;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 rgba(0,122,255,0);
}
.neon-btn:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 25px rgba(0,122,255,0.3),
    0 0 40px rgba(0,255,180,0.2);
}
body.dark-mode .neon-btn {
  background: linear-gradient(135deg, #00C896, #007AFF);
}

/* Optional: smooth fade in (AOS fallback) */
.portfolio-card {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.7s ease forwards;
}
.portfolio-card:nth-child(2) { animation-delay: 0.15s; }
.portfolio-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}


/* WhatsApp Chat Bubble */
.whatsapp-bubble {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-smooth);
    z-index: 1000;
    font-size: 2rem;
}

.whatsapp-bubble:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

body.dark-mode .whatsapp-bubble {
    background: linear-gradient(135deg, #25D366, #128C7E); /* WhatsApp-groen blijft fris */
}

/* Modal Overlay */
.whatsapp-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    z-index: 1001;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: var(--card-bg-light);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    max-width: 400px;
    width: 90%;
    position: relative;
    box-shadow: var(--shadow-strong);
    transition: all var(--transition-smooth);
}

body.dark-mode .modal-content {
    background: var(--card-bg-dark);
    box-shadow: 0 0 30px rgba(0, 122, 255, 0.3);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--primary-blue);
}

.modal-content h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    text-align: center;
}

body.dark-mode .modal-content h3 {
    color: var(--text-light);
}

.modal-content p {
    text-align: center;
    margin-bottom: 2rem;
    color: #666;
}

body.dark-mode .modal-content p {
    color: #aaa;
}

/* Form Velden */
#whatsapp-form input,
#whatsapp-form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color-light);
    border-radius: var(--border-radius-md);
    background: #fff;
    font-family: inherit;
    transition: all 0.3s ease;
}

body.dark-mode #whatsapp-form input,
body.dark-mode #whatsapp-form textarea {
    background: #2a2a2c;
    border-color: var(--border-color-dark);
    color: var(--text-light);
}

#whatsapp-form input:focus,
#whatsapp-form textarea:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 10px rgba(0,122,255,0.2);
    outline: none;
}

#whatsapp-form textarea {
    resize: vertical;
    min-height: 80px;
}

/* Submit Button – Gebruikt je gradient */
#whatsapp-form button {
    width: 100%;
    margin-top: 1rem;
}

/* Responsive */
@media (max-width: 480px) {
    .whatsapp-bubble { bottom: 15px; right: 15px; width: 50px; height: 50px; font-size: 1.5rem; }
    .modal-content { padding: 2rem; }
}










/* DeemsterDesign – Onze Werkwijze Page Styling (Super Vette Upgrade) */
.page-id-500 .entry-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  line-height: 1.8;
  background: linear-gradient(180deg, rgba(248, 248, 250, 0.8) 0%, transparent 100%);
}

body.dark-mode .page-id-500 .entry-content {
  background: linear-gradient(180deg, rgba(13, 13, 15, 0.8) 0%, transparent 100%);
  color: var(--text-light);
}

.page-id-500 .entry-title {
  text-align: center;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary-blue);
  letter-spacing: -1.5px;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

body.dark-mode .page-id-500 .entry-title {
  color: var(--secondary-green);
}

.page-id-500 .entry-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--primary-blue), var(--secondary-green));
  box-shadow: 0 0 20px rgba(0, 122, 255, 0.4);
}

/* H2 Styling met Glow */
.page-id-500 .entry-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-blue);
  text-align: left;
  margin: 4rem 0 2rem;
  position: relative;
  padding-left: 1rem;
  background: linear-gradient(90deg, var(--primary-blue), var(--secondary-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body.dark-mode .page-id-500 .entry-content h2 {
  background: linear-gradient(90deg, var(--secondary-green), var(--primary-blue));
}

.page-id-500 .entry-content h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary-blue), var(--secondary-green));
  border-radius: 2px;
  box-shadow: 0 0 15px rgba(0, 122, 255, 0.3);
}

/* Tekst & Paragrafen */
.page-id-500 .entry-content p {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  padding: 0 1rem;
  position: relative;
}

body.dark-mode .page-id-500 .entry-content p {
  color: #d4d7e1;
}

.page-id-500 .entry-content p::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 1px;
  width: 50px;
  background: linear-gradient(90deg, transparent, var(--secondary-green));
}

/* OL Lijst als Vette Cards */
.page-id-500 .entry-content ol {
  list-style: none;
  counter-reset: work-step;
  margin: 2rem 0;
  padding: 0;
}

.page-id-500 .entry-content ol li {
  counter-increment: work-step;
  margin-bottom: 2rem;
  position: relative;
  padding: 2rem;
  background: var(--card-bg-light);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-subtle);
  transition: all var(--transition-smooth);
  border-left: 4px solid var(--primary-blue);
}

body.dark-mode .page-id-500 .entry-content ol li {
  background: var(--card-bg-dark);
  border-left-color: var(--secondary-green);
}

.page-id-500 .entry-content ol li:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-strong), 0 0 20px rgba(0, 122, 255, 0.2);
  background: linear-gradient(135deg, rgba(0,122,255,0.05), rgba(52,199,89,0.05));
}

.page-id-500 .entry-content ol li::before {
  content: counter(work-step);
  position: absolute;
  top: -10px;
  left: 20px;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(0, 122, 255, 0.3);
}

.page-id-500 .entry-content ol li p {
  margin: 0;
  padding-left: 0;
  font-size: 1.05rem;
}

/* CF7 Form Super Vette Styling */
.page-id-500 .wpcf7 {
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(248,248,250,0.7));
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color-light);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-strong);
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-smooth);
}

body.dark-mode .page-id-500 .wpcf7 {
  background: linear-gradient(135deg, rgba(23,23,25,0.9), rgba(13,13,15,0.7));
  border-color: var(--border-color-dark);
  box-shadow: 0 0 30px rgba(0,122,255,0.3);
}

.page-id-500 .wpcf7::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--secondary-green));
  box-shadow: 0 0 10px rgba(0,122,255,0.4);
}

.page-id-500 .wpcf7 label {
  font-weight: 700;
  color: var(--text-dark);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

body.dark-mode .page-id-500 .wpcf7 label {
  color: var(--text-light);
}

/* Select, Inputs & Textarea */
.page-id-500 .wpcf7 select,
.page-id-500 .wpcf7 input[type="text"],
.page-id-500 .wpcf7 input[type="email"],
.page-id-500 .wpcf7 input[type="tel"],
.page-id-500 .wpcf7 textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 2px solid var(--border-color-light);
  border-radius: var(--border-radius-md);
  background: #fff;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

body.dark-mode .page-id-500 .wpcf7 select,
body.dark-mode .page-id-500 .wpcf7 input[type="text"],
body.dark-mode .page-id-500 .wpcf7 input[type="email"],
body.dark-mode .page-id-500 .wpcf7 input[type="tel"],
body.dark-mode .page-id-500 .wpcf7 textarea {
  background: var(--card-bg-dark);
  border-color: var(--border-color-dark);
  color: var(--text-light);
}

.page-id-500 .wpcf7 select:focus,
.page-id-500 .wpcf7 input:focus,
.page-id-500 .wpcf7 textarea:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 15px rgba(0,122,255,0.3);
  outline: none;
  transform: translateY(-2px);
}

.page-id-500 .wpcf7 select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-position: right 1rem center;
  background-repeat: no-repeat;
  background-size: 1.5em;
  padding-right: 3rem;
}

/* File Uploads – Styled als Buttons */
.page-id-500 .wpcf7 input[type="file"] {
  width: 100%;
  padding: 1rem;
  border: 2px dashed var(--primary-blue);
  border-radius: var(--border-radius-md);
  background: rgba(0,122,255,0.05);
  color: var(--text-dark);
  transition: all 0.3s ease;
  cursor: pointer;
}

body.dark-mode .page-id-500 .wpcf7 input[type="file"] {
  background: rgba(0,122,255,0.1);
  border-color: var(--secondary-green);
}

.page-id-500 .wpcf7 input[type="file"]:hover {
  border-color: var(--secondary-green);
  background: rgba(52,199,89,0.1);
  transform: scale(1.02);
}

/* Submit Button – Gradient Magic */
.page-id-500 .wpcf7 input[type="submit"] {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-green) 100%);
  color: #fff !important;
  font-weight: 700;
  padding: 1.2rem 3rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.4s ease;
  box-shadow: 0 6px 20px rgba(0,122,255,0.3);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.page-id-500 .wpcf7 input[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(52,199,89,0.4);
  background: linear-gradient(135deg, var(--secondary-green) 0%, var(--primary-blue) 100%);
}

.page-id-500 .wpcf7 input[type="submit"]:active {
  transform: translateY(-1px);
}

/* Spinner & Response */
.page-id-500 .wpcf7-spinner {
  border: 2px solid rgba(255,255,255,0.3);
  border-top: 2px solid #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.page-id-500 .wpcf7-response-output {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--border-radius-md);
  text-align: center;
  font-weight: 700;
}

.page-id-500 .wpcf7-response-output.wpcf7-validation-errors {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid #dc3545;
  color: #dc3545;
}

.page-id-500 .wpcf7-response-output.wpcf7-mail-sent-ok {
  background: linear-gradient(135deg, var(--secondary-green), #28a745);
  color: #fff;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .page-id-500 .entry-content { padding: 2rem 1rem; }
  .page-id-500 .entry-title { font-size: 2.5rem; }
  .page-id-500 .entry-content h2 { font-size: 1.8rem; }
  .page-id-500 .wpcf7 { padding: 2rem; }
  .page-id-500 .entry-content ol li { padding: 1.5rem; }
}

/* Extra Wow: Parallax-achtige Scroll voor Lijst */
.page-id-500 .entry-content ol li {
  background-attachment: fixed; /* Voor subtle parallax, maar fallback voor mobiel */
}

/* Animatie bij Load */
.page-id-500 .entry-content * {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

.page-id-500 .entry-content h2 { animation-delay: 0.2s; }
.page-id-500 .entry-content p { animation-delay: 0.4s; }
.page-id-500 .entry-content ol li { animation-delay: 0.6s; }
.page-id-500 .wpcf7 { animation-delay: 0.8s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* DeemsterDesign – Algemene Page Styling (Voor Alle Content Pagina's – Super Vette Upgrade) */
.page-template-default .entry-content,
.single-page .entry-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  line-height: 1.8;
  background: linear-gradient(180deg, rgba(248, 248, 250, 0.8) 0%, transparent 100%);
}

body.dark-mode .page-template-default .entry-content,
body.dark-mode .single-page .entry-content {
  background: linear-gradient(180deg, rgba(13, 13, 15, 0.8) 0%, transparent 100%);
  color: var(--text-light);
}

.entry-title {
  text-align: center;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary-blue);
  letter-spacing: -1.5px;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

body.dark-mode .entry-title {
  color: var(--secondary-green);
}

.entry-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--primary-blue), var(--secondary-green));
  box-shadow: 0 0 20px rgba(0, 122, 255, 0.4);
}

/* H2 Styling met Glow */
.entry-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-blue);
  text-align: left;
  margin: 4rem 0 2rem;
  position: relative;
  padding-left: 1rem;
  background: linear-gradient(90deg, var(--primary-blue), var(--secondary-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body.dark-mode .entry-content h2 {
  background: linear-gradient(90deg, var(--secondary-green), var(--primary-blue));
}

.entry-content h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary-blue), var(--secondary-green));
  border-radius: 2px;
  box-shadow: 0 0 15px rgba(0, 122, 255, 0.3);
}

/* Tekst & Paragrafen */
.entry-content p {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  padding: 0 1rem;
  position: relative;
}

body.dark-mode .entry-content p {
  color: #d4d7e1;
}

.entry-content p::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 1px;
  width: 50px;
  background: linear-gradient(90deg, transparent, var(--secondary-green));
}

/* OL/Lijst als Vette Cards (Algemeen) */
.entry-content ol,
.entry-content ul {
  list-style: none;
  counter-reset: content-step;
  margin: 2rem 0;
  padding: 0;
}

.entry-content ol li,
.entry-content ul li {
  counter-increment: content-step;
  margin-bottom: 2rem;
  position: relative;
  padding: 2rem;
  background: var(--card-bg-light);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-subtle);
  transition: all var(--transition-smooth);
  border-left: 4px solid var(--primary-blue);
}

body.dark-mode .entry-content ol li,
body.dark-mode .entry-content ul li {
  background: var(--card-bg-dark);
  border-left-color: var(--secondary-green);
}

.entry-content ol li:hover,
.entry-content ul li:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-strong), 0 0 20px rgba(0, 122, 255, 0.2);
  background: linear-gradient(135deg, rgba(0,122,255,0.05), rgba(52,199,89,0.05));
}

.entry-content ol li::before {
  content: counter(content-step);
  position: absolute;
  top: -10px;
  left: 20px;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(0, 122, 255, 0.3);
}

.entry-content ul li::before {
  content: '⚡';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 1.2rem;
}

.entry-content ol li p,
.entry-content ul li p {
  margin: 0;
  padding-left: 0;
  font-size: 1.05rem;
}

/* CF7 Form Super Vette Styling (Algemeen voor Pagina's) */
.entry-content .wpcf7 {
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(248,248,250,0.7));
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color-light);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-strong);
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-smooth);
}

body.dark-mode .entry-content .wpcf7 {
  background: linear-gradient(135deg, rgba(23,23,25,0.9), rgba(13,13,15,0.7));
  border-color: var(--border-color-dark);
  box-shadow: 0 0 30px rgba(0,122,255,0.3);
}

.entry-content .wpcf7::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--secondary-green));
  box-shadow: 0 0 10px rgba(0,122,255,0.4);
}

.entry-content .wpcf7 label {
  font-weight: 700;
  color: var(--text-dark);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

body.dark-mode .entry-content .wpcf7 label {
  color: var(--text-light);
}

/* Select, Inputs & Textarea */
.entry-content .wpcf7 select,
.entry-content .wpcf7 input[type="text"],
.entry-content .wpcf7 input[type="email"],
.entry-content .wpcf7 input[type="tel"],
.entry-content .wpcf7 textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 2px solid var(--border-color-light);
  border-radius: var(--border-radius-md);
  background: #fff;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

body.dark-mode .entry-content .wpcf7 select,
body.dark-mode .entry-content .wpcf7 input[type="text"],
body.dark-mode .entry-content .wpcf7 input[type="email"],
body.dark-mode .entry-content .wpcf7 input[type="tel"],
body.dark-mode .entry-content .wpcf7 textarea {
  background: var(--card-bg-dark);
  border-color: var(--border-color-dark);
  color: var(--text-light);
}

.entry-content .wpcf7 select:focus,
.entry-content .wpcf7 input:focus,
.entry-content .wpcf7 textarea:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 15px rgba(0,122,255,0.3);
  outline: none;
  transform: translateY(-2px);
}

.entry-content .wpcf7 select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-position: right 1rem center;
  background-repeat: no-repeat;
  background-size: 1.5em;
  padding-right: 3rem;
}

/* Submit Button – Gradient Magic */
.entry-content .wpcf7 input[type="submit"] {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-green) 100%);
  color: #fff !important;
  font-weight: 700;
  padding: 1.2rem 3rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.4s ease;
  box-shadow: 0 6px 20px rgba(0,122,255,0.3);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.entry-content .wpcf7 input[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(52,199,89,0.4);
  background: linear-gradient(135deg, var(--secondary-green) 0%, var(--primary-blue) 100%);
}

.entry-content .wpcf7 input[type="submit"]:active {
  transform: translateY(-1px);
}

/* Spinner & Response */
.entry-content .wpcf7-spinner {
  border: 2px solid rgba(255,255,255,0.3);
  border-top: 2px solid #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.entry-content .wpcf7-response-output {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--border-radius-md);
  text-align: center;
  font-weight: 700;
}

.entry-content .wpcf7-response-output.wpcf7-validation-errors {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid #dc3545;
  color: #dc3545;
}

.entry-content .wpcf7-response-output.wpcf7-mail-sent-ok {
  background: linear-gradient(135deg, var(--secondary-green), #28a745);
  color: #fff;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .page-template-default .entry-content,
  .single-page .entry-content {
    padding: 2rem 1rem;
  }
  .entry-title {
    font-size: 2.5rem;
  }
  .entry-content h2 {
    font-size: 1.8rem;
  }
  .entry-content .wpcf7 {
    padding: 2rem;
  }
  .entry-content ol li,
  .entry-content ul li {
    padding: 1.5rem;
  }
}

/* Animatie bij Load (Algemeen) */
.entry-content * {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

.entry-content h2 {
  animation-delay: 0.2s;
}
.entry-content p {
  animation-delay: 0.4s;
}
.entry-content ol,
.entry-content ul {
  animation-delay: 0.6s;
}
.entry-content .wpcf7 {
  animation-delay: 0.8s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* Hero Upgrade: Immersive Particle Nebula met Neon Shimmer & Purchase Impulse Boost */
.hero {
  min-height: 100vh; /* Volledig viewport voor impact */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 2rem 1.5rem;
  background: radial-gradient(circle at 50% 20%, rgba(0,122,255,0.4) 0%, rgba(0,0,0,0.95) 70%),
              linear-gradient(135deg, #001122 0%, #000814 100%);
  animation: heroPulse 8s ease-in-out infinite alternate; /* Subtiele bg-breathing */
}

body.dark-mode .hero {
  background: radial-gradient(circle at 50% 20%, rgba(52,199,89,0.4) 0%, rgba(0,0,0,1) 70%),
              linear-gradient(135deg, #001a33 0%, #000a1a 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cdefs%3E%3Cpattern id='grid' width='10' height='10' patternUnits='userSpaceOnUse'%3E%3Cpath d='M 10 0 L 0 0 0 10' fill='none' stroke='rgba(0,122,255,0.1)' stroke-width='1'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100' height='100' fill='url(%23grid)'/%3E%3C/svg%3E");
  opacity: 0.3;
  animation: gridFloat 20s linear infinite;
}

@keyframes heroPulse {
  0% { filter: brightness(1) contrast(1); }
  100% { filter: brightness(1.1) contrast(1.05); }
}

@keyframes gridFloat {
  0% { transform: translate(0, 0); }
  100% { transform: translate(10px, 10px); }
}

/* Particle Nebula (JS-driven, maar CSS fallback) */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 80%, rgba(0,122,255,0.3) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(52,199,89,0.3) 0%, transparent 50%),
                    radial-gradient(circle at 40% 40%, rgba(255,255,255,0.1) 0%, transparent 50%);
  animation: nebulaShift 15s ease-in-out infinite;
  pointer-events: none;
}

@keyframes nebulaShift {
  0%, 100% { opacity: 0.6; transform: scale(1) rotate(0deg); }
  50% { opacity: 0.8; transform: scale(1.1) rotate(180deg); }
}

/* Title met Neon Glow & Typing Effect */
.hero__title {
  font-size: 5.5rem; /* Groter voor impact */
  font-weight: 900;
  margin-bottom: 1rem;
  color: #fff;
  letter-spacing: -2px;
  line-height: 1.1;
  text-shadow: 
    0 0 20px rgba(0,122,255,0.8),
    0 0 40px rgba(52,199,89,0.6),
    0 0 60px rgba(0,122,255,0.4);
  position: relative;
  overflow: hidden;
  animation: neonGlow 3s ease-in-out infinite alternate, titleShimmer 4s linear infinite;
}

body.dark-mode .hero__title {
  text-shadow: 
    0 0 25px rgba(52,199,89,0.9),
    0 0 50px rgba(0,122,255,0.7),
    0 0 70px rgba(52,199,89,0.5);
}

@keyframes neonGlow {
  0% { text-shadow: 0 0 20px rgba(0,122,255,0.8), 0 0 40px rgba(52,199,89,0.6), 0 0 60px rgba(0,122,255,0.4); }
  100% { text-shadow: 0 0 30px rgba(0,122,255,1), 0 0 50px rgba(52,199,89,0.8), 0 0 80px rgba(0,122,255,0.6); }
}

@keyframes titleShimmer {
  0% { background-position: -500px 0; }
  100% { background-position: 500px 0; }
}

.hero__title::before {
  content: attr(data-text); /* Voor shimmer: voeg data-text="DeemsterDesign" toe in HTML */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: translateX(-100%);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Subtitle met Floating Words */
.hero__subtitle {
  font-size: 1.6rem;
  margin-bottom: 2.5rem;
  color: #b3d4ff;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 0 15px rgba(52,199,89,0.3);
  position: relative;
}

body.dark-mode .hero__subtitle {
  color: #a9c7ff;
  text-shadow: 0 0 20px rgba(0,122,255,0.4);
}

.hero__subtitle span {
  display: inline-block;
  animation: floatWord 6s ease-in-out infinite;
}

.hero__subtitle span:nth-child(1) { animation-delay: 0s; }
.hero__subtitle span:nth-child(2) { animation-delay: 1.5s; }
.hero__subtitle span:nth-child(3) { animation-delay: 3s; }
.hero__subtitle span:nth-child(4) { animation-delay: 4.5s; }

@keyframes floatWord {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* CTA Button met Pulse & Glow */
.hero .btn--primary {
  position: relative;
  overflow: hidden;
  animation: ctaPulse 2s ease-in-out infinite;
}

.hero .btn--primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.hero .btn--primary:hover::before {
  left: 100%;
}

@keyframes ctaPulse {
  0% { box-shadow: 0 0 0 0 rgba(0,122,255,0.7); }
  70% { box-shadow: 0 0 0 20px rgba(0,122,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,122,255,0); }
}

/* Floating Orbs voor Extra Magic */
.hero .floating-orb {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,122,255,0.6), rgba(52,199,89,0.6));
  pointer-events: none;
  animation: orbFloat 10s ease-in-out infinite;
}

.hero .floating-orb:nth-child(1) {
  top: 20%;
  left: 10%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}

.hero .floating-orb:nth-child(2) {
  top: 60%;
  right: 15%;
  width: 120px;
  height: 120px;
  animation-delay: 3s;
}

.hero .floating-orb:nth-child(3) {
  bottom: 20%;
  left: 20%;
  width: 60px;
  height: 60px;
  animation-delay: 6s;
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.6; }
  50% { transform: translateY(-20px) rotate(180deg); opacity: 0.9; }
}

/* Responsive */
@media (max-width: 768px) {
  .hero__title { font-size: 3.5rem; }
  .hero__subtitle { font-size: 1.3rem; }
  .hero .floating-orb { display: none; } /* Minder orbs op mobiel */
}


/* Homepage CTA Form Styling – Exact Match met Hero Vibe (Glassmorphism & Gradient Magic) */
.cta-section .wpcf7 {
  max-width: 720px;
  margin: 2.5rem auto 0;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  border-radius: 24px;
  box-shadow: 0 0 40px rgba(0, 122, 255, 0.15);
  padding: 3rem 2rem;
  overflow: hidden;
  transform: translateY(40px) scale(0.96);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  border: 1px solid rgba(0,122,255,0.2);
}

.cta-section .wpcf7.active {
  transform: translateY(0) scale(1);
  opacity: 1;
  box-shadow:
    0 0 40px rgba(0,122,255,0.15),
    0 0 80px rgba(0,255,200,0.12);
}

body.dark-mode .cta-section .wpcf7 {
  background: rgba(20, 25, 35, 0.8);
  border-color: rgba(0,122,255,0.3);
}

body.dark-mode .cta-section .wpcf7.active {
  box-shadow:
    0 0 40px rgba(52,199,89,0.2),
    0 0 80px rgba(0,122,255,0.15);
}

/* Labels */
.cta-section .wpcf7 label {
  font-weight: 700;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 0.3rem;
  color: var(--text-dark);
}

body.dark-mode .cta-section .wpcf7 label {
  color: var(--text-light);
}

/* Select, Inputs & Textarea */
.cta-section .wpcf7 select,
.cta-section .wpcf7 input[type="text"],
.cta-section .wpcf7 input[type="email"],
.cta-section .wpcf7 input[type="tel"],
.cta-section .wpcf7 textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(0,122,255,0.2);
  border-radius: 10px;
  background: rgba(255,255,255,0.25);
  color: #111;
  font-size: 1rem;
  margin-bottom: 1.2rem;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

body.dark-mode .cta-section .wpcf7 select,
body.dark-mode .cta-section .wpcf7 input[type="text"],
body.dark-mode .cta-section .wpcf7 input[type="email"],
body.dark-mode .cta-section .wpcf7 input[type="tel"],
body.dark-mode .cta-section .wpcf7 textarea {
  background: rgba(20,25,35,0.65);
  color: #f8f8f8;
  border-color: rgba(0,122,255,0.3);
}

.cta-section .wpcf7 select:focus,
.cta-section .wpcf7 input:focus,
.cta-section .wpcf7 textarea:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 10px rgba(0,122,255,0.25);
  outline: none;
  background: rgba(255,255,255,0.35);
  transform: translateY(-2px);
}

body.dark-mode .cta-section .wpcf7 select:focus,
body.dark-mode .cta-section .wpcf7 input:focus,
body.dark-mode .cta-section .wpcf7 textarea:focus {
  background: rgba(10,15,25,0.9);
}

.cta-section .wpcf7 select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230078ff'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-position: right 1rem center;
  background-repeat: no-repeat;
  background-size: 1.5em;
  padding-right: 3rem;
  appearance: none;
}

/* File Uploads – Styled als Drop Zones */
.cta-section .wpcf7 input[type="file"] {
  border: 1px dashed rgba(0,122,255,0.4);
  padding: 1rem;
  background: rgba(255,255,255,0.2);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

body.dark-mode .cta-section .wpcf7 input[type="file"] {
  border-color: rgba(0,122,255,0.6);
  background: rgba(10,15,25,0.7);
  color: #f0f4ff;
}

.cta-section .wpcf7 input[type="file"]:hover {
  border-color: var(--secondary-green);
  background: rgba(52,199,89,0.2);
  transform: scale(1.02);
}

/* Submit Button – Exact Homepage Gradient */
.cta-section .wpcf7 input[type="submit"] {
  background: linear-gradient(135deg, #007AFF 0%, #00C896 100%);
  color: #fff !important;
  font-weight: 700;
  padding: 1rem 2.2rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,180,255,0.25);
  transition: all 0.3s ease;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.cta-section .wpcf7 input[type="submit"]:hover {
  background: linear-gradient(135deg, #00C896 0%, #007AFF 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,200,150,0.35);
}

.cta-section .wpcf7 input[type="submit"]:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(0,122,255,0.25);
}

/* Spinner & Response (Homepage-Style) */
.cta-section .wpcf7-spinner {
  border: 2px solid rgba(255,255,255,0.3);
  border-top: 2px solid #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.cta-section .wpcf7-response-output {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  font-weight: 700;
}

.cta-section .wpcf7-response-output.wpcf7-validation-errors {
  background: rgba(220,53,69,0.2);
  border: 1px solid #dc3545;
  color: #dc3545;
}

.cta-section .wpcf7-response-output.wpcf7-mail-sent-ok {
  background: linear-gradient(135deg, #00C896, #007AFF);
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-section .wpcf7 { padding: 2rem 1.5rem; }
  .cta-section .wpcf7 input[type="submit"] { padding: 1rem 2rem; }
}

/* Hero Mobile Optimization: No Cutoff, Full Immersion */
@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
    padding: 1rem 1rem 2rem; /* Meer bottom padding voor button */
    background-size: cover; /* Particles schalen mee */
  }

  .hero__title {
    font-size: 3rem; /* Van 5.5rem naar 3rem – past in frame */
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px rgba(0,122,255,0.6); /* Kleiner glow op mobiel */
  }

  .hero__subtitle {
    font-size: 1.2rem; /* Van 1.6rem – wrapt beter */
    max-width: 90%;
    margin-bottom: 2rem;
    line-height: 1.4;
  }

  .hero .btn--primary {
    padding: 1rem 2.5rem; /* Iets groter voor touch */
    font-size: 1rem;
    margin-top: 1rem;
  }

  /* Orbs & Particles: Kleiner/Minder op Mobiel */
  .hero .floating-orb {
    width: 40px !important;
    height: 40px !important;
  }

  .hero .floating-orb:nth-child(2) {
    display: none; /* Verberg middelste orb op small screens */
  }

  /* Particles Canvas Schalen */
  #particle-canvas {
    transform: scale(0.8); /* Schaal particles down */
    transform-origin: top left;
  }

  /* Veilige Area (iPhone Notch) */
  .hero {
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2.5rem; /* Extra small voor XS screens */
  }
  
  .hero__subtitle {
    font-size: 1rem;
  }
  
  /* Subtitle Words: Minder Float op XS */
  .hero__subtitle span {
    animation: none; /* Disable float op tiny screens */
  }
}

/* Globale Hero Tweaks voor Mobiel Flow */
.hero__title,
.hero__subtitle,
.hero .btn--primary {
  z-index: 2; /* Boven particles */
  position: relative;
}

.hero::after {
  z-index: 1; /* Nebula achter content */
}


/* Hero Subtitle Upgrade: Clean, Staggered Glow & Premium Flow */
.hero__subtitle {
  font-size: 1.6rem;
  margin-bottom: 2.5rem;
  color: #e0f2fe; /* Iets warmer wit voor leesbaarheid */
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 0 10px rgba(0,122,255,0.4);
  position: relative;
  font-weight: 400; /* Lichter voor elegantie */
  letter-spacing: 0.5px;
}

body.dark-mode .hero__subtitle {
  color: #a8d5ff;
  text-shadow: 0 0 15px rgba(52,199,89,0.3);
}

/* Split Words in Spans voor Staggered Animatie */
.hero__subtitle span {
  display: inline-block;
  background: linear-gradient(90deg, transparent, rgba(0,122,255,0.2), transparent);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  background-position: left center;
  transition: background-size 0.6s ease, color 0.3s ease;
  margin: 0 0.2em;
}

.hero__subtitle span:hover {
  background-size: 100% 100%;
  color: var(--secondary-green);
  text-shadow: 0 0 15px rgba(52,199,89,0.6);
}

/* Staggered Reveal (CSS-only) */
.hero__subtitle span:nth-child(1) { animation: wordReveal 0.8s ease-out 0.2s both; }
.hero__subtitle span:nth-child(2) { animation: wordReveal 0.8s ease-out 0.4s both; }
.hero__subtitle span:nth-child(3) { animation: wordReveal 0.8s ease-out 0.6s both; }
.hero__subtitle span:nth-child(4) { animation: wordReveal 0.8s ease-out 0.8s both; }
.hero__subtitle span:nth-child(5) { animation: wordReveal 0.8s ease-out 1s both; }

@keyframes wordReveal {
  0% { 
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  100% { 
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* (2030 Ready) als Subtle Tag */
.hero__subtitle .tag {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  background: linear-gradient(135deg, rgba(0,122,255,0.2), rgba(52,199,89,0.2));
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  margin-left: 1rem;
  display: inline-block;
  box-shadow: 0 0 10px rgba(0,122,255,0.3);
  font-weight: 600;
}

body.dark-mode .hero__subtitle .tag {
  background: linear-gradient(135deg, rgba(52,199,89,0.3), rgba(0,122,255,0.3));
}

/* Responsive: Kleiner & Centered op Mobiel */
@media (max-width: 768px) {
  .hero__subtitle {
    font-size: 1.2rem;
    line-height: 1.4;
  }
  
  .hero__subtitle span {
    margin: 0 0.1em;
  }
  
  .hero__subtitle .tag {
    display: block;
    margin: 0.5rem auto 0;
    font-size: 0.8rem;
  }
}


/* Mobiel Menu: Hamburger Toggle met Slide-Out */
@media (max-width: 768px) {
  .hamburger {
    display: block !important; /* Altijd zichtbaar op mobiel */
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 2rem;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
  }

  body.dark-mode .hamburger {
    color: var(--text-light);
  }

  .hamburger:hover,
  .hamburger.active {
    color: var(--primary-blue);
    transform: rotate(90deg); /* Draait bij open */
  }

  /* Menu: Verborgen + Slide-Out Effect */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%; /* Start buiten scherm */
    width: 300px;
    height: 100vh;
    background: var(--card-bg-light);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 6rem 2rem 2rem;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1000;
    box-shadow: -5px 0 20px rgba(0,0,0,0.2);
    overflow-y: auto;
  }

  body.dark-mode .nav-menu {
    background: var(--card-bg-dark);
    box-shadow: -5px 0 20px rgba(0,0,0,0.5);
  }

  .nav-menu.active {
    right: 0; /* Slide in */
  }

  .nav-menu li {
    margin: 1rem 0;
    width: 100%;
    text-align: center;
  }

  .nav-menu a {
    padding: 1rem 1.5rem;
    font-size: 1.2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
  }

  /* Overlay bij open menu */
  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Sluit-knop in menu (optioneel) */
  .nav-menu .close-menu {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-dark);
    cursor: pointer;
  }
}