


#companyName {
  color: #dbae34;
  all: unset;                 /* شطب أي أنماط موروثة */
  display: inline;
  font-size: 28px;
  font-weight: 700;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent; /* منع تمييز اللمس على الموبايل */
  user-select: none;
}
#companyName::before, #companyName::after { content: none !important; }

#companyName .GOLDEN-text {
  color: #efb730; /* اللون الذهبي */
  font-weight: bold;
}


/* ------------------------------------- */
/* 🎨 المتغيرات العامة للألوان والتحولات */
/* ------------------------------------- */
:root {
  --primary: #101010;               /* اللون الأساسي */
  --secondary: #efb730;             /* اللون الثانوي */
  --accent: #e74c3c;                /* لون إضافي (للتأكيد أو التنبيه) */
  --whatsapp-green: #25D366;       /* لون واتساب */
  --silver: #C0C0C0;                /* اللون الفضي المستخدم للأرقام */
  --light: #ecf0f1;                 /* لون خلفية فاتح */
  --dark: #2c3e50;                 /* لون غامق للنصوص */
  --text: #333;                     /* اللون الافتراضي للنص */
  /* --transition: all 0.3s ease;      التحول القياسي */
  --transition: all 0.5s cubic-bezier(0.65, 0, 0.35, 1);  /* حركة انتقال سلسة */

}

/* ------------------------------------- */
/* 📞 قسم التواصل (معلومات + النموذج) */
/* ------------------------------------- */

.contact-section {
  padding: 3rem 0;
  background-color: #f9f9f9;
}

/* حاوية رئيسية للمحتوى داخل قسم التواصل */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* الصندوق الذي يحتوي على معلومات التواصل */
.contact-info,
.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* عنصر مفرد في قائمة معلومات التواصل */
.contact-item {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

/* أيقونة التواصل */
.contact-icon {
  color: var(--primary);
  font-size: 1.2rem;
  margin-top: 3px;
}

/* روابط الهاتف */
.phone-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.phone-line {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* حاوية لروابط الهاتف */
.phone-link-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* روابط الاتصال العامة */
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 6px;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}

/* تأثير عند تمرير الفأرة على رابط الخريطة */
.map-link:hover {
  background-color: rgba(66, 133, 244, 0.1);
  color: #4285F4;
}

/* زر الاتصال عبر الهاتف */
.phone-link {
  background-color: rgba(46, 204, 113, 0.1);
  color: var(--secondary);
  flex-grow: 1;
}

.phone-link:hover {
  background-color: rgba(46, 204, 113, 0.2);
}

/* زر واتساب */
.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 6px;
  background-color: rgba(37, 211, 102, 0.1);
  color: var(--whatsapp-green);
  text-decoration: none;
  transition: var(--transition);
}

.whatsapp-btn:hover {
  background-color: rgba(37, 211, 102, 0.2);
}

/* أيقونة واتساب */
.whatsapp-icon {
  color: var(--whatsapp-green);
}

/* نص واتساب */
.whatsapp-label {
  color: var(--whatsapp-green);
  font-size: 0.9rem;
}

/* تنسيق رقم الهاتف */
.phone-number {
  color: var(--silver);
  direction: ltr;
}

/* عند تمرير الفأرة على رابط البريد */
.email-link:hover {
  background-color: rgba(234, 67, 53, 0.1);
  color: #EA4335;
}

/* ------------------------------------- */
/* ✍️ نموذج التواصل */
/* ------------------------------------- */

/* تجميع الحقول */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

/* الحقول النصية */
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* تأثير عند التركيز على الحقل */
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

/* زر إرسال النموذج */
#formSubmitBtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
}

#formSubmitBtn:hover {
  background-color: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* ------------------------------------- */
/* 📱 استجابة الهواتف المحمولة */
/* ------------------------------------- */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .phone-link-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .contact-link, 
  .whatsapp-btn {
    width: 100%;
    justify-content: space-between;
  }
}



















/* إعادة ضبط كاملة لرابط الشعار */
#companyName {
  all: unset;                /* إزالة كل الخصائص الموروثة أو الافتراضية */
  display: inline;           /* رجوع لسلوك النص */
  font-size: 28px;            /* إعادة تحديد الحجم */
  font-weight: bold;          /* سمك الخط لو تريده */
  cursor: pointer;            /* شكل المؤشر */
  color: inherit;             /* نفس لون النص المحيط */
}

