:root {
  --navy: #192873;
  --gold-1: #f6e27a;
  --gold-2: #d4af37;
  --gold-3: #b8860b;
  --gold: linear-gradient(135deg, var(--gold-1), var(--gold-2), var(--gold-3));
  --light-gold: rgba(246, 226, 122, 0.1);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Respect user motion preferences (accessibility) */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

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

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

@keyframes slideIn {
  from { transform: translateX(-20px); }
  to { transform: translateX(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

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

@keyframes glow {
  0%, 100% { box-shadow: 0 0 10px rgba(246, 226, 122, 0.3); }
  50% { box-shadow: 0 0 20px rgba(246, 226, 122, 0.6); }
}

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

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

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-180deg);
  }
  to {
    opacity: 1;
    transform: rotate(0deg);
  }
}

@keyframes bounceIn {
  0% { opacity: 0; transform: scale(0.3); }
  50% { transform: scale(1.05); }
  70% { transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1); }
}

.animate-on-scroll {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Only animate AFTER JS has fully initialized (js-ready state) */
.js-ready .animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
}

.js-ready .animate-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}

/* Prevent animation until JS is ready and page is loaded */
.js-ready:not(.loaded) .animate-on-scroll {
  opacity: 1 !important;
  transform: none !important;
}

.fade-in {
  animation: fadeIn 0.8s ease forwards;
}

.fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

.slide-in {
  animation: slideIn 0.6s ease forwards;
}

.pulse {
  animation: pulse 2s infinite;
}

.shimmer {
  animation: shimmer 3s linear infinite;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0) 100%);
  background-size: 1000px 100%;
}

.float {
  animation: float 4s ease-in-out infinite;
}

.glow {
  animation: glow 2s ease-in-out infinite alternate;
}

.slide-up {
  animation: slideUp 0.8s ease forwards;
}

.slide-down {
  animation: slideDown 0.8s ease forwards;
}

.rotate-in {
  animation: rotateIn 0.8s ease forwards;
}

.bounce-in {
  animation: bounceIn 0.8s ease forwards;
}

/* Scroll progress indicator */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-1), var(--gold-2), var(--gold-3));
  z-index: 1000;
  transform: scaleX(0);
  transform-origin: left;
}

.scroll-progress.active {
  transform: scaleX(1);
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #222;
  line-height: 1.6;
  background: #fff;
  overflow-x: hidden;
}

.loader-wrapper {
  position: fixed;
  inset: 0;
  background: var(--navy);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.loader {
  width: 60px;
  height: 60px;
  border: 5px solid rgba(246, 226, 122, 0.2);
  border-top-color: var(--gold-1);
  border-radius: 50%;
  animation: loader-spin 1s linear infinite;
  position: relative;
}

.loader::after {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 3px solid transparent;
  border-top-color: var(--gold-2);
  border-radius: 50%;
  animation: loader-spin 1.5s linear infinite;
}

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

html.loaded .loader-wrapper {
  opacity: 0;
  pointer-events: none;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HERO */
.hero-section {
  background: linear-gradient(rgba(25,40,115,0.85), rgba(25,40,115,0.85)),
  url('/assets/images/backgrounds/background.webp');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  position: relative;
}

@media (max-width: 768px) {
  .hero-section {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .hero-section {
    background-attachment: fixed;
  }
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(25,40,115,0.85), rgba(25,40,115,0.85));
  z-index: -1;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
  position: relative;
  padding-bottom: 10px;
}

.hero-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 20px;
  opacity: 0.95;
  letter-spacing: 0.5px;
}

.hero-description {
  max-width: 800px;
  margin: auto;
  margin-bottom: 30px;
  opacity: 0.95;
  font-weight: 300;
  position: relative;
}

.hero-car-wrapper {
  margin-top: 40px;
  overflow: hidden;
}

.hero-car {
  max-width: 100%;
  display: block;
  will-change: transform;
  backface-visibility: hidden;
  --parallax-offset: 0px;
}

@media (max-width: 768px) {
  .hero-car {
    transform: translateY(0);
  }
}

@media (min-width: 769px) {
  .hero-car {
    transform: translateY(calc(40px + var(--parallax-offset, 0px)));
    transition: transform 0.6s ease;
  }
  
  .hero-car.active {
    transform: translateY(var(--parallax-offset, 0px));
  }
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--gold);
  color: #111;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

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

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

.btn:hover::after {
  left: 100%;
}

.btn:active {
  transform: translateY(-2px);
}

/* SECTIONS */
section {
  padding-top: 100px;
}

h2 {
  color: var(--navy);
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.6rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* WHY CHOOSE US SECTION */
.why {
  text-align: center;
}

.benefits {
  display: inline-block;
  text-align: left;
  margin: 0 auto;
  padding: 0;
}

.benefits li {
  margin-bottom: 10px;
  list-style: none;
  position: relative;
  padding-left: 25px;
  line-height: 1.5;
  opacity: 1;
  transform: translateX(0);
}

/* Only animate AFTER JS is ready */
.js-ready .benefits li {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-ready .benefits li.active {
  opacity: 1;
  transform: translateX(0);
}

.js-ready .benefits li:nth-child(1) { transition-delay: 0.1s; }
.js-ready .benefits li:nth-child(2) { transition-delay: 0.2s; }
.js-ready .benefits li:nth-child(3) { transition-delay: 0.3s; }
.js-ready .benefits li:nth-child(4) { transition-delay: 0.4s; }

.benefits li::before {
  content: "✓";
  color: var(--gold-2);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.3rem;
  font-weight: bold;
  transform: rotate(12deg);
  transition: all 0.3s ease;
}

.benefits li:hover::before {
  color: var(--gold-1);
  transform: rotate(45deg) scale(1.2);
}
/* Tablet */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 25px;
  border-radius: 12px;
  position: relative;
  transform: translateY(0);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-2);
  box-shadow: var(--shadow-hover);
}

/* Only hide/animate AFTER JS is ready */
.js-ready .service-card {
  opacity: 0;
  transform: translateY(20px);
}

.js-ready .service-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-2);
  box-shadow: var(--shadow-hover);
}

