/* ============================
   1. CSS Custom Properties
   ============================ */
:root {
  --color-primary: #0A1F3F;
  --color-primary-light: #1B3A5C;
  --color-accent: #F5A623;
  --color-accent-light: #FFD166;
  --color-accent-hover: #e6951a;
  --color-white: #FFFFFF;
  --color-off-white: #F8F9FA;
  --color-text: #1A1A2E;
  --color-text-light: #E0E0E0;
  --color-success: #2ECC71;

  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;

  --max-width: 1200px;
  --border-radius: 8px;
  --border-radius-lg: 12px;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
  --nav-height: 72px;
}

/* ============================
   2. CSS Reset
   ============================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ============================
   3. Accessibility
   ============================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: var(--color-primary);
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 700;
  z-index: 10000;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0.5rem;
}

:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

/* ============================
   4. Layout
   ============================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

section {
  padding: var(--spacing-lg) 0;
}

/* ============================
   5. Typography
   ============================ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

h2 {
  font-size: 1.75rem;
  font-weight: 700;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

/* ============================
   6. Buttons
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--border-radius);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  line-height: 1.2;
}

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

.btn-primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

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

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

/* ============================
   7. Section Headers
   ============================ */
.section-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.section-header h2 {
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--color-accent);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

.section-header p {
  color: #555;
  font-size: 1.0625rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-header--light h2 {
  color: var(--color-white);
}

.section-header--light h2::after {
  background: var(--color-accent);
}

.section-header--light p {
  color: var(--color-text-light);
}

/* ============================
   8. Header / Navigation
   ============================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  background: transparent;
}

.site-header.scrolled {
  background: var(--color-primary);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
  height: var(--nav-height);
}

.nav-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-white);
  white-space: nowrap;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--color-white);
  padding: 0.4rem 0.75rem;
  border-radius: 20px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  z-index: 1001;
}

.lang-toggle:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: var(--color-accent);
}

.lang-toggle i {
  font-size: 1rem;
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
}

.hamburger::before {
  top: calc(50% - 8px);
}

.hamburger::after {
  top: calc(50% + 6px);
}

/* Hamburger animation to X */
.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
  top: 50%;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
  top: 50%;
  transform: rotate(-45deg);
}

.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--color-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transition: right 0.3s ease;
  z-index: 1000;
}

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

.nav-menu a {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  transition: color 0.2s ease;
}

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

.nav-cta {
  background: var(--color-accent) !important;
  color: var(--color-primary) !important;
  padding: 0.75rem 1.5rem !important;
  border-radius: var(--border-radius) !important;
  margin-top: 0.5rem;
}

.nav-cta:hover {
  background: var(--color-accent-hover) !important;
}

/* ============================
   9. Hero Section
   ============================ */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(245, 166, 35, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(245, 166, 35, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: var(--spacing-md) 0;
}

.hero-subtitle {
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: var(--spacing-sm);
}

.hero-title {
  color: var(--color-white);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  line-height: 1.15;
}

.hero-description {
  color: var(--color-text-light);
  font-size: 1.0625rem;
  max-width: 600px;
  margin: 0 auto var(--spacing-md);
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.trust-badges {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-light);
  font-size: 0.875rem;
}

.trust-badge i {
  color: var(--color-accent);
  font-size: 1rem;
}

/* ============================
   10. Services Section
   ============================ */
.services {
  background: var(--color-white);
  padding: var(--spacing-xl) 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-card {
  background: var(--color-white);
  border: 1px solid #e8e8e8;
  border-radius: var(--border-radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}

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

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-sm);
}

.service-icon i {
  color: var(--color-accent);
  font-size: 1.5rem;
}

.service-card h3 {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.service-card p {
  color: #555;
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ============================
   11. Service Areas Section
   ============================ */
.service-areas {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  padding: var(--spacing-xl) 0;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: var(--spacing-md);
}

.area-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius-lg);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: var(--transition);
}

.area-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.area-abbr {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.area-card h3 {
  color: var(--color-white);
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.area-card p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

.areas-callout {
  text-align: center;
  color: var(--color-text-light);
  font-size: 1.0625rem;
}

.areas-callout a {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.areas-callout a:hover {
  color: var(--color-accent-light);
}

/* ============================
   12. How It Works Section
   ============================ */
.how-it-works {
  background: var(--color-off-white);
  padding: var(--spacing-xl) 0;
}

.steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: var(--spacing-md);
}

.step {
  text-align: center;
  padding: 1.5rem;
  position: relative;
  max-width: 320px;
}

.step-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 3rem;
  color: rgba(10, 31, 63, 0.06);
  line-height: 1;
}

.step-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-sm);
}

.step-icon i {
  color: var(--color-accent);
  font-size: 1.75rem;
}

.step h3 {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.step p {
  color: #555;
  font-size: 0.9375rem;
}

.step-connector {
  width: 2px;
  height: 32px;
  background: var(--color-accent);
  opacity: 0.4;
}

.steps-cta {
  text-align: center;
}

/* ============================
   13. About Section
   ============================ */
.about {
  background: var(--color-white);
  padding: var(--spacing-xl) 0;
}

.about-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
}

.about-image {
  flex-shrink: 0;
}

.about-placeholder {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--color-accent);
}

.about-placeholder span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 4rem;
  color: var(--color-accent);
}

.about-content h2 {
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
}

.about-content h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--color-accent);
  margin-top: 0.75rem;
  border-radius: 2px;
}

