/*
 * Print Stylesheet — Valley Laundry Inc.
 * Clean layout for B2B decision-makers who print pages for review.
 */

@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
    max-width: 100%;
  }

  /* Hide non-essential elements */
  .site-header,
  .nav-toggle,
  .primary-nav,
  .skip-link,
  .cta-banner,
  .hero-actions,
  .btn,
  .faq-icon,
  iframe {
    display: none !important;
  }

  /* Show print header */
  .site-footer {
    border-top: 2px solid #000;
    padding-top: 1em;
  }

  .footer-grid {
    display: block;
  }

  .footer-nav,
  .footer-cities {
    display: none;
  }

  /* Keep hero visible but simplify */
  .hero {
    padding: 1em 0;
    border-bottom: 2px solid #000;
  }

  .hero-badge {
    border: 1px solid #000;
  }

  /* Typography */
  h1 { font-size: 24pt; }
  h2 { font-size: 18pt; page-break-after: avoid; }
  h3 { font-size: 14pt; page-break-after: avoid; }

  p, li {
    orphans: 3;
    widows: 3;
  }

  /* Links — show URL */
  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.85em;
    color: #555 !important;
  }

  a[href^="tel:"]::after,
  a[href^="mailto:"]::after,
  a[href^="#"]::after,
  a[href^="/"]::after {
    content: "";
  }

  /* Images */
  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }

  /* FAQ — show all answers */
  .faq-answer {
    max-height: none !important;
    overflow: visible !important;
  }

  .faq-answer[aria-hidden="true"] {
    display: block !important;
    max-height: none !important;
  }

  .faq-question {
    font-weight: bold;
    border: none;
    padding: 0.5em 0;
  }

  /* Cards */
  .card {
    border: 1px solid #ccc;
    page-break-inside: avoid;
  }

  .card-grid {
    display: block;
  }

  .card {
    margin-bottom: 1em;
  }

  /* Sections */
  .section {
    padding: 1em 0;
  }

  .container {
    max-width: 100%;
    padding: 0;
  }

  /* Testimonials */
  .testimonial {
    border: 1px solid #ccc;
    page-break-inside: avoid;
    margin-bottom: 1em;
  }

  .testimonial-grid {
    display: block;
  }

  /* Page breaks */
  .section {
    page-break-inside: avoid;
  }

  /* Print contact info */
  .site-footer::before {
    content: "Valley Laundry Inc. | 937-746-5291 | info@valleylaundryinc.com | 522 S Main St, Franklin, OH 45005";
    display: block;
    font-weight: bold;
    margin-bottom: 0.5em;
  }
}