/* منع أي تأثير عند الضغط أو التحديد */
#companyName:active,
#companyName:focus,
#companyName:hover {
  all: unset;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: inherit;
}

/* إلغاء أي عناصر وهمية على الرابط */
#companyName::before,
#companyName::after {
  content: none !important;
}

#companyName {
  -webkit-tap-highlight-color: transparent;
}


/* ------------------------------------------------ */
/* 🧑‍💼 قسم من نحن - معلومات عن الشركة أو الفريق */
/* ------------------------------------------------ */

.about-section {
  padding: 80px 5%;
  background-color: #FFF;
}

/* حاوية المحتوى */
.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

/* النصوص */
.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* الإحصائيات */
.about-stats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.stat {
  flex: 1;
  text-align: center;
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: var(--transition);
}

.stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.stat h3 {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 10px;
}

.stat p {
  font-weight: 600;
  color: var(--primary);
}

/* صورة تعريفية */
.about-img {
  flex: 1;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?...');
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}






































/* ------------------------------------------ */
/* 🗺️ قسم الخريطة - عرض مواقع الفروع أو المقر */
/* ------------------------------------------ */

.map-section {
  padding: 80px 5%;
  background-color: #f8f9fa; /* لون الخلفية */
}

/* حاوية الخريطة *//* حاوية الخريطة */
.map-container {
  position: relative;
  margin: 25px auto;         /* تقليل طفيف في الهوامش */
  max-width: 1000px;         /* تقليل العرض من 1400px إلى 1000px */
  box-shadow: 0 4px 12px rgba(0,0,0,0.1); /* ظل أخف قليلاً */
  border-radius: 10px;
  overflow: hidden;
}


/* صندوق شرح الرموز داخل الخريطة */
.map-legend {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: white;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  z-index: 1000;
}

/* كل عنصر في مفتاح الخريطة */
.legend-item {
  display: flex;
  align-items: center;
  margin: 8px 0;
}

/* أيقونة الرمز داخل المفتاح */
.legend-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-left: 10px;
}

/* ملاحظة نصية أسفل الخريطة */
.map-note {
  text-align: center;
  margin-top: 20px;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-note i {
  color: var(--secondary);
  margin-left: 10px;
}

/* استجابة لقسم الخريطة على الجوال */
@media (max-width: 768px) {
  #reyhanliMap {
    height: 500px !important;
  }

  .map-legend {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 15px;
  }
}

/* تصميم العلامة المخصصة (Marker) */
.custom-marker {
  background: white;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* تنسيق محتوى النوافذ المنبثقة على الخريطة */
.leaflet-popup-content {
  text-align: right;
  font-family: 'Tajawal', sans-serif;
  min-width: 250px;
}

.leaflet-popup-content a {
  color: var(--secondary);
  text-decoration: none;
  font-weight: bold;
}

.leaflet-popup-content i {
  margin-left: 5px;
}

/* ------------------------------------------ */
/* 🔄 إعادة تعيين الأنماط الافتراضية للمتصفح */
/* ------------------------------------------ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Tajawal', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
  scroll-behavior: smooth; /* سلاسة التمرير */
}

body {
  background-color: #f8f9fa;
  color: var(--text);
  line-height: 1.6;
}

/* دعم اتجاه RTL و LTR */
body[dir="rtl"] {
  text-align: right;
}

body[dir="ltr"] {
  text-align: left;
}














section {
  scroll-margin-top: 100px; /* أو حسب ارتفاع الهيدر */
}




/* -------------------------- */
/* 🧭 أنماط الهيدر (الشريط العلوي) */
/* -------------------------- */

header {
  background-color: white;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 0 5%;
  transition: var(--transition);
}

/* حالة الهيدر عند التمرير */
header.scrolled {
  background-color: rgba(255,255,255,0.95);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* حاوية عناصر الهيدر */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  flex-wrap: wrap; /* يفضل الإبقاء عليه لمنع كسر التصميم في الشاشات الصغيرة */
}

/* الشعار */
.logo {
  display: flex;
  align-items: center;
    gap: 10px;
}

.logo img {
      height: 60px;
    margin-left: 2px;
    margin-top: 5px;
}

.logo h1 {
  font-size: 1.8rem;
  color: var(--secondary);
  font-weight: 700;
}

.logo span {
  color: var(--secondary);
}