.js-ready .service-card.active {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease 0.15s, transform 0.6s ease 0.15s;
}

.service-title {
  color: var(--navy);
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 600;
  position: relative;
  padding-left: 28px;
}

.service-title::before {
  content: '⚡';
  position: absolute;
  left: 0;
  top: -2px;
  color: var(--gold-2);
  font-weight: bold;
  font-size: 1.4rem;
}

/* BREEZE REVIEW BADGE */
.breeze-review-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  margin: 0 auto 30px auto;
  padding: 18px 22px;

  background: #fff;
  border-radius: 14px;
  border: 1px solid #eee;

  box-shadow: var(--shadow);
  font-family: 'Segoe UI', sans-serif;
  max-width: 340px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.breeze-review-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(246, 226, 122, 0.1), rgba(212, 175, 55, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.breeze-review-badge:hover::before {
  opacity: 1;
}

.breeze-review-badge:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.g-logo {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

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

.badge-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #666;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.stars {
  font-size: 1.2rem;
  color: #FFD700;
  margin-bottom: 4px;
  letter-spacing: 1px;
  display: inline-block;
  vertical-align: middle;
}

/* Stars and rating text alignment */
.stars + p {
  display: inline-block;
  margin: 0;
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
  vertical-align: middle;
  margin-left: 4px;
  line-height: 1.2;
}

.badge-subtext {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.4;
}

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.testimonial-card {
  background: white;
  border-radius: 14px;
  padding: 30px;
  border: 1px solid #eee;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: var(--gold);
  border-radius: 14px 14px 0 0;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.testimonial-img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
  border: 2px solid var(--gold-2);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 15px;
  color: #444;
  position: relative;
  padding-left: 20px;
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 3rem;
  color: var(--light-gold);
  font-family: serif;
  line-height: 1;
}

.testimonial-author {
  font-weight: 700;
  color: var(--navy);
  margin-top: 10px;
}

.testimonial-company {
  font-size: 0.9rem;
  color: #666;
  margin-top: 5px;
}

/* MAP SECTION */
#map {
  padding-top: 80px;
  padding-bottom: 60px;
  background: #f8f9fa;
}

#map h2 {
  color: var(--navy);
  text-align: center;
  margin-bottom: 30px;
  font-size: 2.2rem;
}

#map .container {
  text-align: center;
}

.map-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.map-container iframe {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  border: none;
}

.map-info {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  text-align: center;
}

.map-info h3 {
  color: var(--navy);
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.map-info p {
  margin-bottom: 10px;
  color: #444;
  font-size: 1.1rem;
}

.map-info a {
  color: var(--gold-2);
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
}

.map-info a:hover {
  color: var(--gold-3);
  text-decoration: underline;
}

/* APPOINTMENT INFO */
.appointment-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 15px auto 15px auto;
  padding: 18px 26px;
  
  background: var(--gold);
  color: #111;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  
  box-shadow: 0 0 15px rgba(246, 226, 122, 0.4);
  position: relative;
  overflow: hidden;
  
  /* Absolute 100% working cross-browser width */
  display: table;
  width: auto;
  min-width: 220px;
  
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.appointment-info::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: 0.5s;
}

.appointment-info:hover::before {
  left: 100%;
}

