* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Vazirmatn', sans-serif !important;
    background-color: #F8FAFC;
    direction: rtl;
    line-height: 1.5;
    color: #1a1a1a;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.hero-banner-section {
    position: relative;
    margin-top: 48px;
}

.hero-logo-circle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 30;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background-color: #ffffff;
    padding: 10px;
    border: 4px solid #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.hero-steel-texture {
    background-color: #0d0d0d;
    background-image: 
        repeating-linear-gradient(45deg, #181818 0, #181818 10px, #0a0a0a 10px, #0a0a0a 20px),
        repeating-linear-gradient(-45deg, rgba(255,255,255,0.02) 0, rgba(255,255,255,0.02) 10px, transparent 10px, transparent 20px);
}

.hero-silver-card {
    transform: skewX(-16deg);
    border-radius: 12px;
    box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.9), 0 15px 35px rgba(0, 0, 0, 0.7);
}

.hero-skew-shape {
    transform: skewX(-16deg);
}

.hero-unskew-text {
    transform: skewX(16deg);
}

@media (max-width: 640px) {
    .hero-banner-section {
        margin-top: 38px;
    }
    .hero-logo-circle {
        width: 72px;
        height: 72px;
        padding: 8px;
    }
    .hero-silver-card, .hero-skew-shape {
        transform: skewX(-8deg);
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .hero-unskew-text {
        transform: skewX(8deg);
    }
}

.special-cat-card {
    background-color: #ffffff;
    border-radius: 2rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 350px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.special-cat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px rgba(215, 0, 0, 0.22);
    border-color: #fecdd3;
}

.special-cat-img-box {
    height: 75%;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.special-cat-img-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.35) 45%, rgba(215, 0, 0, 0.8) 85%, #D70000 100%);
    pointer-events: none;
}

.special-cat-footer {
    height: 25%;
    background-color: #D70000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
}

.special-cat-btn {
    background-color: #ffffff;
    color: #111111;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 0.45rem 1.4rem;
    border-radius: 9999px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.25s ease;
    z-index: 10;
}

.special-cat-card:hover .special-cat-btn {
    background-color: #f8fafc;
    transform: scale(1.05);
    color: #D70000;
}

@media (max-width: 640px) {
    .special-cat-card {
        height: 260px;
        border-radius: 1.5rem;
    }
    .special-cat-btn {
        font-size: 0.68rem;
        padding: 0.35rem 0.9rem;
    }
}

.live-price-red-bg {
    border-radius: 2.5rem;
    clip-path: polygon(
        0% 0%, 
        15% 8px, 
        35% 16px, 
        50% 22px, 
        65% 16px, 
        85% 8px, 
        100% 0%, 
        100% 100%, 
        85% calc(100% - 8px), 
        65% calc(100% - 16px), 
        50% calc(100% - 22px), 
        35% calc(100% - 16px), 
        15% calc(100% - 8px), 
        0% 100%
    );
}

.live-price-card {
    background-color: #ffffff;
    border-radius: 2rem;
    padding: 1.75rem 1.5rem 1.5rem 1.5rem;
    width: 295px;
    min-width: 295px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.28);
    position: relative;
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid #f1f5f9;
    transition: transform 0.3s ease;
}

.live-price-card:hover {
    transform: translateY(-6px);
}

.live-price-avatar-circle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 68px;
    border-radius: 50%;
    overflow: hidden;
    border: 3.5px solid #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
    background-color: #f8fafc;
}

.live-price-info-box {
    width: 100%;
    background-color: #ffffff;
    border: 1.5px solid #ef4444;
    border-radius: 0.85rem;
    padding: 0.65rem;
    margin-top: 0.35rem;
    margin-bottom: 0.85rem;
    font-size: 0.82rem;
    font-weight: 800;
    color: #374151;
    text-align: center;
}

.live-digit-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 36px;
    background-color: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 7px;
    color: #1e293b;
    font-weight: 900;
    font-size: 1.05rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.06);
}