/* روابط التنقل */
.nav-links {
  display: flex;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  margin: 0 15px;
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--secondary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

/* زر تغيير اللغة */
.languages {
  display: flex;
  margin-left: 20px;
}

.languages button {
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 4px;
  transition: var(--transition);
}

.languages button:hover {
  background-color: var(--light);
}

.languages button.active {
  background-color: var(--secondary);
  color: white;
}
















/* -------------------------- */
/* 🎞️ سلايدر العرض الرئيسي */
/* -------------------------- */



/* تنسيقات الموجات مع محتوى السلايدر */
.wave-header {
  
  position:relative;
  text-align:center;
  background: linear-gradient(60deg, var(--primary) 0%, var(--secondary) 100%);
  color:white;
  margin-top: 0px;
}

.wave-inner-header {
  height:65vh;
  width:100%;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.wave-slide-content {
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
  z-index: 2;
}

.wave-slide-content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.wave-slide-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.waves {
  position:relative;
  width: 100%;
  height:15vh;
  margin-bottom:-9px;
  min-height:100px;
  max-height:150px;
}

/* تأثيرات الحركة */
.parallax > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}
@keyframes move-forever {
  0% {
    transform: translate3d(-90px,0,0);
  }
  100% { 
    transform: translate3d(85px,0,0);
  }
}

/* التكيف مع الشاشات الصغيرة */
@media (max-width: 768px) {
  .waves {
    height:40px;
    min-height:40px;
  }
  .wave-slide-content h2 {
    font-size: 2rem;
  }
  .wave-slide-content p {
    font-size: 1rem;
  }
}









































































/* زر داخل الشريحة */
.btn {
  display: inline-block;
  background-color: var(--secondary);
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
  justify-self: center;
}

.btn:hover {
  background-color: #2980b9;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255,255,255,0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}

.btn:hover::after {
  animation: ripple 1s ease-out;
}

/* تأثير تموج الزر */
@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 1;
  }
  100% {
    transform: scale(20, 20);
    opacity: 0;
  }
}















/* ------------------------------------------ */
/* 🛍️ قسم المنتجات - عرض البطاقات أو الخدمات */
/* ------------------------------------------ */

.products-section {
  background-color: white;
  position: relative;
}

/* عنوان القسم */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary);
  position: relative;
  display: inline-block;
  padding: 15px 0;
}

/* الخط السفلي تحت العنوان */
.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--secondary);
  border-radius: 2px;
}

/* حاوية كل المنتجات */
.products-container {
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

/* بطاقة المنتج الفردية */
.product {
  width: 322px;
  height: 400px;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  position: relative;
  transition: var(--transition);
  perspective: 1000px; /* تأثير ثلاثي الأبعاد */
  transform-style: preserve-3d;
}

/* تأثير التحويم على البطاقة */
.product:hover {
  transform: translateY(-10px) rotateY(10deg) scale(1.03);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* صورة المنتج */
.product-img {
  width: 100%;
  height: 200px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #f8f9fa;
}

/* قسم العناوين الداخلية - مثلاً قائمة الباقات */
.paketlist {
  margin-top: 80px;
}

/* محتوى نصي داخل البطاقة */
.product-content {
  padding: 20px;
  text-align: center;
}

/* عنوان المنتج */
.product h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--primary);
}

/* وصف المنتج */
.product p {
  font-size: 0.9rem;
  color: #666;
  padding-bottom: 30px;
}













/*

/* --------------------------------------------------------- */
/* 🎁 قسم الباقات - لعرض عروض أو خطط التسعير في شكل بطاقات */
/* --------------------------------------------------------- */

.paket-section {
  padding: 80px 5%;
  background-color: #f8f9fa;
}

/* حاوية البطاقات */
.paket-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* تصميم بطاقة الباقة الفردية */
.paket-item {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 350px;
  position: relative;
  transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
  border: 2px solid var(--secondary);
}

/* تأثير التحويم على البطاقة */
.paket-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* رأس البطاقة - عنوان وخلفية ملونة */
.paket-header {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  text-align: center;
  padding: 25px 20px;
}

.paket-header h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

/* السعر */
.paket-price {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 15px 0;
}

.paket-price span {
  font-size: 1.2rem;
  font-weight: normal;
}

/* قائمة الخصائص */
.paket-features {
  padding: 25px;
  padding-left: 10px;
}


.internetFeature1{
  padding: 20px;

}

.paket-features ul {
  list-style: none;
  padding: 10px;
}