.appointment-info:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.appointment-info:active {
  transform: translateY(-2px);
}

.appointment-info p {
  margin: 0;
  position: relative;
  z-index: 1;
}

.appointment-info::after {
  content: '📅';
  font-size: 1.3rem;
  position: relative;
  z-index: 1;
}

/* FOOTER */
footer {
  background: var(--navy);
  color: white;
  text-align: center;
  padding: 70px 20px;
}

/* =========================
   HEADER STYLES
========================= */

#header {
  min-height: 70px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(25, 40, 115, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  transform: translateZ(0);
  backface-visibility: hidden;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 12px 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  letter-spacing: 0.3px;
}

#header:empty {
  display: none;
  min-height: 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 2px;
  width: 0%;
  background: linear-gradient(135deg, #f6e27a, #d4af37, #b8860b);
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.call-btn {
  padding: 12px 22px;
  background: linear-gradient(135deg, #f6e27a, #d4af37, #b8860b);
  color: #111;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

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

.call-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.call-btn:hover::after {
  left: 100%;
}

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

.logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: transform 0.2s ease;
  display: block;
}

.logo a {
  display: inline-block;
  text-decoration: none;
  transition: transform 0.2s ease;
}

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

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

footer {
  background: #192873;
  color: white;
  text-align: center;
  padding: 70px 20px;
}

.footer-container {
  max-width: 900px;
  margin: auto;
}

.footer-logo {
  height: 280px;
  width: auto;
  object-fit: contain;
  margin-bottom: 15px;
}

.footer-text {
  opacity: 0.85;
  margin-bottom: 20px;
}

.footer-btn {
  display: inline-block;
  padding: 14px 30px;
  background: var(--gold);
  color: #111;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

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

.footer-btn:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.footer-btn:hover::after {
  left: 100%;
}

.footer-btn:active {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  outline: none;
}

.menu-icon {
  display: block;
  width: 25px;
  height: 3px;
  background-color: white;
  position: relative;
  transition: 0.3s;
}

.menu-icon::before,
.menu-icon::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 3px;
  background-color: white;
  transition: 0.3s;
}

.menu-icon::before {
  top: -8px;
}

.menu-icon::after {
  bottom: -8px;
}

.menu-toggle.active .menu-icon {
  background-color: transparent;
}

.menu-toggle.active .menu-icon::before {
  transform: rotate(45deg) translateY(6px);
  top: 0;
  background-color: white;
}

.menu-toggle.active .menu-icon::after {
  transform: rotate(-45deg) translateY(-6px);
  bottom: 0;
  background-color: white;
}

/* Menu toggle animation */
.menu-toggle {
  transition: all 0.3s ease;
}

.menu-icon::before,
.menu-icon::after {
  transition: all 0.3s ease;
}

.menu-toggle:hover .menu-icon::before,
.menu-toggle:hover .menu-icon::after {
  background-color: var(--gold-2);
}

/* Mobile styling */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    text-align: center;
    margin-top: 10px;
    background: rgba(25, 40, 115, 0.98);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    margin-top: 20px;
    position: absolute;
    top: 70px;
    right: 20px;
    left: 20px;
    z-index: 999;
    transform: scale(0.95);
    opacity: 0;
    transition: all 0.3s ease;
  }

  .nav-links.active {
    display: flex;
    transform: scale(1);
    opacity: 1;
  }

  .menu-toggle {
    display: block;
    z-index: 1001;
    position: relative;
  }

  .nav-links a {
    padding: 12px 0;
    font-size: 1.1rem;
  }
}

/* Stabilize into a static snapshot for printing */
@media print {

  /* Remove all UI / interactive layers */
  .site-header,
  .scroll-progress,
  .loader-wrapper,
  .menu-toggle,
  .nav-links {
    display: none !important;
  }

  /* Reset layout shifts */
  body {
    margin: 0 !important;
    padding: 0 !important;
    background: #fff !important;
    color: #000 !important;
  }

  /* Kill all animation and transition states */
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  /* Force JS-hidden elements visible */
  .service-card,
  .benefits li,
  .animate-on-scroll,
  .testimonial-card,
  .hero-car,
  .breeze-review-badge,
  .map-info {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
  }

  /* Override JS animation system states */
  .js-ready .service-card,
  .js-ready .benefits li,
  .js-ready .animate-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }

  /* Make text clean for printing */
  a {
    color: #000 !important;
    text-decoration: underline;
  }

  /* Prevent weird spacing from grid layouts */
  .services-grid,
  .testimonials-grid {
    display: block !important;
  }

  .service-card,
  .testimonial-card {
    break-inside: avoid;
    page-break-inside: avoid;
    margin-bottom: 16px;
  }
}