/* ==========================================================================
   Reset & Baseline Styles
   شركة الكوادر العاملة للتشغيل والصيانة
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.75;
  overflow-x: hidden;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast, 0.2s ease);
}

ul,
ol {
  list-style: none;
}

/* Accessibility: Focus visible outline */
:focus-visible {
  outline: 2px solid var(--gold, #c7953e);
  outline-offset: 3px;
}

/* Accessibility: Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  right: 20px;
  z-index: 9999;
  background: var(--navy, #0b2038);
  color: var(--white, #ffffff);
  padding: 12px 20px;
  border-radius: var(--radius-sm, 8px);
  font-weight: 700;
  font-size: 14px;
  transition: top 0.25s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.skip-link:focus {
  top: 15px;
}

/* Respect user preferences for reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
