/* استایل‌های سفارشی برای قالب بیزینس بابایی */

/* انیمیشن‌های نرم */
.card, .btn-primary, .btn-outline {
    transition: all 0.3s ease-in-out;
}

/* استایل اسکرول نرم */
html {
    scroll-behavior: smooth;
}

/* استایل لینک‌های منو */
nav ul li a {
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 2px;
    background: #FFC107;
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

/* استایل دکمه‌های هدر */
.cta-btn {
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: right 0.5s ease;
}

.cta-btn:hover::before {
    right: 100%;
}

/* استایل بخش درباره ما */
.about-content .section-title {
    margin-bottom: 20px;
}

.stat-item {
    padding: 10px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

/* بهبود واکنش‌گرایی */
@media (max-width: 768px) {
    .stat-number {
        font-size: 1.8rem;
    }

    .about-stats {
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-item {
        flex: 1 1 30%;
        min-width: 100px;
    }
}

/* استایل آمار سایت */
.site-stats {
    padding: 10px 0;
    margin-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-stats .stat-item {
    text-align: center;
    color: white;
}

.stat-icon {
    display: block;
    font-size: 24px;
    margin-bottom: 5px;
}

.stat-number {
    display: block;
    font-size: 22px;
    font-weight: bold;
    color: #FFC107;
    margin-bottom: 3px;
}

.stat-label {
    font-size: 14px;
    color: #94a3b8;
}

/* واکنش‌گرایی آمار */
@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .stat-number {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .stats-container {
        grid-template-columns: 1fr 1fr;
    }
}

/* استایل ویجت آمار */
.widget .site-stats .stat-item {
    color: #0A192F;
}

.widget .stat-label {
    color: #64748b;
}