/* Additional custom styles */

/* Smooth scroll offset for fixed nav */
section[id] {
    scroll-margin-top: 80px;
}

/* Custom focus styles */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid #C0573E;
    outline-offset: 2px;
}

/* Loading state for buttons */
.btn-primary:active {
    transform: translateY(0) scale(0.98);
}

/* Image loading placeholder */
img {
    background: linear-gradient(135deg, #222222 0%, #1A1A1A 100%);
}

/* Print styles */
@media print {
    nav, .hamburger, #mobileMenu, .cta-section {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: #333 !important;
    }
    
    .service-card {
        border: 1px solid #ddd !important;
        box-shadow: none !important;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .fade-in,
    .fade-in-left,
    .fade-in-right {
        opacity: 1;
        transform: none;
    }
}
