/* ═══════════════════════════════════════════════════════
   🏢 سعد العقارية - موقع الجوال
   مخصص للجوال أولاً مع تجاوب كامل
   ═══════════════════════════════════════════════════════ */

:root {
    /* ألوان سعد العقارية */
    --primary: #2d7d32;
    --primary-light: #4caf50;
    --primary-dark: #1b5e20;
    --accent: #81c784;
    
    /* ألوان أساسية */
    --white: #ffffff;
    --black: #000000;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #eeeeee;
    --gray-300: #e0e0e0;
    --gray-400: #bdbdbd;
    --gray-500: #9e9e9e;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;
    
    /* ظلال */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-lg: 0 4px 16px rgba(0,0,0,0.15);
    
    /* مسافات */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    
    /* حواف */
    --radius: 12px;
    --radius-lg: 16px;
    --radius-full: 9999px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Cairo', sans-serif;
    background: var(--gray-50);
    color: var(--gray-900);
    line-height: 1.6;
    direction: rtl;
    overflow-x: hidden;
}

/* ═══════════════════════════════════════════════════════
   🎯 القائمة الجانبية (Sidebar)
   ═══════════════════════════════════════════════════════ */

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100%;
    background: var(--white);
    box-shadow: -4px 0 24px rgba(0,0,0,0.15);
    z-index: 999;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.sidebar.active {
    right: 0;
}

.sidebar-header {
    padding: var(--space-xl) var(--space-lg);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.sidebar-logo i {
    font-size: 2rem;
}

.sidebar-logo h2 {
    font-size: 1.5rem;
    font-weight: 700;
}

.sidebar-subtitle {
    font-size: 0.875rem;
    opacity: 0.9;
}

.sidebar-menu {
    padding: var(--space-md) 0;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    color: var(--gray-700);
    text-decoration: none;
    transition: all 0.2s;
    border-right: 3px solid transparent;
}

.menu-item:hover,
.menu-item.active {
    background: var(--gray-100);
    color: var(--primary);
    border-right-color: var(--primary);
}

.menu-item i {
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
}

/* ═══════════════════════════════════════════════════════
   📱 الهيدر
   ═══════════════════════════════════════════════════════ */

.header {
    position: sticky;
    top: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) var(--space-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.menu-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-700);
    cursor: pointer;
    padding: var(--space-xs);
}

.header-title {
    flex: 1;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.header-action {
    width: 40px; /* لتوازن العنوان */
}

/* ═══════════════════════════════════════════════════════
   📄 المحتوى الرئيسي
   ═══════════════════════════════════════════════════════ */

.main-content {
    min-height: calc(100vh - 60px);
    padding: var(--space-lg);
    max-width: 1200px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════
   🏠 الصفحة الرئيسية
   ═══════════════════════════════════════════════════════ */

.hero-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    margin-bottom: var(--space-lg);
}

.hero-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    font-size: 2.5rem;
}

.hero-card h1 {
    font-size: 1.75rem;
    margin-bottom: var(--space-sm);
}

.hero-card p {
    opacity: 0.95;
    margin-bottom: var(--space-lg);
}

.license-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: rgba(255,255,255,0.2);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    backdrop-filter: blur(10px);
}

.info-section {
    background: var(--white);
    border-radius: var(--radius);
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow);
}

.info-section h2 {
    color: var(--primary);
    margin-bottom: var(--space-md);
    font-size: 1.25rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--gray-200);
}

.info-item:last-child {
    border-bottom: none;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--gray-900);
}

