/* ========================================
   توسيط النص عمودياً - موبايل فقط
======================================== */

/* Desktop - يبقى كما هو بدون تغيير */
.hero-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 40px;
}

.service-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 25px 20px;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: var(--transition);
}

.service-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--royal-gold);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--royal-gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex-shrink: 0;
}

.service-text {
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  margin: 0;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* ========================================
   Mobile فقط - مع توسيط عمودي
======================================== */

@media (max-width: 768px) {
  .hero-services {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    margin-bottom: 20px !important;
  }

  .service-item {
    width: 100% !important;
    height: 75px !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    align-items: center !important; /* توسيط عمودي */
    text-align: right !important;
    padding: 12px 15px !important;
    gap: 15px !important;
  }

  .service-icon {
    width: 45px !important;
    height: 45px !important;
    min-width: 45px !important;
    flex-shrink: 0 !important;
    font-size: 1.1rem !important;
    margin: 0 !important;
    background-color: #ffffff !important;
    border-radius: 50% !important;
    color: #c5a059 !important;
  }

  .service-icon i {
    color: #c5a059 !important;
  }

  .service-text {
    font-size: 0.95rem !important;
    text-align: right !important;
    line-height: 1.5 !important;
    padding: 0 !important;
    margin: 0 !important;
    flex: 1 !important;
    justify-content: flex-start !important;
  }
}

@media (max-width: 480px) {
  .service-item {
    height: 70px !important;
    padding: 10px 12px !important;
    gap: 12px !important;
  }
  
  .service-icon {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    font-size: 1rem !important;
  }
  
  .service-text {
    font-size: 0.88rem !important;
    line-height: 1.4 !important;
  }
}























/* ========================================
   Desktop - 4 بطاقات في صف واحد
======================================== */

.hero-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 أعمدة */
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.service-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 25px 20px;
  height: 200px; /* ارتفاع ثابت */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: var(--transition);
}

.service-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--royal-gold);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--royal-gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex-shrink: 0;
}

.service-text {
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  margin: 0;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* ========================================
   Tablet - عمودين
======================================== */

@media (max-width: 1024px) and (min-width: 769px) {
  .hero-services {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========================================
   Mobile - الموبايل يبقى كما هو (لا تلمسه)
======================================== */

@media (max-width: 768px) {
  .hero-services {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    margin-bottom: 20px !important;
  }

  .service-item {
    width: 100% !important;
    height: 75px !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    align-items: center !important;
    text-align: right !important;
    padding: 12px 15px !important;
    gap: 15px !important;
  }

  .service-icon {
    width: 45px !important;
    height: 45px !important;
    min-width: 45px !important;
    flex-shrink: 0 !important;
    font-size: 1.1rem !important;
    margin: 0 !important;
    background-color: #ffffff !important;
    border-radius: 50% !important;
    color: #c5a059 !important;
  }

  .service-icon i {
    color: #c5a059 !important;
  }

  .service-text {
    font-size: 0.95rem !important;
    text-align: right !important;
    line-height: 1.5 !important;
    padding: 0 !important;
    margin: 0 !important;
    flex: 1 !important;
    justify-content: flex-start !important;
  }
}

@media (max-width: 480px) {
  .service-item {
    height: 70px !important;
    padding: 10px 12px !important;
    gap: 12px !important;
  }
  
  .service-icon {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    font-size: 1rem !important;
  }
  
  .service-text {
    font-size: 0.88rem !important;
    line-height: 1.4 !important;
  }
}











/* ========================================
   Desktop - 4 بطاقات في صف واحد
======================================== */

.hero-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 أعمدة */
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.service-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 25px 20px;
  height: 200px; /* ارتفاع ثابت */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: var(--transition);
}

.service-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--royal-gold);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--royal-gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex-shrink: 0;
}

.service-text {
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  margin: 0;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* ========================================
   Tablet - عمودين
======================================== */

@media (max-width: 1024px) and (min-width: 769px) {
  .hero-services {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========================================
   Mobile - الموبايل يبقى كما هو (لا تلمسه)
======================================== */

@media (max-width: 768px) {
  .hero-services {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    margin-bottom: 20px !important;
  }

  .service-item {
    width: 100% !important;
    height: 75px !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    align-items: center !important;
    text-align: right !important;
    padding: 12px 15px !important;
    gap: 15px !important;
  }

  .service-icon {
    width: 45px !important;
    height: 45px !important;
    min-width: 45px !important;
    flex-shrink: 0 !important;
    font-size: 1.1rem !important;
    margin: 0 !important;
    background-color: #ffffff !important;
    border-radius: 50% !important;
    color: #c5a059 !important;
  }

  .service-icon i {
    color: #c5a059 !important;
  }

  .service-text {
    font-size: 0.95rem !important;
    text-align: right !important;
    line-height: 1.5 !important;
    padding: 0 !important;
    margin: 0 !important;
    flex: 1 !important;
    justify-content: flex-start !important;
  }
}

@media (max-width: 480px) {
  .service-item {
    height: 70px !important;
    padding: 10px 12px !important;
    gap: 12px !important;
  }
  
  .service-icon {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    font-size: 1rem !important;
  }
  
  .service-text {
    font-size: 0.88rem !important;
    line-height: 1.4 !important;
  }
}















.related-posts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-posts li {
    margin-bottom: 12px;
}

.related-posts a {
    display: block;
    color: #667eea;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.related-posts a:hover {
    color: #764ba2;
    padding-left: 10px;
    border-bottom-color: #667eea;
}

.related-posts a:last-child {
    border-bottom: none;
    margin-bottom: 0;
}




h3 {
    font-size: 1.1rem !important;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
    white-space: nowrap;
    line-height: 1.2;
}

.related-posts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-posts li {
    margin-bottom: 12px;
}

.related-posts a {
    display: block;
    color: #667eea;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.related-posts a:hover {
    color: #764ba2;
    padding-left: 10px;
    border-bottom-color: #667eea;
}

.related-posts a:last-child {
    border-bottom: none;
    margin-bottom: 0;
}




















