* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background: linear-gradient(to bottom right, #e3f2fd, #f2f8ff);
  color: #333;
  padding-top: 70px; /* يعوض ارتفاع الهيدر */
}

header {
  background-color: #003143;
  padding: 14px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

h2 {
  font-size: 26px;
  color: white;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

nav ul li {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: white;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav ul li a {
  text-decoration: none;
  color: inherit;
}

nav ul li:hover {
  color: #d6ecff;
}

.arrow svg {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
  width: 12px;
  height: 12px;
  stroke: white;
}

.whatsapp {
  display: flex;
  align-items: center;
  gap: 6px;
  color: white;
}

.whatsapp svg {
  fill: currentColor;
}
.sorts {
  left: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 10px;
}
.alm-desktop-gmuwbf {
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.alm-desktop-138iozn {
  width: 100%;
  max-width: 1200px;
  margin-top: 15px;
}
.alm-desktop-1v5z18m {
  width: 300px;
}
element.style {
  display: flex
;
}
.alm-desktop-mlbw4m {
  padding: 16px;
  cursor: pointer;
  /* border-bottom: 2px solid #003143; */
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex
;
  gap: 10px;
}
.sorts .alm-desktop-mlbw4m {
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}
.hero {
  margin-top: 50px;
  margin-bottom: 50px;
  height: 70vh;
  padding: 60px 20px 120px;
  background: url('ChatGPT\ Image\ Jun\ 21\,\ 2025\,\ 02_26_50\ PM.png') center/cover no-repeat;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 45, 64, 0.7);
}
.hero-content {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.hero p {
  font-size: 1.1rem;
  color: #ddd;
}
.booking-box {
  bottom: -50%;
  z-index: 1000;
  position: relative;
  max-width: 1000px;
  background: white;
  color: black;
  margin: -60px auto 30px;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.tab-options, .trip-options {
  display: flex;
  justify-content: space-around;
  margin-bottom: 15px;
}
.tab-options div, .trip-options label {
  padding: 10px 16px;
  border-radius: 8px;
  background: #f5f5f5;
  font-weight: bold;
  cursor: pointer;
}
.tab-options .active, .trip-options input:checked + label {
  background: #004e7c;
  color: white;
}
.inputs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  margin-bottom: 20px;
}
.inputs input, .inputs select {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 0.95rem;
}
.search-btn {
  background: #f44336;
  color: white;
  border: none;
  padding: 14px 24px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.search-btn:hover {
  background: #d32f2f;
}
@media (max-width: 992px) {
  .container {
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 10px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .tab-options, .trip-options {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }

  .inputs {
    grid-template-columns: 1fr;
  }

  .booking-box {
    padding: 15px;
    margin: -40px 15px 20px;
  }

  .search-btn {
    width: 100%;
    padding: 12px;
  }
}

@media (max-width: 576px) {
  h2 {
    font-size: 20px;
  }

  .hero {
    padding: 40px 15px 80px;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .tab-options div, .trip-options label {
    font-size: 0.9rem;
    padding: 8px 12px;
  }

  .inputs input, .inputs select {
    font-size: 0.9rem;
    padding: 10px;
  }
}
@media (max-width: 768px) {
  /* إخفاء اللينكات */
  nav ul {
    display: none;
  }

  /* تصغير حجم النص في العنوان */
  h2 {
    font-size: 20px;
  }

  /* تكبير حاوية العنوان */
  .container {
    flex-direction: column;
    align-items: flex-start;
  }

  /* الحقول تحت بعض */
  .inputs {
    grid-template-columns: 1fr; /* عمود واحد */
    gap: 10px;
  }

  /* تصغير الحقول */
  .inputs input,
  .inputs select {
    font-size: 14px;
    padding: 10px;
  }

  /* تصغير زر البحث */
  .search-btn {
    width: 100%;
    padding: 12px;
    font-size: 15px;
  }

  /* تقليل البادينج في البوكس */
  .booking-box {
    margin: -30px 10px 20px;
    padding: 15px;
  }
}
