
/* استایل‌های هدر */
.glass-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-link {
    position: relative;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 80%;
}

.cta-button {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

/* استایل‌های فوتر */
.french-blue {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
}

.footer-link {
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: white !important;
    transform: translateX(-5px);
}

.trust-badge {
    transition: transform 0.3s ease;
}

.trust-badge:hover {
    transform: scale(1.05);
}

/* استایل‌های محصول */
.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.2);
}

.tab-button {
    transition: all 0.3s ease;
}

.tab-button:hover {
    background-color: rgba(59, 130, 246, 0.1);
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* استایل‌های موبایل */
.mobile-menu {
    width: 280px !important;
    background: rgba(255, 255, 255, 0.98);
    /*backdrop-filter: blur(20px);*/
    /*-webkit-backdrop-filter: blur(20px);*/
    right: 0 !important;
    left: auto !important;
    z-index: 9999 !important;
}

.mobile-menu.active {
    transform: translateX(0) !important;
}

#mobileOverlay {
    z-index: 9998 !important;
}

/* ریست کامل موقعیت‌ها */
html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    position: relative !important;
}        

/* برای حالت RTL */
[dir="rtl"] .mobile-menu {
    left: 0 !important;
    right: auto !important;
    transform: translateX(-100%) !important;
}

[dir="rtl"] .mobile-menu.active {
    transform: translateX(0) !important;
}        

#mobileMenu.menu-closed {
    opacity: 0;
} 

/* استایل‌های سیستم چندزبانه */
/*.lang-switch {*/
/*    transition: all 0.3s ease;*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*}*/

/*.lang-switch::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    left: 50%;*/
/*    width: 5px;*/
/*    height: 5px;*/
/*    background: rgba(59, 130, 246, 0.5);*/
/*    opacity: 0;*/
/*    border-radius: 100%;*/
/*    transform: scale(1, 1) translate(-50%);*/
/*    transform-origin: 50% 50%;*/
/*}*/

/*.lang-switch:active::after {*/
/*    animation: ripple 1s ease-out;*/
/*}*/

/* استایل‌های اضافی برای سیستم چندزبانه */
.lang-switch {
    transition: all 0.3s ease;
}
.lang-switch:hover {
    transform: scale(1.05);
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}



.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #374151;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* استایل‌های RTL/LTR */
/*[dir="rtl"] .nav-link {*/
/*    margin-right: 0;*/
/*    margin-left: 1rem;*/
/*}*/

/*[dir="ltr"] .nav-link {*/
/*    margin-left: 0;*/
/*    margin-right: 1rem;*/
/*}*/

/*[dir="ltr"] .rtl-support {*/
/*    text-align: left;*/
/*}*/

/*[dir="rtl"] .rtl-support {*/
/*    text-align: right;*/
/*}*/
