.swiper {
  width: 100%;
  height: 100vh;
}

.swiper-slide {
  position: relative;
  background-size: cover;
  background-position: center;
}

/* طبقة التعتيم */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 5;
}

/* النص في المنتصف */
.slide-content {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  z-index: 10;
}

.slide-content h3 {
  font-size: 60px;
  margin-bottom: 15px;
  font-weight: bold;
  color: #d3a74e;
}

.slide-content p {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 600;
}

.slide-content span {
  font-size: 20px;
  line-height: 1.8;
  color: #f1f1f1;
  display: block;
  margin-bottom: 25px;
}

.slide-content a:hover {
  background: #b88730;
  transform: translateY(-3px);
}

/* أزرار Swiper */
.swiper-button-next,
.swiper-button-prev {
  color: #fff;
}

/* نقاط المؤشر */
.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.7;
}

.swiper-pagination-bullet-active {
  background: #d3a74e;
  opacity: 1;
}

.faq-section {
  padding: 60px 0;
}

.faq-title {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #d3a74e;
}

.accordion-button {
  font-weight: bold;
}

.accordion-button:not(.collapsed) {
  background-color: #d3a74e;
  color: #fff;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  background-color: #fff;
  font-size: 16px;
  line-height: 1.8;
}
.accordion-button::after {
  margin-right: auto !important;
  margin-left: 0 !important;
}
.accordion-item {
  margin-bottom: 20px;
}

      /* خلفية داكنة */
      .offer-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9998;
      }

      /* الصندوق */
      .offer-popup {
        background: #fff;
        max-width: 400px;
        width: 90%;
        border-radius: 12px;
        overflow: hidden;
        position: relative;
        animation: fadeIn 0.4s ease;
      }

      /* صورة العرض */
      .offer-popup img {
        width: 100%;
        height: auto;
        display: block;
      }

      /* محتوى النص */
      .offer-content {
        padding: 20px;
        text-align: center;
      }

      .offer-content h3 {
        margin-bottom: 10px;
        color: #d3a74e;
      }

      .offer-content p {
        font-size: 16px;
        color: #333;
        line-height: 1.6;
      }

      /* زر الإغلاق */
      .close-offer {
        position: absolute;
        top: 10px;
        left: 10px;
        background: transparent;
        border: none;
        font-size: 22px;
        color: #333;
        cursor: pointer;
      }

      @keyframes fadeIn {
        from {
          opacity: 0;
          transform: scale(0.9);
        }
        to {
          opacity: 1;
          transform: scale(1);
        }
      }
