/* أنماط عامة */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
}

/* الهيدر */
header {
  background: linear-gradient(135deg, #2E4A2E 0%, #A8E6A2 100%);
  color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo-title {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-title img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
}

.logo-title h1 {
  font-size: 1.8rem;
  font-weight: 700;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

nav a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* القسم الرئيسي */
.container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

/* السلايدر *//* سلايدر محسّن */
.slider-container {
  position: relative;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
  padding: 2rem;
  text-align: center;
}

.slide-content h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.slide-content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 15px;
  cursor: pointer;
  font-size: 1.5rem;
  transition: background-color 0.3s;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.slider-nav:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.slider-nav.prev {
  left: 20px;
}

.slider-nav.next {
  right: 20px;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.3s;
}

.slider-dot.active {
  background-color: white;
}

/* التجاوب مع الشاشات المختلفة - إضافة للسلايدر */
@media (max-width: 768px) {
  .slider-container {
    height: 400px;
  }
  
  .slide-content h2 {
    font-size: 1.5rem;
  }
  
  .slide-content p {
    font-size: 1rem;
  }
  
  .slider-nav {
    width: 40px;
    height: 40px;
    padding: 10px;
  }
}

/* عن الجمعية */
.about {
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.about h2 {
  color: #2E4A2E;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #A8E6A2;
  display: inline-block;
}

.about p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #555;
}

.goals {
  list-style: none;
  margin-top: 1.5rem;
}

.goals li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.goals i {
  color: #A8E6A2;
  font-size: 1.2rem;
}

/* الفعاليات القادمة */
.events {
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.events h2 {
  color: #2E4A2E;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #A8E6A2;
  display: inline-block;
}

.event-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 1.5rem;
}

.event-card {
  background: linear-gradient(135deg, #E7F8E7 0%, #E7F8E7 100%);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.event-card:hover {
  transform: translateY(-5px);
}

.event-date {
  background-color: #A8E6A2;
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.event-title {
  font-size: 1.2rem;
  color: #2E4A2E;
  margin-bottom: 10px;
}

.event-desc {
  color: #666;
  font-size: 0.95rem;
}

/* الرزنامة */
.calendar {
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.calendar-header h2 {
  color: #2E4A2E;
}

.calendar-header button {
  background-color: #A8E6A2;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.calendar-header button:hover {
  background-color: #8EDC89;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  border: 1px solid #e0e0e0;
  padding: 10px;
  text-align: center;
}

th {
  background-color: #f0f4ff;
  color: #2E4A2E;
  font-weight: 600;
}

td.today {
  background-color: #A8E6A2;
  color: white;
  border-radius: 50%;
  font-weight: bold;
}

/* المتطوعين والشركاء */
.partners {
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  text-align: center;
}

.partners h2 {
  color: #2E4A2E;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #A8E6A2;
  display: inline-block;
}

.partner-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 1.5rem;
}

.partner-logo {
  width: 120px;
  height: 120px;
  border-radius: 10px;
  background-color: #E7F8E7;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  padding: 15px;
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
}
/* أنماط الصفحات العامة */
.page-header {
  text-align: center;
  margin-bottom: 2rem;
  padding: 2rem;
  background: linear-gradient(135deg,#A8E6A2 0%, #2E4A2E 100%);
  color: white;
  border-radius: 12px;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* أنماط صفحة اتصل بنا */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.contact-info h2,
.contact-form h2 {
  color: #2E4A2E;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #A8E6A2
;
  display: inline-block;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.contact-item i {
  font-size: 1.5rem;
  color: #A8E6A2;
  margin-top: 5px;
}

.contact-item h3 {
  margin-bottom: 5px;
  color: #2E4A2E;
}

.contact-form {
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #2E4A2E;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #A8E6A2;
  box-shadow: 0 0 0 3px rgba(74, 107, 223, 0.2);
}

.btn-primary {
  background-color: #A8E6A2;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 100%;
}

.btn-primary:hover {
  background-color: #8EDC89;
}

.map {
  margin-top: 2rem;
}

/* أنماط صفحة المدرسة العربية */
.gallery-section {
  margin-bottom: 3rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.gallery-item {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.gallery-item p {
  padding: 1rem;
  text-align: center;
  font-weight: 600;
  color: #2E4A2E;
}

.classes-section {
  margin-bottom: 3rem;
}

.classes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.class-card {
  background: linear-gradient(135deg, #E7F8E7 0%, #E7F8E7 100%);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.class-card h3 {
  color: #2E4A2E;
  margin-bottom: 0.5rem;
}

.class-card > p {
  color: #A8E6A2;
  font-weight: 600;
  margin-bottom: 1rem;
}

.class-card ul {
  list-style-type: none;
}

.class-card li {
  padding: 5px 0;
  position: relative;
  padding-left: 1.5rem;
}

.class-card li:before {
  content: "•";
  color: #A8E6A2;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.registration-section {
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 3rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.bank-section {
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.bank-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.bank-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.bank-item i {
  font-size: 1.5rem;
  color: #A8E6A2;
  margin-top: 5px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

th, td {
  padding: 12px;
  text-align: right;
  border-bottom: 1px solid #ddd;
}

th {
  background-color: #f0f4ff;
  color: #2E4A2E;
  font-weight: 600;
}

.note {
  margin-top: 1rem;
  font-style: italic;
  color: #666;
}

/* التجاوب مع الشاشات المختلفة */
@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .bank-info {
    grid-template-columns: 1fr;
  }
  
  .gallery {
    grid-template-columns: 1fr;
  }
  
  .classes {
    grid-template-columns: 1fr;
  }
}
/* الفوتر */
footer {
  background: linear-gradient(135deg, #2E4A2E 0%, #A8E6A2 100%);
  color: white;
  padding: 2rem;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: right;
}

.footer-section h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.footer-section p, .footer-section a {
  color: #e0e0e0;
  margin-bottom: 0.5rem;
  display: block;
  text-decoration: none;
}

.footer-section a:hover {
  color: white;
  text-decoration: underline;
}

.social-icons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 1rem;
}

.social-icons a {
  color: white;
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.social-icons a:hover {
  transform: translateY(-3px);
}

.copyright {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* تأثيرات الحركة */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* التجاوب مع الشاشات المختلفة */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 1rem;
  }
  
  .logo-title {
    margin-bottom: 1rem;
  }
  
  nav {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .slider {
    height: 300px;
  }
  
  .event-cards {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
/* أنماط صفحة الشكر */
.thank-you-message {
  text-align: center;
  padding: 3rem;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 2rem 0;
}

.thank-you-message i {
  font-size: 4rem;
  color: #4caf50;
  margin-bottom: 1.5rem;
}

.thank-you-message h1 {
  color: #2E4A2E;
  margin-bottom: 1rem;
}

.thank-you-message p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
}
/* Language Switcher - REPLACE the existing styles with this */
.language-switcher {
  display: flex;
  gap: 8px;
  margin-left: 20px; /* Adds space between the nav and language buttons */
}

.language-switcher button {
  padding: 8px 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  cursor: pointer;
  border-radius: 5px;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.language-switcher button:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

/* RTL/LTR Support */
[dir="rtl"] {
  text-align: right;
}

[dir="ltr"] {
  text-align: left;
}

/* Form styling for different directions */
[dir="rtl"] .form-group label {
  text-align: right;
}

[dir="ltr"] .form-group label {
  text-align: left;
}

/* Navigation adjustments */
[dir="rtl"] nav {
  direction: rtl;
}

[dir="ltr"] nav {
  direction: ltr;
}

/* Thank you page */
.thank-you-message {
  text-align: center;
  padding: 3rem;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 2rem 0;
}

.thank-you-message i {
  font-size: 4rem;
  color: #4caf50;
  margin-bottom: 1.5rem;
}

.thank-you-message h1 {
  color: #2E4A2E;
  margin-bottom: 1rem;
}

.thank-you-message p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
}
/* حل بديل - تكييف المساحات */
nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-size: 0.95rem;
    white-space: nowrap;
    flex: 1; /* توزيع متساوي */
    text-align: center;
    margin: 0 2px;
}

nav {
    display: flex;
    gap: 5px;
    justify-content: center;
    flex-wrap: wrap;
}

/* تحسين للشاشات الصغيرة */
@media (max-width: 768px) {
    nav a {
        font-size: 0.85rem;
        padding: 6px 8px;
        flex: none;
    }
}
/* تحسين تنسيق القائمة للكلمات الطويلة */
nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-size: 0.95rem; /* حجم خط ثابت */
    white-space: nowrap; /* منع كسر الكلمات */
    text-align: center;
    display: inline-block;
    min-width: fit-content; /* يتناسب مع المحتوى */
}

/* تحسين خاص للكلمات الطويلة */
nav a[data-translate="membership"] {
    font-size: 0.9rem; /* يمكن تقليل الحجم قليلاً إذا لزم */
    padding: 8px 10px; /* تقليل padding قليلاً */
}

/* تحسين responsive للشاشات الصغيرة */
@media (max-width: 768px) {
    nav a {
        font-size: 0.85rem;
        padding: 6px 8px;
    }
    
    nav a[data-translate="membership"] {
        font-size: 0.8rem;
        padding: 6px 6px;
    }
}
/* رسالة الترحيب */
.welcome-message {
    background: linear-gradient(135deg, #f8f9ff 0%, #E7F8E7 100%);
    border: 2px solid #A8E6A2;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.welcome-icon {
    font-size: 3rem;
    color: #A8E6A2;
}

.welcome-content h3 {
    color: #2E4A2E;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.welcome-content p {
    color: #666;
    margin: 0;
}

/* تحسين قسم التوقيع */
.signature-section {
    background: #fafbff;
    border-radius: 12px;
    padding: 2rem;
    border: 2px dashed #e0e7ff;
}

.signature-container {
    max-width: 600px;
    margin: 0 auto;
}

.signature-instructions {
    background: #E7F8E7;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #A8E6A2;
    font-weight: 500;
}

#signaturePad {
    border: 2px solid #e0e7ff;
    border-radius: 8px;
    background: white;
    display: block;
    margin: 0 auto;
    cursor: crosshair;
}

.signature-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    gap: 1rem;
}

.btn-clear {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-clear:hover {
    background: #ff5252;
}

.signature-preview {
    background: #f8f9fa;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #666;
}

.submit-note {
    text-align: center;
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* تحسين الإشعارات */
.form-notice {
    background: #e8f4ff;
    border: 1px solid #b3d9ff;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0066cc;
}

.form-notice i {
    font-size: 1.2rem;
}
/* تنسيق صفحة سياسة الخصوصية */
.privacy-content {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.policy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.policy-section h2 {
    color: #2E4A2E;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #A8E6A2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.policy-section h2 i {
    color: #A8E6A2;
}

.policy-item {
    margin-bottom: 2rem;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-right: 4px solid #A8E6A2;
}

.policy-item h3 {
    color: #2E4A2E;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.policy-item ul {
    list-style-type: none;
    padding-right: 0;
}

.policy-item li {
    padding: 8px 0;
    position: relative;
    padding-right: 1.5rem;
}

.policy-item li:before {
    content: "•";
    color: #A8E6A2;
    font-weight: bold;
    position: absolute;
    right: 0;
}

.policy-item p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* تحسين responsive */
@media (max-width: 768px) {
    .privacy-content {
        padding: 1rem;
    }
    
    .policy-item {
        padding: 1rem;
    }
    
    .policy-section h2 {
        font-size: 1.3rem;
    }
}
/* تحسين خيارات الانتساب */
.membership-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.option-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #A8E6A2 0%, #8EDC89 100%);
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.option-card.active {
    border-color: #A8E6A2;
    background: linear-gradient(135deg, #f8faff 0%, #f0f4ff 100%);
}

.option-icon {
    font-size: 3.5rem;
    color: #A8E6A2;
    margin-bottom: 1.5rem;
}

.option-card h3 {
    color: #2E4A2E;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.option-card p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* تعليمات التحميل */
.download-instructions {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-right: 4px solid #A8E6A2;
    text-align: right;
}

.download-instructions h4 {
    color: #2E4A2E;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.download-instructions ol {
    padding-right: 1.5rem;
    margin: 0;
}

.download-instructions li {
    padding: 0.5rem 0;
    color: #555;
    line-height: 1.5;
}

.mail-address {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border: 2px dashed #A8E6A2;
    margin-top: 1rem;
    font-weight: 600;
    color: #2E4A2E;
    line-height: 1.6;
}

/* قائمة الميزات */
.feature-list {
    margin-top: 1.5rem;
    text-align: right;
}

.feature-list p {
    margin: 0.5rem 0;
    color: #4caf50;
    font-weight: 500;
}

.feature-list i {
    margin-left: 0.5rem;
    color: #4caf50;
}

/* تحسين النموذج */
.form-description {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.form-notice {
    background: #e8f4ff;
    border: 1px solid #b3d9ff;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0066cc;
}

.form-notice i {
    font-size: 1.2rem;
}

/* تحسين responsive */
@media (max-width: 768px) {
    .membership-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .option-card {
        padding: 1.5rem;
    }
    
    .download-instructions {
        padding: 1rem;
    }
    
    .mail-address {
        font-size: 0.9rem;
        padding: 0.8rem;
    }
}
/* أنماط أيقونات الفعاليات */
/* أنماط أيقونات الفعاليات */
.event-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #A8E6A2 0%, #8EDC89 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 4px 15px rgba(74, 107, 223, 0.3);
  transition: transform 0.3s ease;
}

.event-card:hover .event-icon {
  transform: scale(1.1);
}

.event-card {
  text-align: center;
  background: linear-gradient(135deg, #E7F8E7 0%, #E7F8E7 100%);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.event-card:hover {
  transform: translateY(-5px);
}

.event-title {
  font-size: 1.2rem;
  color: #2E4A2E;
  margin-bottom: 10px;
  text-align: center;
}

.event-desc {
  color: #666;
  font-size: 0.95rem;
  text-align: center;
  line-height: 1.5;
}