body {
  font-family: "Cairo", "Tajawal", sans-serif;
  background-color: #faf8f5;
  color: #2c3539;
  overflow-x: hidden;
}

.gold-gradient-text {
  background: linear-gradient(135deg, #d4b35e 0%, #c29b38 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gold-bg-gradient {
  background: linear-gradient(135deg, #c29b38 0%, #9f7c25 100%);
}

.navy-bg-gradient {
  background: linear-gradient(135deg, #2c3539 0%, #1c2326 100%);
}

.card-hover-effect {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card-hover-effect:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 30px rgba(163, 138, 116, 0.15);
}

.floating-btn {
  animation: pulse 2s infinite;
}

.img-zoom-wrapper {
  overflow: hidden;
}

.img-zoom-wrapper img {
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.img-zoom-wrapper:hover img {
  transform: scale(1.08);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f4f1ea;
}

::-webkit-scrollbar-thumb {
  background: #c5b4a3;
  border-radius: 4px;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.nav-link-custom {
  position: relative;
  transition: color 0.3s;
}

.nav-link-custom::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  right: 0;
  background-color: #a38a74;
  transition: width 0.3s ease;
}

.nav-link-custom:hover::after {
  width: 100%;
}

@media (min-width: 1024px) {
  header nav .hidden.lg\:flex {
    gap: 1.1rem !important;
    font-size: 0.9rem;
  }
}

@media (min-width: 1280px) {
  header nav .hidden.lg\:flex {
    gap: 1.35rem !important;
    font-size: 0.95rem;
  }
}

.heroSwiper .swiper-pagination {
  bottom: 25px !important;
  z-index: 30;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ffffff;
  opacity: 0.7;
  margin: 0 6px !important;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #c29b38;
  width: 24px;
  border-radius: 6px;
}

/* تنسيق موحد للأسهم في جميع الشاشات (لابتوب وجوال) */
.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
  width: 36px;
  height: 36px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  backdrop-filter: blur(4px);
}

.heroSwiper .swiper-button-next::after,
.heroSwiper .swiper-button-prev::after {
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
}
