a {
	text-decoration : none;
}



/* تم قرمز و سفید */
#header3.header {
    background: linear-gradient(90deg, #8B0000 0%, #CC0000 50%, #8B0000 100%) !important;
    border-bottom: 3px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 4px 20px rgba(139, 0, 0, 0.3) !important;
}

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

/* بخش چپ - دکمه ورود به پنل */
#header3 .left-header {
    background: linear-gradient(135deg, #ffffff 0%, #FFF5F5 100%) !important;
    border-radius: 25px !important;
    border: 2px solid rgba(204, 0, 0, 0.3) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    box-shadow: 0 4px 12px rgba(204, 0, 0, 0.2) !important;
    min-width: 150px !important;
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    overflow: hidden !important;
}

#header3 .left-header::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.4), transparent) !important;
    transition: left 0.7s ease !important;
}

#header3 .left-header:hover::before {
    left: 100% !important;
}

#header3 .left-header:hover {
    transform: translateY(-3px) scale(1.03) !important;
    box-shadow: 0 8px 25px rgba(204, 0, 0, 0.35) !important;
    border-color: #FF3333 !important;
    background: linear-gradient(135deg, #ffffff 0%, #FFE6E6 100%) !important;
}

/* دکمه ورود به پنل */
#header3 .panel-login-btn {
    color: #CC0000 !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    transition: all 0.4s ease !important;
    white-space: nowrap !important;
    padding: 12px 24px !important;
    width: 100% !important;
    height: 100% !important;
    font-family: 'iranyekan', sans-serif !important;
    position: relative !important;
    z-index: 1 !important;
    letter-spacing: 0.3px !important;
}

#header3 .panel-login-btn::before {
    content: "🔐" !important;
    font-size: 18px !important;
    transition: transform 0.3s ease !important;
}

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

#header3 .panel-login-btn:hover::before {
    transform: scale(1.2) rotate(10deg) !important;
}

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

#header3 .nav-content {
    display: flex !important;
    justify-content: center !important;
    gap: 2px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: 15px !important;
    padding: 5px !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.2) !important;
}

#header3 .content-item {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    padding: 10px 20px !important;
    border-radius: 10px !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    font-family: 'iranyekan', sans-serif !important;
    position: relative !important;
    overflow: hidden !important;
    border: 1px solid transparent !important;
    letter-spacing: 0.2px !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}

#header3 .content-item::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%) !important;
    border-radius: 10px !important;
    z-index: -1 !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

#header3 .content-item::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) scaleX(0) !important;
    width: 40% !important;
    height: 2px !important;
    background: linear-gradient(90deg, transparent, #ffffff, transparent) !important;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    border-radius: 2px !important;
}

#header3 .content-item:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-2px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 6px 20px rgba(204, 0, 0, 0.4) !important;
    padding: 10px 25px !important;
}

#header3 .content-item:hover::before {
    opacity: 1 !important;
}

#header3 .content-item:hover::after {
    transform: translateX(-50%) scaleX(1) !important;
}

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

#header3 .nav-logo {
    width: 60px !important;
    height: 60px !important;
    border-radius: 18px !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    padding: 3px !important;
    background: linear-gradient(135deg, #ffffff, #FFF5F5) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.2) !important;
    object-fit: contain !important;
}

/* این قسمت تغییر کرده - فقط بزرگ می‌شود بدون چرخش */
#header3 .header-logo:hover .nav-logo {
    border-color: rgba(255, 255, 255, 0.7) !important;
    transform: scale(1.15) !important; /* فقط بزرگ‌تر می‌شود */
    box-shadow: 0 8px 30px rgba(204, 0, 0, 0.6) !important;
}

#header3 .nav-title {
    color: #ffffff !important;
    font-family: 'iranyekan', sans-serif !important;
    font-size: 24px !important;
    font-weight: 800 !important;
    margin-left: 15px !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4) !important;
    letter-spacing: 0.5px !important;
}

#header3 .header-logo:hover .nav-title {
    color: #FFCCCC !important;
    text-shadow: 0 0 15px rgba(255, 102, 102, 0.7) !important;
}

/* SVG در تم قرمز */
#header3 .mobile-logo-path[style*="stroke:rgb(0, 0, 0)"] {
    stroke: #ffffff !important;
    stroke-width: 3 !important;
}

/* حالت موبایل زیر 1000px */
@media (max-width: 1000px) {
    #header3 .header-container {
        height: 70px !important;
        padding: 0 15px !important;
    }
    
    #header3 .panel-login-btn {
        display: none !important;
    }
    
    #header3 .left-header {
        min-width: auto !important;
        width: auto !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        height: auto !important;
        order: 1 !important;
        margin-right: auto !important;
    }
    
    #header3 .mobile-login-btn {
        display: block !important;
        cursor: pointer !important;
        background: linear-gradient(135deg, rgba(204, 0, 0, 0.9), rgba(255, 51, 51, 0.9)) !important;
        border: 2px solid rgba(255, 255, 255, 0.4) !important;
        border-radius: 12px !important;
        padding: 10px !important;
        width: 50px !important;
        height: 50px !important;
        margin-right: 10px !important;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
        backdrop-filter: blur(10px) !important;
        box-shadow: 0 4px 15px rgba(204, 0, 0, 0.5) !important;
        position: relative !important;
        overflow: hidden !important;
    }
    
    #header3 .mobile-login-btn svg {
        width: 28px !important;
        height: 28px !important;
        display: block !important;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4)) !important;
        transition: all 0.3s ease !important;
    }
    
    #header3 .mobile-login-btn path {
        stroke: #ffffff !important;
        stroke-width: 3 !important;
        stroke-linecap: round !important;
        stroke-linejoin: round !important;
        transition: all 0.3s ease !important;
    }
    
    #header3 .mobile-login-btn:hover {
        transform: translateY(-3px) scale(1.1) !important;
        box-shadow: 0 8px 25px rgba(204, 0, 0, 0.7) !important;
        border-color: rgba(255, 255, 255, 0.7) !important;
        background: linear-gradient(135deg, rgba(204, 0, 0, 1), rgba(255, 51, 51, 1)) !important;
    }
    
    #header3 .center-header {
        display: none !important;
    }
    
    #header3 .right-header {
        order: 2 !important;
        margin-left: auto !important;
    }
    
    #header3 .nav-logo {
        width: 55px !important;
        height: 55px !important;
    }
    
    /* بزرگ‌تر شدن لوگو در موبایل هنگام هاور */
    #header3 .header-logo:hover .nav-logo {
        transform: scale(1.12) !important;
        border-color: rgba(255, 255, 255, 0.7) !important;
        box-shadow: 0 8px 25px rgba(204, 0, 0, 0.6) !important;
    }
    
    #header3 .nav-title {
        font-size: 22px !important;
        margin-left: 12px !important;
    }
}

