a {
	text-decoration : none;
}



#header3.header {
    background-color: #FFD700 !important;
    border-bottom: 3px solid #808080 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}

/* کانتینر اصلی */
#header3 .header-container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0 15px !important;
    height: 70px !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
}

/* بخش چپ - دکمه ورود به پنل */
#header3 .left-header {
    background-color: #FFFFFF !important;
    border-radius: 25px !important;
    padding: 0 !important;
    border: 2px solid #808080 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1) !important;
    min-width: 140px !important;
    height: 45px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

#header3 .left-header:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
    border-color: #FFD700 !important;
}

/* دکمه ورود به پنل - تک خطی */
#header3 .panel-login-btn {
    color: #000000 !important;
    font-weight: bold !important;
    font-size: 16px !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
    padding: 10px 20px !important;
    line-height: 1 !important;
    width: 100% !important;
    height: 100% !important;
}

#header3 .panel-login-btn::before {
    content: "🔑" !important;
    font-size: 18px !important;
}

#header3 .panel-login-btn:hover {
    color: #808080 !important;
}

/* بخش مرکزی - منو */
#header3 .center-header {
    flex: 1 !important;
    margin: 0 20px !important;
}

#header3 .nav-content {
    display: flex !important;
    justify-content: center !important;
    gap: 20px !important;
}

#header3 .content-item {
    color: #000000 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    padding: 8px 20px !important;
    border-radius: 20px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    white-space: nowrap !important;
}

#header3 .content-item:hover {
    color: #FFFFFF !important;
    background-color: #808080 !important;
    transform: translateY(-2px) !important;
}

/* بخش راست - لوگو */
#header3 .right-header {
    display: flex !important;
    align-items: center !important;
}

#header3 .nav-logo {
    width: 65px !important; /* بزرگتر شده */
    height: 65px !important; /* بزرگتر شده */
    border-radius: 50% !important;
    border: 2px solid #808080 !important;
    padding: 2px !important;
    background-color: #FFFFFF !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1) !important;
    object-fit: contain !important;
}

#header3 .header-logo:hover .nav-logo {
    border-color: #FFD700 !important;
    transform: rotate(5deg) !important;
}

#header3 .nav-title {
    color: #000000 !important;
    font-family: iranyekan !important;
    font-size: 26px !important; /* کمی بزرگتر */
    font-weight: bold !important;
    margin-left: 15px !important; /* فاصله بیشتر از لوگو */
    transition: color 0.3s ease !important;
    white-space: nowrap !important;
}

#header3 .header-logo:hover .nav-title {
    color: #808080 !important;
}

/* دکمه همبرگر موبایل */
#header3 .mobile-login-btn {
    display: none !important;
}

#header3 .mobile-logo-path {
    stroke: #000000 !important;
}

/* حالت موبایل زیر 1000px */
@media (max-width: 1000px) {
    #header3 .header-container {
        height: 65px !important;
        padding: 0 12px !important;
    }
    
    #header3 .panel-login-btn {
        display: none !important; /* مخفی کردن دکمه ورود به پنل */
    }
    
    #header3 .left-header {
        min-width: auto !important;
        width: auto !important;
        background-color: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        height: auto !important;
    }
    
    #header3 .mobile-login-btn {
        display: block !important;
        cursor: pointer !important;
        width: 32px !important;
        height: 32px !important;
        margin-right: 10px !important;
    }
    
    #header3 .center-header {
        display: none !important;
    }
    
    #header3 .nav-logo {
        width: 55px !important;
        height: 55px !important;
    }
    
    #header3 .nav-title {
        font-size: 22px !important;
        margin-left: 10px !important;
    }
}

/* حالت موبایل کوچک */
@media (max-width: 768px) {
    #header3 .header-container {
        height: 60px !important;
        padding: 0 10px !important;
    }
    
    #header3 .nav-logo {
        width: 50px !important;
        height: 50px !important;
    }
    
    #header3 .nav-title {
        font-size: 20px !important;
        margin-left: 8px !important;
    }
}

/* حالت خیلی کوچک موبایل */
@media (max-width: 480px) {
    #header3 .header-container {
        height: 55px !important;
    }
    
    #header3 .nav-title {
        font-size: 18px !important;
        margin-left: 6px !important;
    }
    
    #header3 .nav-logo {
        width: 45px !important;
        height: 45px !important;
    }
    
    #header3 .mobile-login-btn {
        width: 28px !important;
        height: 28px !important;
        margin-right: 8px !important;
    }
}



/* رنگ بندی طوسی و زرد */
#mySidenav.sidenav {
    background: #FFD700 !important;
    width: 280px;
    height: 100%;
    position: fixed;
    top: 0;
    right: -280px;
    z-index: 10000;
    transition: right 0.3s;
}

#mySidenav .closebtn {
    background: #808080 !important;
    color: white !important;
    font-size: 30px;
    position: absolute;
    left: 15px;
    top: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid white;
}

#mySidenav .sidebar-header {
    background: #808080 !important;
    padding: 20px;
    text-align: center;
    border-bottom: 2px solid white;
}

#mySidenav .sidenav-content {
    padding: 15px;
}

#mySidenav .link-style,
#mySidenav .dropdown-item-mobile,
#mySidenav .sidenav-link {
    display: block;
    color: white !important;
    background: #808080 !important;
    padding: 12px 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid white;
}

#mySidenav .mobile-turn-content {
    background: #808080 !important;
    color: white !important;
    padding: 15px;
    text-align: center;
    font-weight: bold;
    border-top: 2px solid white;
    position: sticky;
    bottom: 0;
    cursor: pointer;
}




/* استایل کلی فوتر */
#footer1.information {
    background-color: #ffffff !important;
    color: #000000 !important;
    padding: 40px 20px 20px 20px !important;
    position: relative !important;
    overflow: hidden !important;
    font-family: 'IRANSans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

/* افکت زرد در پس‌زمینه */
#footer1.information::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 5px !important;
    background: linear-gradient(90deg, #FFD700, #808080, #FFD700) !important;
    z-index: 1 !important;
}

/* کانتینر اصلی */
#footer1 .information-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    position: relative !important;
    z-index: 2 !important;
}