.paket-features li {
  padding: 10px 0;
  border-bottom: 1px dashed #eee;
  display: flex;
  align-items: center;
}

.paket-features li:last-child {
  border-bottom: none;
}

.paket-features li i {
  color: var(--secondary);
  margin-left: 10px;
  font-size: 1.2rem;
}

/* زر الطلب أو التسجيل */
.paket-action {
  padding: 0 25px 25px;
  text-align: center;
}

.paket-action .btn {
  width: 100%;
  background-color: var(--primary);
  padding: 15px;
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.paket-action .btn i {
  margin-left: 10px;
}

/* عنوان إضافي ضمن المحتوى */
.product-content h4 {
  width: 80%;
  background-color: var(--primary);
  padding: 4px;
  font-size: 1.2rem;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

















/* --------------------------------------------- */
/* 📞 قسم التواصل - يحتوي على معلومات ونموذج */
/* --------------------------------------------- */

.contact-section {
  padding: 80px 5%;
  background-color: white;
}

/* حاوية القسم */
.contact-container {
  display: flex;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

/* معلومات التواصل */
.contact-info {
  flex: 1;
}

.contact-info h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 30px;
}

/* عنصر فردي للمعلومة */
.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

/* أيقونة */
.contact-icon {
  background-color: var(--secondary);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  margin-left: 15px;
  flex-shrink: 0;
}

/* تفاصيل التواصل */
.contact-details h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: var(--primary);
}

.contact-details p {
  color: #666;
}

/* نموذج التواصل */
.contact-form {
  flex: 1;
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-form h3 {
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: var(--primary);
}

/* مجموعة حقل */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--primary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--secondary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

/* حقل النص */
.form-group textarea {
  height: 150px;
  resize: vertical;
}















/* ---------------------------------------------- */
/* 🦶 أنماط الفوتر - القسم الختامي للموقع */
/* ---------------------------------------------- */

footer {
  background: linear-gradient(135deg, var(--primary), #000); /* خلفية متدرجة */
  color: white;
  padding: 40px 5% 20px;
}

/* حاوية المحتوى داخل الفوتر */
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* الشعار والنص التعريفي */
.footer-logo {
  flex: 1;
  min-width: 250px;
}

.footer-logo h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.footer-logo p {
  color: #ddd;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* روابط التواصل الاجتماعي */
.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--secondary);
  transform: translateY(-5px);
}

/* روابط الصفحات داخل الفوتر */
.footer-links {
  flex: 1;
  min-width: 200px;
}

.footer-links h4 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--secondary);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  transition: var(--transition);
  display: block;
}

.footer-links a:hover {
  color: var(--secondary);
  padding-right: 5px;
}

/* حقوق النشر أسفل الفوتر */
.copyright {
  text-align: center;
  margin-top: 30px;
  padding-top: 30px;
  color: #aaa;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}















/* --------------------------------------------- */
/* ❓ أنماط قسم الأسئلة الشائعة (FAQ Section) */
/* --------------------------------------------- */

.faq-section {
  padding: 80px 5%;
  background-color: #f8f9fa; /* لون خلفية القسم */
}

/* حاوية عناصر الأسئلة */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

/* عنصر سؤال واحد */
.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: white;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* رأس السؤال */
.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background-color: #f5f5f5; /* تأثير عند التمرير */
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--primary);
}

/* رمز السهم أو الإيقونة */
.faq-question i {
  transition: var(--transition);
}

/* محتوى الإجابة - مخفي بشكل افتراضي */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: var(--transition);
}

/* عند تفعيل السؤال (فتح الإجابة) */
.faq-item.active .faq-answer {
  max-height: 200px; /* يمكن تعديل الارتفاع حسب طول الإجابة */
  padding: 0 20px 20px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg); /* تدوير السهم */
}





















/* ======================================================= */
/* 👤 قسم آراء العملاء (Testimonials Section)             */
/* ======================================================= */

.testimonials-section {
  padding: 80px 5%;
  background-color: white;
}

/* حاوية بطاقات الآراء */
.testimonials-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

/* بطاقة رأي واحدة */
.testimonial {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  padding: 30px;
  max-width: 350px;
  transition: var(--transition);
}

/* تأثير عند التحويم */
.testimonial:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* محتوى النص */
.testimonial-content {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

/* خط فاصل أسفل النص */
.testimonial-content::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--secondary);
}

.testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  font-style: italic;
}

/* معلومات الكاتب */
.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-left: 15px;
  border: 3px solid var(--secondary);
}

.testimonial-author h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--primary);
}

.testimonial-author p {
  font-size: 0.9rem;
  color: #777;
}











/* ======================================================= */
/* 🔝 زر الرجوع إلى أعلى الصفحة                            */
/* ======================================================= */

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--secondary);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none; /* افتراضيًا مخفي */
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: var(--transition);
  z-index: 999;
}

.back-to-top:hover {
  background-color: var(--primary);
  transform: translateY(-5px);
}

/* عند تفعيل الزر */
.back-to-top.show {
  display: flex;
}

/* ======================================================= */
/* 🌀 تأثيرات الانتقال عند الظهور (scroll animations)     */
/* ======================================================= */

section {
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(30px); /* يظهر تدريجيًا من الأسفل */
}

/* عند الإظهار */
section.show {
  opacity: 1;
  transform: translateY(0);
}











/* ======================================================= */
/* 📱 أنماط متجاوبة (Responsive Design)                   */
/* ======================================================= */

/* ✅ شاشة متوسطة - أقل من 992px */
@media (max-width: 992px) {
  /* تغيير اتجاه العناصر في قسم من نحن */
  .about-content {
    flex-direction: column;
  }

  /* تغيير ترتيب عناصر قسم التواصل */
  .contact-container {
    flex-direction: column;
  }

  /* تصغير حجم عنوان السلايد */
  .slide-content h2 {
    font-size: 2.5rem;
  }
}

/* ✅ شاشة صغيرة - أقل من 768px */
@media (max-width: 768px) {
  /* ترتيب عناصر الهيدر بشكل عمودي */
  .header-container {
    flex-direction: column;
    height: auto;
    padding: 15px 0;
  }

  /* تباعد الشعار عن القائمة */
  .logo {
    margin-bottom: 15px;
  }

  /* لف روابط القائمة عند ضيق العرض */
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links a {
    margin: 5px 10px;
    font-size: 1rem;
  }
  

  /* تقليل المسافة بين المنتجات */
  .products-container {
    gap: 20px;
  }

  /* تصغير عرض المنتج في الهاتف */
  .product {
    width: 100%;
    max-width: 300px;
  }

  /* تصغير عنوان وشعار السلايد */
  .slide-content h2 {
    font-size: 2rem;
  }

  .slide-content p {
    font-size: 1rem;
  }

  /* تقليل تباعد عناصر الإحصائيات */
  .stat {
    padding: 15px;
  }

  .stat h3 {
    font-size: 2rem;
  }
}












/* ======================================================= */
/* 📱 تحسينات للهاتف المحمول - أقل من 768px */
/* ======================================================= */

@media (max-width: 768px) {
  /* تقليل حجم عنوان السلايد */
  .slide-content h2 {
    font-size: 1.8rem;
  }

  /* تصغير الفقرة داخل السلايد */
  .slide-content p {
    font-size: 1rem;
  }

  /* عرض الباقة بالكامل بعرض الشاشة */
  .paket-item {
    width: 100%;
  }

  /* تصغير صورة صاحب التقييم */
  .testimonial-author img {
    width: 50px;
    height: 50px;
  }

  /* تقليل الحشوة داخل الهيدر */
  .header-container {
    padding: 10px 5%;
  }

  /* تصغير عنوان الشعار */
  .logo h1 {
    font-size: 1.5rem;
  }

  /* تصغير سؤال الأسئلة الشائعة */
  .faq-question h3 {
    font-size: 1rem;
  }
}

/* ======================================================= */
/* 📱 تحسينات إضافية جداً - أقل من 480px */
/* ======================================================= */

@media (max-width: 480px) {
  /* تصغير عنوان القسم */
  .section-title h2 {
    font-size: 2rem;
  }

  /* ترتيب الإحصائيات عموديًا */
  .about-stats {
    flex-direction: column;
    gap: 15px;
  }

  /* تقليل ارتفاع السلايدر */
  .slider-section {
    height: 400px;
  }
}


























/* ======================================================= */
/* 🛒 صفحة المنتجات (مخفية مبدئياً)                       */
/* ======================================================= */

/* إخفاء الصفحة حتى يتم عرضها برمجياً */
#products-page {
  display: none;
}

