/* ============================================
   PRINT STYLES - A4 FORMAT
   ============================================ */

@page {
    size: A4 portrait;
    margin: 20mm;
}

@media print {
    /* Reset */
    * {
        background: transparent !important;
        color: black !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }
    
    /* Hide Interactive Elements */
    .loading-screen,
    .scroll-progress,
    .theme-switcher,
    .floating-whatsapp,
    .mobile-menu-toggle,
    .scroll-indicator,
    .hero-cta,
    .portfolio-filters,
    .slider-controls,
    .back-to-top,
    nav,
    button,
    .btn,
    video,
    audio,
    iframe {
        display: none !important;
    }
    
    /* Page Breaks */
    section {
        page-break-inside: avoid;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
    
    img {
        page-break-inside: avoid;
    }
    
    /* Typography */
    body {
        font-size: 12pt;
        line-height: 1.6;
    }
    
    h1 { font-size: 24pt; }
    h2 { font-size: 20pt; }
    h3 { font-size: 16pt; }
    h4 { font-size: 14pt; }
    
    /* Links */
    a {
        text-decoration: underline;
    }
    
    a[href]:after {
        content: " (" attr(href) ")";
        font-size: 10pt;
    }
    
    /* Header */
    .main-header {
        position: static;
        box-shadow: none;
        border-bottom: 2px solid #333;
        padding: 10mm 0;
    }
    
    .company-name {
        font-size: 18pt !important;
    }
    
    /* Content */
    .container {
        max-width: 100%;
        padding: 0;
    }
    
    .section-padding {
        padding: 10mm 0;
    }
    
    /* Cards */
    .about-card,
    .service-card,
    .value-card,
    .portfolio-item,
    .team-card {
        border: 1px solid #ccc;
        page-break-inside: avoid;
        margin-bottom: 5mm;
    }
    
    /* Footer */
    .main-footer {
        border-top: 2px solid #333;
        padding-top: 5mm;
    }
    
    /* Page Numbers */
    @page {
        @bottom-right {
            content: counter(page) " of " counter(pages);
        }
    }
    
    /* Company Branding on Each Page */
    .main-header::after {
        content: "Bits & Bytes Associates | www.bsquare.tech";
        display: block;
        text-align: center;
        font-size: 10pt;
        margin-top: 5mm;
        color: #666;
    }
}
