* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Cairo", sans-serif;
  background: #f8f8f8;
}

/* الأسلايدر */
.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.5);
  z-index: 5;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  z-index: 10;
}

.slide-content h3 {
  font-size: 50px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #d3a74e;
}
.slide-content p {
  font-size: 22px;
  margin-bottom: 10px;
}
.slide-content span {
  font-size: 18px;
  color: #f1f1f1;
}
.swiper-button-next,
.swiper-button-prev {
  color: #fff;
}
.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.7;
}
.swiper-pagination-bullet-active {
  background: #d3a74e;
  opacity: 1;
}

/* سكشن الباقات */
.packages-section {
  padding: 60px 20px;
  text-align: center;
}
.packages-section h2 {
  color: #d3a74e;
  margin-bottom: 40px;
  font-size: 32px;
}

.package-item {
  border-radius: 12px;
  overflow: hidden;
  height: 350px; /* ارتفاع موحد */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.package-item img,
.package-item video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* يخلي الصورة أو الفيديو تملى الكادر وتتحافظ النسب */
  display: block;
}

.section-title {
  text-align: center;
  color: #d3a74e;
  font-weight: 700;
  margin-bottom: 60px;
  font-size: 2.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  right: 50%;
  transform: translateX(50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #d3a74e, #a67c29);
  border-radius: 2px;
}

.design-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.design-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #d3a74e, #a67c29);
}

.design-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: #d3a74e;
}

.design-card h4 {
  color: #d3a74e;
  font-weight: 700;
  margin-bottom: 25px;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.design-card h4::before {
  content: "✦";
  color: #d3a74e;
  font-size: 1.2em;
}

.design-card ul {
  padding-right: 20px;
  list-style: none;
  color: #495057;
}

.design-card ul li {
  margin-bottom: 14px;
  position: relative;
  padding-right: 25px;
  font-size: 1.05rem;
  line-height: 1.5;
  transition: all 0.3s ease;
}

.design-card ul li::before {
  content: "•";
  position: absolute;
  right: 10px;
  top: 8px;
  color: #d3a74e;
  font-size: 1.2em;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.design-card:hover ul li::before {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }

  .design-card {
    padding: 20px;
  }

  .design-card h4 {
    font-size: 1.3rem;
  }

  .design-card ul li {
    font-size: 0.95rem;
  }
}

.service-hero{
  max-width: 1000px;         /* يمنع السطر يطوّل قوي */
  margin: 40px auto 28px;   /* تمركز و مسافات خارجية */
  padding: 24px 20px;       /* مسافات داخلية */
  text-align: center;
  border-radius: 16px;
}

.service-title{
  color: #d3a74e;           /* الذهبي */
  font-weight: 800;
  font-size: 32px;
  margin: 0 0 10px;
  line-height: 1.2;
  position: relative;
}

.service-title::after{
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #d3a74e, #b88730);
  margin: 10px auto 0;
  border-radius: 999px;
  opacity: .9;
}

.service-desc{
  font-size: 18px;
  color: #5e5d5d;
  font-weight: 600;
  margin: 14px auto 0;
  line-height: 1.8;
}

/* استجابة للجوال */
@media (max-width: 576px){
  .service-hero{
    margin: 24px 12px;
    padding: 18px 14px;
    border-radius: 12px;
  }
  .service-title{
    font-size: 26px;
  }
  .service-desc{
    font-size: 16px;
  }
}


.bg-white-section {
  background-color: #ffffff; 
}

.bg-gray-section {
  background-color: #f8f8f8; 
}

.section-padding {
  padding: 60px 20px;
}

@media (max-width: 576px) {
  .section-padding {
    padding: 40px 15px;
  }
}

