/*
 * VvE Regie & Ondersteuning — site-CSS (vveregie.com binnen de Office477-Laravel-app).
 * Office477-kleurenpalet; overgenomen van het WP-theme vveregie-wp-theme v1.7.0.
 */

/* ======================
   DESIGN TOKENS
====================== */
:root {
  --primary: #01A4A4;
  --primary-light: #1bbebe;
  --primary-dark: #018585;
  --primary-gradient: linear-gradient(135deg, #01A4A4 0%, #1bbebe 100%);
  --accent: #52088c;
  --accent-dark: #3d0669;
  --accent-warm: #e8247c;
  --accent-warm-dark: #c41d68;
  --success: #00c875;
  --success-dark: #009a5b;
  --danger: #cf2e2e;
  --warning: #ef6c00;
  --bg: #f7f5f2;
  --bg-alt: #f0ece6;
  --surface: #ffffff;
  --border: #e2e8f0;
  --border-light: #f0f4f8;
  --text: #2c3e50;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow: 0 4px 16px rgba(1,164,164,0.08);
  --shadow-lg: 0 12px 40px rgba(1,164,164,0.12);
  --shadow-xl: 0 20px 60px rgba(1,164,164,0.15);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --container: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--primary-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary); }

ul { list-style: none; }

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

/* ======================
   LAYOUT
====================== */
.vvr-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.vvr-section {
  padding: 80px 0;
}

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

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

.vvr-section-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
}

.vvr-section-desc {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.vvr-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-warm);
  margin-bottom: 8px;
}

.vvr-center { text-align: center; }

.vvr-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.vvr-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ======================
   HEADER
====================== */
body.admin-bar .vvr-header {
  top: 32px;
}

.vvr-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 3px solid var(--accent);
  transition: all var(--transition);
}

.vvr-header.scrolled {
  border-bottom-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.vvr-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.vvr-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.vvr-logo-img {
  height: 80px;
  width: auto;
}

/* Tekstlogo in Office477-stijl: woordmerk in primary met paars accent */
.vvr-logo-text {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--primary);
  line-height: 1.15;
  display: flex;
  flex-direction: column;
}

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

.vvr-logo-sub {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

a.vvr-card-logo-text {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  text-decoration: none;
}

a.vvr-card-logo-text .lw2 { color: var(--accent); }

/* NAV */
.vvr-nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.vvr-nav-list > li > a {
  display: block;
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.vvr-nav-list > li > a:hover,
.vvr-nav-list > li > a.active {
  color: var(--primary-dark);
  background: rgba(1,164,164,0.08);
}

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

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

.vvr-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
}

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

.vvr-dropdown li a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text);
  border-radius: 8px;
  transition: all var(--transition);
}

.vvr-header-login {
  position: relative;
}
.vvr-header-login .vvr-dropdown {
  right: 0;
  left: auto;
  min-width: 180px;
}
.vvr-header-login > .vvr-btn-header::after {
  display: none;
}

.vvr-dropdown li a:hover {
  background: var(--bg-alt);
  color: var(--primary-light);
}

/* HEADER BUTTON */
.vvr-btn-header {
  padding: 10px 24px !important;
  font-size: 14px !important;
  margin-left: 8px;
}

/* HAMBURGER */
.vvr-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.vvr-hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--transition);
}

.vvr-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.vvr-hamburger.active span:nth-child(2) { opacity: 0; }
.vvr-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ======================
   BUTTONS
====================== */
.vvr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font);
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  gap: 8px;
  white-space: nowrap;
}

.vvr-btn-primary {
  background: var(--primary-gradient);
  color: #fff;
  border-color: transparent;
}
.vvr-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(1,164,164,0.3);
  color: #fff;
}

.vvr-btn-accent {
  background: var(--accent-warm);
  color: #fff;
}
.vvr-btn-accent:hover {
  background: var(--accent-warm-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,36,124,0.3);
  color: #fff;
}

.vvr-btn-green {
  background: var(--accent);
  color: #fff;
}
.vvr-btn-green:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(82,8,140,0.3);
  color: #fff;
}