/* حالت موبایل کوچک */
@media (max-width: 768px) {
    #header3 .header-container {
        height: 65px !important;
        padding: 0 12px !important;
    }
    
    #header3 .nav-logo {
        width: 50px !important;
        height: 50px !important;
        border-radius: 15px !important;
    }
    
    /* بزرگ‌تر شدن لوگو در موبایل کوچک هنگام هاور */
    #header3 .header-logo:hover .nav-logo {
        transform: scale(1.1) !important;
    }
    
    #header3 .nav-title {
        font-size: 20px !important;
        margin-left: 10px !important;
    }
    
    #header3 .mobile-login-btn {
        width: 48px !important;
        height: 48px !important;
        padding: 9px !important;
    }
    
    #header3 .mobile-login-btn svg {
        width: 26px !important;
        height: 26px !important;
    }
}

/* حالت خیلی کوچک موبایل */
@media (max-width: 480px) {
    #header3 .header-container {
        height: 60px !important;
        padding: 0 10px !important;
    }
    
    #header3 .nav-title {
        font-size: 18px !important;
        margin-left: 8px !important;
    }
    
    #header3 .nav-logo {
        width: 45px !important;
        height: 45px !important;
        border-radius: 12px !important;
    }
    
    /* بزرگ‌تر شدن لوگو در موبایل خیلی کوچک هنگام هاور */
    #header3 .header-logo:hover .nav-logo {
        transform: scale(1.08) !important;
    }
    
    #header3 .mobile-login-btn {
        width: 44px !important;
        height: 44px !important;
        padding: 8px !important;
    }
    
    #header3 .mobile-login-btn svg {
        width: 24px !important;
        height: 24px !important;
    }
    
    #header3 .nav-title {
        display: none !important;
    }
}

/* دسکتاپ */
@media (min-width: 1001px) {
    #header3 .mobile-login-btn {
        display: none !important;
    }
}



/* رنگ بندی #header3.header - تم قرمز و سفید */
#mySidenav.sidenav {
    background: linear-gradient(180deg, #8B0000 0%, #CC0000 100%);
    width: 280px;
    border-left: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: -5px 0 25px rgba(139, 0, 0, 0.4);
}

#mySidenav .closebtn {
    background: #ffffff !important;
    color: #CC0000 !important;
    border: 2px solid rgba(204, 0, 0, 0.3);
}

#mySidenav .sidebar-header {
    background: #8B0000 !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

#mySidenav .link-style,
#mySidenav .dropdown-item-mobile,
#mySidenav .sidenav-link {
    color: white !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#mySidenav .mobile-turn-content {
    background: #8B0000 !important;
    color: white !important;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}



















/* فوتر اصلی */
#footer1.information {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%) !important;
    color: #333 !important;
    padding: 1.5rem 0 0 0 !important;
    font-family: 'iranyekan', Tahoma, sans-serif !important;
    direction: rtl !important;
    position: relative !important;
    border-top: 3px solid #dc3545 !important;
}

/* Container */
#footer1 .information-container {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

/* حالت پایه برای badge-content */
#footer1 .badge-content {
    background: white !important;
    border-radius: 15px !important;
    padding: 1.5rem !important;
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.1) !important;
    border: 1px solid #ffeaea !important;
    margin-bottom: 1.2rem !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 1.2rem !important;
}

/* استایل‌های مشترک برای همه دستگاه‌ها */
#footer1 .badge-section {
    margin-bottom: 0 !important;
    padding: 1rem !important;
    border-radius: 10px !important;
    background: #fff !important;
    border: 1px solid #ffeaea !important;
    transition: all 0.2s ease !important;
    box-sizing: border-box !important;
}

#footer1 .section-title {
    color: #dc3545 !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    margin-bottom: 0.8rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.6rem !important;
    padding-bottom: 0.5rem !important;
    border-bottom: 2px solid #ffeaea !important;
}

#footer1 .section-title i {
    color: #dc3545 !important;
    font-size: 1.1rem !important;
    background: #ffeaea !important;
    padding: 0.4rem !important;
    border-radius: 6px !important;
    width: 32px !important;
    height: 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

/* نقشه - ارتفاع کمتر */
#footer1 .google-map {
    border-radius: 8px !important;
    overflow: hidden !important;
    border: 1px solid #ffeaea !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06) !important;
    height: 180px !important;
    margin-top: 0.3rem !important;
}

#footer1 .google-map iframe {
    width: 100% !important;
    height: 100% !important;
}

/* تماس با ما */
#footer1 .contact-info {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0.6rem !important;
}

#footer1 .contact-item {
    display: flex !important;
    align-items: center !important;
    gap: 0.6rem !important;
    padding: 0.6rem !important;
    background: #fff5f5 !important;
    border-radius: 6px !important;
    border-right: 2px solid #dc3545 !important;
    transition: all 0.2s ease !important;
}

#footer1 .contact-item:hover {
    background: #ffeaea !important;
}

#footer1 .contact-item i {
    color: #dc3545 !important;
    font-size: 0.9rem !important;
    width: 28px !important;
    height: 28px !important;
    background: white !important;
    border-radius: 6px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 2px 5px rgba(220, 53, 69, 0.06) !important;
    flex-shrink: 0 !important;
}

#footer1 .contact-detail {
    flex: 1 !important;
    min-width: 0 !important;
}

#footer1 .contact-label {
    font-size: 0.8rem !important;
    color: #666 !important;
    display: block !important;
    margin-bottom: 0.1rem !important;
    font-weight: 600 !important;
}

#footer1 .contact-value {
    font-size: 0.85rem !important;
    color: #222 !important;
    font-weight: 800 !important;
    direction: ltr !important;
    display: inline-block !important;
    line-height: 1.2 !important;
}

#footer1 .contact-email {
    font-size: 0.8rem !important;
    color: #dc3545 !important;
}

/* آدرس */
#footer1 .address-item {
    display: flex !important;
    gap: 0.6rem !important;
    padding: 0.6rem !important;
    background: #fff5f5 !important;
    border-radius: 6px !important;
    border-left: 2px solid #dc3545 !important;
    transition: all 0.2s ease !important;
}

#footer1 .address-item:hover {
    background: #ffeaea !important;
}

#footer1 .address-item i {
    color: #dc3545 !important;
    font-size: 0.9rem !important;
    background: white !important;
    padding: 0.4rem !important;
    border-radius: 6px !important;
    width: 30px !important;
    height: 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 2px 5px rgba(220, 53, 69, 0.06) !important;
    flex-shrink: 0 !important;
}

#footer1 .address-text {
    flex: 1 !important;
    min-width: 0 !important;
}

#footer1 .address-text strong {
    color: #dc3545 !important;
    font-size: 0.9rem !important;
    display: block !important;
    margin-bottom: 0.4rem !important;
    line-height: 1.3 !important;
    font-weight: 800 !important;
}

#footer1 .address-text p {
    color: #555 !important;
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
    margin: 0.3rem 0 !important;
}

#footer1 .description-text {
    color: #dc3545 !important;
    font-weight: 600 !important;
    font-size: 0.8rem !important;
    margin-top: 0.5rem !important;
    padding-top: 0.5rem !important;
    border-top: 1px dashed #ffcccc !important;
    background: white !important;
    padding: 0.4rem !important;
    border-radius: 4px !important;
    border: 1px solid #ffeaea !important;
}

/* ساعت کاری */
#footer1 .hours-info {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.6rem !important;
}

#footer1 .hour-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 0.6rem !important;
    background: #fff5f5 !important;
    border-radius: 6px !important;
    border-top: 2px solid #dc3545 !important;
    gap: 0.4rem !important;
    transition: all 0.2s ease !important;
}

