/* ====================== Reset + Base ====================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Arial', sans-serif;
  direction: rtl;
  background: #f7f9fc;
  color: #333;
}

/* ====================== Responsive Base ====================== */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 10px;
  }

  .swiper {
    width: 100%;
  }
}