/* ملف assets/css/style.css */
:root {
  --primary-color: #1a5276;
  --primary-light: #2c82c9;
  --secondary-color: #2980b9;
  --accent-color: #e67e22;
  --accent-dark: #d35400;
  --light-color: #f9f9f9;
  --light-gray: #f5f5f5;
  --dark-color: #333;
  --success-color: #27ae60;
  --error-color: #e74c3c;
  --warning-color: #f39c12;
  --gold-color: #ffd700;
  --border-radius: 10px;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

/* Reset وتنسيقات عامة */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Tajawal', 'Arial', sans-serif;
  background-color: var(--light-gray);
  color: var(--dark-color);
  line-height: 1.6;
  background-image: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
  min-height: 100vh;
}

/* الهيدر الرئيسي */
.header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  color: white;
  padding: 30px 20px;
  text-align: center;
  position: relative;
  margin-bottom: 30px;
}

.header::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
}

/* النموذج والحاويات */
.container {
  max-width: 900px;
  margin: 30px auto;
  padding: 0;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
}

.form-content {
  padding: 30px;
}

/* تنسيقات النموذج */
.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.form-col {
  flex: 1;
  min-width: 250px;
  padding: 0 10px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--primary-color);
}

.required::after {
  content: " *";
  color: var(--error-color);
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 15px;
  border: 2px solid #e0e0e0;
  border-radius: var(--border-radius);
  font-size: 16px;
  transition: var(--transition);
  background-color: var(--light-color);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--secondary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(41, 128, 185, 0.2);
  background-color: white;
}

/* أزرار الراديو والاختيار */
.radio-group,
.checkbox-group {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.radio-option,
.checkbox-option {
  display: flex;
  align-items: center;
}

.radio-option input,
.checkbox-option input {
  width: auto;
  margin-left: 8px;
}

/* أقسام النموذج */
.section-title {
  font-size: 20px;
  color: var(--primary-color);
  margin: 30px 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--light-gray);
  display: flex;
  align-items: center;
}

.section-title i {
  margin-left: 10px;
  color: var(--accent-color);
}

