﻿
/*# اپ اندروید */
/* استایل محفظه اصلی */
.download-app-container {
    margin-top: -5%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px 40px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /* نور نئونی غلیظ */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 146, 230, 0.6), 0 0 40px rgba(0, 146, 230, 0.3);
    border: 2px solid rgba(0, 146, 230, 0.7);
    gap: 25px;
    flex-wrap: wrap;
    position: relative;
    z-index: 5;
    /* انیمیشن سریع‌تر و نرم‌تر برای حرکت کوچک */
    transition: all 0.3s ease-out;
}

    /* حرکت کوچک و افزایش درخشش هنگام هوور */
    .download-app-container:hover {
        transform: translateY(-5px); /* فقط ۵ پیکسل جابه‌جایی برای حس ظرافت */
        border-color: rgba(0, 146, 230, 1);
        /* انفجار نور نئون */
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 146, 230, 0.9), 0 0 60px rgba(0, 146, 230, 0.5), 0 0 100px rgba(0, 146, 230, 0.2);
    }

/* استایل تصویر لوگو اندروید */
.android-mascot {
    width: 100px; /* اندازه بهینه شده */
    height: auto;
    filter: drop-shadow(0 0 10px rgba(0, 146, 230, 0.3));
    animation: floatAnim 3s ease-in-out infinite;
}

/* انیمیشن شناور بودن برای جذابیت بیشتر */
@keyframes floatAnim {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* استایل متن عنوان */
.app-title {
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 13px;
    text-align: center;
}

/* استایل دکمه دانلود */
.btn-download-custom {
    display: inline-flex;
    align-items: center;
    border-radius: 50px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: bold;
    background: linear-gradient(90deg, #0092e6, #00c0ff);
    color: #fff !important;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 146, 230, 0.4);
    transition: all 0.3s ease;
}

    .btn-download-custom:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(0, 146, 230, 0.6);
    }

    .btn-download-custom i {
        margin-left: 10px;
    }
/* در حالت عادی نمایش داده شود */
.section-android {
    display: block;
}

/* اگر سایت به صورت PWA (standalone) باز شد، این بخش را کاملاً مخفی کن */
@media (display-mode: standalone) {
    .section-android {
        display: none !important;
    }
}
/*#اتمام اپ اندروید */

/*#region Refined Extreme Tech - Header Update */
.footer {
    background-color: #0c0d12;
    position: relative;
    padding-top: 15px;
    padding-bottom: 30px;
    overflow: hidden;
    border-top: 2px solid #0092e6;
}

    /* لایه الگوی کاشی‌کاری هندسی */
    .footer::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* ایجاد الگوی لوزی‌شکل شبیه کاشی‌کاری */
        background-image: linear-gradient(30deg, #161a25 12%, transparent 12.5%, transparent 87%, #161a25 87.5%, #161a25), linear-gradient(150deg, #161a25 12%, transparent 12.5%, transparent 87%, #161a25 87.5%, #161a25), linear-gradient(30deg, #161a25 12%, transparent 12.5%, transparent 87%, #161a25 87.5%, #161a25), linear-gradient(150deg, #161a25 12%, transparent 12.5%, transparent 87%, #161a25 87.5%, #161a25), linear-gradient(60deg, #1e2433 25%, transparent 25.5%, transparent 75%, #1e2433 75%, #1e2433), linear-gradient(60deg, #1e2433 25%, transparent 25.5%, transparent 75%, #1e2433 75%, #1e2433);
        background-size: 80px 140px; /* ابعاد بزرگ کاشی‌ها */
        background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
        /* جادوی اصلی: محو کردن لبه‌ها و پررنگ کردن وسط */
        -webkit-mask-image: radial-gradient(circle, black 20%, rgba(0,0,0,0.3) 60%, transparent 95%);
        mask-image: radial-gradient(circle, black 20%, rgba(0,0,0,0.3) 60%, transparent 95%);
        z-index: 1;
        opacity: 0.6; /* کنترل شدت کل طرح */
    }

    /* هاله نوری مرکزی برای تاکید بیشتر بر وسط */
    .footer::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
        height: 80%;
        background: radial-gradient(circle, rgba(0, 146, 230, 0.05) 0%, transparent 70%);
        z-index: 2;
        pointer-events: none;
    }

    .footer .container {
        position: relative;
        z-index: 10;
    }