#footer1 .hour-item:hover {
    background: #ffeaea !important;
}

#footer1 .days {
    color: #dc3545 !important;
    font-size: 0.85rem !important;
    font-weight: 800 !important;
    background: white !important;
    padding: 0.3rem 0.6rem !important;
    border-radius: 4px !important;
    border: 1px solid #ffeaea !important;
    display: inline-block !important;
    box-shadow: 0 1px 3px rgba(220, 53, 69, 0.06) !important;
    width: 100% !important;
    text-align: center !important;
}

#footer1 .times {
    color: #222 !important;
    font-size: 0.85rem !important;
    font-weight: 800 !important;
    direction: ltr !important;
    background: white !important;
    padding: 0.3rem 0.6rem !important;
    border-radius: 4px !important;
    border: 1px solid #ffcccc !important;
    width: 100% !important;
    text-align: center !important;
}

/* شبکه‌های اجتماعی - ارتفاع خیلی کمتر */
#footer1 .social-section {
    text-align: center !important;
    padding: 0.8rem !important;
    background: linear-gradient(135deg, #fff5f5, #ffeaea) !important;
    border: 1px solid #ffcccc !important;
    border-radius: 8px !important;
    min-height: auto !important;
    height: auto !important;
    margin-top: 0.2rem !important;
}

#footer1 .social-links {
    display: flex !important;
    justify-content: center !important;
    gap: 0.8rem !important;
    margin-top: 0.6rem !important;
    flex-wrap: wrap !important;
}

#footer1 .social-link {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.6rem 0.8rem !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    color: white !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    transition: all 0.2s ease !important;
    min-width: 80px !important;
    max-width: 90px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    position: relative !important;
    overflow: hidden !important;
    height: 70px !important;
}

#footer1 .social-link i {
    font-size: 1.2rem !important;
    margin-bottom: 0.3rem !important;
    position: relative !important;
    z-index: 2 !important;
    transition: transform 0.2s ease !important;
}

#footer1 .social-link span {
    position: relative !important;
    z-index: 2 !important;
    font-size: 0.75rem !important;
}

#footer1 .social-link:hover {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

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

#footer1 .social-link.telegram {
    background: linear-gradient(135deg, #0088cc, #00a8ff) !important;
}

#footer1 .social-link.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
}

/* 📱 حالت موبایل و تبلت (تا 1019px) - حالت عمودی */
@media (max-width: 1019px) {
    #footer1 .badge-content {
        gap: 1rem !important;
        padding: 1.2rem !important;
        border-radius: 12px !important;
    }
    
    #footer1 .badge-section {
        padding: 0.8rem !important;
        border-radius: 8px !important;
        width: 100% !important;
    }
    
    #footer1 .section-title {
        font-size: 1rem !important;
        margin-bottom: 0.6rem !important;
        gap: 0.5rem !important;
    }
    
    #footer1 .section-title i {
        font-size: 1rem !important;
        padding: 0.3rem !important;
        width: 28px !important;
        height: 28px !important;
    }
    
    #footer1 .google-map {
        height: 150px !important;
    }
    
    #footer1 .social-links {
        flex-direction: column !important;
        gap: 0.6rem !important;
        align-items: center !important;
    }
    
    #footer1 .social-link {
        flex-direction: row !important;
        justify-content: flex-start !important;
        min-width: auto !important;
        max-width: 250px !important;
        width: 100% !important;
        padding: 0.5rem 0.8rem !important;
        gap: 0.6rem !important;
        height: 50px !important;
    }
    
    #footer1 .social-link i {
        margin-bottom: 0 !important;
        font-size: 1.1rem !important;
        width: 28px !important;
    }
    
    #footer1 .social-link span {
        text-align: right !important;
        flex: 1 !important;
        font-size: 0.75rem !important;
    }
}

/* 📺 حالت دسکتاپ (1020px به بالا) - ساختار درست 3 سطری */
@media (min-width: 1020px) {
    #footer1 .badge-content {
        display: grid !important;
        grid-template-columns: repeat(12, 1fr) !important;
        grid-template-rows: auto auto auto !important;
        gap: 1rem !important;
        padding: 1.5rem !important;
    }
    
    /* سطر اول: نقشه کامل (col-12) */
    #footer1 .map-section {
        grid-column: span 12 !important;
        grid-row: 1 !important;
    }
    
    /* سطر دوم: 3 کارت کنار هم (هر کدام col-4) */
    #footer1 .contact-section {
        grid-column: span 4 !important;
        grid-row: 2 !important;
        min-height: 180px !important;
    }
    
    #footer1 .address-section {
        grid-column: span 4 !important;
        grid-row: 2 !important;
        min-height: 180px !important;
    }
    
    #footer1 .hours-section {
        grid-column: span 4 !important;
        grid-row: 2 !important;
        min-height: 180px !important;
    }
    
    /* سطر سوم: شبکه‌های اجتماعی (col-12) */
    #footer1 .social-section {
        grid-column: span 12 !important;
        grid-row: 3 !important;
        margin-top: 0 !important;
        padding: 0.8rem !important;
    }
    
    #footer1 .google-map {
        height: 200px !important;
    }
    
    #footer1 .social-links {
        flex-direction: row !important;
        gap: 0.8rem !important;
        justify-content: center !important;
    }
    
    #footer1 .social-link {
        flex-direction: column !important;
        min-width: 80px !important;
        max-width: 90px !important;
        padding: 0.5rem 0.6rem !important;
        height: 65px !important;
    }
    
    #footer1 .social-link i {
        margin-bottom: 0.2rem !important;
        font-size: 1.1rem !important;
    }
    
    #footer1 .social-link span {
        text-align: center !important;
        font-size: 0.7rem !important;
    }
}

/* بخش اپ موبایل - ارتفاع کمتر */
#footer1 .footer-mobile-app {
    background: linear-gradient(135deg, #dc3545, #ff6b6b) !important;
    border-radius: 10px !important;
    padding: 0.8rem !important;
    margin: 1rem auto 1.5rem auto !important;
    max-width: 700px !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    height: auto !important;
    min-height: auto !important;
}

#footer1 .footer-mobile-app h5 {
    color: white !important;
    margin-bottom: 0.6rem !important;
    font-size: 0.9rem !important;
    text-align: center !important;
    font-weight: 600 !important;
    font-family: 'iranyekan', sans-serif !important;
    line-height: 1.3 !important;
}

#footer1 .footer-mobile-app img {
    width: 110px !important;
    height: auto !important;
    transition: all 0.2s ease !important;
    border-radius: 8px !important;
    padding: 3px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

#footer1 .footer-mobile-app img:hover {
    transform: scale(1.04) !important;
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

#footer1 .footer-mobile-app .d-flex {
    justify-content: center !important;
    align-items: center !important;
    gap: 0.8rem !important;
    padding: 0.3rem 0 !important;
}

/* خط تقسیم */
#footer1 .divider-device {
    margin: 1rem 0 !important;
}

#footer1 .divider-device div {
    height: 1px !important;
    background: linear-gradient(90deg, transparent, #dc3545, transparent) !important;
    opacity: 0.2 !important;
}