/* بخش بج‌ها */
#footer1 .badge-list {
    background: #f8f8f8 !important;
    border-radius: 15px !important;
    padding: 30px !important;
    margin-bottom: 30px !important;
    border: 2px solid #FFD700 !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
}

#footer1 .badge-pre {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    font-family: inherit !important;
    white-space: normal !important;
}

#footer1 .badge-content {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 30px !important;
}

/* بخش‌های مختلف */
#footer1 .badge-section {
    margin-bottom: 25px !important;
    padding-bottom: 25px !important;
    border-bottom: 1px solid #e0e0e0 !important;
}

#footer1 .badge-section:last-child {
    border-bottom: none !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* عنوان بخش‌ها */
#footer1 .section-title {
    color: #000000 !important;
    font-size: 20px !important;
    font-weight: bold !important;
    margin-bottom: 15px !important;
    padding-bottom: 8px !important;
    border-bottom: 2px solid #FFD700 !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

#footer1 .section-title::after {
    content: '' !important;
    position: absolute !important;
    bottom: -2px !important;
    right: 0 !important;
    width: 50px !important;
    height: 2px !important;
    background-color: #808080 !important;
}

/* نقشه گوگل */
#footer1 .google-map {
    border-radius: 10px !important;
    overflow: hidden !important;
    border: 2px solid #FFD700 !important;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1) !important;
    margin-bottom: 15px !important;
}

#footer1 .google-map iframe {
    border-radius: 8px !important;
}

/* لینک‌های مسیریابی */
#footer1 .navigation-links {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    margin-top: 15px !important;
}

#footer1 .nav-link {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 10px 15px !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    transition: all 0.3s ease !important;
    text-align: center !important;
    border: 1px solid transparent !important;
}

#footer1 .nav-link.google-maps {
    background: #f8f9fa !important;
    color: #4285F4 !important;
    border-color: #4285F4 !important;
}

#footer1 .nav-link.balad {
    background: #f8f9fa !important;
    color: #00BFA5 !important;
    border-color: #00BFA5 !important;
}

#footer1 .nav-link.neshan {
    background: #f8f9fa !important;
    color: #FF6B35 !important;
    border-color: #FF6B35 !important;
}

#footer1 .nav-link.waze {
    background: #f8f9fa !important;
    color: #33CCFF !important;
    border-color: #33CCFF !important;
}

#footer1 .nav-link:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15) !important;
    opacity: 0.9 !important;
}

/* اطلاعات تماس */
#footer1 .contact-item {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-bottom: 10px !important;
    padding: 12px 15px !important;
    background: white !important;
    border-radius: 8px !important;
    border-right: 3px solid #808080 !important;
    transition: all 0.3s ease !important;
    line-height: 1.6 !important;
}

#footer1 .contact-item:hover {
    background: #fff9e6 !important;
    transform: translateX(-5px) !important;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1) !important;
}

#footer1 .contact-item i {
    color: #FFD700 !important;
    font-size: 16px !important;
    min-width: 20px !important;
}

#footer1 .contact-item strong {
    color: #000000 !important;
    font-weight: bold !important;
}

#footer1 .contact-item a {
    color: #000000 !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

#footer1 .contact-item a:hover {
    color: #FFD700 !important;
    text-decoration: underline !important;
}

/* آدرس */
#footer1 .address-info p {
    line-height: 1.8 !important;
    margin-bottom: 15px !important;
    padding: 20px !important;
    background: white !important;
    border-radius: 10px !important;
    border: 1px solid #e0e0e0 !important;
    position: relative !important;
}

#footer1 .address-info p i {
    color: #FFD700 !important;
    margin-left: 8px !important;
    font-size: 18px !important;
}

#footer1 .address-note {
    background: #fff9e6 !important;
    color: #000000 !important;
    padding: 15px !important;
    border-radius: 10px !important;
    font-size: 14px !important;
    border: 1px solid #FFD700 !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    line-height: 1.6 !important;
}

#footer1 .address-note i {
    color: #808080 !important;
    font-size: 16px !important;
    margin-top: 2px !important;
}

/* شبکه‌های اجتماعی */
#footer1 .social-links {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
}

#footer1 .social-link {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 12px 15px !important;
    border-radius: 10px !important;
    text-decoration: none !important;
    font-weight: bold !important;
    color: white !important;
    transition: all 0.3s ease !important;
    text-align: center !important;
    font-size: 14px !important;
}

#footer1 .social-link.instagram {
    background: linear-gradient(45deg, #833AB4, #E1306C, #F77737) !important;
}

#footer1 .social-link.telegram {
    background: #0088cc !important;
}

#footer1 .social-link.whatsapp {
    background: #25D366 !important;
}

#footer1 .social-link.location {
    background: linear-gradient(45deg, #34A853, #4285F4) !important;
}

#footer1 .social-link:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2) !important;
    opacity: 0.9 !important;
}

#footer1 .social-link i {
    font-size: 16px !important;
}

/* دایورایدر */
#footer1 .divider-device div {
    height: 2px !important;
    width: 80% !important;
    max-width: 800px !important;
    margin: 30px auto !important;
    background: linear-gradient(90deg, transparent, #FFD700, #808080, #FFD700, transparent) !important;
}

/* بخش اپ موبایل */
#footer1 .footer-mobile-app {
    background: linear-gradient(135deg, #FFD700, #f0e68c) !important;
    border-radius: 15px !important;
    padding: 25px 20px !important;
    margin: 30px auto !important;
    max-width: 600px !important;
    border: 2px solid #808080 !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
}

#footer1 .footer-mobile-app h5 {
    color: #000000 !important;
    font-weight: bold !important;
    font-size: 18px !important;
    margin-bottom: 20px !important;
}

#footer1 .footer-mobile-app img {
    transition: all 0.3s ease !important;
    border-radius: 10px !important;
    padding: 5px !important;
    background: white !important;
    border: 2px solid transparent !important;
}

#footer1 .footer-mobile-app img:hover {
    transform: scale(1.1) !important;
    border-color: #808080 !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2) !important;
}

/* کپی‌رایت */
#footer1 .section-copyright {
    text-align: center !important;
    padding: 20px !important;
    background: #000000 !important;
    border-radius: 10px 10px 0 0 !important;
    margin-top: 30px !important;
    border-top: 3px solid #FFD700 !important;
}

#footer1 .section-copyright a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
}

