   .footer-modern {
       background: linear-gradient(135deg, #062a5a, #0a3d91);
       direction: rtl;
       font-family: Vazirmatn, IRANSans, sans-serif;
   }

   /* عرض استاندارد */
   .footer-container {
       max-width: 1100px;
   }

   /* کارت‌ها */
   .footer-card {
       background: rgba(255, 255, 255, 0.05);
       border-radius: 14px;
       padding: 22px;
       height: 100%;
       border: 1px solid rgba(255, 255, 255, 0.08);
       backdrop-filter: blur(6px);
       transition: all 0.3s ease;
   }

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

   /* عنوان */
   .footer-title {
       font-weight: 700;
       margin-bottom: 16px;
       color: #fff;
       font-size: 1.1rem;
   }

   /* لیست */
   .footer-list {
       list-style: none;
       padding: 0;
       margin: 0;
   }

   .footer-list li {
       margin-bottom: 10px;
   }

   /* لینک‌ها */
   .footer-list a {
       color: #cfd8ff;
       text-decoration: none;
       display: flex;
       align-items: center;
       gap: 8px;
       font-size: 0.95rem;
       transition: all 0.25s ease;
   }

   .footer-list a:hover {
       color: #ffffff;
       transform: translateX(-5px);
   }

   /* آیکون */
   .footer-list i {
       font-size: 1rem;
       color: #b9c7ff;
   }

   .footer-list a:hover i {
       color: #fff;
   }

   /* ⭐ فوتر پایین */
   .footer-bottom {
       margin-top: 20px;
       padding-top: 20px;
       border-top: 1px solid rgba(255, 255, 255, 0.15);
       text-align: center;
       font-size: 0.9rem;
       color: #d1d1d1;

       display: flex;
       flex-direction: column;
       align-items: center;
       gap: 12px;
   }

   /* ⭐ لوگو بزرگ وسط */
   .footer-logo-section img {
       width: 70px;
       height: auto;
       object-fit: contain;
       transition: transform 0.3s ease;
   }

   .footer-logo-section img:hover {
       transform: scale(1.08);
   }

   /* موبایل */
   @media (max-width: 768px) {
       .footer-card {
           padding: 16px;
       }

       .footer-list a:hover {
           transform: none;
       }

       .footer-logo-section img {
           width: 60px;
       }
   }