.about-content p {
  color: #555;
  margin-bottom: var(--spacing-sm);
  line-height: 1.7;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: var(--spacing-sm);
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--color-text);
}

.about-features i {
  color: var(--color-success);
  font-size: 1.125rem;
  flex-shrink: 0;
}

/* ============================
   14. FAQ Section
   ============================ */
.faq {
  background: var(--color-off-white);
  padding: var(--spacing-xl) 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-white);
  border: 1px solid #e8e8e8;
  border-radius: var(--border-radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--color-accent);
}

.faq-item[open] {
  border-color: var(--color-accent);
  box-shadow: var(--shadow);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-primary);
  list-style: none;
  gap: 1rem;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::marker {
  display: none;
  content: '';
}

.faq-icon {
  flex-shrink: 0;
  font-size: 0.875rem;
  color: var(--color-accent);
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
  color: #555;
  line-height: 1.7;
}

.faq-answer a {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================
   15. Footer
   ============================ */
.site-footer {
  background: var(--color-primary);
  padding: var(--spacing-lg) 0 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  padding-bottom: var(--spacing-md);
}

.footer-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  color: var(--color-text-light);
  font-size: 0.9375rem;
  margin-bottom: var(--spacing-sm);
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}

.footer-phone:hover {
  color: var(--color-accent-light);
}

.footer-areas {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

.footer-links h4,
.footer-hours h4 {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--color-text-light);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

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

.footer-hours ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: var(--spacing-sm);
}

.footer-hours li {
  color: var(--color-text-light);
  font-size: 0.9375rem;
}

.footer-closed {
  color: #999;
}

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

.footer-bottom p {
  color: #999;
  font-size: 0.8125rem;
}

.dmv-notice {
  background: #2a2a2a;
  padding: 3rem 2rem;
  text-align: center;
}

.dmv-notice p {
  color: #ccc;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 1px;
  margin: 0 auto;
}

.dmv-notice a {
  color: #ccc;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.dmv-notice a:hover {
  color: var(--color-white);
}

/* ============================
   16. Mobile Bottom CTA Bar
   ============================ */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 0.75rem 1rem;
  background: var(--color-primary);
  border-top: 2px solid var(--color-accent);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.mobile-cta.visible {
  transform: translateY(0);
}

.btn-mobile-cta {
  width: 100%;
  padding: 0.875rem;
  font-size: 1.0625rem;
}

/* ============================
   17. Scroll Animations
   ============================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Staggered delays for grid items */
.services-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.services-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.areas-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.areas-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.areas-grid .animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }

/* ============================
   18. Media Queries - Tablet (768px+)
   ============================ */
@media (min-width: 768px) {
  section {
    padding: var(--spacing-xl) 0;
  }

  .container {
    padding: 0 2rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 1.375rem;
  }

  /* Hero */
  .hero-title {
    font-size: 3rem;
  }

  .hero-description {
    font-size: 1.125rem;
  }

  .hero-cta-group {
    flex-direction: row;
    justify-content: center;
  }

  .trust-badges {
    flex-direction: row;
    justify-content: center;
    gap: var(--spacing-md);
  }

  /* Services */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Areas */
  .areas-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  /* Steps */
  .steps {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
  }

  .step {
    flex: 1;
    max-width: none;
  }

  .step-connector {
    width: 60px;
    height: 2px;
    margin-top: 52px;
    flex-shrink: 0;
  }

  /* About */
  .about-grid {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--spacing-lg);
  }

  .about-placeholder {
    width: 250px;
    height: 250px;
  }

  .about-placeholder span {
    font-size: 5rem;
  }

  .about-content h2::after {
    margin-left: 0;
  }

  /* Footer */
  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-grid > * {
    flex: 1;
  }

  /* Hide mobile CTA on tablet+ */
  .mobile-cta {
    display: none;
  }
}

/* ============================
   19. Media Queries - Desktop (1024px+)
   ============================ */
@media (min-width: 1024px) {
  /* Navigation - horizontal */
  .nav-right {
    order: 3;
  }

  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    flex-direction: row;
    gap: 0.25rem;
    order: 2;
  }

  .nav-menu a {
    font-size: 0.9375rem;
    padding: 0.5rem 0.75rem;
  }

  .nav-cta {
    margin-top: 0 !important;
    margin-left: 0.5rem !important;
  }

  .navbar {
    flex-wrap: nowrap;
  }

  /* Hero */
  .hero-title {
    font-size: 3.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  /* Services */
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* About */
  .about-placeholder {
    width: 300px;
    height: 300px;
  }

  .about-placeholder span {
    font-size: 6rem;
  }
}

/* ============================
   20. Media Queries - Wide (1200px+)
   ============================ */
@media (min-width: 1200px) {
  .hero-title {
    font-size: 3.75rem;
  }

  .services-grid {
    gap: 2rem;
  }

  .service-card {
    padding: 2.5rem 2rem;
  }
}

/* ============================
   21. Reduced Motion
   ============================ */
@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;
  }

  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }
}

/* ============================
   22. Print Styles
   ============================ */
@media print {
  .site-header,
  .mobile-cta,
  .nav-toggle,
  .hero-cta-group .btn-outline,
  .steps-cta {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
    background: var(--color-primary) !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  section {
    padding: 1.5rem 0;
    break-inside: avoid;
  }

  .service-card,
  .area-card {
    break-inside: avoid;
  }

  body {
    font-size: 12pt;
  }

  a[href^="tel:"]::after {
    content: " (" attr(href) ")";
  }
}
