* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { overflow-x: hidden; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f7f7f8; }
::-webkit-scrollbar-thumb { background: #ff8a6a; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #ff6b4a; }

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

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Smooth transitions for all interactive elements */
a, button { transition: all 0.2s ease; }

/* Focus styles */
:focus-visible { outline: 2px solid #ff6b4a; outline-offset: 2px; }

/* Print styles */
@media print {
    nav, .mobile-menu, #contactForm { display: none; }
    .hero-gradient { background: #1e1e25 !important; }
}
