/* استایل کلی */
body {
    font-family: 'Vazirmatn', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 76px;
    background-color: #f8f9fa;
    line-height: 1.6;
}

/* هیرو سکشن */
.hero-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

/* کارت وضعیت */
.status-card {
    padding: 20px;
}

.status-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.status-label {
    font-weight: bold;
}

.status-value.present {
    color: #28a745;
    font-weight: bold;
}

/* کارت محصولات */
.card {
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.price {
    font-weight: bold;
    color: #0d6efd;
    font-size: 1.2rem;
}

/* فرم پرداخت */
#payment-form input {
    border-radius: 8px;
    padding: 12px;
}

/* فوتر */
footer {
    margin-top: 50px;
}

.social-links a {
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #0d6efd !important;
}

/* مودال */
.modal-content {
    border-radius: 12px;
}

/* ریسپانسیو برای موبایل */
@media (max-width: 768px) {
    body {
        padding-top: 66px;
    }
    
    .hero-section {
        padding: 50px 0;
        text-align: center;
    }
    
    .hero-section .display-4 {
        font-size: 2rem;
    }
    
    .status-item {
        flex-direction: column;
    }
}

/* انیمیشن‌ها */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.card {
    animation: fadeIn 0.5s ease-in;
}

/* استایل دکمه‌ها */
.btn {
    border-radius: 8px;
    padding: 10px 20px;
    transition: all 0.3s;
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
    transform: translateY(-2px);
}

/* استایل ناوبری */
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin-left: 15px;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #0d6efd !important;
}