.vvr-btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.vvr-btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
}

.vvr-btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--border);
}
.vvr-btn-outline-dark:hover {
  border-color: var(--primary);
  background: rgba(1,164,164,0.04);
  color: var(--primary);
}

.vvr-btn-white {
  background: #fff;
  color: var(--primary);
}
.vvr-btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  color: var(--primary);
}

.vvr-btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.vvr-btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  color: #fff;
}

.vvr-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-light);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all var(--transition);
}
.vvr-link:hover { gap: 8px; }

/* ======================
   HERO
====================== */
.vvr-hero {
  position: relative;
  min-height: 660px;
  max-height: 90vh;
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
  overflow: hidden;
}

.vvr-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transform: scale(1.15) translateY(-15%);
}

.vvr-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.65) 0%, rgba(244,247,250,0.5) 50%, rgba(255,255,255,0.35) 100%);
}

.vvr-hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.vvr-hero-title {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: 20px;
}

.vvr-hero-subtitle {
  font-size: 19px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 32px;
}

.vvr-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.vvr-hero-ctas .vvr-btn {
  min-width: 200px;
  text-align: center;
}

/* ======================
   SERVICE CARDS
====================== */
.vvr-service-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

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

.vvr-service-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-alt);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary-light);
}

.vvr-service-icon svg {
  width: 28px;
  height: 28px;
}

.vvr-service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.vvr-service-card p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.65;
}

/* ======================
   AUDIENCE CARDS
====================== */
.vvr-audience-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
a.vvr-card-logo {
  position: absolute;
  bottom: 20px;
  right: 20px;
  line-height: 0;
}
a.vvr-card-logo img {
  height: 50px;
  width: auto;
}

.vvr-audience-card:hover {
  box-shadow: var(--shadow-lg);
}

.vvr-audience-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

.vvr-badge-vve {
  background: var(--primary);
  color: #fff;
}

.vvr-badge-part {
  background: var(--accent);
  color: #fff;
}

.vvr-audience-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.vvr-check-list {
  margin-bottom: 24px;
}

.vvr-check-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 15px;
  color: var(--text-secondary);
}

.vvr-check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(1,164,164,0.1);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='%2301A4A4' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.78 4.22a.75.75 0 010 1.06l-7.25 7.25a.75.75 0 01-1.06 0L2.22 9.28a.75.75 0 011.06-1.06L6 10.94l6.72-6.72a.75.75 0 011.06 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

/* ======================
   PORTAL CARDS
====================== */
.vvr-portal-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border);
  text-decoration: none;
  display: block;
  position: relative;
  transition: all var(--transition);
}

.vvr-portal-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.vvr-portal-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-gradient);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #fff;
}

.vvr-portal-icon svg {
  width: 28px;
  height: 28px;
}

.vvr-portal-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--primary);
}

.vvr-portal-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.vvr-portal-arrow {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 20px;
  color: var(--primary-light);
  opacity: 0;
  transform: translateX(-8px);
  transition: all var(--transition);
}

.vvr-portal-card:hover .vvr-portal-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ======================
   ARTICLE CARDS
====================== */
.vvr-article-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

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

.vvr-article-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.vvr-article-body {
  padding: 24px;
}

.vvr-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.vvr-tag-vve { background: rgba(1,164,164,0.08); color: var(--primary-dark); }
.vvr-tag-part { background: rgba(82,8,140,0.08); color: var(--accent); }

.vvr-article-body h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
}

.vvr-article-body p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 12px;
}

.vvr-article-meta {
  font-size: 13px;
  color: var(--text-muted);
}

/* ======================
   ABOUT ROW
====================== */
.vvr-about-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.vvr-about-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.vvr-about-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.vvr-about-text h2 {
  margin-bottom: 16px;
}

.vvr-about-text p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.7;
}

.vvr-stats {
  display: flex;
  gap: 32px;
  margin: 28px 0;
}

.vvr-stat {
  display: flex;
  flex-direction: column;
}

.vvr-stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.vvr-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
}

/* ======================
   CTA SECTION
====================== */
.vvr-cta {
  background: var(--primary-gradient);
  padding: 72px 0;
  text-align: center;
}

