/*
Theme Name: Vistaz
Theme URI: https://www.vistaz.be
Author: Vistaz NV
Author URI: https://www.vistaz.be
Description: Custom WordPress block theme voor Vistaz - aluminium en PVC buitenschrijnwerk
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vistaz
*/

/* ===== FOOTER MARGIN RESET ===== */
.wp-site-blocks > footer {
  margin-block-start: 0;
}

/* ===== CUSTOM HEADER ===== */
.vistaz-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}
.vistaz-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: 1fr auto;
  padding: 0 48px;
}
.vistaz-header-logo {
  grid-row: 1 / 3;
  display: flex;
  align-items: center;
  padding: 12px 0;
}
.vistaz-header-logo img {
  height: 80px;
  width: auto;
}
.vistaz-nav-top {
  grid-row: 1;
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 36px;
  height: 56px;
}
.vistaz-nav-top a {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #555;
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}
.vistaz-nav-top a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: #E8536D;
  transition: width 0.3s ease;
}
.vistaz-nav-top a:hover { color: #111; }
.vistaz-nav-top a:hover::after { width: 100%; }
.vistaz-nav-cta {
  font-weight: 600 !important;
  color: #fff !important;
  background: #E8536D;
  padding: 12px 28px;
  transition: all 0.3s ease !important;
}
.vistaz-nav-cta::after { display: none !important; }
.vistaz-nav-cta:hover {
  background: #d4445c !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,83,109,0.35);
}
.vistaz-nav-bottom {
  grid-row: 2;
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 44px;
  border-top: 1px solid rgba(0,0,0,0.04);
  padding-left: 32px;
}
.vistaz-nav-bottom a {
  font-family: 'Clash Display', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #2B3A4E;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 10px 0;
  margin-right: 32px;
}
.vistaz-nav-bottom a:last-child { margin-right: 0; }
.vistaz-nav-bottom a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: #E8536D;
  transition: width 0.3s ease;
}
.vistaz-nav-bottom a:hover { color: #E8536D; }
.vistaz-nav-bottom a:hover::after { width: 100%; }

/* ===== HERO SECTION ===== */
.vistaz-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  margin-top: 112px;
}
.vistaz-hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
.vistaz-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.55) 35%,
    rgba(0,0,0,0.15) 70%,
    rgba(0,0,0,0.05) 100%
  );
}
.vistaz-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.vistaz-hero-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #E8536D;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.3s forwards;
}
.vistaz-hero-title {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 600;
  line-height: 1.05;
  color: #fff;
  max-width: 700px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}
.vistaz-hero-accent {
  width: 60px; height: 3px;
  background: #E8536D;
  margin-bottom: 24px;
  transform: scaleX(0);
  transform-origin: left;
  animation: lineGrow 0.6s ease 0.8s forwards;
}
.vistaz-hero-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.9s forwards;
}
.vistaz-hero-actions {
  display: flex; gap: 16px;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.7s ease 1.1s forwards;
}
.vistaz-btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 600;
  padding: 18px 36px;
  background: #E8536D;
  color: #fff;
  text-decoration: none;
  border: none; cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}
.vistaz-btn-primary:hover {
  background: #d4445c;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(232,83,109,0.4);
}
.vistaz-btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 500;
  padding: 18px 32px;
  background: transparent;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all 0.3s ease;
}
.vistaz-btn-secondary:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255,255,255,0.08);
}

/* ===== SECTION UTILITIES ===== */
.vistaz-section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #E8536D;
  margin-bottom: 16px;
}
.vistaz-accent-line {
  width: 48px; height: 3px;
  background: #E8536D;
  margin-bottom: 24px;
}
.vistaz-accent-line-center {
  width: 48px; height: 3px;
  background: #E8536D;
  margin: 0 auto 24px;
}

/* ===== PRODUCT CARDS ===== */
.equal-cards > .wp-block-column {
  display: flex;
  flex-direction: column;
  flex-grow: 0;
}
.equal-cards > .wp-block-column > .wp-block-group {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.equal-cards .cta-bottom {
  margin-top: auto;
  justify-content: center;
}

/* Product card hover */
.vistaz-product-card {
  background: #fff;
  border: 1px solid #E8E8E8;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.vistaz-product-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: #E8536D;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.vistaz-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-color: transparent;
}
.vistaz-product-card:hover::before {
  transform: scaleX(1);
}

/* Clickable card link */
.vistaz-card-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  width: 100%;
}
.vistaz-card-link:hover { text-decoration: none; }
.vistaz-card-link h3, .vistaz-card-link p { margin: 0; }
.vistaz-card-link h3 { margin-bottom: 8px; }