/* کپی‌رایت */
#footer1 .section-copyright {
    background: linear-gradient(90deg, #dc3545, #ff6b6b) !important;
    padding: 0.6rem !important;
    text-align: center !important;
    margin-top: 0.3rem !important;
}

#footer1 .section-copyright a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
    text-decoration: none !important;
    color: white !important;
    transition: all 0.2s ease !important;
    font-family: 'iranyekan', sans-serif !important;
    font-size: 0.8rem !important;
}

#footer1 .section-copyright span:last-child {
    color: #ffd800 !important;
    font-weight: 700 !important;
    background: rgba(255, 255, 255, 0.08) !important;
    padding: 0.2rem 0.5rem !important;
    border-radius: 4px !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    font-size: 0.8rem !important;
}

#footer1 .section-copyright img {
    width: 16px !important;
    height: 16px !important;
    margin-right: 4px !important;
    vertical-align: middle !important;
    filter: brightness(0) invert(1) !important;
}

/* 📱 تبلت (768px تا 1019px) */
@media (max-width: 1019px) and (min-width: 768px) {
    #footer1 .badge-content {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.8rem !important;
        padding: 1rem !important;
    }
    
    #footer1 .map-section {
        grid-column: span 2 !important;
    }
    
    #footer1 .contact-section {
        grid-column: span 1 !important;
        grid-row: auto !important;
        min-height: 160px !important;
    }
    
    #footer1 .address-section {
        grid-column: span 1 !important;
        grid-row: auto !important;
        min-height: 160px !important;
    }
    
    #footer1 .hours-section {
        grid-column: span 2 !important;
        grid-row: auto !important;
        min-height: auto !important;
    }
    
    #footer1 .social-section {
        grid-column: span 2 !important;
        grid-row: auto !important;
        padding: 0.6rem !important;
    }
    
    #footer1 .social-links {
        flex-direction: row !important;
        justify-content: center !important;
        gap: 0.6rem !important;
    }
    
    #footer1 .social-link {
        min-width: 70px !important;
        padding: 0.5rem 0.6rem !important;
        flex-direction: column !important;
        height: 60px !important;
    }
    
    #footer1 .social-link i {
        font-size: 1rem !important;
        margin-bottom: 0.2rem !important;
    }
    
    #footer1 .social-link span {
        text-align: center !important;
        font-size: 0.7rem !important;
    }
    
    #footer1 .footer-mobile-app {
        padding: 0.6rem !important;
        margin: 0.8rem auto 1.2rem auto !important;
    }
    
    #footer1 .footer-mobile-app img {
        width: 100px !important;
    }
}

/* 📱 موبایل کوچک (تا 480px) */
@media (max-width: 480px) {
    #footer1 .information-container {
        padding: 0 12px !important;
    }
    
    #footer1 .badge-content {
        padding: 0.8rem !important;
        gap: 0.8rem !important;
    }
    
    #footer1 .badge-section {
        padding: 0.6rem !important;
    }
    
    #footer1 .section-title {
        font-size: 0.9rem !important;
    }
    
    #footer1 .section-title i {
        width: 26px !important;
        height: 26px !important;
        font-size: 0.9rem !important;
    }
    
    #footer1 .google-map {
        height: 130px !important;
    }
    
    #footer1 .footer-mobile-app {
        padding: 0.6rem !important;
        margin: 0.8rem auto 1rem auto !important;
    }
    
    #footer1 .footer-mobile-app img {
        width: 90px !important;
    }
    
    #footer1 .footer-mobile-app h5 {
        font-size: 0.8rem !important;
    }
    
    #footer1 .section-copyright {
        padding: 0.5rem !important;
    }
    
    #footer1 .section-copyright a {
        font-size: 0.75rem !important;
    }
}

/* استایل اصلی بخش */
#id-2293.article9 {
    background: linear-gradient(135deg, #ffffff, #fff5f5) !important;
    padding: 40px 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 70vh !important;
}

/* wrapper اصلی */
#id-2293 .article-wrapper {
    max-width: 1200px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 25px !important;
    width: 100% !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
}

/* کارت‌ها - اندازه متعادل */
#id-2293 .article-card-item {
    background: white !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.4s ease !important; /* تغییر: نرم‌تر کردن transition */
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: 25px 20px !important;
    height: 100% !important;
    min-height: 320px !important;
    border: 1px solid rgba(220, 20, 60, 0.1) !important;
    box-sizing: border-box !important;
    width: 100% !important;
    cursor: pointer !important; /* اضافه: نشانگر دست */
}

/* هاور نرم و متعادل */
#id-2293 .article-card-item:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 12px 30px rgba(220, 20, 60, 0.12) !important;
    border-color: rgba(220, 20, 60, 0.2) !important;
}

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

/* حذف قاب مربعی و نگه داشتن دایره‌ای */
#id-2293 .card-image-content::after {
    content: '' !important;
    position: absolute !important;
    width: 90px !important;
    height: 90px !important;
    background: linear-gradient(135deg, #DC143C 0%, #FF4757 100%) !important;
    border-radius: 50% !important;
    z-index: 2 !important;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.2) !important;
    transition: all 0.4s ease !important; /* تغییر: نرم‌تر کردن transition */
}

#id-2293 .article-card-item:hover .card-image-content::after {
    transform: scale(1.05) !important;
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.3) !important;
}

/* تصویر */
#id-2293 .article-image {
    width: 45px !important;
    height: 45px !important;
    object-fit: contain !important;
    position: relative !important;
    z-index: 3 !important;
    filter: brightness(1.1) !important;
    transition: all 0.4s ease !important; /* تغییر: نرم‌تر کردن transition */
}

#id-2293 .article-card-item:hover .article-image {
    transform: scale(1.1) !important;
}

/* جزئیات کارت */
#id-2293 .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-2293 .card-detail-content {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    flex: 1 !important;
}

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

/* خط جداکننده */
#id-2293 .article-card-line {
    border: none !important;
    height: 2px !important;
    background: linear-gradient(90deg, transparent 0%, #DC143C 50%, transparent 100%) !important;
    margin: 8px auto 15px auto !important;
    width: 60px !important;
    border-radius: 1px !important;
    transition: all 0.4s ease !important; /* تغییر: نرم‌تر کردن transition */
}

#id-2293 .article-card-item:hover .article-card-line {
    width: 80px !important;
}

/* متن توضیحات */
#id-2293 .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-2293 .article-card-description p {
    margin-bottom: 10px !important;
    text-align: center !important;
    padding: 0 !important;
}

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

/* دکمه‌ها - اضافه کردن نشانگر دست */
#id-2293 .btn-moeinoddin,
#id-2293 .btn-drmoeinoddin {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, #DC143C 0%, #FF4757 100%) !important;
    color: #ffffff !important;
    font-family: 'iranyekan', sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    padding: 10px 25px !important;
    border-radius: 25px !important;
    text-decoration: none !important;
    border: 2px solid rgba(255, 255, 255, 0.8) !important;
    transition: all 0.4s ease !important; /* تغییر: نرم‌تر کردن transition */
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.2) !important;
    min-width: 140px !important;
    white-space: nowrap !important;
    cursor: pointer !important; /* اضافه: نشانگر دست */
}

