/* الخطوط الأساسية */
body {
    font-family: <?php echo $lang === 'ar' ? "'Cairo', sans-serif" : "'Inter', sans-serif"; ?>;
    background-color: #f8f9fa;
    padding-top: 0;
}

/* الألوان الأساسية */
:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
}

/* قسم البطل */
.hero-section {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    padding: 80px 0;
}

/* بطاقات التصنيفات */
.category-card {
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card .card {
    transition: box-shadow 0.3s ease;
}

.category-card:hover .card {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

/* بطاقات المواقع */
.listing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.listing-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.listing-card .card-title a {
    color: #212529;
    transition: color 0.2s;
}

.listing-card .card-title a:hover {
    color: var(--primary-color);
}

/* عنوان القسم */
.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    <?php echo $lang === 'ar' ? 'right' : 'left'; ?>: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

/* أزرار اللغة */
.language-switcher {
    display: flex;
    gap: 5px;
    margin-<?php echo $lang === 'ar' ? 'right' : 'left'; ?>: 15px;
}

/* الفوتر */
footer a {
    transition: color 0.2s;
}

footer a:hover {
    color: #fff !important;
}

/* الصفحات */
.breadcrumb {
    background: transparent;
    padding: 0;
}

/* إحصائيات */
.stat-card {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* شريط البحث */
.search-form .form-control {
    border-radius: <?php echo $lang === 'ar' ? '0 10px 10px 0' : '10px 0 0 10px'; ?>;
    border: none;
    padding: 15px 20px;
}

.search-form .btn {
    border-radius: <?php echo $lang === 'ar' ? '10px 0 0 10px' : '0 10px 10px 0'; ?>;
    padding: 15px 30px;
}

/* التصميم المتجاوب */
@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .language-switcher {
        margin: 10px 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}

/* تحسينات للطباعة */
@media print {
    .navbar, .footer, .btn {
        display: none;
    }
}

/* تأثيرات إضافية */
.badge {
    font-weight: 500;
}

.card {
    border-radius: 10px;
}

.btn {
    border-radius: 8px;
}

/* تمرير سلس */
html {
    scroll-behavior: smooth;
}

/* تحميل الصور */
img {
    max-width: 100%;
    height: auto;
}

/* إخفاء شريط التمرير الأفقي */
body {
    overflow-x: hidden;
}

/* تنسيق النصوص العربية */
html[dir="rtl"] {
    text-align: right;
}

html[dir="rtl"] .ms-3 {
    margin-right: 1rem !important;
    margin-left: 0 !important;
}

html[dir="rtl"] .me-2 {
    margin-left: 0.5rem !important;
    margin-right: 0 !important;
}

html[dir="rtl"] .ms-auto {
    margin-right: auto !important;
    margin-left: 0 !important;
}

html[dir="rtl"] .me-auto {
    margin-left: auto !important;
    margin-right: 0 !important;
}