@font-face {
  font-family: 'IRANYekanX';
  src: url('/assets/font/IRAN-Yekan-X-VF/IRAN\ Yekan\ X\ VF.ttf') format('woff2');
  font-weight: 100 900; 
  font-display: swap;
}
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'IRANYekanX';
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background: linear-gradient(135deg, #f8fafc 0%, #e1f0ff 50%, #e8f5e9 100%);
            min-height: 200vh;
            padding-top: 90px;
            transition: all 0.4s ease;
        }

        body.dark {
         background: linear-gradient(135deg, #0a1929 0%, #145F68 50%, #0f2e1f 100%);
        }


        /* Desktop Navigation */
        .desktop-menu {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(14, 116, 235, 0.08);
            z-index: 1000;
            padding: 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: none;
            box-shadow: 0 2px 20px rgba(14, 116, 235, 0.06);
        }

        body.dark .desktop-menu {
            background: rgb(11, 43, 57);
            border-bottom-color: rgba(14, 116, 235, 0.15);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        }

        .desktop-menu.scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(25px);
            box-shadow: 0 4px 30px rgba(14, 116, 235, 0.1);
        }

        body.dark .desktop-menu.scrolled {
            background: rgb(12, 47, 60);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
        }

        .desktop-nav {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 45px;
            transition: padding 0.4s ease;
        }

        .desktop-menu.scrolled .desktop-nav {
            padding: 12px 45px;
        }

        .desktop-logo {
            display: flex;
            align-items: center;
            gap: 18px;
            cursor: pointer;
        }

        .desktop-logo img {
            width: 85px;
            height: 85px;
            object-fit: contain;
            transition: all 0.4s ease;
            filter: drop-shadow(0 4px 12px rgba(14, 116, 235, 0.15));
        }

        .desktop-menu.scrolled .desktop-logo img {
            width: 52px;
            height: 52px;
        }

        .desktop-nav-items {
            display: flex;
            gap: 4px;
            align-items: center;
        }

        .desktop-nav-item {
            color: #1e3a5f;
            text-decoration: none;
            font-weight: 600;
            font-size: 15.5px;
            padding: 13px 26px;
            border-radius: 14px;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            letter-spacing: 0.3px;
        }

        body.dark .desktop-nav-item {
            color: #e3f2fd;
        }

        .desktop-nav-item::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            left: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(14, 116, 235, 0.08) 0%, rgba(76, 175, 80, 0.06) 100%);
            opacity: 0;
            transition: opacity 0.35s ease;
            border-radius: 14px;
        }

        .desktop-nav-item:hover::before {
            opacity: 1;
        }

        .desktop-nav-item:hover {
            color: #0e74eb;
            transform: translateY(-2px);
        }

        body.dark .desktop-nav-item:hover {
            color: #64b5f6;
        }

        .desktop-nav-item.active {
            background: linear-gradient(135deg, #0e74eb 0%, #4caf50 100%);
            color: white;
            box-shadow: 0 6px 20px rgba(14, 116, 235, 0.35);
        }

        .desktop-nav-item.active::before {
            display: none;
        }

        .desktop-theme-toggle {
            margin-right: 20px;
        }

        .theme-switch {
            position: relative;
            width: 64px;
            height: 32px;
            background: linear-gradient(135deg, #0e74eb 0%, #4caf50 100%);
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 4px 12px rgba(14, 116, 235, 0.25);
        }

        body.dark .theme-switch {
            background: linear-gradient(135deg, #1e3a8a 0%, #2e7d32 100%);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
        }

        .theme-slider {
            position: absolute;
            top: 3px;
            right: 3px;
            width: 26px;
            height: 26px;
            background: white;
            border-radius: 50%;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
        }

        body.dark .theme-slider {
            transform: translateX(-32px);
            background: #1a237e;
        }

        .theme-slider::before {
            content: '☀️';
        }

        body.dark .theme-slider::before {
            content: '🌙';
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1001;
            display: none;
        }

        .menu-toggle {
            width: 62px;
            height: 62px;
            border-radius: 18px;
            background: linear-gradient(135deg, #0e74eb 0%, #4caf50 100%);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 25px rgba(14, 116, 235, 0.4);
            transition: all 0.35s ease;
        }

        body.dark .menu-toggle {
            background: linear-gradient(135deg, #1e3a8a 0%, #2e7d32 100%);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
        }

        .menu-toggle:hover {
            transform: scale(1.08);
            box-shadow: 0 12px 35px rgba(14, 116, 235, 0.5);
        }

        .menu-icon {
            width: 28px;
            height: 22px;
            position: relative;
        }

        .menu-icon span {
            display: block;
            position: absolute;
            height: 3px;
            width: 100%;
            background: white;
            border-radius: 3px;
            opacity: 1;
            left: 0;
            transform: rotate(0deg);
            transition: all 0.3s ease-in-out;
        }

        .menu-icon span:nth-child(1) { top: 0px; }
        .menu-icon span:nth-child(2) { top: 9px; }
        .menu-icon span:nth-child(3) { top: 18px; }

        .menu-toggle.active .menu-icon span:nth-child(1) {
            top: 9px;
            transform: rotate(135deg);
        }

        .menu-toggle.active .menu-icon span:nth-child(2) {
            opacity: 0;
            left: -60px;
        }

        .menu-toggle.active .menu-icon span:nth-child(3) {
            top: 9px;
            transform: rotate(-135deg);
        }

        /* Mobile Menu Items */
        .mobile-menu-items {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100vw;
            max-width: 330px;
            height: 100vh;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(30px);
            padding: 100px 30px 30px;
            transition: right 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            overflow-y: auto;
            border-left: 1px solid rgba(14, 116, 235, 0.1);
            box-shadow: -5px 0 30px rgba(14, 116, 235, 0.1);
        }

        body.dark .mobile-menu-items {
            background: rgba(10, 25, 41, 0.95);
            border-left-color: rgba(14, 116, 235, 0.2);
            box-shadow: -5px 0 30px rgba(0, 0, 0, 0.4);
        }

        .mobile-menu-items.active {
            right: 0;
        }

        .mobile-logo {
            text-align: center;
            margin-bottom: 32px;
            padding-bottom: 26px;
            border-bottom: 1px solid rgba(14, 116, 235, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }

        body.dark .mobile-logo {
            border-bottom-color: rgba(14, 116, 235, 0.2);
        }

        .mobile-logo img {
            width: 75px;
            height: 75px;
            object-fit: contain;
            margin-bottom: 12px;
            filter: drop-shadow(0 4px 15px rgba(14, 116, 235, 0.2));
        }

        .mobile-menu-item {
            display: block;
            padding: 17px 24px;
            text-decoration: none;
            color: #1e3a5f;
            font-weight: 600;
            border-radius: 16px;
            margin-bottom: 12px;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 16px;
            letter-spacing: 0.3px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body.dark .mobile-menu-item {
            color: #e3f2fd;
        }

        .mobile-menu-item:hover,
        .mobile-menu-item.active {
            background: linear-gradient(135deg, #0e74eb 0%, #4caf50 100%);
            color: white;
            transform: translateX(-10px);
            box-shadow: 0 8px 25px rgba(14, 116, 235, 0.35);
        }

        .mobile-theme-toggle {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 24px;
            margin-top: 26px;
            border-top: 1px solid rgba(14, 116, 235, 0.12);
            border-radius: 16px;
        }

        body.dark .mobile-theme-toggle {
            border-top-color: rgba(14, 116, 235, 0.2);
        }

        .theme-label {
            color: #1e3a5f;
            font-weight: 600;
            font-size: 16px;
            letter-spacing: 0.3px;
        }

        body.dark .theme-label {
            color: #e3f2fd;
        }

        /* Mobile Menu Overlay */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.6);
            opacity: 0;
            visibility: hidden;
            transition: all 0.35s ease;
            z-index: 999;
            backdrop-filter: blur(3px);
        }

        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }



        /* Responsive */
        @media (min-width: 854px) {
            .desktop-menu {
                display: block;
            }
        }

        @media (max-width: 854px) {
            .mobile-menu {
                display: block;
            }

            body {
                padding-top: 0;
            }
            
            .home-section {
                margin-top: 0;
                padding-top: 0;
            }
        }

        @media (max-width: 480px) {
            .mobile-menu-items {
                max-width: 290px;
            }

            .menu-toggle {
                width: 58px;
                height: 58px;
            }

            .mobile-logo img {
                width: 90px;
                height: 85px;
            }
        }




        /*---------------------------------------------menu--------------------------------------------------------------------------------------------*/


/*-------------------------------home با Swiper تمام صفحه (مثل بنز)-------------------------------------------------------------------------------------------*/
/* اورلی سبک‌تر برای home و home3 */
.overlay-light {
    background: linear-gradient(
        to left,
        rgba(10, 25, 41, 0.65) 0%,
        rgba(10, 25, 41, 0.55) 35%,
        rgba(10, 25, 41, 0.25) 65%,
        transparent 100%
    ) !important;
}

body.dark .overlay-light {
    background: linear-gradient(
        to left,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.65) 35%,
        rgba(0, 0, 0, 0.3) 65%,
        transparent 100%
    ) !important;
}

/* محتوای شفاف‌تر */
.content-transparent {
    background: rgba(255, 255, 255, 0.02) !important;
    backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
}

body.dark .content-transparent {
    background: rgba(0, 0, 0, 0.25) !important;
    backdrop-filter: blur(15px) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* متن با سایه بیشتر برای خوانایی */
.content-transparent .slide-title {
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 4px 8px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(0, 0, 0, 0.2) !important;
}

.content-transparent .slide-text {
    text-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.6),
        0 2px 6px rgba(0, 0, 0, 0.4) !important;
}

.content-transparent .mini-feature {
    background: rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

/* اورلی خاص برای محصولات - فقط گوشه راست */
.swiper-slide:nth-child(3) .slide-overlay,
.swiper-slide:nth-child(4) .slide-overlay {
    background: linear-gradient(
        to left,
        rgba(10, 25, 41, 0.88) 0%,
        rgba(10, 25, 41, 0.75) 25%,
        rgba(10, 25, 41, 0.4) 50%,
        rgba(10, 25, 41, 0.15) 70%,
        transparent 85%
    ) !important;
}

body.dark .swiper-slide:nth-child(3) .slide-overlay,
body.dark .swiper-slide:nth-child(4) .slide-overlay {
    background: linear-gradient(
        to left,
        rgba(0, 0, 0, 0.92) 0%,
        rgba(0, 0, 0, 0.8) 25%,
        rgba(0, 0, 0, 0.45) 50%,
        rgba(0, 0, 0, 0.2) 70%,
        transparent 85%
    ) !important;
}

/* محتوای محصولات - با بک‌گراند بیشتر */
.swiper-slide:nth-child(3) .content-wrapper,
.swiper-slide:nth-child(4) .content-wrapper {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(18px) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

body.dark .swiper-slide:nth-child(3) .content-wrapper,
body.dark .swiper-slide:nth-child(4) .content-wrapper {
    background: rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(20px) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}




.home-section {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Swiper تمام صفحه */
.fullPageSwiper {
    width: 100%;
    height: 100vh;
    position: relative;
}

.fullPageSwiper .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* تصویر پس‌زمینه */
.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}

.swiper-slide-active .slide-bg img {
    transform: scale(1.1);
}

/* اورلی */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to left,
        rgba(10, 25, 41, 0.85) 0%,
        rgba(10, 25, 41, 0.75) 40%,
        rgba(10, 25, 41, 0.3) 70%,
        transparent 100%
    );
    z-index: 2;
}

body.dark .slide-overlay {
    background: linear-gradient(
        to left,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.8) 40%,
        rgba(0, 0, 0, 0.4) 70%,
        transparent 100%
    );
}

/* محتوای اسلاید */
.slide-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 80px;
    z-index: 3;
}

.content-wrapper {
    max-width: 650px;
    padding: 50px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

body.dark .content-wrapper {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.05);
}

.swiper-slide-active .content-wrapper {
    opacity: 1;
    transform: translateX(0);
}

/* بج */
.slide-badge {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, #0e74eb 0%, #4caf50 100%);
    color: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(14, 116, 235, 0.4);
}

/* تایتل */
.slide-title {
    font-size: 52px;
    font-weight: 800;
    color: white;
    margin: 0 0 20px 0;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* متن */
.slide-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 0 0 30px 0;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* ویژگی‌ها */
.slide-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 35px;
}

.mini-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.mini-feature i {
    font-size: 18px;
    color: #4caf50;
}

/* دکمه */
.slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #0e74eb 0%, #4caf50 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(14, 116, 235, 0.4);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.slide-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(14, 116, 235, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
}

.slide-btn i {
    font-size: 22px;
    transition: transform 0.3s ease;
}

.slide-btn:hover i {
    transform: translateX(-5px);
}

/* دکمه‌های ناوبری */
.swiper-nav-btn {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-nav-btn::after {
    font-size: 24px;
    color: white;
    font-weight: bold;
}

.swiper-nav-btn:hover {
    background: rgba(14, 116, 235, 0.9);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Pagination */
.fullPageSwiper .swiper-pagination {
    bottom: 40px !important;
    left: 50%;
    transform: translateX(-50%);
}

.fullPageSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.fullPageSwiper .swiper-pagination-bullet-active {
    width: 40px;
    border-radius: 6px;
    background: linear-gradient(135deg, #0e74eb 0%, #4caf50 100%);
}

/* Scroll Down */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-down i {
    font-size: 40px;
    color: white;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-8px);
    }
}

/* ریسپانسیو */
@media (max-width: 1024px) {
    .slide-content {
        padding: 0 50px;
    }
    
    .content-wrapper {
        padding: 40px;
        max-width: 550px;
    }
    
    .slide-title {
        font-size: 42px;
    }
    
    .slide-text {
        font-size: 16px;
    }
    
    .swiper-nav-btn {
        width: 50px;
        height: 50px;
    }
    
    .swiper-nav-btn::after {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    /* ... کدهای قبلی ... */
    
    /* اورلی موبایل برای home و home3 */
    .overlay-light {
        background: linear-gradient(
            to top,
            rgba(10, 25, 41, 0.88) 0%,
            rgba(10, 25, 41, 0.65) 40%,
            rgba(10, 25, 41, 0.3) 70%,
            transparent 100%
        ) !important;
    }
    
    body.dark .overlay-light {
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.92) 0%,
            rgba(0, 0, 0, 0.75) 40%,
            rgba(0, 0, 0, 0.4) 70%,
            transparent 100%
        ) !important;
    }
    
    /* اورلی موبایل برای محصولات */
    .swiper-slide:nth-child(3) .slide-overlay,
    .swiper-slide:nth-child(4) .slide-overlay {
        background: linear-gradient(
            to top,
            rgba(10, 25, 41, 0.92) 0%,
            rgba(10, 25, 41, 0.75) 35%,
            rgba(10, 25, 41, 0.45) 60%,
            transparent 90%
        ) !important;
    }
    
    body.dark .swiper-slide:nth-child(3) .slide-overlay,
    body.dark .swiper-slide:nth-child(4) .slide-overlay {
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.8) 35%,
            rgba(0, 0, 0, 0.5) 60%,
            transparent 90%
        ) !important;
    }
    
    /* محتوای شفاف موبایل */
    .content-transparent {
        background: rgba(0, 0, 0, 0.4) !important;
        backdrop-filter: blur(15px) !important;
    }
}