#footer1 .section-copyright .fw-bold {
    color: #FFFFFF !important;
}

#footer1 .section-copyright span[style*="color:#ffd800"] {
    color: #FFD700 !important;
    font-size: 18px !important;
}

#footer1 .section-copyright img {
    width: 24px !important;
    height: 24px !important;
    vertical-align: middle !important;
    border-radius: 50% !important;
    padding: 2px !important;
    background: white !important;
}

/* رسپانسیو */
@media (max-width: 992px) {
    #footer1 .badge-content {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    #footer1 .navigation-links {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    #footer1 .badge-content {
        grid-template-columns: 1fr !important;
    }
    
    #footer1 .badge-list {
        padding: 20px !important;
    }
    
    #footer1 .social-links {
        grid-template-columns: 1fr !important;
    }
    
    #footer1 .social-link {
        padding: 10px 15px !important;
        font-size: 14px !important;
    }
    
    #footer1 .footer-mobile-app {
        padding: 20px 15px !important;
    }
    
    #footer1 .footer-mobile-app .d-flex {
        flex-direction: column !important;
        gap: 15px !important;
    }
    
    #footer1 .footer-mobile-app a {
        margin: 0 !important;
    }
    
    #footer1 .contact-item,
    #footer1 .address-info p,
    #footer1 .address-note {
        padding: 10px !important;
    }
}

@media (max-width: 480px) {
    #footer1 .section-title {
        font-size: 18px !important;
    }
    
    #footer1 .navigation-links {
        gap: 8px !important;
    }
    
    #footer1 .nav-link {
        font-size: 12px !important;
        padding: 8px 10px !important;
    }
}





/* بخش اصلی */
#id-6191.article9 {
    background-color: #ffffff !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    padding: 50px 20px !important;
    position: relative !important;
    min-height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* wrapper اصلی */
#id-6191 .article-wrapper {
    max-width: 1200px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 25px !important;
    position: relative !important;
    z-index: 2 !important;
    align-items: stretch !important;
    width: 100% !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
    overflow: visible !important;
}

/* کارت‌ها - انیمیشن بسیار نرم */
#id-6191 .article-card-item {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 4px 15px rgba(255, 215, 0, 0.15) !important;
    
    /* انیمیشن بسیار نرم و کند */
    transition: 
        transform 1.5s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 1.5s cubic-bezier(0.23, 1, 0.32, 1),
        border-color 1.5s ease !important;
    
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: 25px 20px !important;
    height: 100% !important;
    min-height: 380px !important;
    border: 2px solid rgba(255, 215, 0, 0.2) !important;
    box-sizing: border-box !important;
    width: 100% !important;
    position: relative !important;
    cursor: pointer !important;
}

/* هاور بسیار نرم و آرام */
#id-6191 .article-card-item:hover {
    transform: translateY(-6px) scale(1.01) !important; /* حرکت خیلی کم و نرم */
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.12),
        0 5px 20px rgba(255, 215, 0, 0.18),
        0 0 0 1px rgba(255, 215, 0, 0.25) !important;
    border-color: rgba(255, 215, 0, 0.3) !important;
    z-index: 1000 !important;
}

/* کارت وسطی - در حالت عادی طوسی */
#id-6191 .article-card-item:nth-child(2) {
    border: 2px solid rgba(128, 128, 128, 0.2) !important;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 4px 15px rgba(128, 128, 128, 0.15) !important;
}

/* هاور کارت وسطی */
#id-6191 .article-card-item:nth-child(2):hover {
    border-color: rgba(255, 215, 0, 0.3) !important;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.12),
        0 5px 20px rgba(255, 215, 0, 0.18),
        0 0 0 1px rgba(255, 215, 0, 0.25) !important;
}

/* بخش تصویر کارت */
#id-6191 .card-image-content {
    width: 130px !important;
    height: 130px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 5px auto 20px auto !important;
    position: relative !important;
    flex-shrink: 0 !important;
}

/* هاله نور در هاور - بسیار نرم */
#id-6191 .card-image-content::before {
    content: '' !important;
    position: absolute !important;
    top: -8px !important;
    left: -8px !important;
    right: -8px !important;
    bottom: -8px !important;
    background: radial-gradient(circle, 
        rgba(255, 215, 0, 0.1) 0%, 
        rgba(255, 215, 0, 0.25) 50%, 
        rgba(255, 215, 0, 0.1) 100%) !important;
    border-radius: 50% !important;
    z-index: 1 !important;
    opacity: 0 !important;
    transition: opacity 1.5s ease, transform 1.5s ease !important;
}

#id-6191 .article-card-item:hover .card-image-content::before {
    opacity: 0.7 !important;
}

/* پس‌زمینه دایره‌ای برای عکس - کارت‌های اول و سوم زرد */
#id-6191 .article-card-item:nth-child(1) .card-image-content::after,
#id-6191 .article-card-item:nth-child(3) .card-image-content::after {
    content: '' !important;
    position: absolute !important;
    width: 110px !important;
    height: 110px !important;
    background: linear-gradient(135deg, #FFD700 0%, #FFED4E 100%) !important;
    border-radius: 50% !important;
    z-index: 2 !important;
    box-shadow: 
        0 4px 15px rgba(255, 215, 0, 0.25),
        inset 0 0 0 4px rgba(255, 255, 255, 0.9) !important;
    transition: all 1.2s ease !important;
}

/* کارت وسطی - در حالت عادی طوسی */
#id-6191 .article-card-item:nth-child(2) .card-image-content::after {
    content: '' !important;
    position: absolute !important;
    width: 110px !important;
    height: 110px !important;
    background: linear-gradient(135deg, #808080 0%, #A0A0A0 100%) !important;
    border-radius: 50% !important;
    z-index: 2 !important;
    box-shadow: 
        0 4px 15px rgba(128, 128, 128, 0.25),
        inset 0 0 0 4px rgba(255, 255, 255, 0.9) !important;
    transition: all 1.2s ease !important;
}

/* کارت وسطی در هاور - زرد می‌شود */
#id-6191 .article-card-item:nth-child(2):hover .card-image-content::after {
    background: linear-gradient(135deg, #FFD700 0%, #FFED4E 100%) !important;
    box-shadow: 
        0 4px 15px rgba(255, 215, 0, 0.25),
        inset 0 0 0 4px rgba(255, 255, 255, 0.9) !important;
}

