/* Wrapper */
.moit-sec-slider-wrapper {
  position: relative;
  max-width: 1400px;
  margin: 10px auto 0;
  padding: 15px 10px;
}

/* Desktop */
.moit-sec-slider-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

/* Card */
.moit-sec-card {
  background: #fff;
  border-radius: 16px;
  padding: 14px;
  border: 1px solid #eee;
  position: relative;
  transition: all 0.3s ease;

  opacity: 0;
  transform: translateY(40px);
}

.moit-sec-card.show {
  opacity: 1;
  transform: translateY(0);
}

.moit-sec-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Icon */
.moit-sec-icon {
  width: 42px;
  height: 42px;
  background: #1f8f8b;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.moit-sec-icon svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

/* Text */
.moit-sec-card h3 {
  font-size: 15px;
  margin-bottom: 4px;
}

.moit-sec-card p {
  font-size: 12px;
  color: #777;
  margin: 0;
}

/* Overlay */
.moit-sec-overlay {
  position: absolute;
  inset: 0;
  background: rgba(31,143,139,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  border-radius: 16px;
  transition: opacity 0.3s ease;
}

/* hover فقط للديسكتوب */
@media (hover: hover) {
  .moit-sec-card:hover .moit-sec-overlay {
    opacity: 1;
  }
}

/* زر */
.moit-sec-btn-link {
  background: #fff;
  color: #1f8f8b;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  text-decoration: none;
}

/* Dots */
.moit-sec-dots {
  display: none;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}

.moit-sec-dots span {
  width: 6px;
  height: 6px;
  background: #ccc;
  border-radius: 50%;
  display: inline-block;
  font-size: 0;
  transition: all 0.3s ease;
}

.moit-sec-dots span.active {
  background: #1f8f8b;
  transform: scale(1.4);
}

/* Mobile */
@media (max-width: 768px) {

  .moit-sec-slider-inner {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    position: relative;
  }

  .moit-sec-slider-track {
    display: flex;
    gap: 0;
  }

  .moit-sec-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
    border-radius: 12px;
  }

  .moit-sec-dots {
    display: flex;
  }

  /* 🔥 مؤشر السحب (مهم جدًا) */
  .moit-sec-slider-inner::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 100%;
    background: linear-gradient(to right, #fff, transparent);
  }

}

.moit-sec-dots span {
  font-size: 0; /* 🔥 يخفي النقطة */
}

.moit-sec-dots {
  display: none;
}

@media (max-width: 768px) {
  .moit-sec-dots {
    display: flex;
  }
}


.moit-sec-slider-inner {
  overflow-x: auto;
  overflow-y: hidden; /* 🔥 يمنع الشريط العمودي */
}



/*===============================
        صندوق اتصل بنا في تذليل الموقع  
================================= */

.moit-contact-footer {
  backdrop-filter: blur(6px);
}

/* العنوان */
.moit-contact-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff; /* 🔥 أبيض كما طلبت */
  margin-bottom: 18px;
  position: relative;
}

.moit-contact-title::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #1f8f8b;
  display: block;
  margin-top: 6px;
  border-radius: 2px;
}

/* العنصر */
.moit-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

/* الأيقونة */
.moit-contact-icon {
  width: 38px;
  height: 38px;
  background: rgba(31,143,139,0.15);
  border: 1px solid rgba(31,143,139,0.3);
  border-radius: 10px;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.moit-contact-icon svg {
  width: 18px;
  height: 18px;
  fill: #2fb5b0;
}

/* النص */
.moit-contact-text span {
  display: block;
  font-size: 12px;
  color: #9fbcbc;
  margin-bottom: 2px;
}

.moit-contact-text p {
  margin: 0;
  font-size: 14px;
  color: #ffffff;
  line-height: 1.6;
}

/* الروابط */
.moit-contact-text a {
  color: #2fb5b0;
  text-decoration: none;
}

.moit-contact-text a:hover {
  text-decoration: underline;
}

.moit-contact-footer:hover {
  border-color: rgba(31,143,139,0.5);
}

/* موبايل */
@media (max-width: 768px) {
  .moit-contact-footer {
    padding: 18px;
  }
}