  /* ========================================== */
  /* تنسيق الفوتر المحسن */
  /* ========================================== */
  footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #94a3b8;
    position: relative;
    overflow: hidden;
  }
  
  footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
  }
  
  footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #3b82f620, transparent);
    border-radius: 50%;
    pointer-events: none;
  }
  
  .footer-top {
    position: relative;
    z-index: 10;
    padding: 3rem 0 2rem;
  }
  
  /* الشعار */
  .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
  }
  
  .logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .logo-icon i {
    font-size: 1.8rem;
    color: white;
  }
  
  .footer-logo h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
  }
  
  .footer-logo h3 span {
    color: #3b82f6;
  }
  
  .footer-info p,
  .webname {
    color: #94a3b8;
    line-height: 1.7;
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  
  .webname {
    font-weight: 600;
    color: #60a5fa;
    display: inline-block;
    padding: 0.3rem 0;
  }
  
  /* النشرة البريدية */
  .footer-newsletter h4 {
    color: white;
    font-size: 1.1rem;
    margin: 1rem 0 0.5rem;
  }
  
  .newsletter-wrapper {
    display: flex;
    margin-top: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: 0.3s;
  }
  
  .newsletter-wrapper:focus-within {
    border-color: #3b82f6;
  }
  
  .newsletter-wrapper input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.8rem 1.2rem;
    color: white;
    font-family: 'Cairo', sans-serif;
    outline: none;
  }
  
  .newsletter-wrapper input::placeholder {
    color: #64748b;
  }
  
  .newsletter-wrapper button {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border: none;
    padding: 0 1.5rem;
    color: white;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .newsletter-wrapper button:hover {
    opacity: 0.9;
    transform: scale(1.02);
  }
  
  /* روابط سريعة */
  .footer-links h4,
  .footer-contact h4 {
    color: white;
    font-size: 1.1rem;
    margin: 1.5rem 0 1rem;
    position: relative;
    display: inline-block;
  }
  
  .footer-links h4::after,
  .footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 0;
    width: 35px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 3px;
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links ul li {
    margin-bottom: 0.7rem;
  }
  
  .footer-links ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
  }
  
  .footer-links ul li a:hover {
    color: #60a5fa;
    transform: translateX(-5px);
  }
  
  /* معلومات الاتصال */
  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
    flex-wrap: wrap;
  }
  
  .contact-item i {
    width: 30px;
    color: #60a5fa;
  }
  
  .contact-item strong {
    color: #cbd5e1;
  }
  
  /* روابط التواصل */
  .social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.2rem;
    flex-wrap: wrap;
  }
  
  .social-links a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: #94a3b8;
    transition: 0.3s;
    text-decoration: none;
  }
  
  .social-links a:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-3px);
  }
  
  /* نموذج الاتصال */
  .form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1.5rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  .form-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.5rem;
  }
  
  .form-header i {
    font-size: 1.8rem;
    color: #3b82f6;
  }
  
  .form-header h4 {
    color: white;
    font-size: 1.2rem;
    margin: 0;
  }
  
  .form-group {
    margin-bottom: 1rem;
  }
  
  .input-icon {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .input-icon i {
    position: absolute;
    right: 1rem;
    color: #64748b;
    font-size: 0.9rem;
    z-index: 1;
  }
  
  .input-icon input,
  .input-icon textarea {
    width: 100%;
    padding: 0.8rem 2.5rem 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-family: 'Cairo', sans-serif;
    transition: 0.3s;
  }
  
  .input-icon textarea {
    resize: vertical;
    padding-top: 0.8rem;
  }
  
  .input-icon input:focus,
  .input-icon textarea:focus {
    outline: none;
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
  }
  
  .submit-btn {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 60px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Cairo', sans-serif;
  }
  
  .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
  }
  
  /* أسفل الفوتر */
  .footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.2rem 0;
    margin-top: 1rem;
  }
  
  .bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .copyright,
  .credits {
    font-size: 0.8rem;
  }
  
  .credits a {
    color: #60a5fa;
    text-decoration: none;
  }
  
  .credits a:hover {
    text-decoration: underline;
  }
  
  .lang-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    color: #94a3b8;
    cursor: pointer;
    font-family: 'Cairo', sans-serif;
    transition: 0.3s;
  }
  
  .lang-btn:hover {
    background: #3b82f6;
    color: white;
  }
  
  /* رسائل النموذج */
  .form-message {
    font-size: 0.8rem;
    padding: 0.3rem;
    text-align: center;
  }
  
  /* استجابة */
  @media (max-width: 992px) {
    .footer-top .row > div {
      margin-bottom: 2rem;
    }
  }
  
  @media (max-width: 768px) {
    .bottom-content {
      flex-direction: column;
      text-align: center;
    }
    
    .newsletter-wrapper {
      flex-direction: column;
      border-radius: 20px;
    }
    
    .newsletter-wrapper button {
      padding: 0.6rem;
    }
    
    .form-wrapper {
      margin-top: 1rem;
    }
  }
  
  @media (max-width: 576px) {
    .footer-top {
      padding: 2rem 0 1rem;
    }
    
    .social-links {
      justify-content: center;
    }
    
    .contact-item {
      justify-content: center;
    }
  }