/* کارت‌های اول و سوم در هاور - طوسی می‌شوند */
#id-6191 .article-card-item:nth-child(1):hover .card-image-content::after,
#id-6191 .article-card-item:nth-child(3):hover .card-image-content::after {
    background: linear-gradient(135deg, #808080 0%, #A0A0A0 100%) !important;
    box-shadow: 
        0 4px 15px rgba(128, 128, 128, 0.25),
        inset 0 0 0 4px rgba(255, 255, 255, 0.9) !important;
}

/* تصویر */
#id-6191 .article-image {
    width: 55px !important;
    height: 55px !important;
    object-fit: contain !important;
    position: relative !important;
    z-index: 3 !important;
    filter: 
        brightness(0.9)
        contrast(1.1)
        drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.1)) !important;
    transition: all 1.2s ease !important;
}

#id-6191 .article-card-item:hover .article-image {
    transform: scale(1.05) !important; /* بزرگ‌تر شدن بسیار کم */
    filter: 
        brightness(1)
        contrast(1.1)
        drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.15)) !important;
}

/* جزئیات کارت */
#id-6191 .card-detail {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    justify-content: space-between !important;
}

#id-6191 .card-detail-content {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    flex: 1 !important;
}

/* عنوان */
#id-6191 .article-card-title {
    color: #000000 !important;
    font-family: 'iranyekan', sans-serif !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    margin-bottom: 12px !important;
    text-align: center !important;
    width: 100% !important;
    padding: 0 !important;
    line-height: 1.4 !important;
    min-height: 56px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: transform 1.2s ease !important;
}

/* کارت در هاور - عنوان کمی بالا می‌رود */
#id-6191 .article-card-item:hover .article-card-title {
    transform: translateY(-1px) !important;
}

/* خط جداکننده */
#id-6191 .article-card-line {
    border: none !important;
    height: 2px !important;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #FFD700 50%, 
        transparent 100%) !important;
    margin: 5px auto 15px auto !important;
    width: 50px !important;
    border-radius: 1px !important;
    transition: all 1.2s ease !important;
}

/* بهبود هاور خط جداکننده */
#id-6191 .article-card-item:hover .article-card-line {
    width: 60px !important;
}

/* خط جداکننده کارت وسطی */
#id-6191 .article-card-item:nth-child(2) .article-card-line {
    background: linear-gradient(90deg, 
        transparent 0%, 
        #808080 50%, 
        transparent 100%) !important;
}

/* بهبود هاور خط کارت وسطی */
#id-6191 .article-card-item:nth-child(2):hover .article-card-line {
    background: linear-gradient(90deg, 
        transparent 0%, 
        #FFD700 50%, 
        transparent 100%) !important;
}

/* کارت‌های اول و سوم در هاور - خط طوسی می‌شود */
#id-6191 .article-card-item:nth-child(1):hover .article-card-line,
#id-6191 .article-card-item:nth-child(3):hover .article-card-line {
    background: linear-gradient(90deg, 
        transparent 0%, 
        #808080 50%, 
        transparent 100%) !important;
}

/* متن توضیحات */
#id-6191 .article-card-description {
    color: #555555 !important;
    font-family: 'iranyekan', sans-serif !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
    text-align: center !important;
    width: 100% !important;
    padding: 0 5px !important;
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

#id-6191 .article-card-description p {
    margin-bottom: 12px !important;
    text-align: center !important;
    padding: 0 !important;
}

#id-6191 .article-card-description p:last-child {
    margin-bottom: 0 !important;
}

/* دکمه‌ها با انیمیشن نرم */
#id-6191 .btn-mosta {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, #FFD700 0%, #FFED4E 100%) !important;
    color: #000000 !important;
    font-family: 'iranyekan', sans-serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    padding: 12px 30px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    border: 2px solid rgba(255, 255, 255, 0.8) !important;
    transition: all 1.2s ease !important;
    box-shadow: 
        0 4px 10px rgba(255, 215, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
    min-width: 160px !important;
    position: relative !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    cursor: pointer !important;
}

#id-6191 .btn-mosta::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.25), 
        transparent) !important;
    transition: left 1.8s ease !important; /* بسیار آرام */
}

#id-6191 .btn-mosta:hover {
    transform: translateY(-1px) !important; /* حرکت بسیار کم */
    box-shadow: 
        0 6px 15px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
    border-color: rgba(255, 255, 255, 0.9) !important;
}

#id-6191 .btn-mosta:hover::before {
    left: 100% !important;
}

/* دکمه کارت وسطی - در حالت عادی طوسی */
#id-6191 .article-card-item:nth-child(2) .btn-mosta {
    background: linear-gradient(135deg, #808080 0%, #A0A0A0 100%) !important;
    color: #FFFFFF !important;
    box-shadow: 
        0 4px 10px rgba(128, 128, 128, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

/* بهبود هاور دکمه کارت وسطی */
#id-6191 .article-card-item:nth-child(2) .btn-mosta:hover {
    background: linear-gradient(135deg, #FFD700 0%, #FFED4E 100%) !important;
    color: #000000 !important;
    box-shadow: 
        0 6px 15px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
}

/* دکمه کارت‌های اول و سوم در هاور - طوسی می‌شود */
#id-6191 .article-card-item:nth-child(1) .btn-mosta:hover,
#id-6191 .article-card-item:nth-child(3) .btn-mosta:hover {
    background: linear-gradient(135deg, #808080 0%, #A0A0A0 100%) !important;
    color: #FFFFFF !important;
    box-shadow: 
        0 6px 15px rgba(128, 128, 128, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
}

/* انیمیشن ورود آرام */
@keyframes fadeInUpGentle {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#id-6191 .article-card-item {
    animation: fadeInUpGentle 1s ease forwards;
    opacity: 0;
}

#id-6191 .article-card-item:nth-child(1) { animation-delay: 0.1s; }
#id-6191 .article-card-item:nth-child(2) { animation-delay: 0.2s; }
#id-6191 .article-card-item:nth-child(3) { animation-delay: 0.3s; }

/* رسپانسیو - دسکتاپ متوسط (992px تا 1300px) */
@media (max-width: 1300px) and (min-width: 993px) {
    #id-6191.article9 {
        padding: 40px 15px !important;
    }
    
    #id-6191 .article-wrapper {
        max-width: 1000px !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px !important;
        padding: 0 15px !important;
    }
    
    #id-6191 .article-card-item {
        padding: 22px 18px !important;
        min-height: 360px !important;
    }
    
    #id-6191 .article-card-item:hover {
        transform: translateY(-4px) scale(1.008) !important;
    }
    
    #id-6191 .card-image-content {
        width: 120px !important;
        height: 120px !important;
        margin: 5px auto 18px auto !important;
    }
    
    #id-6191 .card-image-content::after {
        width: 100px !important;
        height: 100px !important;
    }
    
    #id-6191 .article-image {
        width: 50px !important;
        height: 50px !important;
    }
    
    #id-6191 .article-card-title {
        font-size: 19px !important;
        min-height: 54px !important;
    }
    
    #id-6191 .article-card-description {
        font-size: 13.5px !important;
        line-height: 1.55 !important;
    }
    
    #id-6191 .btn-mosta {
        font-size: 14px !important;
        padding: 11px 28px !important;
        min-width: 150px !important;
    }
}