/* رأس صفحة المنتجات */
.page-header {
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
              url('https://images.unsplash.com/photo-1468495244123-6c6c332eeece?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1172&q=80');
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  text-align: center;
  color: white;
  margin-top: 80px;
  position: relative;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.page-header p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

/* قسم المنتجات */
.products-page-section {
  padding: 80px 0;
  background-color: white;
}

/* الحاوية العامة */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

/* شبكة عرض المنتجات */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

/* عنصر منتج واحد */
.product-item {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: var(--transition);
}

/* تأثير التحويم */
.product-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* صورة المنتج */
.product-item .product-img {
  height: 250px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #f8f9fa;
}

/* تفاصيل المنتج */
.product-details {
  padding: 20px;
  text-align: center;
}

.product-details h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.product-details p {
  color: #666;
  margin-bottom: 15px;
}

/* السعر */
.product-price {
  font-size: 1.8rem;
  color: var(--secondary);
  font-weight: bold;
  margin-bottom: 15px;
}

/* زر الشراء داخل المنتج */
.product-item .btn {
  width: 100%;
  display: block;
  background-color: var(--primary);
}



























/* zzzzzzzzzzzz */


/* ======================================================= */
/* 🔁 إعادة تعيين الأنماط الافتراضية للمتصفحات (Normalize) */
/* ======================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Tajawal', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* الخط الأساسي */
}

/* سلوك التمرير السلس */
html {
  scroll-behavior: smooth;
}

/* إعدادات الجسم العامة */
body {
   zoom: 90%;
  background-color: #f8f9fa;  /* خلفية الصفحة */
  color: var(--text);         /* لون النص */
  line-height: 1.6;           /* ارتفاع الأسطر */
  overflow-x: hidden;         /* منع التمرير الأفقي */
}









/* ======================================================= */
/* ✨ تأثيرات الانتقال بين الأقسام أثناء التبديل */
/* ======================================================= */

section {
  position: relative;
  transition: var(--transition); /* تأثير الانتقال */
  z-index: 1;

  scroll-margin-top: 100px; /* مهم لتعويض ارتفاع الهيدر */

}

section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: white;
  z-index: -1;
  transform-origin: bottom;
  transform: scaleY(0); /* تأثير مبدئي */
  transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

/* عندما يكون القسم مفعل */
section.active {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* القسم السابق */
section.prev {
  transform: translateY(-50px) scale(0.95);
  opacity: 0.5;
  z-index: 0;
  filter: blur(2px);
}

/* القسم التالي */
section.next {
  transform: translateY(50px) scale(0.95);
  opacity: 0;
  z-index: 2;
}

/* تفعيل خلفية الانتقال */
section.active::before {
  transform: scaleY(1);
}

/* ======================================================= */
/* 🎁 أنماط قسم العرض الخاص */
/* ======================================================= */

.special-offer-section {
  padding: 80px 5%;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.special-offer-box {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  max-width: 900px;
  margin: 0 auto;
  border: 3px solid var(--secondary);
  position: relative;
}

/* رأس العرض */
.offer-header {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 25px;
  text-align: center;
  position: relative;
}

.offer-header h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

/* الأسعار قبل وبعد الخصم */
.offer-price {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 10px;
}

#originalPrice, #originalPrice1 {
  text-decoration: line-through;
  opacity: 0.8;
}

#discountPrice {
  font-weight: bold;
  font-size: 1.2rem;
}


#discountPrice1 {
  font-weight: bold;
  font-size: 1.2rem;
}
/* وسم العرض */
.offer-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--accent);
  color: white;
  padding: 5px 15px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 0.9rem;
}

/* محتوى العرض */
.offer-content {
  padding: 30px;
}

/* ميزات العرض */
.offer-features {
  margin-bottom: 25px;
}

.offer-features h4 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 15px;
  text-align: center;
}

.offer-features ul {
  list-style: none;
}

.offer-features li {
  padding: 10px 0;
  border-bottom: 1px dashed #eee;
  display: flex;
  align-items: center;
}

.offer-features li:last-child {
  border-bottom: none;
}

.offer-features i {
  color: var(--secondary);
  margin-left: 10px;
  font-size: 1.2rem;
}

/* ضمان العرض */
.offer-guarantee {
  background-color: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 25px;
  text-align: center;
}

.offer-guarantee p {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: bold;
}

.offer-guarantee i {
  color: var(--secondary);
  margin-left: 10px;
  font-size: 1.2rem;
}