.vvr-cta h2 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 12px;
  font-weight: 800;
}

.vvr-cta p {
  color: rgba(255,255,255,0.8);
  font-size: 17px;
  margin-bottom: 28px;
}

.vvr-cta .vvr-hero-ctas {
  justify-content: center;
}

/* ======================
   FOOTER
====================== */
.vvr-footer {
  background: var(--primary-dark);
  padding: 64px 0 0;
  color: rgba(255,255,255,0.7);
}

.vvr-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
}

.vvr-logo-footer .vvr-logo-text {
  color: #fff;
}

.vvr-logo-footer .vvr-logo-text .lw2 {
  color: #7de3e3;
}

.vvr-logo-footer .vvr-logo-sub {
  color: rgba(255,255,255,0.65);
}

.vvr-footer-desc {
  font-size: 14px;
  margin-top: 16px;
  line-height: 1.7;
}

.vvr-footer h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.vvr-footer ul li {
  margin-bottom: 10px;
}

.vvr-footer ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  transition: color var(--transition);
}

.vvr-footer ul li a:hover {
  color: #fff;
}

.vvr-footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.vvr-footer-contact svg {
  flex-shrink: 0;
  opacity: 0.5;
}

.vvr-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
}

.vvr-footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ======================
   SCROLL TO TOP
====================== */
.vvr-scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--accent-warm);
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition);
  box-shadow: var(--shadow);
  z-index: 99;
}

.vvr-scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.vvr-scroll-top:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.vvr-scroll-top svg {
  width: 20px;
  height: 20px;
}

/* ======================
   PORTAL PAGE SHARED
====================== */
.vvr-page-hero {
  background: var(--primary-gradient);
  padding: 120px 0 60px;
  text-align: center;
}

.vvr-page-hero h1 {
  font-size: 36px;
  color: #fff;
  margin-bottom: 8px;
}

.vvr-page-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 17px;
}

.vvr-page-content {
  padding: 48px 0 80px;
}

/* LOGIN CARD (shared across portals) */
.vvr-login-wrap {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.vvr-login-card {
  width: 100%;
  max-width: 440px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
}

.vvr-login-header {
  background: var(--primary-gradient);
  padding: 32px;
  text-align: center;
}

.vvr-login-header h2 {
  color: #fff;
  font-size: 22px;
  margin-top: 12px;
}

.vvr-login-header p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  margin-top: 4px;
}

.vvr-login-header .vvr-logo-img {
  height: 36px;
  margin: 0 auto;
  filter: brightness(10);
}

.vvr-login-body {
  padding: 32px;
}

.vvr-form-group {
  margin-bottom: 18px;
}

.vvr-form-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.vvr-form-input {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  font-family: var(--font);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  transition: all var(--transition);
}

.vvr-form-input:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(1,164,164,0.12);
  background: #fff;
}

.vvr-form-input::placeholder {
  color: var(--text-muted);
}

select.vvr-form-input {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='%2394a3b8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
}

textarea.vvr-form-input {
  resize: vertical;
  min-height: 120px;
}

.vvr-form-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}

.vvr-form-link {
  font-size: 14px;
  color: var(--primary-light);
  text-align: center;
  display: block;
  margin-top: 16px;
}

/* CONTACT FORM 7 STYLING */
.wpcf7 {
  max-width: 100%;
}
.wpcf7 p {
  margin-bottom: 16px;
}
.wpcf7 label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text);
  margin-bottom: 6px;
}
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  font-family: var(--font);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  transition: all var(--transition);
  box-sizing: border-box;
}
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(1,164,164,0.12);
  background: #fff;
}
.wpcf7 textarea {
  resize: vertical;
  min-height: 140px;
}
.wpcf7 input[type="submit"] {
  width: 100%;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font);
  color: #fff;
  background: var(--primary);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 8px;
}
.wpcf7 input[type="submit"]:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.wpcf7-response-output {
  border-radius: var(--radius-sm) !important;
  padding: 12px 16px !important;
  font-size: 14px;
  margin: 16px 0 0 !important;
}
.wpcf7-not-valid-tip {
  font-size: 13px;
  color: #e74c3c;
  margin-top: 4px;
}
.wpcf7 .wpcf7-not-valid {
  border-color: #e74c3c;
}