/* رسپانسیو - تبلت بزرگ (769px تا 992px) */
@media (max-width: 992px) and (min-width: 769px) {
    #id-6191.article9 {
        padding: 35px 15px !important;
        min-height: auto !important;
    }
    
    #id-6191 .article-wrapper {
        max-width: 700px !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
        padding: 0 15px !important;
    }
    
    #id-6191 .article-card-item {
        padding: 22px 18px !important;
        min-height: 360px !important;
    }
    
    #id-6191 .article-card-item:hover {
        transform: translateY(-3px) scale(1.006) !important;
    }
    
    #id-6191 .card-image-content {
        width: 120px !important;
        height: 120px !important;
        margin: 5px auto 18px auto !important;
    }
    
    #id-6191 .card-image-content::after {
        width: 100px !important;
        height: 100px !important;
    }
    
    #id-6191 .article-image {
        width: 50px !important;
        height: 50px !important;
    }
    
    #id-6191 .article-card-title {
        font-size: 19px !important;
        min-height: 54px !important;
    }
    
    #id-6191 .article-card-description {
        font-size: 13.5px !important;
        line-height: 1.55 !important;
    }
    
    #id-6191 .btn-mosta {
        font-size: 14px !important;
        padding: 11px 28px !important;
        min-width: 150px !important;
    }
}

/* رسپانسیو - تبلت (698px تا 768px) */
@media (max-width: 768px) and (min-width: 699px) {
    #id-6191.article9 {
        padding: 30px 10px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    #id-6191 .article-wrapper {
        max-width: 650px !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
        padding: 0 10px !important;
        margin: 0 auto !important;
    }
    
    #id-6191 .article-card-item {
        min-height: 350px !important;
        padding: 20px 15px !important;
        width: 100% !important;
    }
    
    #id-6191 .article-card-item:hover {
        transform: translateY(-2px) scale(1.004) !important;
    }
    
    #id-6191 .card-image-content {
        width: 110px !important;
        height: 110px !important;
        margin: 5px auto 15px auto !important;
    }
    
    #id-6191 .card-image-content::after {
        width: 90px !important;
        height: 90px !important;
    }
    
    #id-6191 .article-image {
        width: 45px !important;
        height: 45px !important;
    }
    
    #id-6191 .article-card-title {
        font-size: 18px !important;
        min-height: 52px !important;
        margin-bottom: 10px !important;
    }
    
    #id-6191 .article-card-description {
        font-size: 13px !important;
        line-height: 1.5 !important;
        padding: 0 !important;
        margin-bottom: 15px !important;
    }
    
    #id-6191 .btn-mosta {
        font-size: 13.5px !important;
        padding: 10px 25px !important;
        min-width: 140px !important;
    }
}

/* رسپانسیو - موبایل (زیر 698px) */
@media (max-width: 698px) {
    #id-6191.article9 {
        padding: 25px 10px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    #id-6191 .article-wrapper {
        max-width: 100% !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 15px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    #id-6191 .article-card-item {
        min-height: 340px !important;
        padding: 18px 15px !important;
        width: 100% !important;
        max-width: 350px !important;
        margin: 0 auto !important;
    }
    
    #id-6191 .article-card-item:hover {
        transform: translateY(-1px) scale(1.002) !important;
    }
    
    #id-6191 .card-image-content {
        width: 100px !important;
        height: 100px !important;
    }
    
    #id-6191 .card-image-content::after {
        width: 80px !important;
        height: 80px !important;
    }
    
    #id-6191 .article-image {
        width: 40px !important;
        height: 40px !important;
    }
    
    #id-6191 .article-card-title {
        font-size: 17px !important;
        min-height: 48px !important;
    }
    
    #id-6191 .article-card-description {
        font-size: 12.5px !important;
        line-height: 1.5 !important;
        margin-bottom: 15px !important;
    }
    
    #id-6191 .btn-mosta {
        font-size: 13px !important;
        padding: 9px 22px !important;
        min-width: 130px !important;
    }
}

/* رسپانسیو - موبایل کوچک */
@media (max-width: 480px) {
    #id-6191.article9 {
        padding: 20px 8px !important;
    }
    
    #id-6191 .article-wrapper {
        padding: 0 10px !important;
        gap: 15px !important;
    }
    
    #id-6191 .article-card-item {
        min-height: 330px !important;
        padding: 16px 12px !important;
        max-width: 100% !important;
    }
    
    #id-6191 .article-card-item:hover {
        transform: translateY(0) scale(1.001) !important;
    }
    
    #id-6191 .card-image-content {
        width: 90px !important;
        height: 90px !important;
    }
    
    #id-6191 .card-image-content::after {
        width: 70px !important;
        height: 70px !important;
    }
    
    #id-6191 .article-image {
        width: 35px !important;
        height: 35px !important;
    }
    
    #id-6191 .article-card-title {
        font-size: 16px !important;
        min-height: 44px !important;
    }
    
    #id-6191 .article-card-description {
        font-size: 12px !important;
        line-height: 1.5 !important;
        margin-bottom: 12px !important;
    }
    
    #id-6191 .btn-mosta {
        font-size: 12.5px !important;
        padding: 8px 20px !important;
        min-width: 120px !important;
    }
}