/* Product icon circle */
.vistaz-icon-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: #F7F7F7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: all 0.3s ease;
}
.vistaz-product-card:hover .vistaz-icon-circle {
  background: #E8536D;
}
.vistaz-product-card:hover .vistaz-icon-circle svg {
  stroke: #fff;
}

/* ===== STATS BAR ===== */
.vistaz-stat {
  text-align: center;
  padding: 16px;
}
.vistaz-stat-number {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
}
.vistaz-stat-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
}

/* ===== PROJECT SHOWCASE ===== */
.vistaz-project-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.vistaz-project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.vistaz-project-card:hover img {
  transform: scale(1.05);
}
.vistaz-project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(43,58,78,0.9) 0%,
    rgba(43,58,78,0) 60%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.vistaz-project-card:hover .vistaz-project-overlay {
  opacity: 1;
}

/* ===== USP ITEMS ===== */
.vistaz-usp {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
}
.vistaz-usp-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(232,83,109,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== CTA SECTION ===== */
.vistaz-cta-section {
  position: relative;
  overflow: hidden;
}
.vistaz-cta-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(232,83,109,0.15);
  pointer-events: none;
}

/* ===== LOCATION CARDS ===== */
.vistaz-location-card {
  background: #fff;
  border: 1px solid #E8E8E8;
  padding: 36px 32px;
  transition: all 0.3s ease;
  position: relative;
}
.vistaz-location-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-color: transparent;
}
.vistaz-location-badge {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  background: #E8536D;
  padding: 5px 14px;
  margin-bottom: 16px;
}
.vistaz-location-functions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 16px;
}
.vistaz-function-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #555;
  background: #F7F7F7;
  padding: 4px 12px;
  border: 1px solid #E8E8E8;
}
.vistaz-function-highlight {
  color: #E8536D;
  background: rgba(232,83,109,0.08);
  border-color: rgba(232,83,109,0.2);
}

/* Location card details */
.vistaz-location-details {
  margin: 12px 0 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #555;
}
.vistaz-location-details p {
  margin: 0 0 6px;
}
.vistaz-location-details a {
  color: #2B3A4E;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}
.vistaz-location-details a:hover {
  color: #E8536D;
}
.vistaz-location-hours {
  font-size: 0.8rem;
  color: #999;
  border-top: 1px solid #E8E8E8;
  padding-top: 8px;
  margin-top: 8px !important;
}

/* ===== FOOTER ===== */
.vistaz-footer a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.3s;
}
.vistaz-footer a:hover {
  color: #E8536D;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes lineGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* Scroll-triggered animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.stagger-children > .wp-block-column {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.stagger-children.is-visible > .wp-block-column:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger-children.is-visible > .wp-block-column:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger-children.is-visible > .wp-block-column:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.stagger-children.is-visible > .wp-block-column:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.stagger-children.is-visible > .wp-block-column:nth-child(5) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }

/* Hover lift for cards */
.hover-lift {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .vistaz-header-inner { padding: 0 32px; }
  .vistaz-nav-bottom { padding-left: 24px; }
  .vistaz-nav-bottom a { margin-right: 24px; }
  .vistaz-nav-top { gap: 24px; }
  .vistaz-header-logo img { height: 64px; }
  .vistaz-hero-content { padding: 0 32px; }
}

@media (max-width: 768px) {
  .vistaz-header-inner {
    padding: 0 24px;
    grid-template-columns: auto 1fr;
  }
  .vistaz-header-logo { padding: 8px 0; }
  .vistaz-header-logo img { height: 48px; }
  .vistaz-nav-top a:not(.vistaz-nav-cta) { display: none; }
  .vistaz-nav-bottom {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-left: 16px;
  }
  .vistaz-nav-bottom a { margin-right: 20px; white-space: nowrap; }
  .vistaz-hero { margin-top: 100px; }
  .vistaz-hero-content { padding: 0 24px; }
  .vistaz-hero-overlay {
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.8) 0%,
      rgba(0,0,0,0.4) 50%,
      rgba(0,0,0,0.2) 100%
    );
  }
  .vistaz-hero-content {
    justify-content: flex-end;
    padding-bottom: 120px;
  }
  .vistaz-hero-title { font-size: 38px; }
  .vistaz-hero-subtitle { font-size: 16px; }
  .vistaz-hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===== PROJECT GALLERY GRID ===== */
