/* =============================================
   K-ACTUS - Print Stylesheet
   ============================================== */

@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;
    }

    /* Hide non-essential elements */
    #navbar,
    #mobile-menu,
    #contact-form,
    .scroll-indicator,
    .float-animation,
    footer nav,
    button,
    [aria-hidden="true"] {
        display: none !important;
    }

    /* Show URLs after links */
    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        color: #666 !important;
    }

    a[href^="#"]::after,
    a[href^="javascript:"]::after {
        content: "";
    }

    /* Page breaks */
    h1, h2, h3 {
        page-break-after: avoid;
        orphans: 3;
        widows: 3;
    }

    section {
        page-break-inside: avoid;
    }

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

    /* Ensure readable pricing */
    .grid {
        display: block !important;
    }

    .grid > * {
        margin-bottom: 1rem;
        border: 1px solid #ccc !important;
        padding: 1rem !important;
    }
}