/* تنظیمات اضافی برای جلوگیری از ریختن */
#id-6191 .article-wrapper {
    overflow: visible !important;
}

#id-6191 .article-card-item {
    min-width: 0 !important;
}

#id-6191 .article-card-description pre,
#id-6191 .article-card-description p {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
}

/* جلوگیری از تأثیر هاور روی کارت‌های مجاور */
#id-6191 .article-card-item {
    isolation: isolate !important;
}

/* بهبود عملکرد انیمیشن */
#id-6191 .article-card-item {
    backface-visibility: hidden !important;
    -webkit-backface-visibility: hidden !important;
    will-change: transform, box-shadow !important;
}

/* ===== Base Button ===== */
#id-6192.reservation {
    position: fixed !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    z-index: 99999 !important;
    
    /* حالت عادی: پس‌زمینه زرد */
    background: linear-gradient(135deg, #ffd700, #ffed4e) !important;
    color: #333333 !important;

    border-radius: 28px !important;
    padding: 16px 34px !important;
    font-family: iranyekan !important;
    font-weight: 800 !important;
    cursor: pointer !important;

    /* کادر طوسی در حالت عادی */
    border: 2px solid #808080 !important;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.08),
        0 0 15px rgba(255, 215, 0, 0.3) !important;

    backdrop-filter: blur(6px) !important;
    transition: all 0.45s ease !important;
    animation: softGlow 4s ease-in-out infinite !important;
    
    /* موقعیت سیستم: پایین سمت چپ */
    bottom: 60px !important;
    left: 40px !important;
    right: auto !important;
}

/* ===== متن و آیکون ===== */
#id-6192.reservation pre,
#id-6192.reservation p {
    all: unset !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

#id-6192.reservation .btn-icon {
    font-size: 22px !important;
    transition: transform 0.4s ease !important;
    color: #333333 !important;
}

#id-6192.reservation .btn-text {
    letter-spacing: 0.4px !important;
    color: #333333 !important;
}

/* ===== Hover ===== */
#id-6192.reservation:hover {
    /* حالت هاور: پس‌زمینه طوسی */
    background: linear-gradient(135deg, #808080, #9a9a9a) !important;
    color: #ffffff !important;

    transform: translateY(-6px) scale(1.05) !important;

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.25),
        0 0 25px rgba(255, 215, 0, 0.8) !important;

    /* کادر زرد در هاور */
    border-color: #ffd700 !important;
}

#id-6192.reservation:hover .btn-icon {
    transform: rotate(-10deg) scale(1.2) !important;
    color: #ffffff !important;
}

#id-6192.reservation:hover .btn-text {
    color: #ffffff !important;
}

/* ===== Active ===== */
#id-6192.reservation:active {
    transform: scale(0.97) translateY(-2px) !important;
    background: linear-gradient(135deg, #707070, #888888) !important;
}

/* ===== Glow Animation ===== */
@keyframes softGlow {
    0% {
        box-shadow:
            0 10px 30px rgba(0, 0, 0, 0.08),
            0 0 15px rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow:
            0 14px 36px rgba(0, 0, 0, 0.15),
            0 0 25px rgba(255, 215, 0, 0.5);
    }
    100% {
        box-shadow:
            0 10px 30px rgba(0, 0, 0, 0.08),
            0 0 15px rgba(255, 215, 0, 0.3);
    }
}

/* ===== Desktop ===== */
@media (min-width: 1024px) {
    #id-6192.reservation {
        bottom: 60px !important;
        left: 40px !important;
        font-size: 18px !important;
        min-width: 300px !important;
    }
}

/* ===== Tablet ===== */
@media (max-width: 1023px) and (min-width: 769px) {
    #id-6192.reservation {
        bottom: 50px !important;
        left: 30px !important;
        font-size: 17px !important;
        min-width: 280px !important;
        padding: 14px 30px !important;
    }
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
    #id-6192.reservation {
        /* در موبایل وسط صفحه باشد */
        left: 50% !important;
        right: auto !important;
        bottom: 20px !important;
        transform: translateX(-50%) !important;
        width: 85% !important;
        max-width: 320px !important;
        min-width: 250px !important;
        font-size: 15px !important;
        padding: 12px 25px !important;
        gap: 8px !important;
        border-radius: 24px !important;
    }
    
    #id-6192.reservation .btn-icon {
        font-size: 20px !important;
    }
    
    #id-6192.reservation .btn-text {
        font-size: 14px !important;
    }
    
    #id-6192.reservation:hover {
        transform: translateX(-50%) translateY(-6px) scale(1.05) !important;
    }
    
    #id-6192.reservation:active {
        transform: translateX(-50%) scale(0.97) translateY(-2px) !important;
    }
}

/* ===== Mobile Small ===== */
@media (max-width: 480px) {
    #id-6192.reservation {
        width: 88% !important;
        font-size: 14px !important;
        padding: 11px 22px !important;
        bottom: 18px !important;
        border-radius: 22px !important;
        gap: 6px !important;
    }
    
    #id-6192.reservation .btn-icon {
        font-size: 18px !important;
    }
    
    #id-6192.reservation .btn-text {
        font-size: 13px !important;
    }
}

/* ===== Mobile Very Small ===== */
@media (max-width: 360px) {
    #id-6192.reservation {
        width: 90% !important;
        font-size: 13px !important;
        padding: 10px 20px !important;
        bottom: 15px !important;
        border-radius: 20px !important;
    }
    
    #id-6192.reservation .btn-icon {
        font-size: 16px !important;
    }
    
    #id-6192.reservation .btn-text {
        font-size: 12px !important;
    }
}




/* بخش اصلی */
#id-6194.article12 {
    background: white;
    padding: 60px 20px;
    text-align: center;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* هدر بخش */
#id-6194 .section-header {
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
    box-sizing: border-box;
}

#id-6194 .section-description pre {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font-family: 'iranyekan', sans-serif;
    color: #3d3d3d;
    font-size: 17px;
    line-height: 1.7;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

/* کارت‌ها */
#id-6194 .article-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 0 20px;
    box-sizing: border-box;
}