/* --- استایل جدید و ظریف برای تیترها --- */
.footer-title {
    color: #fff;
    font-size: 15px; /* کوچک‌تر و شیک‌تر */
    font-variation-settings: "wght" 700;
    margin-bottom: 30px;
    padding: 5px 15px;
    display: inline-flex;
    align-items: center;
    position: relative;
    letter-spacing: 0.5px;
    background: linear-gradient(90deg, rgba(0, 146, 230, 0.1) 0%, transparent 100%);
    border-right: 3px solid #0092e6; /* خط اصلی برند */
}

    /* اضافه کردن یک خط تزئینی باریک در کنار تیتر */
    .footer-title::after {
        content: "";
        position: absolute;
        right: -8px;
        top: 20%;
        height: 60%;
        width: 1px;
        background: rgba(0, 146, 230, 0.4);
    }

/* اصلاح فاصله لیست‌ها برای تمام صفحات */
.footer-links li {
    margin-bottom: 10px; /* کاهش فاصله کلی برای نظم بهتر */
    list-style: none !important;
}

    .footer-links li a {
        color: #9da0a5;
        font-size: 13px;
        display: flex;
        align-items: flex-start; /* تغییر از center به flex-start برای متن‌های چندخطی */
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* انیمیشن نرم‌تر */
        line-height: 1.6; /* تنظیم فاصله بین خطوط متن */
        position: relative;
    }

        .footer-links li a:hover {
            color: #0092e6;
            transform: translateX(-8px); /* متن ۸ پیکسل به سمت چپ می‌لغزد */
        }
        /* اصلاح آیکون‌ها برای هماهنگی با متن طولانی */
        .footer-links li a i {
            width: 26px;
            height: 26px;
            background: rgba(255, 255, 255, 0.03);
            color: #0092e6;
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 12px;
            font-size: 11px;
            flex-shrink: 0; /* جلوگیری از تغییر شکل آیکون در متن طولانی */
            margin-top: 2px; /* تنظیم تراز آیکون با خط اول متن */
        }


/* تنظیمات اختصاصی موبایل (ریسپانسیو) */

/* حذف پدینگ اضافی لیست‌ها که در گوشی فضا را هدر می‌دهند */
.footer-links, .footer-links ul {
    padding-right: 0 !important;
    margin-right: 0 !important;
}

    .footer-links li {
        margin-bottom: 5px !important; /* حداقل فاصله ممکن بین آیتم‌ها */
        padding-bottom: 0 !important;
    }

        .footer-links li a {
            padding-top: 2px !important;
            padding-bottom: 2px !important;
            line-height: 1.4 !important; /* متن‌ها به هم نزدیک‌تر می‌شوند */
        }

            .footer-links li a i {
                margin-left: 8px !important; /* فاصله آیکون تا متن کمتر می‌شود */
                width: 22px !important; /* آیکون کمی کوچک‌تر برای فضای بیشتر */
                height: 22px !important;
            }

/* فشرده‌سازی بخش آدرس و ساعت کاری */
.info-card {
    /* پس‌زمینه شیشه‌ای نیمه‌شفاف */
    background: rgba(255, 255, 255, 0.03) !important;
    /* افکت مات کردن پشت کارت */
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    /* لبه‌های ظریف شیشه‌ای */
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    border-radius: 15px !important;
    padding: 15px !important;
    margin-top: 10px !important;
    transition: all 0.3s ease;
}

    /* افکت درخشش ملایم وقتی موس روی کارت می‌رود */
    .info-card:hover {
        background: rgba(255, 255, 255, 0.06) !important;
        border-color: rgba(0, 146, 230, 0.3) !important;
        transform: translateY(-3px);
    }

.contact-item {
    display: flex; /* اطمینان از چیدمان درست */
    align-items: flex-start;
    margin-bottom: 10px !important;
    gap: 12px !important;
}

.text-box p {
    font-size: 12px !important;
    line-height: 1.6 !important;
    color: #b9babc !important;
    margin: 0;
}

.text-box span {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 4px;
}


.footer-links li a:hover {
    color: #0092e6;
    transform: translateX(-3px);
}

    .footer-links li a:hover i {
        border-color: #0092e6;
        background: rgba(0, 146, 230, 0.1);
    }

/* شبکه‌های اجتماعی */
.footer-social-links a {
    width: 42px;
    height: 42px;
    background: #16171d;
    border: 1px solid #2d2e37;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-left: 10px;
    transition: 0.3s;
}

    .footer-social-links a:hover {
        background: #0092e6;
        transform: translateY(-3px);
    }