#id-2293 .btn-moeinoddin:hover,
#id-2293 .btn-drmoeinoddin:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 18px rgba(220, 20, 60, 0.3) !important;
    background: linear-gradient(135deg, #B22222 0%, #FF3838 100%) !important;
}

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

#id-2293 .article-card-item {
    animation: fadeIn 0.6s ease forwards; /* تغییر: نرم‌تر کردن انیمیشن */
    opacity: 0;
}

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

/* =================== رسپانسیو =================== */

/* دسکتاپ کوچک (992px تا 1200px) */
@media (max-width: 1200px) {
    #id-2293 .article-wrapper {
        max-width: 1000px !important;
        gap: 20px !important;
        padding: 0 15px !important;
    }
    
    #id-2293 .article-card-item {
        padding: 22px 18px !important;
        min-height: 300px !important;
    }
}

/* تبلت بزرگ (768px تا 992px) */
@media (max-width: 992px) {
    #id-2293.article9 {
        padding: 30px 15px !important;
    }
    
    #id-2293 .article-wrapper {
        max-width: 700px !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
        padding: 0 15px !important;
    }
    
    #id-2293 .article-card-item {
        min-height: 320px !important;
    }
    
    #id-2293 .card-image-content {
        width: 100px !important;
        height: 100px !important;
    }
    
    #id-2293 .card-image-content::after {
        width: 80px !important;
        height: 80px !important;
    }
}

/* تبلت (577px تا 768px) */
@media (max-width: 768px) {
    #id-2293.article9 {
        padding: 25px 10px !important;
    }
    
    #id-2293 .article-wrapper {
        max-width: 500px !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 10px !important;
    }
    
    #id-2293 .article-card-item {
        max-width: 400px !important;
        margin: 0 auto !important;
    }
}

/* موبایل (زیر 577px) */
@media (max-width: 577px) {
    #id-2293.article9 {
        padding: 20px 10px !important;
        min-height: auto !important;
    }
    
    #id-2293 .article-wrapper {
        padding: 0 10px !important;
        gap: 15px !important;
    }
    
    #id-2293 .article-card-item {
        padding: 20px 15px !important;
        min-height: 300px !important;
        max-width: 100% !important;
    }
    
    #id-2293 .card-image-content {
        width: 90px !important;
        height: 90px !important;
    }
    
    #id-2293 .card-image-content::after {
        width: 70px !important;
        height: 70px !important;
    }
    
    #id-2293 .article-image {
        width: 40px !important;
        height: 40px !important;
    }
    
    #id-2293 .article-card-title {
        font-size: 16px !important;
        min-height: 45px !important;
    }
    
    #id-2293 .article-card-description {
        font-size: 13px !important;
        margin-bottom: 15px !important;
    }
    
    #id-2293 .btn-moeinoddin,
    #id-2293 .btn-drmoeinoddin {
        font-size: 13px !important;
        padding: 8px 20px !important;
        min-width: 120px !important;
    }
}

/* تنظیمات اضافی */
#id-2293 .article-wrapper {
    overflow: hidden !important;
}

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

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






/* سکشن اصلی "درباره ما" - تم سفید قرمز */
#id-6237.welcome1.introduction.section {
    background: linear-gradient(135deg, #ffffff, #fff5f5) !important;
    padding: 4rem 1.5rem !important;
    min-height: auto !important;
    position: relative !important;
    direction: rtl !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* افکت دکوراتیو پس‌زمینه */
#id-6237.welcome1.introduction.section::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: 
        radial-gradient(circle at 90% 30%, rgba(220, 20, 60, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 10% 70%, rgba(220, 20, 60, 0.05) 0%, transparent 50%) !important;
    pointer-events: none !important;
    z-index: 0 !important;
}

/* کانتینر اصلی */
#id-6237 .introdution-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 2.5rem !important;
    position: relative !important;
    width: 100% !important;
    box-sizing: border-box !important;
    align-items: center !important;
    z-index: 1 !important;
}

/* عنوان - مرکز */
#id-6237 .introduction-title {
    color: #DC143C !important;
    font-family: 'iranyekan', sans-serif !important;
    font-size: 2rem !important;
    font-weight: 900 !important;
    margin-bottom: 0.5rem !important;
    line-height: 1.3 !important;
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    position: relative !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1) !important;
}

#id-6237 .introduction-title::after {
    content: '' !important;
    position: absolute !important;
    bottom: -10px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 100px !important;
    height: 3px !important;
    background: linear-gradient(90deg, #DC143C, #FF4757) !important;
    border-radius: 2px !important;
}

/* خط جداکننده */
#id-6237 .introduction-divider {
    border: none !important;
    height: 2px !important;
    background: linear-gradient(90deg, #DC143C, #FF4757) !important;
    margin: 1.2rem auto 1.5rem auto !important;
    border-radius: 2px !important;
    width: 70% !important;
    opacity: 0.7 !important;
	display:none !important;;
}

/* بخش محتوا */
#id-6237 .introdution-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 2.5rem !important;
}

/* عکس دکتر - استایل بهبود یافته */
#id-6237 .left-introduction {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 5.5rem !important;
    width: 100% !important;
    order: 1 !important;
    position: relative !important;
}

#id-6237 .introduction-image {
    width: 300px !important;
    height: 300px !important;
    border-radius: 18px !important;
    object-fit: cover !important;
    object-position: center !important;
    border: 10px solid white !important;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.05) !important; /* تغییر سایه به مشکی */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    cursor: pointer !important;
    position: relative !important;
    animation: floatImage 6s ease-in-out infinite !important;
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* حذف افکت سایه قرمز دور عکس */
#id-6237 .introduction-image::before {
    display: none !important; /* حذف افکت قرمز */
}

/* نام دکتر روی عکس */
#id-6237 .doctor-name-overlay {
    position: absolute !important;
    bottom: 20px !important;
    right: 0 !important;
    left: 0 !important;
    background: linear-gradient(to right, 
        rgba(0, 0, 0, 0.85), 
        rgba(50, 50, 50, 0.85)) !important; /* تغییر به مشکی */
    color: white !important;
    padding: 12px 20px !important;
    font-family: 'iranyekan', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    text-align: center !important;
    z-index: 10 !important;
    backdrop-filter: blur(5px) !important;
    border-radius: 0 0 18px 18px !important;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1) !important;
    opacity: 0.95 !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
}

#id-6237 .doctor-name-overlay::before {
    content: '👨‍⚕️' !important;
    font-size: 1.3rem !important;
}

/* هاور افکت */
#id-6237 .introduction-image:hover {
    transform: scale(1.05) translateY(-6px) !important;
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.25),
        0 0 0 3px rgba(0, 0, 0, 0.1),
        inset 0 0 20px rgba(255, 255, 255, 0.8) !important; /* تغییر سایه هاور */
    border-color: rgba(255, 255, 255, 0.95) !important;
}

#id-6237 .introduction-image:hover + .doctor-name-overlay {
    opacity: 1 !important;
    bottom: 25px !important;
    background: linear-gradient(to right, 
        rgba(0, 0, 0, 0.95), 
        rgba(50, 50, 50, 0.95)) !important; /* تغییر به مشکی */
}