/* قسم CTA */
.offer-cta {
  text-align: center;
}

/* رسالة عاجلة */
.urgent-message {
  color: var(--accent);
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

/* حركة نبض */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* أزرار الاتصال */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.call-btn {
  background-color: var(--primary);
}

.whatsapp-btn {
  background-color: #25D366;
}

.whatsapp-btn:hover {
  background-color: #128C7E;
}

/* تصميم متجاوب */
@media (max-width: 768px) {
  .offer-header h3 {
    font-size: 1.5rem;
  }

  .offer-price {
    flex-direction: column;
    gap: 5px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }
}











/* ======================================================= */
/* 🔔 إشعار العرض الخاص */
/* ======================================================= */

.offer-notice {
  background-color: #e3f2fd;         /* لون خلفية فاتح */
  padding: 12px;                     /* تباعد داخلي */
  border-radius: 8px;                /* حواف مستديرة */
  margin: 15px 0;
  text-align: center;
  border-right: 4px solid #dbae34;   /* خط جانبي */
}

.offer-notice p {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d47a1;
  font-weight: 500;
  margin: 0;
}

.offer-notice i {
  color: #3498db;
  margin-left: 10px;
  font-size: 1.2rem;
}

/* ======================================================= */
/* 🧊 تأثيرات 3D للعناصر */
/* ======================================================= */

/* عناصر المنتجات والباقات والشهادات */
.product, .paket-item, .testimonial {
  transform-style: preserve-3d;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
  box-shadow:
    0 10px 30px rgba(0,0,0,0.1),
    0 20px 60px rgba(0,0,0,0.05);
}

.product:hover, .paket-item:hover, .testimonial:hover {
  transform: perspective(1000px) rotateY(5deg) rotateX(5deg) translateY(-10px) scale(1.03);
  box-shadow:
    0 15px 45px rgba(0,0,0,0.15),
    0 30px 90px rgba(0,0,0,0.1);
}

/* ======================================================= */
/* 🌐 تأثير 3D للهيدر */
/* ======================================================= */

header {
  transform: translateZ(20px); /* يُرفع للأمام لإبراز التأثير */
  box-shadow: 0 5px 30px rgba(0,0,0,0.2);
}

/* ======================================================= */
/* 🖼️ تأثير العمق للخلفيات في بعض الأقسام */
/* ======================================================= */

.slider-section::before,
.products-section::before,
.about-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: white ;
  transform: translateZ(-10px);  /* يُوضع خلف العنصر */
  z-index: -1;
}



































/* ============================= */
/* إعدادات موضع تأثير الضوء في الصفحة */
/* ============================= */

:root {
  --light-x: 50vw;  /* موضع الضوء أفقيًا */
  --light-y: 30vh;  /* موضع الضوء رأسيًا */
}

/* ============================= */
/* جسم الصفحة مع تأثير ضوء متحرك */
/* ============================= */

body {
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: -50vh;
  left: -50vw;
  width: 200vw;
  height: 200vh;
  background: radial-gradient(
    circle at var(--light-x) var(--light-y),
    rgba(239, 183, 48, 0.1) 0%,
    transparent 30%
  );
  pointer-events: none;
  z-index: -1;
  transition: all 0.5s ease-out;
}

/* ============================= */
/* تأثير الوميض عند مرور المؤشر على العناصر */
/* ============================= */

.product, .paket-item, .testimonial {
  position: relative;
}

.product::after, .paket-item::after, .testimonial::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(
    circle at var(--mouse-x) var(--mouse-y),
    rgba(255, 255, 255, 0.3) 0%,
    transparent 50%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: inherit;
}

.product:hover::after,
.paket-item:hover::after,
.testimonial:hover::after {
  opacity: 1;
}

/* ============================= */
/* تأثير ثلاثي الأبعاد على روابط القائمة */
/* ============================= */

.nav-links {
  perspective: 1000px;
}

.nav-links a {
  position: relative;
  display: inline-block;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-links a::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: var(--secondary);
  transform: rotateX(90deg) translateZ(-20px);
  transform-origin: bottom;
  opacity: 0;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  transform: translateY(-5px) translateZ(10px);
}

.nav-links a:hover::before {
  opacity: 0.2;
  transform: rotateX(0) translateZ(0);
}

/* ============================= */
/* بطاقات ثلاثية الأبعاد للمنتجات */
/* ============================= */

