* {
    font-family: 'Cairo', Arial, sans-serif !important;
}
body {
 font-family: 'Cairo', Arial, sans-serif;
direction: rtl;
margin: 0;
padding: 0;
background: linear-gradient(135deg, #f5f1e8 0%, #e8dcc0 100%);
}

/* الشريط العلوي */
.top-header {
position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  min-height: 70px;
  border-bottom: 2px solid #333;
}

/* الشعار */
.logo {
width: 80px;
height: auto;
margin-left: 0%;
 }
.logo img {
width: 250%;
height: auto;
display: block;
}

/* قائمة التنقل */
nav {
display: flex;
gap: 30px;
flex: 1;
justify-content: center;
 }
nav a {
text-decoration: none;
color: white;
font-size: 20px;
transition: color 0.3s ease;
 }
nav a.active {
position: relative;
 }
nav a.active::after {
content: "";
position: absolute;
bottom: -5px;
right: 0;
left: 0;
height: 3px;
background-color: #cca75f;
border-radius: 2px;
 }
nav a:hover {
color: #cca75f;
 }

/* زر الترحيب */
#welcome-message {
      display: flex;
      top: 50px;
      left: 20px;
      font-size: 20px;
      font-weight: bold;
      color: #ffffff;
      background-color: #f3ac399b;
      padding: 5px 17px;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      z-index: 1000;
 }

/* تصميم رساله الترحيب وزر تسجيل الدخول*/
.user-dropdown {
    display: inline-block;
    width: fit-content; /* للتأكد من أن العرض مناسب */
    z-index: 1100 !important;
    position: relative !important;

}