/* DASHBOARD CARDS */
.vvr-dash-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}

.vvr-dash-card {
  background: var(--surface);
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
}

.vvr-dash-card-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}

.vvr-dash-card-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.vvr-dash-card-value.green { color: var(--accent); }
.vvr-dash-card-value.red { color: var(--danger); }
.vvr-dash-card-value.orange { color: var(--warning); }

/* TABLE */
.vvr-table-wrap {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.vvr-table {
  width: 100%;
  border-collapse: collapse;
}

.vvr-table th {
  padding: 18px 20px;
  background: var(--bg);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.vvr-table td {
  padding: 16px 20px;
  font-size: 15px;
  color: var(--text);
  border-top: 1px solid var(--border-light);
  vertical-align: middle;
}

.vvr-table tr:first-child td { border-top: none; }
.vvr-table tr:hover td { background: rgba(244,247,250,0.5); }

.vvr-status {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.vvr-status-open { background: rgba(207,46,46,0.08); color: var(--danger); }
.vvr-status-paid { background: rgba(0,200,117,0.1); color: var(--success-dark); }
.vvr-status-pending { background: rgba(239,108,0,0.08); color: var(--warning); }
.vvr-status-new { background: rgba(1,164,164,0.08); color: var(--primary-dark); }
.vvr-status-active { background: rgba(0,200,117,0.1); color: var(--success-dark); }

/* MOBILE CARDS (hidden on desktop) */
.vvr-mobile-cards { display: none; }

.vvr-mobile-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  margin-bottom: 14px;
  border: 1px solid var(--border-light);
}

/* TABS */
.vvr-tabs {
  display: flex;
  gap: 4px;
  background: var(--bg-alt);
  padding: 4px;
  border-radius: var(--radius-sm);
  margin-bottom: 28px;
  width: fit-content;
}

.vvr-tab {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  border: none;
  background: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font);
  transition: all var(--transition);
}

.vvr-tab.active {
  background: var(--surface);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

/* MULTI-STEP FORM */
.vvr-steps {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

.vvr-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.vvr-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  font-weight: 700;
  font-size: 14px;
  transition: all var(--transition);
}

.vvr-step.active .vvr-step-num {
  background: var(--primary-gradient);
  color: #fff;
}

.vvr-step.completed .vvr-step-num {
  background: var(--accent);
  color: #fff;
}

.vvr-step-line {
  width: 40px;
  height: 2px;
  background: var(--border);
}

.vvr-step.completed + .vvr-step-line,
.vvr-step.active ~ .vvr-step-line {
  background: var(--accent);
}

.vvr-step-content {
  display: none;
}

.vvr-step-content.active {
  display: block;
}

/* TYPE SELECT CARDS */
.vvr-type-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.vvr-type-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
}

.vvr-type-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow);
}

.vvr-type-card.selected {
  border-color: var(--primary-light);
  background: rgba(1,164,164,0.04);
}

.vvr-type-card-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.vvr-type-card h4 {
  font-size: 15px;
  font-weight: 700;
}

/* UPLOAD ZONE */
.vvr-upload-zone {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}

.vvr-upload-zone:hover {
  border-color: var(--primary-light);
  background: rgba(1,164,164,0.02);
}

.vvr-upload-zone svg {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  color: var(--text-muted);
}

/* PROGRESS BAR */
.vvr-progress {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 24px 0;
}

.vvr-progress-step {
  flex: 1;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
}

.vvr-progress-step.done { background: var(--accent); }
.vvr-progress-step.current { background: var(--primary-light); }

/* KENNISBANK */
.vvr-search-bar {
  max-width: 600px;
  margin: 0 auto 40px;
  position: relative;
}

.vvr-search-bar input {
  width: 100%;
  padding: 16px 20px 16px 52px;
  font-size: 16px;
  font-family: var(--font);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.vvr-search-bar input:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: var(--shadow-lg);
}