/* بطاقات الاختيار */
.participant-type,
.payment-options {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.type-card,
.payment-card {
  flex: 1;
  min-width: 200px;
  padding: 20px;
  border-radius: var(--border-radius);
  background-color: white;
  border: 2px solid #e0e0e0;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.type-card:hover,
.payment-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.type-card.active,
.payment-card.active {
  border-color: var(--accent-color);
  background-color: rgba(230, 126, 34, 0.05);
}

.type-card i,
.payment-card i {
  font-size: 30px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.type-card h3,
.payment-card h4 {
  color: var(--primary-color);
  margin-bottom: 5px;
}

.type-card p,
.payment-card p {
  font-size: 14px;
  color: #666;
}

/* رفع الملفات */
.file-upload {
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: 100%;
}

.file-upload-btn {
  border: 2px dashed #ddd;
  padding: 20px;
  text-align: center;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  background-color: var(--light-gray);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.file-upload-btn:hover {
  border-color: var(--secondary-color);
  background-color: rgba(41, 128, 185, 0.05);
}

.file-upload-btn i {
  font-size: 30px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.file-upload-input {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.file-name {
  margin-top: 10px;
  font-size: 14px;
  color: var(--primary-color);
  font-weight: 500;
}

/* File Upload Styling */
.file-upload {
    margin-bottom: 1.5rem;
}

.file-input-container {
    position: relative;
    margin-bottom: 0.5rem;
}

.file-input-container input[type="file"] {
    position: absolute;
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
}

.file-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-color, #007bff);
    color: white;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-label:hover {
    background: var(--primary-hover-color, #0056b3);
    transform: translateY(-1px);
}

.file-name {
    display: inline-block;
    margin-left: 1rem;
    color: #666;
}

.file-name.error {
    color: #dc3545;
}

.file-help-text {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.25rem;
}

.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

/* File Upload Error State */
.file-upload.has-error .file-label {
    background: #dc3545;
}

.file-upload.has-error .file-name {
    color: #dc3545;
}

/* تفاصيل الدفع */
.payment-section {
  background-color: var(--light-gray);
  padding: 25px;
  border-radius: var(--border-radius);
  margin: 30px 0;
  border-left: 5px solid var(--accent-color);
  position: relative;
  overflow: hidden;
}

.payment-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background-color: rgba(230, 126, 34, 0.1);
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.bank-details {
  font-family: 'Tajawal', sans-serif;
  background: #f8f9fa;
  padding: 20px;
  border-radius: 5px;
  border-left: 3px solid var(--accent-color);
  margin-top: 15px;
  font-size: 16px;
  line-height: 1.8;
}

.bank-details-ar {
  direction: rtl;
  text-align: right;
}

.bank-details-en {
  direction: ltr;
  text-align: left;
}

.bank-details strong {
  color: var(--primary-color);
  font-size: 18px;
}

.bank-details p {
  margin-bottom: 10px;
}

/* الأزرار */
.btn {
  background: linear-gradient(to right, var(--accent-color), var(--accent-dark));
  color: white;
  border: none;
  padding: 16px 25px;
  font-size: 18px;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  display: block;
  width: 100%;
  font-weight: bold;
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(230, 126, 34, 0.3);
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(230, 126, 34, 0.4);
  color: white;
}

.btn:active {
  transform: translateY(0);
}

.btn i {
  margin-left: 8px;
}

/* رسائل الخطأ والنجاح */
.error-messages {
  background-color: rgba(231, 76, 60, 0.1);
  border: 1px solid var(--error-color);
  border-radius: var(--border-radius);
  padding: 15px;
  margin-bottom: 20px;
}

.error-message {
  color: var(--error-color);
  margin-bottom: 5px;
}

.success-message {
  background-color: rgba(39, 174, 96, 0.1);
  border: 1px solid var(--success-color);
  border-radius: var(--border-radius);
  padding: 15px;
  margin-bottom: 20px;
  color: var(--success-color);
}

/* حالة العناصر المخفية */
.hidden {
  display: none !important;
}

/* تأثيرات الحركة */
.fade-in {
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* تنسيقات Select2 */
.select2-container--default .select2-selection--single {
  height: 50px;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: var(--border-radius);
  background-color: var(--light-color);
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 48px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 24px;
  text-align: right;
}

.select2-container {
  width: 100% !important;
}

/* تنسيقات للواجهة الإدارية (لوحة التحكم) */
.dashboard {
  padding: 20px;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.stat-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 20px;
  box-shadow: var(--box-shadow);
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.stat-icon {
  font-size: 30px;
  margin-left: 15px;
  color: var(--primary-color);
}

.stat-info h3 {
  font-size: 16px;
  color: #666;
  margin-bottom: 5px;
}

.stat-info p {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
}

/* تنسيقات الجدول */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.data-table th,
.data-table td {
  padding: 12px 15px;
  text-align: right;
  border-bottom: 1px solid #eee;
}

.data-table th {
  background-color: var(--primary-color);
  color: white;
  font-weight: 600;
}

.data-table tr:hover {
  background-color: rgba(41, 128, 185, 0.05);
}

/* تنسيقات للأجهزة الصغيرة */
@media (max-width: 768px) {
  .container {
    margin: 15px;
  }

  .form-col {
    flex: 100%;
    margin-bottom: 15px;
  }

  .participant-type,
  .payment-options {
    flex-direction: column;
  }

  .type-card,
  .payment-card {
    width: 100%;
  }

  .form-content {
    padding: 20px;
  }

  .header {
    padding: 25px 15px;
  }

  .email-fields {
    grid-template-columns: 1fr;
  }

  .stats-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .stats-container {
    grid-template-columns: 1fr;
  }

  .data-table {
    display: block;
    overflow-x: auto;
  }
}

.checkbox-group {
  display: flex;
  align-items: center;
  margin-top: 10px;
  gap: 10px;
  padding: 8px 0;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent-color);
  cursor: pointer;
}

.checkbox-group label {
  margin-bottom: 0;
  cursor: pointer;
  user-select: none;
  color: var(--primary-color);
  font-weight: normal;
}

/* أنماط أزرار صفحة التأكيد */
.btn-confirm {
    background-color: var(--accent-color) !important; /* برتقالي للتأكيد */
    color: white !important;
    padding: 0.75rem 1.5rem !important;
    border: none !important;
    border-radius: var(--border-radius) !important;
    cursor: pointer !important;
    font-size: 1rem !important;
    transition: var(--transition) !important;
    text-align: center !important;
    display: inline-block !important;
    box-shadow: var(--box-shadow) !important;
}

.btn-confirm:hover {
    background-color: var(--accent-dark) !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2) !important;
    transform: translateY(-2px);
}

.btn-edit {
    background-color: var(--primary-color) !important; /* أزرق داكن للتعديل */
    color: white !important;
    padding: 0.75rem 1.5rem !important;
    border: none !important;
    border-radius: var(--border-radius) !important;
    cursor: pointer !important;
    font-size: 1rem !important;
    text-decoration: none !important;
    transition: var(--transition) !important;
    text-align: center !important;
    display: inline-block !important;
    box-shadow: var(--box-shadow) !important;
}

.btn-edit:hover {
    background-color: var(--primary-light) !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2) !important;
    transform: translateY(-2px);
}

.confirmation-actions {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 2rem;
}

/* ضمان عدم تداخل الأنماط */
.btn-custom {
    display: inline-block !important;
    text-align: center !important;
    min-width: 150px !important;
}

/* footer/
/* تنسيقات الفوتر */
footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    padding: 30px 0 20px;
    margin-top: 40px;
    position: relative;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--accent-color), var(--primary-light));
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.footer-section:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-logo i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-left: 15px;
}

.footer-logo h3 {
    font-size: 1.2rem;
    margin: 0;
    color: white;
    font-weight: 500;
}

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

.contact-list li {
    margin-bottom: 15px;
}

.contact-list li:last-child {
    margin-bottom: 0;
}

.contact-list a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.contact-list a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateX(-5px);
}

.contact-list i {
    margin-left: 12px;
    color: var(--accent-color);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.link-icon {
    margin-right: auto;
    font-size: 0.8rem;
    opacity: 0.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links {
    margin-bottom: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    margin: 0 5px;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.copyright i {
    color: var(--accent-color);
    margin-left: 5px;
}

/* تحسينات للشاشات الصغيرة */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-section {
        padding: 15px;
    }
    
    .footer-logo {
        margin-bottom: 15px;
        padding-bottom: 10px;
    }
    
    .footer-logo i {
        font-size: 1.5rem;
    }
    
    .footer-logo h3 {
        font-size: 1.1rem;
    }
    
    .contact-list a {
        padding: 6px 10px;
    }
    
    .social-links a {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
}

/* تأثير النشاط عند الضغط */
.logo-item:active .logo-frame {
  transform: scale(0.95);
}

/* تنسيق حاوية العنوان */
.header-content {
  text-align: center;
  padding: 20px 0;
  margin-bottom: 20px;
  position: relative;
}

/* تأثير خلفية متدرجة */
.header-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 82, 118, 0.1) 0%, rgba(230, 126, 34, 0.05) 100%);
  z-index: -1;
  border-radius: 10px;
}

/* حاوية العنوان الداخلية */
.title-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  border-bottom: 2px solid #e67e22;
}

/* العنوان الرئيسي */
.main-title {
  color: #1a5276;
  font-size: 2.2rem;
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  display: inline-block;
}

.main-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #e67e22;
  border-radius: 3px;
}

