Spaces:
Running
Running
| <html lang="ar" dir="rtl"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>عقار ذكي - المنصة العقارية المتقدمة للمملكة</title> | |
| <!-- Font Awesome for icons --> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"> | |
| <!-- Google Fonts --> | |
| <link href="https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;900&display=swap" rel="stylesheet"> | |
| <style> | |
| * { | |
| margin: 0; | |
| padding: 0; | |
| box-sizing: border-box; | |
| outline: none; | |
| } | |
| :root { | |
| --primary-color: #1e3a8a; | |
| --secondary-color: #f59e0b; | |
| --accent-color: #10b981; | |
| --danger-color: #ef4444; | |
| --dark: #1f2937; | |
| --light: #f3f4f6; | |
| --white: #ffffff; | |
| --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%); | |
| --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); | |
| --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); | |
| --gradient-4: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); | |
| --shadow-sm: 0 2px 4px rgba(0,0,0,0.1); | |
| --shadow-md: 0 4px 6px rgba(0,0,0,0.1); | |
| --shadow-lg: 0 10px 15px rgba(0,0,0,0.1); | |
| --shadow-xl: 0 20px 25px rgba(0,0,0,0.1); | |
| } | |
| html { | |
| scroll-behavior: smooth; | |
| } | |
| body { | |
| font-family: 'Tajawal', sans-serif; | |
| background: var(--light); | |
| min-height: 100vh; | |
| overflow-x: hidden; | |
| color: var(--dark); | |
| } | |
| /* Loading Screen */ | |
| .loading-screen { | |
| position: fixed; | |
| top: 0; | |
| left: 0; | |
| width: 100%; | |
| height: 100%; | |
| background: var(--gradient-1); | |
| display: flex; | |
| justify-content: center; | |
| align-items: center; | |
| z-index: 9999; | |
| transition: opacity 0.5s, visibility 0.5s; | |
| } | |
| .loading-screen.hidden { | |
| opacity: 0; | |
| visibility: hidden; | |
| } | |
| .loader { | |
| width: 80px; | |
| height: 80px; | |
| border: 4px solid rgba(255,255,255,0.3); | |
| border-top-color: white; | |
| border-radius: 50%; | |
| animation: spin 1s linear infinite; | |
| } | |
| @keyframes spin { | |
| to { transform: rotate(360deg); } | |
| } | |
| /* Header */ | |
| header { | |
| background: rgba(255, 255, 255, 0.95); | |
| backdrop-filter: blur(10px); | |
| box-shadow: var(--shadow-lg); | |
| position: sticky; | |
| top: 0; | |
| z-index: 1000; | |
| animation: slideDown 0.5s ease-out; | |
| } | |
| @keyframes slideDown { | |
| from { | |
| transform: translateY(-100%); | |
| opacity: 0; | |
| } | |
| to { | |
| transform: translateY(0); | |
| opacity: 1; | |
| } | |
| } | |
| nav { | |
| display: flex; | |
| justify-content: space-between; | |
| align-items: center; | |
| padding: 1rem 2rem; | |
| max-width: 1400px; | |
| margin: 0 auto; | |
| } | |
| .logo { | |
| display: flex; | |
| align-items: center; | |
| gap: 0.5rem; | |
| font-size: 1.5rem; | |
| font-weight: 900; | |
| color: var(--primary-color); | |
| text-decoration: none; | |
| transition: transform 0.3s; | |
| } | |
| .logo:hover { | |
| transform: scale(1.05); | |
| } | |
| .logo i { | |
| font-size: 2rem; | |
| background: var(--gradient-1); | |
| -webkit-background-clip: text; | |
| -webkit-text-fill-color: transparent; | |
| } | |
| .nav-links { | |
| display: flex; | |
| gap: 2rem; | |
| list-style: none; | |
| align-items: center; | |
| } | |
| .nav-links a { | |
| color: var(--dark); | |
| text-decoration: none; | |
| font-weight: 500; | |
| transition: all 0.3s; | |
| position: relative; | |
| padding: 0.5rem 0; | |
| } | |
| .nav-links a::after { | |
| content: ''; | |
| position: absolute; | |
| bottom: 0; | |
| right: 0; | |
| width: 0; | |
| height: 2px; | |
| background: var(--gradient-1); | |
| transition: width 0.3s; | |
| } | |
| .nav-links a:hover::after { | |
| width: 100%; | |
| } | |
| .anycoder-link { | |
| font-size: 0.8rem; | |
| color: #9ca3af; | |
| text-decoration: none; | |
| border: 1px solid #e5e7eb; | |
| padding: 4px 10px; | |
| border-radius: 20px; | |
| transition: all 0.3s; | |
| } | |
| .anycoder-link:hover { | |
| color: var(--primary-color); | |
| border-color: var(--primary-color); | |
| } | |
| .lang-toggle { | |
| background: var(--gradient-1); | |
| color: white; | |
| border: none; | |
| padding: 0.5rem 1rem; | |
| border-radius: 25px; | |
| cursor: pointer; | |
| font-weight: 500; | |
| transition: transform 0.3s, box-shadow 0.3s; | |
| } | |
| .lang-toggle:hover { | |
| transform: translateY(-2px); | |
| box-shadow: var(--shadow-lg); | |
| } | |
| /* Hero Section */ | |
| .hero { | |
| padding: 6rem 2rem 4rem; | |
| text-align: center; | |
| color: white; | |
| position: relative; | |
| overflow: hidden; | |
| background: var(--gradient-1); | |
| border-bottom-right-radius: 50px; | |
| border-bottom-left-radius: 50px; | |
| } | |
| .hero::before { | |
| content: ''; | |
| position: absolute; | |
| top: -50%; | |
| right: -50%; | |
| width: 200%; | |
| height: 200%; | |
| background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%); | |
| animation: float 20s infinite linear; | |
| } | |
| @keyframes float { | |
| to { transform: rotate(360deg); } | |
| } | |
| .hero h1 { | |
| font-size: 3rem; | |
| margin-bottom: 1rem; | |
| position: relative; | |
| z-index: 1; | |
| animation: fadeInUp 0.8s ease-out; | |
| } | |
| @keyframes fadeInUp { | |
| from { | |
| opacity: 0; | |
| transform: translateY(30px); | |
| } | |
| to { | |
| opacity: 1; | |
| transform: translateY(0); | |
| } | |
| } | |
| .hero p { | |
| font-size: 1.2rem; | |
| margin-bottom: 2rem; | |
| position: relative; | |
| z-index: 1; | |
| opacity: 0.9; | |
| animation: fadeInUp 0.8s ease-out 0.2s both; | |
| } | |
| /* Search Section */ | |
| .search-container { | |
| background: rgba(255, 255, 255, 0.95); | |
| backdrop-filter: blur(10px); | |
| border-radius: 20px; | |
| padding: 2rem; | |
| max-width: 1200px; | |
| margin: -2rem auto 2rem; | |
| box-shadow: var(--shadow-xl); | |
| position: relative; | |
| z-index: 10; | |
| animation: fadeInUp 0.8s ease-out 0.4s both; | |
| } | |
| .search-tabs { | |
| display: flex; | |
| gap: 1rem; | |
| margin-bottom: 2rem; | |
| border-bottom: 2px solid var(--light); | |
| } | |
| .tab { | |
| padding: 1rem 2rem; | |
| background: none; | |
| border: none; | |
| color: var(--dark); | |
| font-weight: 500; | |
| cursor: pointer; | |
| position: relative; | |
| transition: all 0.3s; | |
| } | |
| .tab.active { | |
| color: var(--primary-color); | |
| } | |
| .tab.active::after { | |
| content: ''; | |
| position: absolute; | |
| bottom: -2px; | |
| right: 0; | |
| width: 100%; | |
| height: 2px; | |
| background: var(--gradient-1); | |
| } | |
| .search-form { | |
| display: grid; | |
| grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); | |
| gap: 1rem; | |
| margin-bottom: 1rem; | |
| } | |
| .form-group { | |
| position: relative; | |
| } | |
| .form-group i { | |
| position: absolute; | |
| right: 1rem; | |
| top: 50%; | |
| transform: translateY(-50%); | |
| color: var(--primary-color); | |
| } | |
| .form-group input, | |
| .form-group select { | |
| width: 100%; | |
| padding: 1rem 3rem 1rem 1rem; | |
| border: 2px solid var(--light); | |
| border-radius: 10px; | |
| font-family: 'Tajawal', sans-serif; | |
| font-size: 1rem; | |
| transition: all 0.3s; | |
| } | |
| .form-group input:focus, | |
| .form-group select:focus { | |
| border-color: var(--primary-color); | |
| box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1); | |
| } | |
| .search-btn { | |
| grid-column: span 1; | |
| background: var(--gradient-1); | |
| color: white; | |
| border: none; | |
| padding: 1rem 2rem; | |
| border-radius: 10px; | |
| font-weight: 600; | |
| cursor: pointer; | |
| transition: all 0.3s; | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| gap: 0.5rem; | |
| } | |
| .search-btn:hover { | |
| transform: translateY(-2px); | |
| box-shadow: var(--shadow-lg); | |
| } | |
| /* Features Section */ | |
| .features { | |
| padding: 4rem 2rem; | |
| background: white; | |
| } | |
| .container { | |
| max-width: 1200px; | |
| margin: 0 auto; | |
| } | |
| .section-title { | |
| text-align: center; | |
| font-size: 2.5rem; | |
| color: var(--dark); | |
| margin-bottom: 3rem; | |
| position: relative; | |
| } | |
| .section-title::after { | |
| content: ''; | |
| position: absolute; | |
| bottom: -10px; | |
| right: 50%; | |
| transform: translateX(50%); | |
| width: 100px; | |
| height: 4px; | |
| background: var(--gradient-1); | |
| border-radius: 2px; | |
| } | |
| .features-grid { | |
| display: grid; | |
| grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); | |
| gap: 2rem; | |
| } | |
| .feature-card { | |
| background: white; | |
| border-radius: 20px; | |
| padding: 2rem; | |
| box-shadow: var(--shadow-md); | |
| transition: all 0.3s; | |
| position: relative; | |
| overflow: hidden; | |
| border: 1px solid var(--light); | |
| } | |
| .feature-card::before { | |
| content: ''; | |
| position: absolute; | |
| top: 0; | |
| right: 0; | |
| width: 100%; | |
| height: 4px; | |
| background: var(--gradient-1); | |
| transform: scaleX(0); | |
| transform-origin: right; | |
| transition: transform 0.3s; | |
| } | |
| .feature-card:hover::before { | |
| transform: scaleX(1); | |
| } | |
| .feature-card:hover { | |
| transform: translateY(-5px); | |
| box-shadow: var(--shadow-xl); | |
| } | |
| .feature-icon { | |
| width: 60px; | |
| height: 60px; | |
| background: var(--gradient-1); | |
| border-radius: 15px; | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| color: white; | |
| font-size: 1.5rem; | |
| margin-bottom: 1rem; | |
| } | |
| .feature-card h3 { | |
| color: var(--dark); | |
| margin-bottom: 0.5rem; | |
| } | |
| .feature-card p { | |
| color: #6b7280; | |
| line-height: 1.6; | |
| } | |
| /* Properties Section */ | |
| .properties { | |
| padding: 4rem 2rem; | |
| background: #f9fafb; | |
| } | |
| .filter-bar { | |
| display: flex; | |
| gap: 1rem; | |
| margin-bottom: 2rem; | |
| flex-wrap: wrap; | |
| align-items: center; | |
| justify-content: center; | |
| } | |
| .filter-btn { | |
| padding: 0.5rem 1.5rem; | |
| background: white; | |
| border: 2px solid var(--light); | |
| border-radius: 25px; | |
| cursor: pointer; | |
| transition: all 0.3s; | |
| font-weight: 500; | |
| } | |
| .filter-btn.active { | |
| background: var(--gradient-1); | |
| color: white; | |
| border-color: transparent; | |
| box-shadow: var(--shadow-md); | |
| } | |
| .properties-grid { | |
| display: grid; | |
| grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); | |
| gap: 2rem; | |
| } | |
| .property-card { | |
| background: white; | |
| border-radius: 20px; | |
| overflow: hidden; | |
| box-shadow: var(--shadow-md); | |
| transition: all 0.3s; | |
| position: relative; | |
| display: none; /* Hidden by default for filtering */ | |
| animation: fadeIn 0.5s ease-out; | |
| } | |
| .property-card.show { | |
| display: block; | |
| } | |
| @keyframes fadeIn { | |
| from { opacity: 0; transform: translateY(20px); } | |
| to { opacity: 1; transform: translateY(0); } | |
| } | |
| .property-card:hover { | |
| transform: translateY(-5px); | |
| box-shadow: var(--shadow-xl); | |
| } | |
| .property-image { | |
| position: relative; | |
| height: 250px; | |
| overflow: hidden; | |
| } | |
| .property-image img { | |
| width: 100%; | |
| height: 100%; | |
| object-fit: cover; | |
| transition: transform 0.5s; | |
| } | |
| .property-card:hover .property-image img { | |
| transform: scale(1.1); | |
| } | |
| .property-badge { | |
| position: absolute; | |
| top: 1rem; | |
| right: 1rem; | |
| background: var(--accent-color); | |
| color: white; | |
| padding: 0.25rem 0.75rem; | |
| border-radius: 20px; | |
| font-size: 0.875rem; | |
| font-weight: 600; | |
| box-shadow: var(--shadow-sm); | |
| } | |
| .property-favorite { | |
| position: absolute; | |
| top: 1rem; | |
| left: 1rem; | |
| width: 40px; | |
| height: 40px; | |
| background: rgba(255, 255, 255, 0.9); | |
| border-radius: 50%; | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| cursor: pointer; | |
| transition: all 0.3s; | |
| box-shadow: var(--shadow-sm); | |
| } | |
| .property-favorite:hover { | |
| background: white; | |
| transform: scale(1.1); | |
| } | |
| .property-favorite.active i { | |
| color: var(--danger-color); | |
| } | |
| .property-details { | |
| padding: 1.5rem; | |
| } | |
| .property-price { | |
| font-size: 1.5rem; | |
| font-weight: 700; | |
| color: var(--primary-color); | |
| margin-bottom: 0.5rem; | |
| } | |
| .property-location { | |
| display: flex; | |
| align-items: center; | |
| gap: 0.5rem; | |
| color: #6b7280; | |
| margin-bottom: 1rem; | |
| font-size: 0.9rem; | |
| } | |
| .property-features { | |
| display: flex; | |
| gap: 1rem; | |
| padding-top: 1rem; | |
| border-top: 1px solid var(--light); | |
| flex-wrap: wrap; | |
| } | |
| .property-feature { | |
| display: flex; | |
| align-items: center; | |
| gap: 0.25rem; | |
| color: #6b7280; | |
| font-size: 0.875rem; | |
| } | |
| /* Map Section */ | |
| .map-section { | |
| padding: 4rem 2rem; | |
| background: white; | |
| } | |
| .map-container { | |
| height: 500px; | |
| background: var(--light); | |
| border-radius: 20px; | |
| position: relative; | |
| overflow: hidden; | |
| box-shadow: var(--shadow-lg); | |
| } | |
| .map-placeholder { | |
| width: 100%; | |
| height: 100%; | |
| background: url('https://picsum.photos/seed/riyadhmap/1600/600.jpg') center/cover; | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| position: relative; | |
| } | |
| .map-overlay { | |
| position: absolute; | |
| top: 50%; | |
| left: 50%; | |
| transform: translate(-50%, -50%); | |
| background: white; | |
| padding: 2rem; | |
| border-radius: 15px; | |
| box-shadow: var(--shadow-xl); | |
| text-align: center; | |
| max-width: 90%; | |
| width: 400px; | |
| } | |
| .map-overlay h3 { | |
| margin-bottom: 1rem; | |
| color: var(--primary-color); | |
| } | |
| .map-overlay button { | |
| background: var(--gradient-1); | |
| color: white; | |
| border: none; | |
| padding: 0.75rem 1.5rem; | |
| border-radius: 10px; | |
| cursor: pointer; | |
| margin-top: 1rem; | |
| transition: all 0.3s; | |
| } | |
| .map-overlay button:hover { | |
| transform: translateY(-2px); | |
| box-shadow: var(--shadow-md); | |
| } | |
| /* Calculator Section */ | |
| .calculator-section { | |
| padding: 4rem 2rem; | |
| background: var(--light); | |
| } | |
| .calculator-container { | |
| display: grid; | |
| grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); | |
| gap: 2rem; | |
| } | |
| .calculator-card { | |
| background: white; | |
| padding: 2rem; | |
| border-radius: 20px; | |
| box-shadow: var(--shadow-md); | |
| } | |
| .calculator-card h3 { | |
| color: var(--dark); | |
| margin-bottom: 1.5rem; | |
| display: flex; | |
| align-items: center; | |
| gap: 0.5rem; | |
| } | |
| .calculator-input { | |
| margin-bottom: 1.5rem; | |
| } | |
| .calculator-input label { | |
| display: block; | |
| margin-bottom: 0.5rem; | |
| color: var(--dark); | |
| font-weight: 500; | |
| } | |
| .range-wrap { | |
| position: relative; | |
| } | |
| .range-value { | |
| position: absolute; | |
| top: -35px; | |
| left: 0; | |
| background: var(--primary-color); | |
| color: white; | |
| padding: 2px 8px; | |
| border-radius: 5px; | |
| font-size: 0.85rem; | |
| } | |
| input[type=range] { | |
| width: 100%; | |
| cursor: pointer; | |
| } | |
| .calculate-btn { | |
| width: 100%; | |
| padding: 1rem; | |
| background: var(--gradient-1); | |
| color: white; | |
| border: none; | |
| border-radius: 10px; | |
| font-weight: 600; | |
| cursor: pointer; | |
| transition: all 0.3s; | |
| font-size: 1.1rem; | |
| } | |
| .calculate-btn:hover { | |
| transform: translateY(-2px); | |
| box-shadow: var(--shadow-lg); | |
| } | |
| .result-box { | |
| margin-top: 1.5rem; | |
| padding: 1.5rem; | |
| background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%); | |
| border-radius: 10px; | |
| display: none; | |
| border: 1px solid #bae6fd; | |
| } | |
| .result-box.show { | |
| display: block; | |
| animation: fadeIn 0.5s; | |
| } | |
| .result-item { | |
| display: flex; | |
| justify-content: space-between; | |
| margin-bottom: 0.5rem; | |
| padding-bottom: 0.5rem; | |
| border-bottom: 1px dashed #cbd5e1; | |
| } | |
| .result-item:last-child { | |
| border-bottom: none; | |
| margin-bottom: 0; | |
| padding-bottom: 0; | |
| } | |
| .result-label { | |
| color: #64748b; | |
| } | |
| .result-value { | |
| font-weight: 700; | |
| color: var(--primary-color); | |
| font-size: 1.2rem; | |
| } | |
| /* Footer */ | |
| footer { | |
| background: var(--dark); | |
| color: white; | |
| padding: 3rem 2rem 1rem; | |
| margin-top: 4rem; | |
| } | |
| .footer-content { | |
| max-width: 1200px; | |
| margin: 0 auto; | |
| display: grid; | |
| grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); | |
| gap: 2rem; | |
| margin-bottom: 2rem; | |
| } | |
| .footer-section h4 { | |
| margin-bottom: 1.5rem; | |
| color: var(--secondary-color); | |
| position: relative; | |
| display: inline-block; | |
| } | |
| .footer-section ul { | |
| list-style: none; | |
| } | |
| .footer-section li { | |
| margin-bottom: 0.8rem; | |
| } | |
| .footer-section a { | |
| color: #9ca3af; | |
| text-decoration: none; | |
| transition: color 0.3s; | |
| display: flex; | |
| align-items: center; | |
| gap: 0.5rem; | |
| } | |
| .footer-section a:hover { | |
| color: white; | |
| padding-right: 5px; | |
| } | |
| .social-links { | |
| display: flex; | |
| gap: 1rem; | |
| margin-top: 1.5rem; | |
| } | |
| .social-link { | |
| width: 40px; | |
| height: 40px; | |
| background: rgba(255, 255, 255, 0.1); | |
| border-radius: 50%; | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| transition: all 0.3s; | |
| } | |
| .social-link:hover { | |
| background: var(--gradient-1); | |
| transform: translateY(-3px); | |
| } | |
| .footer-bottom { | |
| text-align: center; | |
| padding-top: 2rem; | |
| border-top: 1px solid rgba(255, 255, 255, 0.1); | |
| color: #9ca3af; | |
| font-size: 0.9rem; | |
| } | |
| .footer-bottom a { | |
| color: var(--secondary-color); | |
| text-decoration: none; | |
| } | |
| /* Mobile Menu */ | |
| .mobile-menu-toggle { | |
| display: none; | |
| background: none; | |
| border: none; | |
| font-size: 1.5rem; | |
| color: var(--primary-color); | |
| cursor: pointer; | |
| } | |
| /* Responsive Design */ | |
| @media (max-width: 768px) { | |
| .nav-links { | |
| position: fixed; | |
| top: 70px; | |
| right: -100%; | |
| width: 100%; | |
| height: calc(100vh - 70px); | |
| background: white; | |
| flex-direction: column; | |
| padding: 2rem; | |
| transition: right 0.3s; | |
| box-shadow: var(--shadow-xl); | |
| z-index: 999; | |
| } | |
| .nav-links.active { | |
| right: 0; | |
| } | |
| .mobile-menu-toggle { | |
| display: block; | |
| } | |
| .hero h1 { | |
| font-size: 2rem; | |
| } | |
| .search-form { | |
| grid-template-columns: 1fr; | |
| } | |
| .properties-grid { | |
| grid-template-columns: 1fr; | |
| } | |
| .calculator-container { | |
| grid-template-columns: 1fr; | |
| } | |
| } | |
| /* Notification Toast */ | |
| .notification { | |
| position: fixed; | |
| bottom: 2rem; | |
| left: 2rem; | |
| background: white; | |
| padding: 1rem 1.5rem; | |
| border-radius: 10px; | |
| box-shadow: var(--shadow-xl); | |
| display: flex; | |
| align-items: center; | |
| gap: 1rem; | |
| transform: translateX(-150%); | |
| transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55); | |
| z-index: 1000; | |
| border-right: 4px solid var(--accent-color); | |
| } | |
| .notification.show { | |
| transform: translateX(0); | |
| } | |
| .notification-icon { | |
| width: 40px; | |
| height: 40px; | |
| background: #ecfdf5; | |
| border-radius: 50%; | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| color: var(--accent-color); | |
| font-size: 1.2rem; | |
| } | |
| .notification-content h4 { | |
| color: var(--dark); | |
| margin-bottom: 0.25rem; | |
| font-size: 1rem; | |
| } | |
| .notification-content p { | |
| color: #6b7280; | |
| font-size: 0.85rem; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <!-- Loading Screen --> | |
| <div class="loading-screen" id="loadingScreen"> | |
| <div class="loader"></div> | |
| </div> | |
| <!-- Notification Toast --> | |
| <div class="notification" id="notification"> | |
| <div class="notification-icon"> | |
| <i class="fas fa-check-circle"></i> | |
| </div> | |
| <div class="notification-content"> | |
| <h4 id="notifTitle">تم بنجاح</h4> | |
| <p id="notifMessage">تمت العملية بنجاح</p> | |
| </div> | |
| </div> | |
| <!-- Header --> | |
| <header> | |
| <nav> | |
| <a href="#" class="logo"> | |
| <i class="fas fa-building"></i> | |
| عقار ذكي | |
| </a> | |
| <button class="mobile-menu-toggle" id="mobileMenuToggle"> | |
| <i class="fas fa-bars"></i> | |
| </button> | |
| <ul class="nav-links" id="navLinks"> | |
| <li><a href="#home">الرئيسية</a></li> | |
| <li><a href="#properties">العقارات</a></li> | |
| <li><a href="#map">الخريطة</a></li> | |
| <li><a href="#calculator">الحاسبة</a></li> | |
| <li><a href="#contact">اتصل بنا</a></li> | |
| <li><button class="lang-toggle" onclick="toggleLanguage()">English</button></li> | |
| <li><a href="https://huggingface.co/spaces/akhaliq/anycoder" target="_blank" class="anycoder-link">Built with anycoder</a></li> | |
| </ul> | |
| </nav> | |
| </header> | |
| <!-- Hero Section --> | |
| <section class="hero" id="home"> | |
| <h1>اكتشف منزلك المثالي في المملكة</h1> | |
| <p>منصة عقارية ذكية متطورة تجربة لا مثيل لها للبحث عن العقارات</p> | |
| <!-- Search Container --> | |
| <div class="search-container"> | |
| <div class="search-tabs"> | |
| <button class="tab active" onclick="switchTab(this, 'buy')">شراء</button> | |
| <button class="tab" onclick="switchTab(this, 'rent')">إيجار</button> | |
| <button class="tab" onclick="switchTab(this, 'invest')">استثمار</button> | |
| </div> | |
| <form class="search-form" onsubmit="searchProperties(event)"> | |
| <div class="form-group"> | |
| <i class="fas fa-map-marker-alt"></i> | |
| <input type="text" placeholder="المدينة أو الحي" required> | |
| </div> | |
| <div class="form-group"> | |
| <i class="fas fa-home"></i> | |
| <select> | |
| <option>نوع العقار</option> | |
| <option>فيلا</option> | |
| <option>شقة</option> | |
| <option>أرض</option> | |
| <option>عمارة</option> | |
| </select> | |
| </div> | |
| <div class="form-group"> | |
| <i class="fas fa-bed"></i> | |
| <select> | |
| <option>عدد الغرف</option> | |
| <option>غرفة واحدة</option> | |
| <option>غرفتان</option> | |
| <option>3 غرف</option> | |
| <option>4 غرف</option> | |
| <option>5+ غرف</option> | |
| </select> | |
| </div> | |
| <div class="form-group"> | |
| <i class="fas fa-money-bill-wave"></i> | |
| <input type="number" placeholder="السعر الأقصى"> | |
| </div> | |
| <button type="submit" class="search-btn"> | |
| <i class="fas fa-search"></i> | |
| بحث | |
| </button> | |
| </form> | |
| </div> | |
| </section> | |
| <!-- Features Section --> | |
| <section class="features"> | |
| <div class="container"> | |
| <h2 class="section-title">مميزاتنا الفريدة</h2> | |
| <div class="features-grid"> | |
| <div class="feature-card"> | |
| <div class="feature-icon"> | |
| <i class="fas fa-brain"></i> | |
| </div> | |
| <h3>ذكاء اصطناعي متقدم</h3> | |
| <p>نظام توصيات ذكي يحلل احتياجاتك ويقترح أفضل العقارات المناسبة لك</p> | |
| </div> | |
| <div class="feature-card"> | |
| <div class="feature-icon"> | |
| <i class="fas fa-vr-cardboard"></i> | |
| </div> | |
| <h3>جولات افتراضية 360°</h3> | |
| <p>استكشف العقارات من منزلك بتقنية الواقع الافتراضي المتقدمة</p> | |
| </div> | |
| <div class="feature-card"> | |
| <div class="feature-icon"> | |
| <i class="fas fa-chart-line"></i> | |
| </div> | |
| <h3>تحليل استثماري</h3> | |
| <p>تقارير مفصلة عن العائد على الاستثمار والنمو المتوقع للمنطقة</p> | |
| </div> | |
| <div class="feature-card"> | |
| <div class="feature-icon"> | |
| <i class="fas fa-shield-alt"></i> | |
| </div> | |
| <h3>توثيق آمن</h3> | |
| <p>معاملات آمنة وموثقة بالتعاون مع الجهات الرسمية</p> | |
| </div> | |
| <div class="feature-card"> | |
| <div class="feature-icon"> | |
| <i class="fas fa-users"></i> | |
| </div> | |
| <h3>مجتمع المستثمرين</h3> | |
| <p>انضم إلى أكبر مجتمع للمستثمرين العقاريين في المملكة</p> | |
| </div> | |
| <div class="feature-card"> | |
| <div class="feature-icon"> | |
| <i class="fas fa-gavel"></i> | |
| </div> | |
| <h3>خدمات قانونية</h3> | |
| <p>فريق قانوني متخصص لمساعدتك في جميع الإجراءات</p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Properties Section --> | |
| <section class="properties" id="properties"> | |
| <div class="container"> | |
| <h2 class="section-title">عقارات مميزة</h2> | |
| <div class="filter-bar"> | |
| <button class="filter-btn active" onclick="filterProperties('all')">الكل</button> | |
| <button class="filter-btn" onclick="filterProperties('villa')">فلل</button> | |
| <button class="filter-btn" onclick="filterProperties('apartment')">شقق</button> | |
| <button class="filter-btn" onclick="filterProperties('land')">أراضي</button> | |
| <button class="filter-btn" onclick="filterProperties('commercial')">تجاري</button> | |
| </div> | |
| <div class="properties-grid" id="propertiesGrid"> | |
| <!-- Property Cards --> | |
| <div class="property-card show" data-type="villa"> | |
| <div class="property-image"> | |
| <img src="https://picsum.photos/seed/villa1/400/250.jpg" alt="فيلا فاخرة"> | |
| <span class="property-badge">جديد</span> | |
| <div class="property-favorite" onclick="toggleFavorite(this)"> | |
| <i class="far fa-heart"></i> | |
| </div> | |
| </div> | |
| <div class="property-details"> | |
| <div class="property-price">2,500,000 ريال</div> | |
| <div class="property-location"> | |
| <i class="fas fa-map-marker-alt"></i> | |
| الرياض، حي النخيل | |
| </div> | |
| <div class="property-features"> | |
| <div class="property-feature"> | |
| <i class="fas fa-bed"></i> | |
| <span>4 غرف</span> | |
| </div> | |
| <div class="property-feature"> | |
| <i class="fas fa-bath"></i> | |
| <span>3 حمامات</span> | |
| </div> | |
| <div class="property-feature"> | |
| <i class="fas fa-ruler-combined"></i> | |
| <span>350 م²</span> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="property-card show" data-type="apartment"> | |
| <div class="property-image"> | |
| <img src="https://picsum.photos/seed/apartment1/400/250.jpg" alt="شقة عصرية"> | |
| <span class="property-badge">مميز</span> | |
| <div class="property-favorite" onclick="toggleFavorite(this)"> | |
| <i class="far fa-heart"></i> | |
| </div> | |
| </div> | |
| <div class="property-details"> | |
| <div class="property-price">850,000 ريال</div> | |
| <div class="property-location"> | |
| <i class="fas fa-map-marker-alt"></i> | |
| جدة، حي الروضة | |
| </div> | |
| <div class="property-features"> | |
| <div class="property-feature"> | |
| <i class="fas fa-bed"></i> | |
| <span>3 غرف</span> | |
| </div> | |
| <div class="property-feature"> | |
| <i class="fas fa-bath"></i> | |
| <span>2 حمامات</span> | |
| </div> | |
| <div class="property-feature"> | |
| <i class="fas fa-ruler-combined"></i> | |
| <span>180 م²</span> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="property-card show" data-type="land"> | |
| <div class="property-image"> | |
| <img src="https://picsum.photos/seed/land1/400/250.jpg" alt="أرض استثمارية"> | |
| <span class="property-badge">فرصة ذهبية</span> | |
| <div class="property-favorite" onclick="toggleFavorite(this)"> | |
| <i class="far fa-heart"></i> | |
| </div> | |
| </div> | |
| <div class="property-details"> | |
| <div class="property-price">1,200,000 ريال</div> | |
| <div class="property-location"> | |
| <i class="fas fa-map-marker-alt"></i> | |
| الدمام، حي الشاطئ | |
| </div> | |
| <div class="property-features"> | |
| <div class="property-feature"> | |
| <i class="fas fa-ruler-combined"></i> | |
| <span>500 م²</span> | |
| </div> | |
| <div class="property-feature"> | |
| <i class="fas fa-road"></i> | |
| <span>30m شارع</span> | |
| </div> | |
| <div class="property-feature"> | |
| <i class="fas fa-warehouse"></i> | |
| <span>سكني</span> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="property-card show" data-type="commercial"> | |
| <div class="property-image"> | |
| <img src="https://picsum.photos/seed/commercial1/400/250.jpg" alt="محل تجاري"> | |
| <span class="property-badge">موقع مميز</span> | |
| <div class="property-favorite" onclick="toggleFavorite(this)"> | |
| <i class="far fa-heart"></i> | |
| </div> | |
| </div> | |
| <div class="property-details"> | |
| <div class="property-price">3,000,000 ريال</div> | |
| <div class="property-location"> | |
| <i class="fas fa-map-marker-alt"></i> | |
| الرياض، شارع الملك فهد | |
| </div> | |
| <div class="property-features"> | |
| <div class="property-feature"> | |
| <i class="fas fa-ruler-combined"></i> | |
| <span>200 م²</span> | |
| </div> | |
| <div class="property-feature"> | |
| <i class="fas fa-store"></i> | |
| <span>دور أرضي</span> | |
| </div> | |
| <div class="property-feature"> | |
| <i class="fas fa-parking"></i> | |
| <span>موقف سيارات</span> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="property-card show" data-type="villa"> | |
| <div class="property-image"> | |
| <img src="https://picsum.photos/seed/villa2/400/250.jpg" alt="فيلا حديثة"> | |
| <span class="property-badge">فاخر</span> | |
| <div class="property-favorite" onclick="toggleFavorite(this)"> | |
| <i class="far fa-heart"></i> | |
| </div> | |
| </div> | |
| <div class="property-details"> | |
| <div |