/* بخش متن - بدون اسکرول */
#id-6237 .right-introduction {
    width: 100% !important;
    max-width: 900px !important;
    margin: 0 auto !important;
    padding: 0 1rem !important;
    order: 2 !important;
}

#id-6237 .introduction-content {
    text-align: center !important;
    width: 100% !important;
}

/* جعبه متن - بدون اسکرول */
#id-6237 .introduction-description {
    background: white !important;
    border-radius: 15px !important;
    border: 2px solid rgba(220, 20, 60, 0.1) !important;
    box-shadow: 0 12px 35px rgba(220, 20, 60, 0.1) !important;
    width: 100% !important;
    box-sizing: border-box !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: visible !important;
    margin: 0 !important;
    padding: 2rem !important;
    max-height: none !important;
    overflow-y: visible !important;
}

#id-6237 .introduction-description:hover {
    border-color: rgba(220, 20, 60, 0.2) !important;
    box-shadow: 0 18px 45px rgba(220, 20, 60, 0.15) !important;
    transform: translateY(-3px) !important;
}

/* کنترل محتوای داخل pre */
#id-6237 .introduction-description pre,
#id-6237 .introduction-description * {
    font-family: 'iranyekan', sans-serif !important;
    text-align: justify !important;
    direction: rtl !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.85 !important;
    font-size: 1.05rem !important;
    color: #444 !important;
    white-space: normal !important;
    background: none !important;
    border: none !important;
}

/* استایل تگ‌های خاص داخل متن */
#id-6237 .introduction-description .about-us {
    display: block !important;
    width: 100% !important;
}

#id-6237 .introduction-description h1,
#id-6237 .introduction-description .h5 {
    color: #DC143C !important;
    font-size: 1.5rem !important;
    font-weight: 900 !important;
    margin-bottom: 1.2rem !important;
    text-align: center !important;
    display: block !important;
}

#id-6237 .introduction-description p {
    margin-bottom: 1.2rem !important;
    line-height: 1.85 !important;
    text-align: justify !important;
    color: #444 !important;
    font-size: 1.05rem !important;
    font-family: 'iranyekan', sans-serif !important;
}

#id-6237 .introduction-description p:last-child {
    margin-bottom: 0 !important;
}

#id-6237 .introduction-description strong,
#id-6237 .introduction-description .fw-bold {
    color: #B22222 !important;
    font-weight: 700 !important;
}

#id-6237 .introduction-description .text-primary {
    color: #DC143C !important;
}

#id-6237 .introduction-description .text-success {
    color: #28a745 !important;
}

#id-6237 .introduction-description .fw-semibold {
    font-weight: 600 !important;
    color: #555 !important;
}

#id-6237 .introduction-description .mb-1 {
    margin-bottom: 0.8rem !important;
}

#id-6237 .introduction-description .mb-2 {
    margin-bottom: 1rem !important;
}

#id-6237 .introduction-description .mb-0 {
    margin-bottom: 0 !important;
}

/* =================== 📺 حالت دسکتاپ =================== */
@media (min-width: 992px) {
    #id-6237.welcome1.introduction.section {
        padding: 4rem 2rem !important;
    }
    
    /* حفظ چیدمان اصلی: عکس سمت راست، متن سمت چپ */
    #id-6237 .introdution-container {
        flex-direction: row-reverse !important; /* حالت اصلی */
        align-items: flex-start !important;
        justify-content: space-between !important;
        gap: 3rem !important;
    }
    
    /* عکس دکتر - سمت راست */
    #id-6237 .left-introduction {
        flex: 0 0 40% !important;
        max-width: 400px !important;
        order: 2 !important; /* سمت راست */
        justify-content: flex-end !important;
        padding-right: 0 !important;
        margin-top: 1.5rem !important;
    }
    
    /* عکس بزرگتر در دسکتاپ */
    #id-6237 .introduction-image {
        width: 380px !important;
        height: 380px !important;
        border-width: 12px !important;
        border-radius: 20px !important;
    }
    
    /* نام دکتر روی عکس - دسکتاپ */
    #id-6237 .doctor-name-overlay {
        font-size: 1.2rem !important;
        padding: 14px 25px !important;
    }
    
    /* متن - سمت چپ */
    #id-6237 .right-introduction {
        flex: 0 0 55% !important;
        max-width: none !important;
        order: 1 !important; /* سمت چپ */
        padding-left: 0 !important;
        text-align: right !important;
    }
    
    #id-6237 .introduction-content {
        text-align: right !important;
    }
    
    /* تغییر: عنوان و متن زیر هم (عمودی) در داخل جعبه متن */
    #id-6237 .introduction-title {
        text-align: right !important;
        font-size: 2.2rem !important;
        margin-bottom: 1rem !important;
    }
    
    #id-6237 .introduction-divider {
        margin-right: 0 !important;
        margin-left: auto !important;
        width: 80px !important;
    }
    
    #id-6237 .introduction-description {
        padding: 2.5rem !important;
        border-radius: 18px !important;
        text-align: right !important;
        display: flex !important;
        flex-direction: column !important; /* عناصر داخل جعبه متن زیر هم */
    }
    
    #id-6237 .introduction-description h1,
    #id-6237 .introduction-description .h5 {
        text-align: right !important;
        font-size: 1.6rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    #id-6237 .introduction-description p {
        text-align: justify !important; /* تراز دو طرفه */
        font-size: 1.1rem !important;
        line-height: 1.9 !important;
        margin-bottom: 1.2rem !important;
    }
}

/* 📱 تبلت (768px تا 992px) */
@media (max-width: 1200px) and (min-width: 768px) {
    #id-6237.welcome1.introduction.section {
        padding: 3.5rem 2rem !important;
    }
    
    #id-6237 .introduction-image {
        width: 320px !important;
        height: 320px !important;
    }
    
    #id-6237 .introduction-title {
        font-size: 1.8rem !important;
    }
    
    #id-6237 .introduction-description {
        padding: 2rem !important;
    }
    
    #id-6237 .introduction-description p {
        font-size: 1.05rem !important;
    }
}

/* 📱 موبایل (تا 768px) */
@media (max-width: 768px) {
    #id-6237.welcome1.introduction.section {
        padding: 3rem 1rem !important;
    }
    
    #id-6237 .introduction-image {
        width: 280px !important;
        height: 280px !important;
        border-width: 8px !important;
    }
    
    #id-6237 .introduction-title {
        font-size: 1.6rem !important;
    }
    
    #id-6237 .introduction-description {
        padding: 1.8rem !important;
    }
    
    #id-6237 .introduction-description pre,
    #id-6237 .introduction-description * {
        font-size: 1rem !important;
        line-height: 1.8 !important;
    }
    
    #id-6237 .doctor-name-overlay {
        font-size: 1rem !important;
        padding: 10px 15px !important;
    }
}

/* 📱 موبایل کوچک (تا 480px) */
@media (max-width: 480px) {
    #id-6237.welcome1.introduction.section {
        padding: 2.5rem 0.8rem !important;
    }
    
    #id-6237 .introduction-image {
        width: 240px !important;
        height: 240px !important;
        border-width: 6px !important;
        border-radius: 15px !important;
    }
    
    #id-6237 .introduction-title {
        font-size: 1.4rem !important;
    }
    
    #id-6237 .introduction-description {
        padding: 1.5rem !important;
    }
    
    #id-6237 .introduction-description pre,
    #id-6237 .introduction-description * {
        font-size: 0.95rem !important;
        line-height: 1.7 !important;
    }
    
    #id-6237 .doctor-name-overlay {
        font-size: 0.9rem !important;
        padding: 8px 12px !important;
    }
}




