/* الألوان الأساسية المتناسقة مع الشعار الكويتي */
:root {
    --primary-color: #0d6efd;
    --accent-color: #ffc107;
    --danger-color: #dc3545;
    --dark-bg: #1a1c1e;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --hover-shadow: 0 20px 40px rgba(13, 110, 253, 0.15);
}

body {
    background-color: #f8f9fa;
    font-family: 'Cairo', sans-serif;
}

/* --- الهيدر الاحترافي المثبت --- */
.navbar-custom {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

/* --- كروت التصميم الزجاجي المطور --- */
.site-card {
    border: none !important;
    border-radius: 20px !important;
    background: #ffffff !important;
    box-shadow: var(--card-shadow) !important;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease !important;
    overflow: hidden;
}

.site-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow) !important;
}

/* تمميز الكروت الأكثر زيارة بالنار والتوهج الداكن */
.top-site-card {
    background: linear-gradient(145deg, #ffffff, #fffdf5) !important;
    border: 1px solid rgba(255, 193, 7, 0.3) !important;
}

.top-site-card:hover {
    box-shadow: 0 20px 40px rgba(255, 193, 7, 0.2) !important;
}

/* --- تنسيق محاذاة اللوجو والبيانات الأفقية --- */
.site-logo-container {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 10px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.site-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* --- الأزرار المدمجة الأنيقة بسطر واحد --- */
.card-actions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 15px;
}

.btn-modern-details {
    background: #f1f3f5;
    color: #495057;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 13px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.btn-modern-details:hover {
    background: #e9ecef;
    color: #212529;
}

.btn-modern-visit {
    background: linear-gradient(135deg, #28a745, #218838);
    color: white !important;
    border: none;
    border-radius: 12px;
    font-weight: bold;
    font-size: 13px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
    transition: all 0.3s ease;
}

.btn-modern-visit:hover {
    background: linear-gradient(135deg, #218838, #1e7e34);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.3);
}

.btn-modern-top-visit {
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: #1a1c1e !important;
}

/* --- الفوتر الفخم الاحترافي --- */
.modern-footer {
    background-color: var(--dark-bg);
    color: #a0aec0;
    padding: 60px 0 30px;
    margin-top: 80px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.modern-footer h5 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 20px;
}

.modern-footer a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.modern-footer a:hover {
    color: var(--accent-color);
}

.footer-social-icons a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    margin: 0 5px;
    color: white;
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}