.info-content p {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.contact-buttons {
    display: grid;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    border: none;
    border-radius: var(--radius);
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:active {
    background: var(--primary-dark);
    transform: scale(0.98);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:active {
    background: #1fa855;
    transform: scale(0.98);
}

.btn-outline {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:active {
    background: var(--gray-50);
    transform: scale(0.98);
}

/* ═══════════════════════════════════════════════════════
   📝 نموذج رفع الإعلان
   ═══════════════════════════════════════════════════════ */

.form-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.875rem;
}

.form-label.optional::after {
    content: ' (اختياري)';
    color: var(--gray-500);
    font-weight: 400;
}

.form-control {
    width: 100%;
    padding: var(--space-md);
    border: 2px solid var(--gray-300);
    border-radius: var(--radius);
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
}

textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

.image-upload {
    border: 2px dashed var(--gray-300);
    border-radius: var(--radius);
    padding: var(--space-xl);
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.image-upload:hover {
    border-color: var(--primary);
    background: var(--gray-50);
}

.image-upload input {
    display: none;
}

.upload-icon {
    font-size: 3rem;
    color: var(--gray-400);
    margin-bottom: var(--space-md);
}

.upload-text {
    color: var(--gray-600);
    margin-bottom: var(--space-xs);
}

.upload-hint {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.image-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.preview-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius);
    overflow: hidden;
}

.preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.remove-image {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 24px;
    height: 24px;
    background: rgba(0,0,0,0.7);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.75rem;
}

/* ═══════════════════════════════════════════════════════
   📋 عرض الإعلانات
   ═══════════════════════════════════════════════════════ */

.search-bar {
    background: var(--white);
    border-radius: var(--radius);
    padding: var(--space-md);
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow);
}

.search-input {
    width: 100%;
    padding: var(--space-md);
    border: 2px solid var(--gray-300);
    border-radius: var(--radius);
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
}

.filter-chips {
    display: flex;
    gap: var(--space-sm);
    overflow-x: auto;
    padding: var(--space-sm) 0;
    scrollbar-width: none;
}

.filter-chips::-webkit-scrollbar {
    display: none;
}

.filter-chip {
    padding: var(--space-xs) var(--space-md);
    background: var(--gray-100);
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-chip.active {
    background: var(--primary);
    color: var(--white);
}

.listings-grid {
    display: grid;
    gap: var(--space-lg);
}

.listing-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.listing-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--gray-200);
    overflow: hidden;
}

.listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.listing-badge {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    padding: var(--space-xs) var(--space-md);
    background: rgba(45, 125, 50, 0.95);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
}

.listing-badge.rent {
    background: rgba(33, 150, 243, 0.95);
}

.listing-content {
    padding: var(--space-lg);
}

.listing-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
    color: var(--gray-900);
}

.listing-location {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-bottom: var(--space-md);
}

.listing-details {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--gray-200);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.875rem;
    color: var(--gray-600);
}

.detail-item i {
    color: var(--primary);
}

.listing-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.listing-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

/* أزرار الإعلانات - 3 أزرار */
.listing-actions a {
    flex-direction: column;
    padding: var(--space-sm) var(--space-xs);
    font-size: 0.875rem;
}

.listing-actions a i {
    font-size: 1.125rem;
    margin-bottom: 2px;
}

.listing-actions a span {
    font-size: 0.75rem;
    line-height: 1.2;
}

.empty-state {
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    color: var(--gray-500);
}

.empty-state i {
    font-size: 4rem;
    margin-bottom: var(--space-md);
    color: var(--gray-400);
}

/* ═══════════════════════════════════════════════════════
   📱 تجاوب الشاشات
   ═══════════════════════════════════════════════════════ */

@media (min-width: 768px) {
    .listings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .listings-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .sidebar {
        right: -320px;
        width: 320px;
    }
}

/* ═══════════════════════════════════════════════════════
   ✨ رسوم متحركة
   ═══════════════════════════════════════════════════════ */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.3s ease-out;
}

/* ═══════════════════════════════════════════════════════
   🎯 مساعدات
   ═══════════════════════════════════════════════════════ */

.text-center {
    text-align: center;
}

.mt-lg {
    margin-top: var(--space-lg);
}

.mb-lg {
    margin-bottom: var(--space-lg);
}