/* Medical Services Grid Section */
#id-2294.article9 {
    background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%) !important;
    padding: 80px 20px !important;
    position: relative !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: default !important; /* غیرفعال کردن pointer روی سکشن */
}

/* Top Border */
#id-2294.article9::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 10% !important;
    right: 10% !important;
    height: 3px !important;
    background: linear-gradient(90deg, 
        transparent, 
        #ff0000, 
        #ffffff, 
        #ff0000, 
        transparent) !important;
}

/* Grid Wrapper */
#id-2294 .article-wrapper {
    max-width: 99% !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 25px !important;
    width: 100% !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
    align-items: stretch !important;
}

/* Card Item - Clean Design */
#id-2294 .article-card-item {
    background: white !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 25px 20px !important;
    height: 220px !important;
    min-height: 220px !important;
    max-height: 220px !important;
    border: 1px solid rgba(255, 0, 0, 0.1) !important;
    box-sizing: border-box !important;
    width: 100% !important;
    position: relative !important;
    cursor: pointer !important; /* اضافه کردن cursor pointer روی کارت */
}

/* Card Hover Effect */
#id-2294 .article-card-item:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 12px 30px rgba(255, 0, 0, 0.12) !important;
    border-color: rgba(255, 0, 0, 0.2) !important;
}

/* Card Background Icon */
#id-2294 .article-card-item::before {
    content: '' !important;
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    width: 50px !important;
    height: 50px !important;
    opacity: 0.1 !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ff0000'%3E%3Cpath d='M12 2L2 7l10 5 10-5-10-5zM2 17l10 5 10-5M2 12l10 5 10-5'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
    transition: all 0.3s ease !important;
}

#id-2294 .article-card-item:hover::before {
    opacity: 0.2 !important;
    transform: scale(1.1) !important;
}

/* Card Content */
#id-2294 .card-detail {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    box-sizing: border-box !important;
    position: relative !important;
    z-index: 2 !important;
}

#id-2294 .card-detail-content {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}

/* Card Title */
#id-2294 .article-card-title {
    color: #ff0000 !important;
    font-family: 'iranyekan', sans-serif !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    margin: 0 0 12px 0 !important;
    line-height: 1.4 !important;
    text-align: right !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    padding: 0 !important;
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important; /* جلوگیری از شکسته شدن متن */
}

#id-2294 .article-card-item:hover .article-card-title {
    color: #cc0000 !important;
}

/* Card Line */
#id-2294 .article-card-line {
    border: none !important;
    height: 2px !important;
    background: linear-gradient(90deg, transparent, #ff0000, transparent) !important;
    margin: 0 0 12px 0 !important;
    opacity: 0.5 !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    border-radius: 1px !important;
    flex-shrink: 0 !important;
}

#id-2294 .article-card-item:hover .article-card-line {
    opacity: 1 !important;
    background: linear-gradient(90deg, transparent, #ff0000, #ff6666, #ff0000, transparent) !important;
}

/* Card Description - بازسازی کامل */
#id-2294 .article-card-description {
    color: #555 !important;
    font-family: 'iranyekan', sans-serif !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: right !important;
    white-space: normal !important;
    word-break: normal !important; /* تغییر از break-word به normal */
    overflow-wrap: normal !important;
    flex: 1 !important;
    display: flex !important;
    align-items: flex-start !important; /* تغییر از center به flex-start */
    box-sizing: border-box !important;
    width: 100% !important;
    overflow: hidden !important;
    height: auto !important;
    min-height: 60px !important;
}

#id-2294 .article-card-description p {
    margin: 0 !important;
    padding: 0 !important;
    text-align: right !important;
    width: 100% !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    line-height: 1.6 !important;
    max-height: 4.8em !important;
    word-break: keep-all !important; /* جلوگیری از شکستن کلمات */
    hyphens: none !important; /* غیرفعال کردن خط تیره بین کلمات */
    word-spacing: normal !important;
    letter-spacing: normal !important;
}

/* حذف نقطه‌چین در حاشیه متن */
#id-2294 .article-card-description::-webkit-scrollbar {
    display: none !important;
}

#id-2294 .article-card-description {
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
}

/* تنظیم یکسان ارتفاع و تراز */
#id-2294 .article-card-description pre {
    word-wrap: normal !important;
    overflow-wrap: normal !important;
    max-width: 100% !important;
    margin: 0 !important;
    width: 100% !important;
    white-space: pre-wrap !important;
    font-family: inherit !important;
    font-size: inherit !important;
    line-height: inherit !important;
    display: block !important;
}

/* =================== رسپانسیو =================== */

/* دسکتاپ کوچک (992px تا 1200px) - 4 ستون */
@media (max-width: 1200px) {
    #id-2294.article9 {
        padding: 60px 15px !important;
    }
    
    #id-2294 .article-wrapper {
        max-width: 99% !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 20px !important;
        padding: 0 15px !important;
    }
    
    #id-2294 .article-card-item {
        height: 210px !important;
        min-height: 210px !important;
        max-height: 210px !important;
        padding: 22px 18px !important;
    }
    
    #id-2294 .article-card-title {
        font-size: 17px !important;
        height: 48px !important;
        margin-bottom: 10px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    
    #id-2294 .article-card-line {
        margin-bottom: 10px !important;
    }
    
    #id-2294 .article-card-description {
        font-size: 13.5px !important;
        min-height: 55px !important;
        line-height: 1.5 !important;
    }
    
    #id-2294 .article-card-description p {
        -webkit-line-clamp: 3 !important;
        line-height: 1.5 !important;
        word-break: keep-all !important;
    }
}

/* تبلت بزرگ (768px تا 992px) - 3 ستون */
@media (max-width: 992px) {
    #id-2294.article9 {
        padding: 50px 15px !important;
    }
    
    #id-2294 .article-wrapper {
        max-width: 99% !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px !important;
        padding: 0 15px !important;
    }
    
    #id-2294 .article-card-item {
        height: 200px !important;
        min-height: 200px !important;
        max-height: 200px !important;
        padding: 20px 18px !important;
    }
    
    #id-2294 .article-card-title {
        font-size: 16px !important;
        height: 45px !important;
        margin-bottom: 10px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    
    #id-2294 .article-card-description {
        font-size: 13px !important;
        line-height: 1.5 !important;
        min-height: 50px !important;
    }
    
    #id-2294 .article-card-description p {
        -webkit-line-clamp: 3 !important;
        line-height: 1.5 !important;
        word-break: keep-all !important;
    }
    
    #id-2294 .article-card-item::before {
        width: 40px !important;
        height: 40px !important;
        top: 15px !important;
        right: 15px !important;
    }
}