.vvr-search-bar svg {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--text-muted);
}

.vvr-cat-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.vvr-cat-btn {
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  cursor: pointer;
  font-family: var(--font);
  transition: all var(--transition);
}

.vvr-cat-btn:hover, .vvr-cat-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* CONTACT PAGE */
.vvr-contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
}

.vvr-contact-info-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.vvr-contact-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-alt);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-light);
}

.vvr-contact-icon svg { width: 22px; height: 22px; }

/* ======================
   ARTICLE LINK (clickable cards)
====================== */
a.vvr-article-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
a.vvr-article-link:hover { color: inherit; }

/* ======================
   SINGLE ARTICLE PAGE
====================== */
.vvr-article-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.vvr-article-content {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
}

.vvr-article-content h2 {
  font-size: 26px;
  margin: 40px 0 16px;
  color: var(--primary);
}

.vvr-article-content h3 {
  font-size: 21px;
  margin: 32px 0 12px;
  color: var(--primary);
}

.vvr-article-content p {
  margin-bottom: 16px;
}

.vvr-article-content ul,
.vvr-article-content ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.vvr-article-content li {
  margin-bottom: 8px;
}

.vvr-article-content blockquote {
  border-left: 4px solid var(--accent);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--bg-alt);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--text-secondary);
}

.vvr-article-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
}

.vvr-sidebar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
}

.vvr-sidebar-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}

.vvr-sidebar-link:last-child {
  border-bottom: none;
}

.vvr-sidebar-link:hover {
  color: var(--primary-light);
}

.vvr-sidebar-link svg {
  flex-shrink: 0;
  opacity: 0.5;
}

/* ======================
   RESPONSIVE
====================== */
@media (max-width: 1024px) {
  .vvr-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .vvr-footer-grid { grid-template-columns: repeat(2, 1fr); }
  .vvr-dash-grid { grid-template-columns: repeat(2, 1fr); }
  .vvr-type-grid { grid-template-columns: repeat(2, 1fr); }
  .vvr-article-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .vvr-section { padding: 56px 0; }
  .vvr-section-title { font-size: 28px; }

  .vvr-hamburger { display: flex; }
  .vvr-btn-header { display: none; }

  .vvr-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--surface);
    padding: 80px 24px 24px;
    box-shadow: var(--shadow-xl);
    transition: right var(--transition);
    z-index: 999;
    overflow-y: auto;
  }

  .vvr-nav.open { right: 0; }

  .vvr-nav-list {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }

  .vvr-nav-list > li > a {
    padding: 14px 16px;
    font-size: 16px;
    border-bottom: 1px solid var(--border-light);
  }

  .vvr-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    background: transparent;
  }

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

  .vvr-hero { min-height: 460px; max-height: 560px; padding: 100px 0 50px; }
  .vvr-hero-title { font-size: 32px; }
  .vvr-hero-subtitle { font-size: 16px; }

  .vvr-grid-2, .vvr-grid-3 { grid-template-columns: 1fr; }
  .vvr-about-row { grid-template-columns: 1fr; gap: 32px; }
  .vvr-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .vvr-dash-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .vvr-type-grid { grid-template-columns: repeat(2, 1fr); }
  .vvr-contact-grid { grid-template-columns: 1fr; }

  .vvr-table-wrap { display: none; }
  .vvr-mobile-cards { display: block; }

  .vvr-cta h2 { font-size: 24px; }

  .vvr-tabs { width: 100%; overflow-x: auto; }

  .vvr-step span:not(.vvr-step-num) { display: none; }
}

@media (max-width: 480px) {
  .vvr-hero-title { font-size: 26px; }
  .vvr-hero-ctas { flex-direction: column; }
  .vvr-hero-ctas .vvr-btn { width: 100%; }
  .vvr-dash-grid { grid-template-columns: 1fr 1fr; }
  .vvr-dash-card-value { font-size: 22px; }
  .vvr-type-grid { grid-template-columns: 1fr 1fr; }
  .vvr-stats { flex-direction: column; gap: 16px; }
}
