/* Print Stylesheet */
@media print {
    /* Hide non-essential elements */
    .navbar,
    .hamburger,
    .back-to-top,
    .page-loader,
    .skip-link,
    .newsletter-form,
    .social-links,
    .footer-legal,
    .cta-section,
    .hero-btn {
        display: none !important;
    }

    /* Reset colors for print */
    body {
        background: white !important;
        color: black !important;
        font-size: 12pt;
        line-height: 1.5;
    }

    /* Optimize layout for print */
    .container {
        max-width: 100% !important;
        padding: 0 !important;
    }

    .content {
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
    }

    /* Ensure links are visible */
    a {
        color: black !important;
        text-decoration: underline !important;
    }

    a[href^="http"]:after {
        content: " (" attr(href) ")";
        font-size: 10pt;
        color: #666;
    }

    /* Page breaks */
    h1, h2, h3 {
        page-break-after: avoid;
        page-break-inside: avoid;
    }

    .feature-card,
    .service-card,
    .testimonial-card,
    .value-card {
        page-break-inside: avoid;
    }

    /* Simplify grids for print */
    .feature-grid,
    .services-grid,
    .testimonials-grid,
    .values-grid {
        display: block !important;
    }

    .feature-card,
    .service-card,
    .testimonial-card,
    .value-card {
        margin-bottom: 1rem;
        border: 1px solid #ddd;
        padding: 1rem;
    }

    /* Simplify hero section */
    .hero {
        background: white !important;
        padding: 1rem 0 !important;
        min-height: auto !important;
    }

    .hero-title,
    .hero-subtitle {
        color: black !important;
        text-shadow: none !important;
    }

    /* Footer for print */
    .footer {
        background: white !important;
        border-top: 2px solid black;
        padding: 1rem 0;
        margin-top: 2rem;
    }

    .footer p {
        color: black !important;
    }

    /* Remove animations and transitions */
    * {
        animation: none !important;
        transition: none !important;
    }
}