#id-6194 .article-card-item {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid #FFD700;
    box-sizing: border-box;
    width: 100%;
    max-width: 350px;
    min-height: 380px;
    height: auto;
}

/* تصویر */
#id-6194 .article-header {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFD700;
    border-radius: 50%;
    padding: 15px;
    flex-shrink: 0;
}

#id-6194 .article-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* عنوان */
#id-6194 .article-title {
    color: #000000;
    font-family: 'ShabnamBold', sans-serif;
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.4;
    text-align: center;
    width: 100%;
    padding: 0 5px;
    box-sizing: border-box;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* متن - محدود به 100px ارتفاع */
#id-6194 .article-description {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

#id-6194 .article-description pre {
    background: none;
    border: none;
    padding: 0;
    margin: 0 0 15px 0;
    font-family: 'Samim', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    max-height: 100px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

/* لینک دکمه - فقط استایل‌های پایه بدون استایل‌های خاص دکمه */
#id-6194 .article-description a {
    display: inline-block;
    text-decoration: none;
    margin: 5px auto 0 auto;
}

#id-6194 .article-description img {
    margin-right: 8px;
    vertical-align: middle;
    width: 20px;
    height: 20px;
}

/* نمایش همه کارت‌ها */
#id-6194 .hide-slide-left,
#id-6194 .hide-none {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* کارت وسط - فقط تغییر رنگ border */
#id-6194 .article-card-item:nth-child(2) {
    border-color: #808080;
}

/* رسپانسیو - دسکتاپ کوچک */
@media (max-width: 1200px) {
    #id-6194 .article-wrapper {
        gap: 25px;
        padding: 0 15px;
    }
    
    #id-6194 .article-card-item {
        max-width: 330px;
    }
}

@media (max-width: 992px) {
    #id-6194.article12 {
        padding: 50px 15px;
    }
    
    #id-6194 .article-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
        max-width: 700px;
    }
    
    #id-6194 .article-card-item {
        max-width: 320px;
        width: calc(50% - 12.5px);
        min-height: 370px;
    }
}

@media (max-width: 768px) {
    #id-6194.article12 {
        padding: 40px 10px;
    }
    
    #id-6194 .article-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        max-width: 450px;
        margin: 0 auto;
    }
    
    #id-6194 .article-card-item {
        width: 100%;
        max-width: 400px;
        min-height: 360px;
        margin: 0 auto !important;
        display: flex !important;
    }
    
    #id-6194 .article-description pre {
        max-height: 90px;
        -webkit-line-clamp: 3;
        font-size: 13.5px;
    }
}

@media (max-width: 480px) {
    #id-6194.article12 {
        padding: 30px 8px;
    }
    
    #id-6194 .article-wrapper {
        gap: 15px;
        padding: 0;
    }
    
    #id-6194 .article-card-item {
        padding: 20px 15px;
        min-height: 340px;
        max-width: 100%;
    }
    
    #id-6194 .article-header {
        width: 90px;
        height: 90px;
        padding: 12px;
    }
    
    #id-6194 .article-image {
        width: 50px;
        height: 50px;
    }
    
    #id-6194 .article-title {
        font-size: 16px;
        min-height: 45px;
    }
    
    #id-6194 .article-description pre {
        max-height: 80px;
        font-size: 13px;
        -webkit-line-clamp: 3;
    }
}

/* بخش آمار */
#id-6200.article12 {
    background-color: #ffffff !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    padding: 50px 20px !important;
    position: relative !important;
    min-height: 70vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center;
    box-sizing: border-box;
}

/* کارت‌ها */
#id-6200 .article-wrapper {
    max-width: 1200px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 25px !important;
    position: relative !important;
    z-index: 2 !important;
    align-items: stretch !important;
    width: 100% !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
}

#id-6200 .article-card-item {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 4px 15px rgba(255, 215, 0, 0.15) !important;
    transition: all 0.4s ease !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: 25px 20px !important;
    height: 100% !important;
    min-height: 320px !important;
    border: 2px solid rgba(255, 215, 0, 0.2) !important;
    box-sizing: border-box !important;
    width: 100% !important;
}

#id-6200 .article-card-item:hover {
    transform: translateY(-8px) !important;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.15),
        0 0 0 2px rgba(255, 215, 0, 0.3) !important;
    border-color: rgba(255, 215, 0, 0.35) !important;
}

/* بخش تصویر کارت */
#id-6200 .article-header {
    width: 130px !important;
    height: 130px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 5px auto 20px auto !important;
    position: relative !important;
    flex-shrink: 0 !important;
}

/* هاله نور در هاور */
#id-6200 .article-header::before {
    content: '' !important;
    position: absolute !important;
    top: -8px !important;
    left: -8px !important;
    right: -8px !important;
    bottom: -8px !important;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.25) 0%, 
        rgba(255, 215, 0, 0.45) 50%, 
        rgba(255, 215, 0, 0.25) 100%) !important;
    border-radius: 50% !important;
    z-index: 1 !important;
    opacity: 0 !important;
    transition: opacity 0.4s ease !important;
}

#id-6200 .article-card-item:hover .article-header::before {
    opacity: 1 !important;
}

/* پس‌زمینه دایره‌ای برای عکس */
#id-6200 .article-header::after {
    content: '' !important;
    position: absolute !important;
    width: 110px !important;
    height: 110px !important;
    background: linear-gradient(135deg, #FFD700 0%, #FFED4E 100%) !important;
    border-radius: 50% !important;
    z-index: 2 !important;
    box-shadow: 
        0 6px 20px rgba(255, 215, 0, 0.4),
        inset 0 0 0 4px rgba(255, 255, 255, 0.9) !important;
    transition: all 0.4s ease !important;
}

/* تصویر */
#id-6200 .article-image {
    width: 55px !important;
    height: 55px !important;
    object-fit: contain !important;
    position: relative !important;
    z-index: 3 !important;
    filter: 
        brightness(0.9)
        contrast(1.1)
        drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2)) !important;
    transition: all 0.4s ease !important;
}

#id-6200 .article-card-item:hover .article-image {
    transform: scale(1.1) !important;
    filter: 
        brightness(1)
        contrast(1.2)
        drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.3)) !important;
}

/* محتوا */
#id-6200 .article-content {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    justify-content: center !important;
    height: auto !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 !important;
}

