/**
 * Desktop and Tablet Responsive Styles Only
 * Mobile styles moved to separate mobile.css
 */

/* ======= LARGE DEVICES (desktops, less than 1200px) ======= */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    .hero-image {
        max-width: 35%;
    }
}

/* ======= MEDIUM DEVICES (tablets, less than 992px) ======= */
@media (max-width: 991px) {
    .container {
        max-width: 720px;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .about-flex {
        flex-direction: column;
    }
    
    .about-image {
        margin-right: 0;
        margin-bottom: 2rem;
        max-width: 100%;
    }
    
    .cta-step:not(:last-child):after {
        display: none;
    }
    
    .cta-inner {
        padding: 2rem;
    }
    
    .hero-image {
        max-width: 30%;
        opacity: 0.7;
    }
}

/* ======= HIDE MOBILE ELEMENTS ON DESKTOP/TABLET ======= */
@media (min-width: 769px) {
    .mobile-toggle,
    .mobile-action-bar,
    .mobile-contact-buttons,
    .mobile-menu-contact {
        display: none !important;
    }
    
    body {
        padding-bottom: 0 !important;
    }
}

/* ======= PRINT STYLES ======= */
@media print {
    header, 
    .mobile-toggle,
    .header-cta,
    .hero-cta,
    .project-filters,
    .project-overlay,
    .testimonial-controls,
    .cta,
    .contact-form,
    .social-links,
    .mobile-action-bar,
    .mobile-contact-buttons,
    .mobile-menu-contact,
    footer {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        color: #000 !important;
        background: #fff !important;
        padding-bottom: 0 !important;
    }
    
    .container {
        max-width: 100%;
        width: 100%;
    }
    
    a {
        text-decoration: underline;
        color: #000 !important;
    }
    
    h1, h2, h3, h4, h5, h6 {
        color: #000 !important;
        page-break-after: avoid;
        page-break-inside: avoid;
    }
    
    h2:after {
        display: none;
    }
    
    img {
        max-width: 500px !important;
    }
    
    p, blockquote, ul, ol, dl, table {
        page-break-inside: avoid;
    }
}