.product-3d {
  transform-style: preserve-3d;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-3d .product-front,
.product-3d .product-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  transition: all 0.6s ease;
}

.product-3d .product-back {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  border-radius: 10px;
}

.product-3d:hover .product-front {
  transform: rotateY(180deg);
}

.product-3d:hover .product-back {
  transform: rotateY(0deg);
}

/* ============================= */
/* تأثير ثلاثي الأبعاد على الحقول داخل النماذج */
/* ============================= */

.form-group {
  perspective: 1000px;
}

.form-group input,
.form-group textarea {
  transition: all 0.3s ease;
  transform-style: preserve-3d;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.form-group input:focus,
.form-group textarea:focus {
  transform: translateZ(10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15),
              0 5px 15px var(--secondary);
  border-color: transparent;
}

/* ============================= */
/* أزرار ثلاثية الأبعاد */
/* ============================= */

.btn-3d {
  position: relative;
  transform-style: preserve-3d;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-3d::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 10px;
  background: rgba(0,0,0,0.1);
  transform-origin: top;
  transform: rotateX(-90deg);
  opacity: 0;
  transition: all 0.3s ease;
}

.btn-3d:hover {
  transform: translateY(-5px) translateZ(10px);
}

.btn-3d:hover::before {
  opacity: 1;
  height: 5px;
}

.btn-3d:active {
  transform: translateY(0) translateZ(5px);
}

/* ============================= */
/* تأثيرات ثلاثية الأبعاد في الفوتر وروابط التواصل */
/* ============================= */

footer {
  position: relative;
  transform-style: preserve-3d;
}

footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 20px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), transparent);
  transform-origin: top;
  transform: rotateX(-60deg);
  opacity: 0.5;
}

.footer-container {
  position: relative;
  transform: translateZ(20px);
}

.social-links a {
  transform-style: preserve-3d;
  transition: all 0.3s ease;
}

.social-links a::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  transform: translateZ(-5px);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-links a:hover {
  transform: translateZ(10px);
}

.social-links a:hover::before {
  transform: translateZ(-10px);
}

/* ============================= */
/* سلايدر بعمق ثلاثي الأبعاد */
/* ============================= */

.slides {
  perspective: 2000px;
}

.slide {
  transform-style: preserve-3d;
  transition: transform 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.slide::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.3);
  transform: translateZ(-50px);
  transition: all 0.5s ease;
}

.slide:hover::before {
  transform: translateZ(-30px);
  background: rgba(0,0,0,0.2);
}

.slide-content {
  transform: translateZ(50px);
  transition: all 0.5s ease;
}

.slide:hover .slide-content {
  transform: translateZ(80px);
}

/* نقاط المؤشر للسلايدر */
.slider-dot {
  transform-style: preserve-3d;
  transition: all 0.3s ease;
}

.slider-dot::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 50%;
  transform: translateZ(-2px);
  transition: all 0.3s ease;
}

.slider-dot.active::before {
  transform: translateZ(2px);
}

/* ============================= */
/* تأثير ثلاثي الأبعاد للأسئلة الشائعة */
/* ============================= */

.faq-item {
  transform-style: preserve-3d;
  perspective: 1000px;
}

.faq-question {
  transform: translateZ(0);
  transition: all 0.3s ease;
}

.faq-answer {
  transform: rotateX(-90deg);
  transform-origin: top;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-item.active .faq-question {
  transform: translateZ(10px);
}

.faq-item.active .faq-answer {
  transform: rotateX(0);
}

/* ============================= */
/* تأثيرات عرض خاص ثلاثي الأبعاد */
/* ============================= */

.special-offer-box {
  transform-style: preserve-3d;
  perspective: 1000px;
}

.offer-header {
  transform: translateZ(20px);
}

.offer-content {
  transform: translateZ(10px);
}

.offer-tag {
  transform: rotateY(45deg) translateZ(30px);
  transition: all 0.5s ease;
}

.special-offer-box:hover .offer-tag {
  transform: rotateY(0) translateZ(50px);
}

.cta-buttons .btn {
  transform-style: preserve-3d;
  transition: all 0.3s ease;
}

.cta-buttons .btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.2);
  transform: translateZ(-5px);
  border-radius: 30px;
  transition: all 0.3s ease;
}

.cta-buttons .btn:hover {
  transform: translateZ(10px);
}

.cta-buttons .btn:hover::before {
  transform: translateZ(-10px);
}


















