/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #fdf9f3;
}

::-webkit-scrollbar-thumb {
    background: #d4915c;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b5563e;
}

/* Selection */
::selection {
    background-color: #c07053;
    color: white;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .fade-in-up {
        opacity: 1;
        transform: none;
        transition: none;
    }
    
    .service-card {
        transition: none;
    }
    
    .service-card:hover {
        transform: none;
    }
    
    .btn-primary {
        transition: none;
    }
    
    .btn-primary:hover {
        transform: none;
        box-shadow: none;
    }
    
    .img-zoom {
        transition: none;
    }
}
