/* Add custom CSS styles below */
  .faq-section {
  padding: 60px 20px;
  background: #fefefe;
  direction: rtl;
  font-family: 'Tajawal', sans-serif;
}

.faq-section .container {
  max-width: 900px;
  margin: auto;
}

.faq-title {
  font-size: 28px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 10px;
}

.faq-subtitle {
  text-align: center;
  color: #666;
  font-size: 16px;
  margin-bottom: 40px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 15px;
}

.faq-question {
  width: 100%;
  text-align: right;
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 500;
  padding: 15px 0;
  cursor: pointer;
  color: #222;
  position: relative;
}

.faq-question::after {
  content: "▼";
  position: absolute;
  left: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  font-size: 15px;
  color: #444;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 1;
  padding: 10px 0 20px;
}

  .floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatUpDown 2s ease-in-out infinite;
    transition: transform 0.3s ease;
  }

  .floating-whatsapp:hover {
    transform: scale(1.1);
  }

  .floating-whatsapp img {
    width: 30px;
    height: 30px;
  }

  @keyframes floatUpDown {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-6px);
    }
  }

  @media (max-width: 767px) {
    .floating-whatsapp {
      width: 50px;
      height: 50px;
    }

    .floating-whatsapp img {
      width: 24px;
      height: 24px;
    }
  }
 .custom-dual-images {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
  }

  .custom-dual-images a {
    flex: 1;
    display: block;
  }

.custom-dual-images img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .custom-dual-images img:hover {
    transform: scale(1.05);
  }

  @media (max-width: 767px) {
    .custom-dual-images {
      flex-direction: column;
    }

    .custom-dual-images a + a {
      margin-top: 15px;
    }
  }
.footer-container {
  background-color: #26143d;
  color: #fff;
  direction: rtl;
  padding: 50px 40px 30px;
  font-family: 'Tajawal', sans-serif;
  width: 100%;
}

.footer-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 أعمدة */
  gap: 40px; /* مسافة بين الأعمدة */
  text-align: center;
}

.footer-column {
  padding: 0 10px;
  box-sizing: border-box;
}

.footer-column h4 {
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 18px;
  color: #bb9166;
}

.footer-column img {
  display: block;
  margin: 0 auto 10px auto;
  max-width: 200px;
  height: auto;
}

/* شاشات التابلت */
@media (max-width: 1024px) {
  .footer-columns {
    grid-template-columns: repeat(2, 1fr); /* عمودين */
  }
}

/* شاشات الموبايل */
@media (max-width: 600px) {
  .footer-columns {
    grid-template-columns: 1fr; /* عمود واحد */
  }
}