/* تبلت (577px تا 768px) - 2 ستون */
@media (max-width: 768px) {
    #id-2294.article9 {
        padding: 40px 10px !important;
    }
    
    #id-2294 .article-wrapper {
        max-width: 99% !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 18px !important;
        padding: 0 10px !important;
    }
    
    #id-2294 .article-card-item {
        height: 190px !important;
        min-height: 190px !important;
        max-height: 190px !important;
        padding: 20px 15px !important;
        max-width: 100% !important;
    }
    
    #id-2294 .article-card-title {
        font-size: 16px !important;
        height: 42px !important;
        margin-bottom: 8px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        text-align: center !important;
        justify-content: center !important;
    }
    
    #id-2294 .article-card-line {
        margin-bottom: 8px !important;
    }
    
    #id-2294 .article-card-description {
        font-size: 13px !important;
        line-height: 1.5 !important;
        min-height: 48px !important;
        text-align: center !important;
        justify-content: flex-start !important;
    }
    
    #id-2294 .article-card-description p {
        -webkit-line-clamp: 3 !important;
        line-height: 1.4 !important;
        text-align: center !important;
        word-break: keep-all !important;
    }
}

/* موبایل بزرگ (450px تا 577px) - 2 ستون با فاصله کمتر */
@media (max-width: 577px) {
    #id-2294.article9 {
        padding: 30px 10px !important;
    }
    
    #id-2294 .article-wrapper {
        max-width: 99% !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
        padding: 0 10px !important;
    }
    
    #id-2294 .article-card-item {
        height: 180px !important;
        min-height: 180px !important;
        max-height: 180px !important;
        padding: 18px 15px !important;
    }
    
    #id-2294 .article-card-title {
        font-size: 15px !important;
        height: 38px !important;
        margin-bottom: 6px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        text-align: center !important;
        justify-content: center !important;
    }
    
    #id-2294 .article-card-line {
        margin-bottom: 6px !important;
    }
    
    #id-2294 .article-card-description {
        font-size: 12px !important;
        line-height: 1.4 !important;
        min-height: 45px !important;
        text-align: center !important;
        justify-content: flex-start !important;
    }
    
    #id-2294 .article-card-description p {
        -webkit-line-clamp: 3 !important;
        line-height: 1.4 !important;
        text-align: center !important;
        word-break: keep-all !important;
    }
}

/* موبایل کوچک (زیر 450px) - 1 ستون */
@media (max-width: 450px) {
    #id-2294.article9 {
        padding: 25px 10px !important;
    }
    
    #id-2294 .article-wrapper {
        max-width: 99% !important;
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        padding: 0 10px !important;
    }
    
    #id-2294 .article-card-item {
        height: 170px !important;
        min-height: 170px !important;
        max-height: 170px !important;
        padding: 20px 15px !important;
        max-width: 100% !important;
    }
    
    #id-2294 .article-card-title {
        font-size: 16px !important;
        height: 35px !important;
        justify-content: center !important;
        text-align: center !important;
        margin-bottom: 8px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    
    #id-2294 .article-card-line {
        margin: 0 auto 8px auto !important;
        width: 80% !important;
    }
    
    #id-2294 .article-card-description {
        font-size: 13px !important;
        text-align: center !important;
        justify-content: flex-start !important;
        min-height: 42px !important;
        line-height: 1.4 !important;
    }
    
    #id-2294 .article-card-description p {
        text-align: center !important;
        -webkit-line-clamp: 3 !important;
        line-height: 1.4 !important;
        word-break: keep-all !important;
    }
    
    #id-2294 .article-card-item::before {
        display: none !important;
    }
}

/* تنظیمات اضافی */
#id-2294 .article-wrapper {
    overflow: hidden !important;
}

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

/* Animation */
@keyframes cardAppear {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#id-2294 .article-card-item {
    animation: cardAppear 0.5s ease forwards;
    opacity: 0;
}

/* Staggered animation */
#id-2294 .article-card-item:nth-child(1) { animation-delay: 0.1s; }
#id-2294 .article-card-item:nth-child(2) { animation-delay: 0.15s; }
#id-2294 .article-card-item:nth-child(3) { animation-delay: 0.2s; }
#id-2294 .article-card-item:nth-child(4) { animation-delay: 0.25s; }
#id-2294 .article-card-item:nth-child(5) { animation-delay: 0.3s; }
#id-2294 .article-card-item:nth-child(6) { animation-delay: 0.35s; }
#id-2294 .article-card-item:nth-child(7) { animation-delay: 0.4s; }
#id-2294 .article-card-item:nth-child(8) { animation-delay: 0.45s; }







/* دکمه رزرو آنلاین - تم قرمز لوکس */
/* دکمه رزرو آنلاین - تم قرمز لوکس */
#id-6243.reservation {
    position: fixed !important;
    bottom: 20px !important;
    left: 15px !important;
    right: 15px !important;
    z-index: 9999 !important;
    background: linear-gradient(90deg, #8B0000 0%, #CC0000 100%) !important;
    color: white !important;
    font-family: 'iranyekan', sans-serif !important;
    font-weight: 700 !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 16px !important;
    cursor: pointer !important;
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.4) !important;
    transition: all 0.3s !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: calc(100% - 30px) !important;
    max-width: calc(100% - 30px) !important;
    margin: 0 auto !important;
}

/* رفع مشکل فونت و فاصله تگ */
#id-6243.reservation pre {
    margin: 0 !important;
    padding: 0 !important;
    font-family: inherit !important;
    font-size: inherit !important;
    font-weight: inherit !important;
	line-height: normal !important;
}

#id-6243.reservation .btn-text {
    margin: 0 !important;
    padding: 0 !important;
    text-align: center !important;
}

/* حالت hover */
#id-6243.reservation:hover {
    background: linear-gradient(90deg, #CC0000 0%, #FF3333 100%) !important;
    box-shadow: 0 8px 25px rgba(204, 0, 0, 0.5) !important;
    transform: translateY(-2px) !important;
}

/* حالت active */
#id-6243.reservation:active {
    background: linear-gradient(90deg, #660000 0%, #990000 100%) !important;
    transform: translateY(0) !important;
}

/* دسکتاپ - اصلاح شده: وسط چین */
@media (min-width: 769px) {
    #id-6243.reservation {
        bottom: 25px !important;
        left: auto !important;
        right: -75px !important;
        transform: translateX(-50%) !important;
        width: auto !important;
        min-width: 280px !important;
        border-radius: 40px !important;
        padding: 14px 30px !important;
        max-width: none !important;
    }
    
    #id-6243.reservation:hover {
        transform: translateX(-50%) translateY(-2px) !important;
    }
    
    #id-6243.reservation:active {
        transform: translateX(-50%) translateY(0) !important;
    }
}

/* موبایل */
@media (max-width: 768px) {
    #id-6243.reservation {
        bottom: 15px !important;
        left: 15px !important;
        right: 15px !important;
        padding: 14px 12px !important;
        width: calc(100% - 30px) !important;
        max-width: calc(100% - 30px) !important;
    }
}

/* موبایل کوچک */
@media (max-width: 480px) {
    #id-6243.reservation {
        bottom: 12px !important;
        left: 10px !important;
        right: 10px !important;
        padding: 12px 10px !important;
        width: calc(100% - 20px) !important;
        max-width: calc(100% - 20px) !important;
    }
}





aside .lastArticle a[href*="article?pageID=4611"] {
    display: none !important;
}