.vistaz-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 100%;
  margin: 0 auto;
}
.vistaz-gallery-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: #f0f0f0;
}
.vistaz-gallery-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.vistaz-gallery-card:hover img {
  transform: scale(1.06);
}
.vistaz-gallery-info {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(43,58,78,0.85) 0%, rgba(43,58,78,0.3) 40%, transparent 65%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: opacity 0.3s ease;
}
.vistaz-gallery-name {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}
.vistaz-gallery-location {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}
/* gallery-count removed — cleaner look */

/* Gallery section wider - override constrained padding */
.vistaz-gallery-grid {
  max-width: 100%;
}
.vistaz-filter-bar {
  max-width: 100%;
}
.vistaz-gallery-card:hover .vistaz-gallery-info {
  background: linear-gradient(to top, rgba(232,83,109,0.9) 0%, rgba(43,58,78,0.4) 50%, transparent 70%);
}

/* Featured card (spans 2 cols) */
.vistaz-gallery-card.featured {
  grid-column: span 2;
}

/* Filter buttons */
.vistaz-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
}
.vistaz-filter-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #555;
  background: #F7F7F7;
  border: 1px solid #E8E8E8;
  padding: 8px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.vistaz-filter-btn:hover,
.vistaz-filter-btn.active {
  color: #fff;
  background: #2B3A4E;
  border-color: #2B3A4E;
}

/* ===== LIGHTBOX ===== */
#vistaz-lightbox {
  position: fixed; inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
#vistaz-lightbox.vlb-active {
  opacity: 1;
  visibility: visible;
}
.vlb-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.92);
}
.vlb-content {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.vlb-img {
  max-width: 90vw;
  max-height: 78vh;
  object-fit: contain;
  transition: opacity 0.15s ease;
}
.vlb-info {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
  font-family: 'DM Sans', sans-serif;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
}
.vlb-caption {
  font-weight: 600;
  color: #fff;
}
.vlb-counter {
  font-size: 13px;
  opacity: 0.6;
}
.vlb-copyright {
  font-size: 11px;
  opacity: 0.5;
}
.vlb-close {
  position: absolute;
  top: 20px; right: 24px;
  z-index: 3;
  background: none; border: none;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  line-height: 1;
}
.vlb-close:hover { opacity: 1; }
.vlb-prev, .vlb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255,255,255,0.08);
  border: none;
  color: #fff;
  font-size: 48px;
  cursor: pointer;
  width: 56px; height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: all 0.2s;
}
.vlb-prev { left: 16px; }
.vlb-next { right: 16px; }
.vlb-prev:hover, .vlb-next:hover {
  opacity: 1;
  background: rgba(232,83,109,0.6);
}

@media (max-width: 1024px) {
  .vistaz-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .vistaz-gallery-card.featured {
    grid-column: span 2;
  }
}
@media (max-width: 640px) {
  .vistaz-gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .vistaz-gallery-card.featured {
    grid-column: span 1;
  }
  .vlb-prev, .vlb-next {
    width: 40px; height: 56px;
    font-size: 36px;
  }
}

/* ===== MAINTENANCE TIPS GRID ===== */
.vistaz-maintenance-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 2rem;
}
.vistaz-maint-card {
  background: #fff;
  border: 1px solid #E8E8E8;
  padding: 24px;
  transition: all 0.3s ease;
  position: relative;
}
.vistaz-maint-card:hover {
  border-color: rgba(232,83,109,0.3);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.vistaz-maint-icon {
  width: 48px; height: 48px;
  background: rgba(232,83,109,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.vistaz-maint-title {
  font-family: 'Clash Display', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #2B3A4E;
  margin: 0 0 4px;
}
.vistaz-maint-freq {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #E8536D;
  margin: 0 0 10px;
}
.vistaz-maint-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: #555;
  line-height: 1.65;
  margin: 0 0 8px;
}
.vistaz-maint-tip {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: #777;
  line-height: 1.55;
  margin: 0;
  padding-top: 8px;
  border-top: 1px solid #f0f0f0;
}

/* ===== SERVICE CARDS ===== */
.vistaz-service-card {
  background: #fff;
  border: 1px solid #E8E8E8;
  padding: 28px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}
.vistaz-service-card:hover {
  border-color: rgba(232,83,109,0.3);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}
.vistaz-service-icon {
  width: 52px; height: 52px;
  background: rgba(232,83,109,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .vistaz-maintenance-grid {
    gap: 16px;
  }
  .vistaz-maint-card {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