/* عنوان */
#id-6200 .article-title {
    color: #000000 !important;
    font-family: 'iranyekan', sans-serif !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    margin-bottom: 12px !important;
    text-align: center !important;
    width: 100% !important;
    padding: 0 !important;
    line-height: 1.4 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* خط جداکننده */
#id-6200 .article-description {
    width: 100% !important;
    text-align: center !important;
    position: relative !important;
    margin-top: 15px !important;
}

#id-6200 .article-description::before {
    content: '' !important;
    display: block !important;
    border: none !important;
    height: 2px !important;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #FFD700 50%, 
        transparent 100%) !important;
    margin: 5px auto 15px auto !important;
    width: 50px !important;
    border-radius: 1px !important;
    transition: all 0.4s ease !important;
}

#id-6200 .article-card-item:hover .article-description::before {
    width: 80px !important;
    background: linear-gradient(90deg, 
        transparent 20%, 
        #FFD700 50%, 
        transparent 80%) !important;
}

/* متن آمار */
#id-6200 .article-description pre {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    font-family: 'iranyekan', sans-serif !important;
    text-align: center !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
    line-height: 1.2 !important;
    width: 100% !important;
}

#id-6200 .article-description p {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
}

#id-6200 .article-description span {
    display: block !important;
    font-size: 28px !important;
    font-weight: 900 !important;
    color: #000000 !important;
    margin-top: 10px !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
    font-family: 'iranyekan', sans-serif !important;
    transition: all 0.4s ease !important;
}

#id-6200 .article-card-item:hover .article-description span {
    color: #FFD700 !important;
    transform: scale(1.05) !important;
}

/* انیمیشن ورود */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#id-6200 .article-card-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

#id-6200 .article-card-item:nth-child(1) { animation-delay: 0.1s; }
#id-6200 .article-card-item:nth-child(2) { animation-delay: 0.2s; }
#id-6200 .article-card-item:nth-child(3) { animation-delay: 0.3s; }
#id-6200 .article-card-item:nth-child(4) { animation-delay: 0.4s; }

/* رسپانسیو - دسکتاپ متوسط */
@media (max-width: 1200px) {
    #id-6200.article12 {
        padding: 40px 15px !important;
    }
    
    #id-6200 .article-wrapper {
        max-width: 800px !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
        padding: 0 15px !important;
    }
    
    #id-6200 .article-card-item {
        min-height: 320px !important;
        padding: 22px 18px !important;
    }
    
    #id-6200 .article-header {
        width: 120px !important;
        height: 120px !important;
    }
    
    #id-6200 .article-header::after {
        width: 100px !important;
        height: 100px !important;
    }
    
    #id-6200 .article-image {
        width: 50px !important;
        height: 50px !important;
    }
    
    #id-6200 .article-title {
        font-size: 19px !important;
    }
    
    #id-6200 .article-description span {
        font-size: 24px !important;
    }
}

@media (max-width: 768px) {
    #id-6200.article12 {
        padding: 30px 10px !important;
        min-height: auto !important;
    }
    
    #id-6200 .article-wrapper {
        max-width: 650px !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
        padding: 0 10px !important;
    }
    
    #id-6200 .article-card-item {
        min-height: 300px !important;
        padding: 20px 15px !important;
    }
    
    #id-6200 .article-header {
        width: 110px !important;
        height: 110px !important;
    }
    
    #id-6200 .article-header::after {
        width: 90px !important;
        height: 90px !important;
    }
    
    #id-6200 .article-image {
        width: 45px !important;
        height: 45px !important;
    }
    
    #id-6200 .article-title {
        font-size: 18px !important;
    }
    
    #id-6200 .article-description span {
        font-size: 22px !important;
    }
}

@media (max-width: 480px) {
    #id-6200.article12 {
        padding: 25px 10px !important;
    }
    
    #id-6200 .article-wrapper {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        padding: 0 15px !important;
        max-width: 350px !important;
    }
    
    #id-6200 .article-card-item {
        min-height: 280px !important;
        padding: 18px 15px !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }
    
    #id-6200 .article-header {
        width: 100px !important;
        height: 100px !important;
    }
    
    #id-6200 .article-header::after {
        width: 80px !important;
        height: 80px !important;
    }
    
    #id-6200 .article-image {
        width: 40px !important;
        height: 40px !important;
    }
    
    #id-6200 .article-title {
        font-size: 17px !important;
    }
    
    #id-6200 .article-description span {
        font-size: 20px !important;
    }
}




/* دکمه اصلی با انیمیشن نور */
.btn-mosta1 {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, #FFD700 0%, #FFED4E 100%) !important;
    color: #000000 !important;
    font-family: 'iranyekan', sans-serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    padding: 12px 30px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    border: 2px solid rgba(255, 255, 255, 0.8) !important;
    transition: all 0.4s ease !important;
    box-shadow: 
        0 5px 15px rgba(255, 215, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
    min-width: 160px !important;
    position: relative !important;
    overflow: hidden !important;
    white-space: nowrap !important;
}

/* انیمیشن نور در حال حرکت */
.btn-mosta1::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.5), 
        transparent) !important;
    transition: left 0.6s ease !important;
}

/* هاور حالت اصلی */
.btn-mosta1:hover {
    transform: translateY(-3px) !important;
    box-shadow: 
        0 8px 20px rgba(128, 128, 128, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
    border-color: rgba(255, 255, 255, 0.9) !important;
    background: linear-gradient(135deg, #808080 0%, #A0A0A0 100%) !important;
    color: #FFFFFF !important;
}

.btn-mosta1:hover::before {
    left: 100% !important;
}

/* دکمه‌های زوج (دومی، چهارمی، ...) - یکی در میان */
.btn-mosta1:nth-child(even) {
    background: linear-gradient(135deg, #808080 0%, #A0A0A0 100%) !important;
    color: #FFFFFF !important;
    box-shadow: 
        0 5px 15px rgba(128, 128, 128, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

/* دکمه‌های زوج در هاور - به زرد تبدیل شوند */
.btn-mosta1:nth-child(even):hover {
    background: linear-gradient(135deg, #FFD700 0%, #FFED4E 100%) !important;
    color: #000000 !important;
    box-shadow: 
        0 8px 20px rgba(255, 215, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
}