.live-price-black-btn {
    width: 100%;
    background-color: #191919;
    color: #ffffff;
    font-weight: 800;
    font-size: 0.8rem;
    padding: 0.7rem;
    border-radius: 9999px;
    transition: all 0.25s ease;
    margin-top: 0.6rem;
}

.live-price-black-btn:hover {
    background-color: #D70000;
}

.article-home-card {
    background-color: #ffffff;
    border-radius: 2.2rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 280px;
    height: 360px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.article-home-card:hover {
    transform: translateY(-5px);
}

.article-corner-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background-color: #D70000;
    border-top-right-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.article-home-card:hover .article-corner-btn {
    width: 100%;
    border-top-right-radius: 0;
}

.faq-item {
    border-radius: 1.5rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    background-color: #ffffff;
}
.faq-item:hover {
    border-color: #fee2e2;
}
.faq-active {
    border-color: #D70000 !important;
    background-color: #fff1f2 !important;
}

@media (max-width: 768px) {
    .mobile-card-table thead {
        display: none;
    }
    .mobile-card-table tbody tr {
        display: flex;
        flex-direction: column;
        background: #242424;
        margin-bottom: 1rem;
        border-radius: 1.5rem;
        border: 1px solid #333;
        padding: 1rem;
        position: relative;
    }
    .mobile-card-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.6rem 0;
        border-bottom: 1px dashed #333;
    }
    .mobile-card-table td:last-child {
        border-bottom: none;
        padding-top: 1rem;
    }
    .mobile-card-table td::before {
        content: attr(data-label);
        font-weight: bold;
        color: #9ca3af;
        font-size: 0.75rem;
    }
}

.site-footer {
    background-color: #181818;
    color: #ffffff;
    padding: 50px 20px 20px;
    position: relative;
    width: 100%;
    border-top: 3px solid #D70000;
    display: flex;
    flex-direction: column;
    align-items: center;
    direction: rtl;
}

.footer-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-slogan {
    font-size: 1.8rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 30px;
    color: #ffffff;
}

.contact-box {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    direction: rtl;
}

.phone-btn {
    font-size: 1.2rem;
    font-weight: 800;
    padding: 12px 32px;
    border-radius: 16px;
    min-width: 220px;
    text-align: center;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-filled {
    background-color: #D70000;
    border: 2px solid #D70000;
    color: #ffffff;
}
.btn-filled:hover {
    background-color: #b00000;
    border-color: #b00000;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #D70000;
    color: #ffffff;
}
.btn-outline:hover {
    background-color: #D70000;
}

.footer-links-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    direction: rtl;
}

.footer-col {
    text-align: right;
}

.footer-col h4 {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 800;
    border-right: 4px solid #D70000;
    padding-right: 10px;
    display: inline-block;
}

.footer-col ul {
    list-style: none;
    padding-right: 14px;
    text-align: right;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 0.95rem;
    color: #e5e7eb;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-col ul li a:hover {
    color: #D70000;
}

.footer-social-row {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 30px;
    padding-right: 14px;
    direction: rtl;
}

.social-media {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 38px;
    height: 38px;
    background-color: #D70000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-icon svg {
    width: 18px;
    height: 18px;
    fill: white;
}

.social-icon:hover {
    background-color: #ffffff;
    color: #D70000;
    transform: translateY(-3px);
}

.social-icon:hover svg {
    fill: #D70000;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    direction: rtl;
}

.trust-seals {
    display: flex;
    gap: 15px;
    flex: 1;
    justify-content: flex-start;
}

.trust-seal-img {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    object-fit: contain;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
    flex: 2;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
}

@media (max-width: 992px) {
    .footer-links-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-col h4 {
        border-right: none;
        border-bottom: 2px solid #D70000;
        padding-right: 0;
        padding-bottom: 5px;
        text-align: center;
        margin: 0 auto 20px;
        display: block;
    }
    .footer-col ul {
        text-align: center;
        padding-right: 0;
    }
    .trust-seals {
        justify-content: center;
        width: 100%;
    }
    .phone-btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .footer-social-row {
        justify-content: center;
        padding-right: 0;
    }
}