.welcome-btn {
   padding: 12px 20px;
   background-color: #ffffffa4;
   border: none;
   border-radius: 8px;
   cursor: pointer;
   user-select: none;
   transition: all 0.3s ease;
   font-weight: 500;
   color: #333;
   box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.welcome-btn:hover {
   background-color: #f8f9faa9;
   box-shadow: 0 4px 12px rgba(0,0,0,0.15);
   transform: translateY(-1px);
}
.welcome-btn a {
  color: inherit;        /* يخلي اللون مثل النصوص العادية */
  text-decoration: none; /* يشيل الخط */
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: rgba(255, 255, 255, 0.798);
    width: 100%;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-radius: 12px;
    border: none;
    margin-top: 8px;
    overflow: hidden;
    padding: 8px;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@keyframes slideDown {
   from {
       opacity: 0;
       transform: translateY(-10px);
   }
   to {
       opacity: 1;
       transform: translateY(0);
   }
}

.logout-btn {
   width: 100%;
   padding: 12px 16px;
   background: linear-gradient(135deg, #2e2e2ef5 0%, #4b4b4be7 100%);
   border: none;
   border-radius: 8px;
   cursor: pointer;
   font-size: 12px;
   color: rgb(255, 255, 255);
   transition: all 0.3s ease;
   font-weight: 500;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
   z-index: 1102 !important;
   position: relative !important;
   position: relative;
}

.logout-btn:hover {
   background: linear-gradient(135deg, #c82333de 0%, #a71e29d8 100%);
   transform: translateY(-1px);
   box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
   z-index: 1001 !important;
   position: relative;

}

.logout-btn:active {
   transform: translateY(0);
   box-shadow: 0 2px 4px rgba(220, 53, 69, 0.3);
   z-index: 1001 !important;
   position: relative;
}

.logout-btn svg {
   transition: transform 0.3s ease;
}

.logout-btn:hover svg {
   transform: translateX(2px);
}

/* تعتيم الخلفية */
.overlay {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, 0.2);
   z-index: 999;
   display: none;
}

.overlay.show {
   display: block;
   animation: fadeIn 1s ease;
}

@keyframes fadeIn {
   from { opacity: 0; }
   to { opacity: 1; }
}
.plans-dropdown {
   position: relative;
   display: inline-block;
}

.plans-dropdown > a {
   display: flex;
   align-items: center;
   gap: 8px;
   position: relative;
}

.dropdown-arrow {
   font-size: 14px;
   transition: all 0.3s ease;
   transform-origin: center;
}

.plans-dropdown.active .dropdown-arrow {
   transform: rotate(180deg);
   color: #cca75f;
}
/* التحكم بشريط القوائم المنسدله*/
.plans-dropdown-menu {
    display: none;
    position: fixed;
    top: 112px;
    left: 120px; /* المسافة من اليسار */
    right: 320px; /* المسافة من اليمين */
    background-color: #000000b5;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    border-bottom-left-radius: 80px;
    border-bottom-right-radius: 80px;
    z-index: 900 !important;
    overflow: hidden;
    padding: 10px 0px;
    border-top: 2px solid rgba(243, 172, 57, 0.3);
}

.plans-dropdown-menu.show {
   display: block;
   animation: slideDownPlans 0.5s ease;
}

@keyframes slideDownPlans {
   from {
       opacity: 0;
       transform: translateY(-20px);
   }
   to {
       opacity: 1;
       transform: translateY(0);
   }
}

.plans-dropdown-content {
   max-width: 100%;
   margin: 0 auto;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: flex-start;
   gap: 5px;
   padding: 0 0px;
   margin-right: 45px;/*التحكم في بعد خانات المخططات */
}

.plans-dropdown-item {
   padding: 15px 35px;
   border-radius: 15px;
   cursor: pointer;
   font-size: 18px;
   color: rgb(255, 255, 255);
   transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
   text-decoration: none;
   display: flex;
   align-items: center;
   justify-content: center;
   min-width: 200px;
   font-weight: 600;
   position: relative;
   overflow: hidden;
   text-align: center;
}

.plans-dropdown-item::before {
   content: '';
   position: absolute;
   top: 0;
   left: -100%;
   width: 100%;
   height: 100%;
   background: linear-gradient(90deg, transparent, rgba(243, 172, 57, 0.4), transparent);
   transition: left 0.8s ease;
}

.plans-dropdown-item:hover::before {
   left: 100%;
}

.plans-dropdown-item:hover {
   background: linear-gradient(135deg, rgba(243, 172, 57, 0.3) 0%, rgba(219, 187, 99, 0.2) 100%);
   border-color: rgba(243, 172, 57, 0.8);
   transform: translateY(-5px) scale(1.05);
   box-shadow: 0 15px 30px rgba(243, 172, 57, 0.4);
   color: #cca75f;
}

.plans-dropdown-item::after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 0;
   width: 100%;
   height: 3px;
   background: linear-gradient(90deg, #cca75f, #dbbb63);
   transform: scaleX(0);
   transition: transform 0.4s ease;
}

.plans-dropdown-item:hover::after {
   transform: scaleX(1);
}

/* إضافة كلاس للتحكم في التعتيم عند فتح القوائم المنسدلة */
header.dropdown-active {
    backdrop-filter: blur(10px);
    background-color: #000000b5;
}
header.hide-header {
  display: none;
}

/* المحتوى الرئيسي */
/* المحتوى الرئيسي */
/* المحتوى الرئيسي */
.container {
    width: 100%;
    margin-top: 100px;
    padding: 40px 5vw;
    animation: fadeInUp 1s ease-out;
    box-sizing: border-box;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* القسم الأول: العنوان والوصف */
.hero-section {
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 60px 0; 
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 3.0rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #cca75f, #cca75f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.0rem;
    line-height: 2;
    color: #efefef;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* أيقونات منصات التواصل الاجتماعي */
.social-section {
    margin-bottom: 40px;
    text-align: center;
}
.social-section-pattern {
  bottom: 0;
  left: 0;
  margin-right: -39px;
  margin-left: -39px;
  width: 93.5vw; /* يعني العرض كامل الشاشة */
  height: 80px; /* حسب حجم الصورة */
  background-image: url("/static/images/Pattern01.png"); /* مسار الصورة */
  background-repeat: repeat-x;
  background-position: center bottom;
  background-size: auto 100%; /* ارتفاع تلقائي */
  opacity: 0.5; /* شفافية */
  margin-top: 20px;
  margin-bottom: -60px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.social-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #764ba2, #667eea);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.social-icon:hover::before {
    opacity: 1;
}

.social-icon:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.social-icon svg {
    width: 35px;
    height: 35px;
    fill: white;
    transition: all 0.3s ease;
}

.social-icon:hover svg {
    transform: scale(1.2);
}

/* المحتوى الرئيسي */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* الخريطة */
.map-section {
    background: #ffffffc8;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: slideInRight 1s ease-out 0.3s both;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.map-container {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* معلومات التواصل */
.contact-info {
    background: #ffffffc8;
    border-radius: 20px;
    padding: 15px 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: slideInLeft 1s ease-out 0.3s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-info h2 {
    color: #585858;
    margin-bottom: 35px;
    text-align: center;
    background: linear-gradient(135deg, #585858, #585858);
    border-bottom: 2px solid #ebc16e;
    background-clip: text;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 5px;
    background: #cca85f11;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-item:hover {
    background: #ebc16e26;
    transform: translateX(10px);
    border-color: #ebc16e4e;
    box-shadow: 0 5px 20px #ebc16e26;
}

.contact-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px #ebc16e26;
}

.contact-icon svg {
    width: 18px;
    height: 18px;
    fill: #ebc16e;
}

.contact-details {
    flex: 1;
}

.contact-label {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 5px;
    font-weight: 500;
}

.contact-value {
    font-size: 1.0rem;
    font-weight: 600;
}

.contact-value a {
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.contact-value a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ebc16e;
    transition: width 0.3s ease;
}

.contact-value a:hover {
    color: #cca75f;
}

.contact-value a:hover::after {
    width: 100%;
}

/* التجاوب */
@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-section {
        padding: 40px 25px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .social-icons {
        gap: 15px;
    }
    
    .social-icon {
        width: 60px;
        height: 60px;
    }
    
    .social-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .map-container {
        height: 300px;
    }
    
    .contact-info {
        padding: 30px 20px;
    }
    
    .contact-info h2 {
        font-size: 1.8rem;
    }
    
    .contact-item {
        padding: 15px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        margin-left: 15px;
    }
    
    .contact-icon svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.8;
    }
    
    .social-icons {
        gap: 12px;
    }
    
    .social-icon {
        width: 55px;
        height: 55px;
    }
    
    .contact-item:hover {
        transform: none;
    }
}


/*قسم تواصل معنا*/
.contact-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
  padding: 60px 20px;
  direction: rtl;
  position: relative;
  overflow: hidden;
}
.contact-decoration {
  bottom: 0;
  left: 0;
  margin-right: -39px;
  margin-left: -39px;
  width: 110vw; /* يعني العرض كامل الشاشة */
  height: 80px; /* حسب حجم الصورة */
  background-image: url("/static/images/Pattern01.png"); /* مسار الصورة */
  background-repeat: repeat-x;
  background-position: center bottom;
  background-size: auto 100%; /* ارتفاع تلقائي */
  opacity: 0.5; /* شفافية */
  margin-top: 20px;
  margin-bottom: -60px;
}
.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  direction: rtl;
}

.contact-logo-text {
  flex: 1;
  min-width: 280px;
  text-align: right;
}

.contact-logo {
  width: 220px;
  margin-top: -50px;
  margin-bottom: -40px;
}

.contact-description {
  font-size: 15px;
  line-height: 1.7;
  color: #e0e0e0;
}

.contact-info {
  flex: 1;
  min-width: 280px;
  text-align: left;
}

.contact-info p {
  font-size: 16px;
  margin-bottom: 10px;
}

.social-icons {
  margin-top: 20px;
  display: flex;
  flex-direction: row; /* هذا هو التعديل المهم */
  gap: 15px;
  flex-wrap: wrap;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.social-icons a:hover {
  background-color: #ffc10730;
}

.social-icons img {
  width: 20px;
  height: 20px;
}

footer {
  background-color: #222;
  color: white;
  padding: 15px;
  text-align: center;
  font-size: 14px;
}
.contact-col {
  flex: 1;
  min-width: 220px;
}

.contact-col h2 {
  font-size: 20px;
  margin-bottom: 15px;
  margin-top: -10px;
  color: #cca75f;
}
.contact-col p {
  margin: -4px 0;
}


.location-link {
  display: flex;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  gap: 8px;
  transition: color 0.3s;
}

.location-link:hover {
  color: #cca75f;
}

.icon {
  width: 20px;
  height: 20px;
}

.contact-link {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-link:hover {
  color: #cca75f;
}

/* أيقونات التواصل بشكل أفقي */
.horizontal-icons {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  margin-bottom: 10px;
}

.horizontal-icons a img {
  width: 26px;
  height: 26px;
  transition: transform 0.3s;
}

.horizontal-icons a:hover img {
  transform: scale(1.2);
}

.social-username {
  font-size: 17px;
  color: #ccc;
  margin-top: 10px;
}
.launch-badge {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #cca75f;
  color: white;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  pointer-events: none; /* يمنع التفاعل معها لو ما تبي أحد يضغطها */
}

/* تصميم الجوال */
@media (max-width: 768px) {
    .top-header {
        padding: 15px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
        position: relative;
    }
    
    /* إخفاء العناصر الأصلية في الجوال */
    .top-header > nav,
    .top-header > .user-dropdown {
        display: none !important;
    }
    
    /* زر الهامبرغر (يسار) */
    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column;
        cursor: pointer;
        width: 30px;
        height: 25px;
        justify-content: space-between;
        z-index: 1001;
        position: absolute;
        left: 20px;
    }
    
    .mobile-menu-toggle span {
        width: 100%;
        height: 3px;
        background-color: white;
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
    
    /* الشعار (يمين) في الجوال */
    .top-header > .logo {
        width: 90px;
        margin-left: 0;
        position: absolute;
        right: 20px;
    }
    
    .top-header > .logo img {
        width: 200%;
    }
    
    /* القائمة الجانبية */
    .mobile-sidebar {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: linear-gradient(135deg, #000000f0 0%, #1a1a1af0 100%);
        backdrop-filter: blur(15px);
        z-index: 1000;
        transition: right 0.3s ease;
        overflow-y: auto;
        overflow-x: hidden; /* منع التمرير الأفقي */
    }
    
    .mobile-sidebar.active {
        right: 0;
    }
    
    .mobile-sidebar-content {
        padding: 30px 20px 20px;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* الشعار في القائمة الجانبية - نفس الشعار الأصلي */
    .mobile-logo {
        width: 90px;
        margin-bottom: 20px;
        text-align: center;
      margin-left: 200px;
    }
    
    .mobile-logo img {
        width: 200%;
        height: auto;
    }
    
    /* رسالة الترحيب في الجوال */
    .mobile-welcome {
        background-color: #f3ac399b;
        color: white;
        padding: 15px;
        border-radius: 10px;
        text-align: center;
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 30px;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* قائمة التنقل في الجوال */
    .mobile-nav {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .mobile-nav > a {
        color: white;
        text-decoration: none;
        font-size: 18px;
        padding: 15px;
        border-radius: 8px;
        transition: all 0.3s ease;
        border: 1px solid transparent;
        display: block;
        text-align: right;
        width: 100%;
        box-sizing: border-box;
    }
    
    .mobile-nav > a:hover,
    .mobile-nav > a.active {
        border-color: #cca75f;
        color: #cca75f;
    }
    
    /* قائمة المشاريع الفرعية في الجوال */
    .mobile-plans-dropdown {
        position: relative;
        width: 100%;
        box-sizing: border-box;
    }
    
    .mobile-plans-dropdown > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        color: white;
        text-decoration: none;
        font-size: 18px;
        padding: 15px;
        border-radius: 8px;
        transition: all 0.3s ease;
        border: 1px solid transparent;
        text-align: center;
        box-sizing: border-box;
    }
    
    .mobile-plans-dropdown > a:hover {
        border-color: #cca75f;
        color: #cca75f;
    }
    
    .mobile-dropdown-arrow {
        transition: transform 0.3s ease;
    }
    
    .mobile-plans-dropdown.active .mobile-dropdown-arrow {
        transform: rotate(180deg);
    }
    
    .mobile-plans-submenu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        margin-top: 10px;
        padding-right: 20px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .mobile-plans-submenu.active {
        max-height: 250px;
    }
    
    .mobile-plans-submenu a {
        font-size: 16px;
        padding: 12px 15px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 6px;
        display: block;
        width: 100%;
        box-sizing: border-box;
        text-align: right;
        border: 1px solid rgba(243, 172, 57, 0.2);
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .mobile-plans-submenu a:hover {
        background-color: rgba(243, 172, 57, 0.3);
        border-color: #cca75f;
        color: #cca75f;
    }
    
    /* زر تسجيل الخروج في الجوال */
    .mobile-logout-btn {
        background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
        color: white;
        border: none;
        padding: 15px;
        border-radius: 8px;
        font-size: 16px;
        cursor: pointer;
        margin-top: 20px;
        transition: all 0.3s ease;
        width: 100%;
        box-sizing: border-box;
    }
    
    .mobile-logout-btn:hover {
        background: linear-gradient(135deg, #c82333 0%, #a71e29 100%);
        transform: translateY(-2px);
    }
    
    /* تعتيم الخلفية */
    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* إصلاح موضع الشعار في الكمبيوتر */
@media (min-width: 769px) {
    .mobile-menu-toggle,
    .mobile-sidebar,
    .mobile-overlay {
        display: none !important;
    }
    

}