@media (max-width: 480px) {
    .slide-content {
        padding: 0 20px;
        padding-bottom: 80px;
    }
    
    .content-wrapper {
        padding: 25px;
    }
    
    .slide-badge {
        padding: 8px 18px;
        font-size: 12px;
        margin-bottom: 20px;
    }
    
    .slide-title {
        font-size: 26px;
        margin-bottom: 15px;
    }
    
    .slide-text {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .slide-features {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .slide-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
    }
    
    .swiper-nav-btn {
        display: none;
    }
}




/*-------------------------------home-------------------------------------------------------------------------------------------*/

/* ==================== استایل تایتل بخش درباره ما ==================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeInDown 0.8s ease forwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    font-family: 'IRANYekanX', sans-serif;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0e74eb, #4caf50);
    border-radius: 2px;
}

body.dark .section-title {
    color: #e3f2fd;
}

/* ==================== بخش اصلی درباره ما ==================== */
.about-section {
    padding: 80px 20px;
    min-height: 100vh;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 15px;
}

.about-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 80px;
    opacity: 0;
    width: 100%;
    max-width: 100%;
}

.about-row-1 {
    animation: slideInFromLeft 0.8s ease forwards;
}

.about-row-2 {
    animation: slideInFromRight 0.8s ease forwards;
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==================== باکس متن ==================== */
.about-text-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 45px;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(14, 116, 235, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(14, 116, 235, 0.1);
    width: 100%;
}

body.dark .about-text-box {
    background: rgba(30, 41, 59, 0.95);
    border-color: rgba(14, 116, 235, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.about-subtitle {
    font-size: 28px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 20px;
    font-family: 'IRANYekanX', sans-serif;
}

body.dark .about-subtitle {
    color: #e3f2fd;
}

.about-text {
    font-size: 16.5px;
    line-height: 2;
    color: #475569;
    text-align: justify;
    font-family: 'IRANYekanX', sans-serif;
}

body.dark .about-text {
    color: #cbd5e1;
}

/* ==================== باکس تصویر ==================== */
.about-image-box {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(14, 116, 235, 0.2);
    transition: all 0.4s ease;
    width: 100%;
    max-width: 100%;
}

body.dark .about-image-box {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.about-image-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(14, 116, 235, 0.3);
}

body.dark .about-image-box:hover {
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.5);
}

.about-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16/10;
    transition: transform 0.5s ease;
    display: block;
}

.about-image-box:hover img {
    transform: scale(1.08);
}

/* ==================== بخش آمار ==================== */
.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
    opacity: 0;
    animation: slideInFromBottom 0.8s ease 0.3s forwards;
    width: 100%;
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-card {
    background: linear-gradient(135deg, rgba(14, 116, 235, 0.08) 0%, rgba(76, 175, 80, 0.08) 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(14, 116, 235, 0.15);
    transition: all 0.4s ease;
}

body.dark .stat-card {
    background: linear-gradient(135deg, rgba(14, 116, 235, 0.15) 0%, rgba(76, 175, 80, 0.15) 100%);
    border-color: rgba(14, 116, 235, 0.25);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(14, 116, 235, 0.25);
    border-color: rgba(14, 116, 235, 0.3);
}

body.dark .stat-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #0e74eb;
    margin-bottom: 10px;
    font-family: 'IRANYekanX', sans-serif;
}

body.dark .stat-number {
    color: #64b5f6;
}

.stat-label {
    font-size: 16px;
    color: #475569;
    font-weight: 600;
    font-family: 'IRANYekanX', sans-serif;
}

body.dark .stat-label {
    color: #cbd5e1;
}

/* ==================== بخش چشم‌انداز ==================== */
.about-vision {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(14, 116, 235, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(14, 116, 235, 0.1);
    text-align: center;
    opacity: 0;
    animation: slideInFromBottom 0.8s ease 0.5s forwards;
    width: 100%;
}

body.dark .about-vision {
    background: rgba(30, 41, 59, 0.95);
    border-color: rgba(14, 116, 235, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* ==================== ریسپانسیو دسکتاپ ==================== */
@media (min-width: 1024px) {
    .about-row {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
    
    .about-row-2 {
        direction: ltr;
    }
    
    .about-row-2 .about-text-box {
        direction: rtl;
    }
}

/* ==================== ریسپانسیو تبلت ==================== */
@media (max-width: 768px) {
    .about-section {
        padding: 50px 15px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .about-row {
        margin-bottom: 50px;
    }
    
    .about-text-box {
        padding: 35px 28px;
    }
    
    .about-subtitle {
        font-size: 24px;
    }
    
    .about-text {
        font-size: 15px;
    }
    
    .about-stats {
        gap: 20px;
        margin-bottom: 50px;
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 30px;
    }
    
    .about-vision {
        padding: 35px 25px;
    }
}

/* ==================== ریسپانسیو موبایل ==================== */
@media (max-width: 480px) {
    .section-title {
        font-size: 28px;
    }
    
    .about-subtitle {
        font-size: 21px;
    }
    
    .about-text {
        font-size: 14.5px;
    }
    
    .stat-icon {
        font-size: 40px;
    }
    
    .stat-number {
        font-size: 26px;
    }
}



/*-------------------------------mahsol-------------------------------------------------------------------------------------------*/

.products-section {
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.products-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #0e74eb 0%, #4caf50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

body.dark .section-title {
    background: linear-gradient(135deg, #64b5f6 0%, #81c784 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 18px;
    color: #64748b;
    font-weight: 500;
}

body.dark .section-subtitle {
    color: #94a3b8;
}

.products-swiper-wrapper {
    position: relative;
    padding: 0 20px;
}

.products-swiper {
    padding: 20px 10px 60px;
    overflow: visible;
}

.product-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(14, 116, 235, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

body.dark .product-card {
    background: rgba(15, 30, 50, 0.7);
    border-color: rgba(14, 116, 235, 0.2);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(14, 116, 235, 0.25);
    border-color: rgba(14, 116, 235, 0.3);
}

body.dark .product-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.product-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e1f0ff 100%);
}

body.dark .product-image {
    background: linear-gradient(135deg, #1a2332 0%, #0d2d4a 100%);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #0e74eb 0%, #4caf50 100%);
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(14, 116, 235, 0.4);
    z-index: 2;
}

.product-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: 22px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 10px;
    line-height: 1.4;
}

body.dark .product-title {
    color: #e3f2fd;
}

.product-description {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

body.dark .product-description {
    color: #94a3b8;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
    flex-grow: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #475569;
}

body.dark .feature-item {
    color: #cbd5e1;
}

.feature-item i {
    font-size: 20px;
    color: #0e74eb;
    flex-shrink: 0;
}

body.dark .feature-item i {
    color: #64b5f6;
}

.product-btn {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #0e74eb 0%, #4caf50 100%);
    border: none;
    border-radius: 14px;
    color: white;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 116, 235, 0.3);
}

.product-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 116, 235, 0.4);
}

.product-btn i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.product-btn:hover i {
    transform: translateX(-4px);
}

.products-swiper-pagination {
    bottom: 20px !important;
}

.products-swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #cbd5e1;
    opacity: 1;
    transition: all 0.3s ease;
}

body.dark .products-swiper-pagination .swiper-pagination-bullet {
    background: #475569;
}

.products-swiper-pagination .swiper-pagination-bullet-active {
    width: 32px;
    border-radius: 6px;
    background: linear-gradient(135deg, #0e74eb 0%, #4caf50 100%);
}

.view-all-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #0e74eb 0%, #4caf50 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(14, 116, 235, 0.3);
    position: relative;
    overflow: hidden;
}

body.dark .view-all-btn {
    background: linear-gradient(135deg, #1e3a8a 0%, #2e7d32 100%);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.view-all-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.view-all-btn:hover::before {
    width: 300px;
    height: 300px;
}

.view-all-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(14, 116, 235, 0.5);
}

.view-all-btn i {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.view-all-btn:hover i {
    transform: scale(1.2) rotate(5deg);
}

@media (min-width: 1200px) {
    .products-swiper {
        overflow: visible;
    }
}

@media (max-width: 1199px) {
    .section-title {
        font-size: 38px;
    }
}

@media (max-width: 835px) {
    .products-section {
        padding: 60px 15px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .product-image {
        height: 240px;
    }

    .product-content {
        padding: 24px;
    }

    .product-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .products-section {
        padding: 50px 10px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .products-swiper-wrapper {
        padding: 0 10px;
    }

    .products-swiper {
        padding: 15px 5px 50px;
    }

    .product-card {
        border-radius: 20px;
    }

    .product-image {
        height: 200px;
    }

    .product-content {
        padding: 20px;
    }

    .product-title {
        font-size: 18px;
    }

    .product-description {
        font-size: 14px;
    }

    .feature-item {
        font-size: 13px;
    }

    .feature-item i {
        font-size: 18px;
    }

    .product-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .view-all-btn {
        padding: 14px 32px;
        font-size: 15px;
    }

    .view-all-wrapper {
        margin-top: 35px;
    }
}



/*-------------------------------packages-------------------------------------------------------------------------------------------*/
/* ========== EVENT SECTION STYLES ========== */
        .events-container {
            max-width: 1400px;
            margin: 60px auto;
            padding: 0 30px;
        }

        .events-header {
            text-align: center;
            margin-bottom: 70px;
            animation: fadeInDown 1s ease;
        }

        .events-header h1 {
            font-size: 52px;
            font-weight: 900;
            background: linear-gradient(135deg, #0e74eb 0%, #4caf50 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
            letter-spacing: -1px;
        }

        .events-header p {
            font-size: 20px;
            color: #64748b;
            font-weight: 500;
        }

        body.dark .events-header p {
            color: #94a3b8;
        }

        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .event-card {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(20px);
            border-radius: 28px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            border: 2px solid rgba(14, 116, 235, 0.1);
            box-shadow: 0 10px 40px rgba(14, 116, 235, 0.15);
            animation: fadeInUp 0.8s ease backwards;
        }

        .event-card:nth-child(1) { animation-delay: 0.1s; }
        .event-card:nth-child(2) { animation-delay: 0.2s; }
        .event-card:nth-child(3) { animation-delay: 0.3s; }
        .event-card:nth-child(4) { animation-delay: 0.4s; }
        .event-card:nth-child(5) { animation-delay: 0.5s; }
        .event-card:nth-child(6) { animation-delay: 0.6s; }

        body.dark .event-card {
            background: rgba(15, 35, 50, 0.8);
            border-color: rgba(14, 116, 235, 0.2);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
        }

        .event-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(135deg, #0e74eb, #4caf50);
            border-radius: 28px;
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
        }

        .event-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 25px 60px rgba(14, 116, 235, 0.35);
        }

        .event-card:hover::before {
            opacity: 1;
        }

        body.dark .event-card:hover {
            box-shadow: 0 25px 60px rgba(14, 116, 235, 0.5);
        }

        .event-date-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: linear-gradient(135deg, #0e74eb 0%, #4caf50 100%);
            color: white;
            padding: 12px 24px;
            border-radius: 16px;
            font-weight: 700;
            font-size: 15px;
            z-index: 10;
            box-shadow: 0 8px 25px rgba(14, 116, 235, 0.4);
            display: flex;
            align-items: center;
            gap: 8px;
            animation: pulse 2s ease infinite;
        }

        .event-date-badge i {
            font-size: 18px;
        }

        .event-image {
            width: 100%;
            height: 320px;
            object-fit: cover;
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
        }

        .event-card:hover .event-image {
            transform: scale(1.1) rotate(1deg);
        }

        .event-content {
            padding: 30px;
        }

        .event-title {
            font-size: 26px;
            font-weight: 800;
            color: #1e3a5f;
            margin-bottom: 15px;
            line-height: 1.4;
            transition: all 0.3s ease;
        }

        body.dark .event-title {
            color: #e3f2fd;
        }

        .event-card:hover .event-title {
            color: #0e74eb;
        }

        body.dark .event-card:hover .event-title {
            color: #64b5f6;
        }

        .event-description {
            font-size: 16px;
            color: #64748b;
            line-height: 1.8;
            margin-bottom: 20px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        body.dark .event-description {
            color: #94a3b8;
        }

        .event-read-more {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #0e74eb;
            font-weight: 700;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .event-read-more i {
            transition: transform 0.3s ease;
        }

        .event-card:hover .event-read-more i {
            transform: translateX(-5px);
        }

        body.dark .event-read-more {
            color: #64b5f6;
        }

        /* ========== MODAL STYLES ========== */
        .event-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(10px);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }

        .event-modal.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(30px);
            border-radius: 32px;
            max-width: 900px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            transform: scale(0.8) translateY(50px);
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 30px 80px rgba(14, 116, 235, 0.3);
            border: 2px solid rgba(14, 116, 235, 0.2);
        }

        body.dark .modal-content {
            background: rgba(15, 35, 50, 0.98);
            border-color: rgba(14, 116, 235, 0.3);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
        }

        .event-modal.active .modal-content {
            transform: scale(1) translateY(0);
        }

        .modal-close {
            position: absolute;
            top: 25px;
            left: 25px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
        }

        .modal-close:hover {
            transform: rotate(90deg) scale(1.1);
            box-shadow: 0 12px 35px rgba(239, 68, 68, 0.6);
        }

        .modal-header {
            position: relative;
            height: 400px;
            overflow: hidden;
            border-radius: 32px 32px 0 0;
        }

        .modal-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .modal-date-badge {
            position: absolute;
            bottom: 30px;
            right: 30px;
            background: linear-gradient(135deg, #0e74eb 0%, #4caf50 100%);
            color: white;
            padding: 16px 32px;
            border-radius: 20px;
            font-weight: 800;
            font-size: 18px;
            box-shadow: 0 10px 30px rgba(14, 116, 235, 0.5);
            display: flex;
            align-items: center;
            gap: 10px;
            animation: pulse 2s ease infinite;
        }

        .modal-date-badge i {
            font-size: 22px;
        }

        .modal-body {
            padding: 50px;
        }

        .modal-title {
            font-size: 38px;
            font-weight: 900;
            color: #1e3a5f;
            margin-bottom: 25px;
            line-height: 1.3;
            background: linear-gradient(135deg, #0e74eb 0%, #4caf50 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        body.dark .modal-title {
            color: #e3f2fd;
        }

        .modal-description {
            font-size: 18px;
            color: #475569;
            line-height: 2;
            margin-bottom: 30px;
        }

        body.dark .modal-description {
            color: #cbd5e1;
        }

        .modal-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }

        .detail-item {
            background: linear-gradient(135deg, rgba(14, 116, 235, 0.05) 0%, rgba(76, 175, 80, 0.05) 100%);
            padding: 25px;
            border-radius: 20px;
            border: 2px solid rgba(14, 116, 235, 0.1);
            transition: all 0.3s ease;
        }

        body.dark .detail-item {
            background: linear-gradient(135deg, rgba(14, 116, 235, 0.1) 0%, rgba(76, 175, 80, 0.1) 100%);
            border-color: rgba(14, 116, 235, 0.2);
        }

        .detail-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(14, 116, 235, 0.2);
        }

        .detail-item i {
            font-size: 32px;
            background: linear-gradient(135deg, #0e74eb 0%, #4caf50 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 12px;
        }

        .detail-item h3 {
            font-size: 16px;
            color: #64748b;
            font-weight: 600;
            margin-bottom: 8px;
        }

        body.dark .detail-item h3 {
            color: #94a3b8;
        }

        .detail-item p {
            font-size: 18px;
            color: #1e3a5f;
            font-weight: 700;
        }

        body.dark .detail-item p {
            color: #e3f2fd;
        }

        /* ========== ANIMATIONS ========== */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        /* ========== RESPONSIVE ========== */
        @media (min-width: 854px) {
            .desktop-menu {
                display: block;
            }
        }

        @media (max-width: 854px) {
            body {
                padding-top: 0;
            }

            .events-container {
                margin: 40px auto;
                padding: 0 20px;
            }

            .events-header h1 {
                font-size: 38px;
            }

            .events-header p {
                font-size: 16px;
            }

            .events-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .event-card {
                border-radius: 22px;
            }

            .event-image {
                height: 250px;
            }

            .event-date-badge {
                top: 15px;
                right: 15px;
                padding: 10px 18px;
                font-size: 13px;
            }

            .event-content {
                padding: 25px;
            }

            .event-title {
                font-size: 22px;
            }

            .event-description {
                font-size: 15px;
            }

            .modal-content {
                border-radius: 24px;
                max-height: 85vh;
            }

            .modal-header {
                height: 280px;
            }

            .modal-close {
                top: 15px;
                left: 15px;
                width: 45px;
                height: 45px;
                font-size: 20px;
            }

            .modal-date-badge {
                bottom: 20px;
                right: 20px;
                padding: 12px 24px;
                font-size: 15px;
            }

            .modal-body {
                padding: 35px 25px;
            }

            .modal-title {
                font-size: 28px;
            }

            .modal-description {
                font-size: 16px;
                line-height: 1.8;
            }

            .modal-details {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .detail-item {
                padding: 20px;
            }
        }

        @media (max-width: 480px) {
            .events-header h1 {
                font-size: 32px;
            }

            .events-header p {
                font-size: 15px;
            }

            .event-image {
                height: 220px;
            }

            .event-title {
                font-size: 20px;
            }

            .modal-header {
                height: 240px;
            }

            .modal-title {
                font-size: 24px;
            }

            .modal-body {
                padding: 30px 20px;
            }
        }

        /* Custom Scrollbar */
        .modal-content::-webkit-scrollbar {
            width: 8px;
        }

        .modal-content::-webkit-scrollbar-track {
            background: rgba(14, 116, 235, 0.05);
            border-radius: 10px;
        }

        .modal-content::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #0e74eb 0%, #4caf50 100%);
            border-radius: 10px;
        }

        .modal-content::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, #0c5fc7 0%, #3d9142 100%);
        }

/*---------------------------------------------footer--------------------------------------------------------------------------------------------*/
.contact-section {
    padding: 80px 20px;
    min-height: 100vh;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 15px;
}

/* هدر بخش */
.section-subtitle {
    font-size: 18px;
    color: #475569;
    margin-top: 15px;
    font-family: 'IRANYekanX', sans-serif;
    font-weight: 500;
}

body.dark .section-subtitle {
    color: #cbd5e1;
}

/* محتوای اصلی */
.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
    opacity: 0;
    animation: slideInFromBottom 0.8s ease 0.2s forwards;
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* کارت‌های تماس */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 35px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(14, 116, 235, 0.1);
    box-shadow: 0 8px 30px rgba(14, 116, 235, 0.12);
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

body.dark .contact-card {
    background: rgba(30, 41, 59, 0.95);
    border-color: rgba(14, 116, 235, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(14, 116, 235, 0.25);
    border-color: rgba(14, 116, 235, 0.3);
}

body.dark .contact-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.contact-card-large {
    grid-column: 1 / -1;
}

/* آیکون کارت */
.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0e74eb 0%, #4caf50 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    box-shadow: 0 8px 20px rgba(14, 116, 235, 0.3);
    transition: all 0.4s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(14, 116, 235, 0.4);
}

/* عنوان کارت */
.contact-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e3a5f;
    font-family: 'IRANYekanX', sans-serif;
    margin: 0;
}

body.dark .contact-card-title {
    color: #e3f2fd;
}

/* لینک‌ها */
.contact-link {
    font-size: 16px;
    color: #0e74eb;
    text-decoration: none;
    font-family: 'IRANYekanX', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    direction: ltr;
}

body.dark .contact-link {
    color: #64b5f6;
}

.contact-link:hover {
    color: #4caf50;
    transform: translateX(-5px);
}

/* آدرس */
.contact-address {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    font-family: 'IRANYekanX', sans-serif;
    text-align: center;
    margin: 0;
}

body.dark .contact-address {
    color: #cbd5e1;
}

/* شبکه‌های اجتماعی */
.social-media-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 35px;
    border-radius: 20px;
    border: 1px solid rgba(14, 116, 235, 0.1);
    box-shadow: 0 8px 30px rgba(14, 116, 235, 0.12);
    backdrop-filter: blur(15px);
    text-align: center;
}

body.dark .social-media-box {
    background: rgba(30, 41, 59, 0.95);
    border-color: rgba(14, 116, 235, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.social-title {
    font-size: 22px;
    font-weight: 700;
    color: #1e3a5f;
    font-family: 'IRANYekanX', sans-serif;
    margin-bottom: 30px;
}

body.dark .social-title {
    color: #e3f2fd;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'IRANYekanX', sans-serif;
    font-size: 16px;
    transition: all 0.4s ease;
    color: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.social-link i {
    font-size: 24px;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.social-link.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.social-link.telegram {
    background: linear-gradient(135deg, #0088cc 0%, #005f8c 100%);
}

.social-link.instagram {
    background: linear-gradient(135deg, #E1306C 0%, #C13584 50%, #833AB4 100%);
}

/* نقشه */
.map-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 450px;
    box-shadow: 0 8px 30px rgba(14, 116, 235, 0.15);
    border: 1px solid rgba(14, 116, 235, 0.1);
}

body.dark .map-wrapper {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(14, 116, 235, 0.2);
}

.map-container {
    width: 100%;
    height: 100%;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(14, 116, 235, 0.1);
}

body.dark .map-overlay {
    background: rgba(30, 41, 59, 0.95);
    border-color: rgba(14, 116, 235, 0.2);
}

.map-overlay i {
    font-size: 24px;
    color: #0e74eb;
}

body.dark .map-overlay i {
    color: #64b5f6;
}

.map-overlay p {
    margin: 0;
    font-weight: 600;
    color: #1e3a5f;
    font-family: 'IRANYekanX', sans-serif;
}

body.dark .map-overlay p {
    color: #e3f2fd;
}

/* ساعات کاری */
.working-hours {
    background: linear-gradient(135deg, rgba(14, 116, 235, 0.08) 0%, rgba(76, 175, 80, 0.08) 100%);
    padding: 40px 45px;
    border-radius: 20px;
    border: 2px solid rgba(14, 116, 235, 0.15);
    display: flex;
    align-items: center;
    gap: 30px;
    opacity: 0;
    animation: slideInFromBottom 0.8s ease 0.4s forwards;
}

body.dark .working-hours {
    background: linear-gradient(135deg, rgba(14, 116, 235, 0.15) 0%, rgba(76, 175, 80, 0.15) 100%);
    border-color: rgba(14, 116, 235, 0.25);
}

.working-hours-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0e74eb 0%, #4caf50 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(14, 116, 235, 0.3);
}

.working-hours-content {
    flex: 1;
}

.working-hours-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e3a5f;
    font-family: 'IRANYekanX', sans-serif;
    margin-bottom: 15px;
}

body.dark .working-hours-title {
    color: #e3f2fd;
}

.working-hours-text {
    font-size: 16px;
    color: #475569;
    font-family: 'IRANYekanX', sans-serif;
    margin: 8px 0;
    font-weight: 500;
}

body.dark .working-hours-text {
    color: #cbd5e1;
}

.working-hours-text.holiday {
    color: #dc2626;
    font-weight: 600;
}

body.dark .working-hours-text.holiday {
    color: #f87171;
}

/* ==================== ریسپانسیو ==================== */
@media (min-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }

    .contact-cards {
        grid-template-columns: 1fr 1fr;
    }

    .contact-card-large {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 50px 15px;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .social-links {
        flex-direction: column;
        gap: 15px;
    }

    .social-link {
        width: 100%;
        justify-content: center;
    }

    .map-wrapper {
        height: 350px;
    }

    .working-hours {
        flex-direction: column;
        text-align: center;
        padding: 35px 25px;
    }
}

@media (max-width: 480px) {
    .contact-card {
        padding: 30px 20px;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .contact-card-title {
        font-size: 18px;
    }

    .social-media-box {
        padding: 30px 20px;
    }

    .map-wrapper {
        height: 300px;
    }

    .working-hours-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
}


















/* ==================== صفحه همه محصولات ==================== */

.allproducts-section {
    padding: 100px 20px 80px;
    min-height: 100vh;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.allproducts-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 15px;
}

/* ==================== هدر صفحه ==================== */
.allproducts-header {
    text-align: center;
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeInDown 0.8s ease forwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.allproducts-main-title {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #0e74eb 0%, #4caf50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-family: 'IRANYekanX', sans-serif;
    letter-spacing: -0.5px;
}

body.dark .allproducts-main-title {
    background: linear-gradient(135deg, #64b5f6 0%, #81c784 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.allproducts-main-subtitle {
    font-size: 20px;
    color: #64748b;
    font-weight: 500;
    font-family: 'IRANYekanX', sans-serif;
}

body.dark .allproducts-main-subtitle {
    color: #94a3b8;
}

/* ==================== بخش فیلتر ==================== */
.allproducts-filter-section {
    margin-bottom: 50px;
    opacity: 0;
    animation: slideInFromBottom 0.8s ease 0.2s forwards;
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.allproducts-filter-wrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    padding: 25px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(14, 116, 235, 0.1);
}

body.dark .allproducts-filter-wrapper {
    background: rgba(30, 41, 59, 0.5);
    border-color: rgba(14, 116, 235, 0.2);
}

.allproducts-filter-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(14, 116, 235, 0.2);
    border-radius: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #1e3a5f;
    font-family: 'IRANYekanX', sans-serif;
    cursor: pointer;
    transition: all 0.4s ease;
}

body.dark .allproducts-filter-btn {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(14, 116, 235, 0.3);
    color: #e3f2fd;
}

.allproducts-filter-btn i {
    font-size: 22px;
    transition: transform 0.3s ease;
}

.allproducts-filter-btn:hover {
    background: linear-gradient(135deg, rgba(14, 116, 235, 0.1) 0%, rgba(76, 175, 80, 0.1) 100%);
    border-color: rgba(14, 116, 235, 0.4);
    transform: translateY(-3px);
}

body.dark .allproducts-filter-btn:hover {
    background: linear-gradient(135deg, rgba(14, 116, 235, 0.2) 0%, rgba(76, 175, 80, 0.2) 100%);
}

.allproducts-filter-btn.active {
    background: linear-gradient(135deg, #0e74eb 0%, #4caf50 100%);
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(14, 116, 235, 0.4);
}

.allproducts-filter-btn.active i {
    transform: scale(1.2);
}

/* ==================== گرید محصولات ==================== */
.allproducts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== کارت محصول ==================== */
.allproducts-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(14, 116, 235, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

body.dark .allproducts-card {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(14, 116, 235, 0.2);
}

.allproducts-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(14, 116, 235, 0.05) 0%, rgba(76, 175, 80, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.allproducts-card:hover::before {
    opacity: 1;
}

.allproducts-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(14, 116, 235, 0.25);
    border-color: rgba(14, 116, 235, 0.3);
}

body.dark .allproducts-card:hover {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

/* تصویر محصول */
.allproducts-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e1f0ff 100%);
}

body.dark .allproducts-image {
    background: linear-gradient(135deg, #1a2332 0%, #0d2d4a 100%);
}

.allproducts-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.allproducts-card:hover .allproducts-image img {
    transform: scale(1.15) rotate(2deg);
}

.allproducts-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #0e74eb 0%, #4caf50 100%);
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    font-family: 'IRANYekanX', sans-serif;
    box-shadow: 0 4px 15px rgba(14, 116, 235, 0.4);
    z-index: 2;
}

/* محتوای کارت */
.allproducts-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.allproducts-title {
    font-size: 22px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 12px;
    font-family: 'IRANYekanX', sans-serif;
    line-height: 1.4;
    transition: color 0.3s ease;
}

body.dark .allproducts-title {
    color: #e3f2fd;
}

.allproducts-card:hover .allproducts-title {
    color: #0e74eb;
}

body.dark .allproducts-card:hover .allproducts-title {
    color: #64b5f6;
}

.allproducts-category {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #0e74eb;
    font-weight: 600;
    margin-bottom: 12px;
    font-family: 'IRANYekanX', sans-serif;
}

body.dark .allproducts-category {
    color: #64b5f6;
}

.allproducts-category i {
    font-size: 18px;
}

.allproducts-description {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 18px;
    font-family: 'IRANYekanX', sans-serif;
}

body.dark .allproducts-description {
    color: #94a3b8;
}

.allproducts-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.allproducts-feature-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(14, 116, 235, 0.1);
    border-radius: 12px;
    font-size: 13px;
    color: #0e74eb;
    font-weight: 600;
    font-family: 'IRANYekanX', sans-serif;
}

body.dark .allproducts-feature-tag {
    background: rgba(14, 116, 235, 0.2);
    color: #64b5f6;
}

.allproducts-feature-tag i {
    font-size: 16px;
}

.allproducts-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #0e74eb 0%, #4caf50 100%);
    border: none;
    border-radius: 14px;
    color: white;
    font-weight: 700;
    font-size: 16px;
    font-family: 'IRANYekanX', sans-serif;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(14, 116, 235, 0.3);
    margin-top: auto;
}

.allproducts-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(14, 116, 235, 0.5);
}

.allproducts-btn i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.allproducts-btn:hover i {
    transform: translateX(-5px);
}

/* ==================== حالت خالی ==================== */
.allproducts-empty {
    text-align: center;
    padding: 80px 20px;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.allproducts-empty i {
    font-size: 80px;
    color: #cbd5e1;
    margin-bottom: 20px;
}

body.dark .allproducts-empty i {
    color: #475569;
}

.allproducts-empty h3 {
    font-size: 24px;
    color: #1e3a5f;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'IRANYekanX', sans-serif;
}

body.dark .allproducts-empty h3 {
    color: #e3f2fd;
}

.allproducts-empty p {
    font-size: 16px;
    color: #64748b;
    font-family: 'IRANYekanX', sans-serif;
}

body.dark .allproducts-empty p {
    color: #94a3b8;
}

/* ==================== انیمیشن فیلتر ==================== */
.allproducts-card.hide {
    animation: fadeOut 0.3s ease forwards;
}

.allproducts-card.show {
    animation: fadeInScale 0.5s ease forwards;
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.8);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ==================== ریسپانسیو ==================== */
@media (max-width: 1199px) {
    .allproducts-main-title {
        font-size: 42px;
    }

    .allproducts-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .allproducts-section {
        padding: 80px 15px 60px;
    }

    .allproducts-header {
        margin-bottom: 40px;
    }

    .allproducts-main-title {
        font-size: 32px;
    }

    .allproducts-main-subtitle {
        font-size: 17px;
    }

    .allproducts-filter-section {
        margin-bottom: 35px;
    }

    .allproducts-filter-wrapper {
        padding: 20px 15px;
        gap: 10px;
    }

    .allproducts-filter-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .allproducts-filter-btn i {
        font-size: 20px;
    }

    .allproducts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .allproducts-image {
        height: 240px;
    }

    .allproducts-content {
        padding: 24px;
    }

    .allproducts-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .allproducts-section {
        padding: 70px 10px 50px;
    }

    .allproducts-main-title {
        font-size: 26px;
    }

    .allproducts-main-subtitle {
        font-size: 15px;
    }

    .allproducts-filter-wrapper {
        padding: 15px 10px;
    }

    .allproducts-filter-btn {
        padding: 10px 16px;
        font-size: 13px;
        flex: 1 1 auto;
        min-width: 120px;
    }

    .allproducts-card {
        border-radius: 20px;
    }

    .allproducts-image {
        height: 200px;
    }

    .allproducts-content {
        padding: 20px;
    }

    .allproducts-title {
        font-size: 18px;
    }

    .allproducts-description {
        font-size: 14px;
    }

    .allproducts-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .allproducts-empty {
        padding: 60px 15px;
    }

    .allproducts-empty i {
        font-size: 60px;
    }

    .allproducts-empty h3 {
        font-size: 20px;
    }

    .allproducts-empty p {
        font-size: 14px;
    }
}




































/* ==================== استایل صفحه محصول ====================*/
.pd-container {
    max-width: 1200px;
    margin: 40px auto 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(14, 116, 235, 0.15);
    animation: pdFadeInUp 0.8s ease;
}

body.dark .pd-container {
    background: rgba(15, 30, 50, 0.95);
}

@keyframes pdFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Grid دو ستونی */
.pd-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

/* بخش تصویر */
.pd-image-section {
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(14, 116, 235, 0.05) 0%, rgba(76, 175, 80, 0.05) 100%);
    border-left: 1px solid rgba(14, 116, 235, 0.1);
}

body.dark .pd-image-section {
    background: linear-gradient(135deg, rgba(14, 116, 235, 0.08) 0%, rgba(76, 175, 80, 0.08) 100%);
    border-left-color: rgba(14, 116, 235, 0.2);
}

.pd-image-wrapper {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(14, 116, 235, 0.2);
    transition: all 0.4s ease;
}

.pd-image-wrapper:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(14, 116, 235, 0.3);
}

.pd-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.pd-image-wrapper:hover img {
    transform: scale(1.1);
}

/* بخش اطلاعات */
.pd-info-section {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pd-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #0e74eb 0%, #4caf50 100%);
    color: white;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    width: fit-content;
    animation: pdSlideInRight 0.6s ease;
}

@keyframes pdSlideInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.pd-title {
    font-size: 36px;
    font-weight: 800;
    color: #1e3a5f;
    margin-bottom: 12px;
    animation: pdSlideInRight 0.7s ease;
}

body.dark .pd-title {
    color: #e3f2fd;
}

.pd-model {
    font-size: 20px;
    color: #0e74eb;
    font-weight: 600;
    margin-bottom: 30px;
    animation: pdSlideInRight 0.8s ease;
}

body.dark .pd-model {
    color: #64b5f6;
}

.pd-description {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 40px;
    line-height: 1.9;
    animation: pdSlideInRight 0.9s ease;
}

body.dark .pd-description {
    color: #b0bec5;
}

/* مشخصات فنی */
.pd-specs {
    margin-bottom: 40px;
    animation: pdSlideInRight 1s ease;
}

.pd-spec-title {
    font-size: 22px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

body.dark .pd-spec-title {
    color: #e3f2fd;
}

.pd-spec-title i {
    color: #0e74eb;
    font-size: 24px;
}

.pd-spec-list {
    list-style: none;
}

.pd-spec-item {
    padding: 16px 20px;
    background: rgba(14, 116, 235, 0.05);
    border-radius: 12px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

body.dark .pd-spec-item {
    background: rgba(14, 116, 235, 0.1);
}

.pd-spec-item:hover {
    background: rgba(14, 116, 235, 0.1);
    border-color: rgba(14, 116, 235, 0.3);
    transform: translateX(-5px);
}

body.dark .pd-spec-item:hover {
    background: rgba(14, 116, 235, 0.15);
}

.pd-spec-item i {
    color: #4caf50;
    font-size: 20px;
    flex-shrink: 0;
}

.pd-spec-item span {
    color: #37474f;
    font-weight: 500;
    font-size: 15px;
}

body.dark .pd-spec-item span {
    color: #cfd8dc;
}

/* اطلاعات تماس */
.pd-contact-info {
    background: linear-gradient(135deg, rgba(14, 116, 235, 0.08) 0%, rgba(76, 175, 80, 0.08) 100%);
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 30px;
    animation: pdSlideInRight 1.1s ease;
}

body.dark .pd-contact-info {
    background: linear-gradient(135deg, rgba(14, 116, 235, 0.12) 0%, rgba(76, 175, 80, 0.12) 100%);
}

.pd-contact-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

body.dark .pd-contact-title {
    color: #e3f2fd;
}

.pd-contact-numbers {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pd-contact-number {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0e74eb;
    font-weight: 600;
    font-size: 16px;
    direction: ltr;
    text-align: right;
}

body.dark .pd-contact-number {
    color: #64b5f6;
}

.pd-contact-number i {
    color: #4caf50;
}

/* دکمه واتساپ */
.pd-whatsapp-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    animation: pdSlideInRight 1.2s ease;
}

.pd-whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.pd-whatsapp-btn:active {
    transform: translateY(-1px);
}

.pd-whatsapp-btn i {
    font-size: 24px;
}

/* ریسپانسیو */
@media (max-width: 968px) {
    .pd-grid {
        grid-template-columns: 1fr;
    }

    .pd-image-section {
        padding: 40px;
        border-left: none;
        border-bottom: 1px solid rgba(14, 116, 235, 0.1);
    }

    body.dark .pd-image-section {
        border-bottom-color: rgba(14, 116, 235, 0.2);
    }

    .pd-info-section {
        padding: 40px;
    }

    .pd-title {
        font-size: 28px;
    }

    .pd-model {
        font-size: 18px;
    }
}

@media (max-width: 640px) {
    .pd-container {
        margin: 20px auto 40px;
        border-radius: 16px;
    }

    .pd-image-section {
        padding: 30px 20px;
    }

    .pd-info-section {
        padding: 30px 20px;
    }

    .pd-title {
        font-size: 24px;
    }

    .pd-model {
        font-size: 16px;
    }

    .pd-description {
        font-size: 14px;
    }

    .pd-spec-title {
        font-size: 18px;
    }

    .pd-spec-item {
        padding: 14px 16px;
    }

    .pd-spec-item span {
        font-size: 14px;
    }

    .pd-whatsapp-btn {
        padding: 16px;
        font-size: 16px;
    }

    .pd-contact-number {
        font-size: 14px;
    }
}


.pd-contact-link {
    color: inherit;                    
    text-decoration: none;            
    transition: all 0.3s ease;         
    position: relative;                
    display: inline-block;
}

.pd-contact-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: linear-gradient(90deg, #00c6ff, #0072ff); 
    transition: width 0.3s ease;
    border-radius: 1px;
}

.pd-contact-link:hover::after {
    width: 100%;                      
}

.pd-contact-link:hover {
    color: #0072ff;                   
    transform: translateY(-1px);       
}




/* بخش تبلیغاتی */
.promo-section {
    background: linear-gradient(135deg, 
        rgba(14, 116, 235, 0.03) 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(14, 116, 235, 0.03) 100%);
    padding: 28px 20px;
    margin-top: 60px;
    border-top: 1px solid rgba(14, 116, 235, 0.08);
    border-bottom: 1px solid rgba(14, 116, 235, 0.08);
    position: relative;
    overflow: hidden;
}

body.dark .promo-section {
    background: linear-gradient(135deg, 
        rgba(14, 116, 235, 0.08) 0%, 
        rgba(30, 58, 95, 0.1) 50%, 
        rgba(14, 116, 235, 0.08) 100%);
    border-top: 1px solid rgba(14, 116, 235, 0.15);
    border-bottom: 1px solid rgba(14, 116, 235, 0.15);
}

.promo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(14, 116, 235, 0.05), 
        transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.promo-container {
    max-width: 1200px;
    margin: 0 auto;
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.promo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0e74eb 0%, #4caf50 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(14, 116, 235, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.promo-icon i {
    font-size: 24px;
    color: white;
}

.promo-text {
    flex: 1;
    text-align: center;
}

.promo-message {
    font-size: 17px;
    font-weight: 500;
    color: #1e3a5f;
    margin: 0;
    letter-spacing: 0.3px;
}

body.dark .promo-message {
    color: #e3f2fd;
}

.promo-link {
    color: #0e74eb;
    text-decoration: none;
    font-weight: 700;
    font-size: 19px;
    position: relative;
    transition: all 0.3s ease;
    padding: 2px 8px;
    border-radius: 6px;
}

body.dark .promo-link {
    color: #64b5f6;
}

.promo-link:hover {
    color: #4caf50;
    background: rgba(14, 116, 235, 0.08);
    transform: translateY(-2px);
}

body.dark .promo-link:hover {
    color: #81c784;
    background: rgba(14, 116, 235, 0.15);
}

.promo-badge {
    width: 42px;
    height: 42px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.dark .promo-badge {
    background: rgba(76, 175, 80, 0.2);
}
.promo-badge i {
    font-size: 24px;
    color: #4caf50;
}

/* بخش کپی رایت */
.copyright-section {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 35px 20px;
    border-top: 1px solid rgba(14, 116, 235, 0.1);
}

body.dark .copyright-section {
    background: rgba(10, 25, 41, 0.7);
    border-top: 1px solid rgba(14, 116, 235, 0.2);
}

.copyright-container {
    max-width: 1200px;
    margin: 0 auto;
}

.copyright-content {
    text-align: center;
}

.copyright-text {
    font-size: 15px;
    font-weight: 600;
    color: #1e3a5f;
    margin: 0 0 12px 0;
    letter-spacing: 0.3px;
}

body.dark .copyright-text {
    color: #b0bec5;
}

.copyright-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #0e74eb, transparent);
    margin: 12px auto;
    border-radius: 3px;
}

.copyright-notice {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}

body.dark .copyright-notice {
    color: #78909c;
}

/* ریسپانسیو */
@media (max-width: 768px) {
    .promo-content {
        gap: 15px;
    }

    .promo-icon {
        width: 42px;
        height: 42px;
    }

    .promo-icon i {
        font-size: 20px;
    }

    .promo-message {
        font-size: 15px;
    }

    .promo-link {
        font-size: 17px;
    }

    .promo-badge {
        display: none;
    }

    .copyright-text {
        font-size: 14px;
    }

    .copyright-notice {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .promo-section {
        padding: 22px 15px;
        margin-top: 40px;
    }

    .promo-message {
        font-size: 14px;
    }

    .promo-link {
        font-size: 16px;
        display: block;
        margin-top: 4px;
    }

    .copyright-section {
        padding: 28px 15px;
    }
}