/* العنوان الفرعي */
.sub-title {
  color: #555;
  font-size: 1.3rem;
  font-weight: 500;
  margin-top: 10px;
  line-height: 1.5;
}

/* تأثيرات حركية */
.main-title {
  transition: all 0.3s ease;
}

.main-title:hover {
  color: #154360;
  transform: translateY(-2px);
}

/* تنسيقات للهواتف */
@media (max-width: 768px) {
  .main-title {
    font-size: 1.8rem;
  }

  .sub-title {
    font-size: 1.1rem;
  }

  .title-container {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .main-title {
    font-size: 1.5rem;
  }

  .sub-title {
    font-size: 1rem;
  }

  .main-title::after {
    width: 60px;
    height: 2px;
  }
}

/* رسائل الخطأ */
.error-message {
  color: var(--error-color);
  font-size: 14px;
  margin-top: 5px;
  animation: fadeIn 0.3s ease;
}

.input-error {
  border-color: var(--error-color) !important;
}

.input-error:focus {
  box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.25) !important;
}

/* رسائل النجاح */
.success-message {
  color: var(--success-color);
  font-size: 14px;
  margin-top: 5px;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.input-error {
  border-color: #e74c3c !important;
  background-color: rgba(231, 76, 60, 0.05) !important;
}

.error-message {
  color: #e74c3c;
  font-size: 14px;
  margin-top: 5px;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* تنسيقات الفوتر الجديدة */
.footer {
  background: linear-gradient(135deg, #1a5276 0%, #154360 100%);
  color: #fff;
  padding: 60px 0 30px;
  font-family: 'Tajawal', sans-serif;
  direction: rtl;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.footer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border-color: rgba(230, 126, 34, 0.3);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo i {
  font-size: 28px;
  color: #e67e22;
}

.footer-logo h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
}

.footer-contacts {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contacts li {
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.footer-contacts li:hover {
  transform: translateX(-5px);
}

.footer-contacts a {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  gap: 12px;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.footer-contacts a:hover {
  color: #e67e22;
}

.footer-contacts i {
  font-size: 18px;
  width: 25px;
  text-align: center;
}

.link-icon {
  margin-right: auto;
  font-size: 14px;
  opacity: 0.7;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 30px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #e67e22;
  transform: translateY(-3px);
}

.copyright {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.copyright i {
  font-size: 12px;
}

/* تنسيقات للهواتف */
@media (max-width: 768px) {
  .footer-grid {
      grid-template-columns: 1fr;
      gap: 25px;
  }
  
  .footer-card {
      padding: 25px;
  }
  
  .footer-logo h3 {
      font-size: 20px;
  }
  
  .footer-contacts a {
      font-size: 14px;
  }
}

@media (max-width: 480px) {
  .footer {
      padding: 40px 0 20px;
  }
  
  .footer-card {
      padding: 20px;
  }
  
  .footer-logo {
      gap: 10px;
      margin-bottom: 20px;
  }
  
  .footer-logo i {
      font-size: 24px;
  }
  
  .footer-logo h3 {
      font-size: 18px;
  }
  
  .social-links {
      gap: 15px;
  }
}

/* تنسيقات الشعارات */
.logos-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.logo-item {
  text-decoration: none;
  transition: var(--transition);
}

.logo-frame {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  background-color: white;
  box-shadow: var(--box-shadow);
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: 2px solid transparent;
}

.logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: var(--transition);
}

.logo-item:hover .logo-frame {
  transform: translateY(-5px);
  border-color: var(--gold-color);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
}

.logo-item:hover img {
  transform: scale(1.05);
}

/* تأثير النبض للشعارات */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
  }
}

.logo-frame:hover {
  animation: pulse 1.5s infinite;
}