File size: 24,239 Bytes
771f178 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 | <!DOCTYPE html>
<html lang="ar" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>خدمات داراك | Darak Services</title>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;800;900&family=Outfit:wght@300;400;600;800;900&display=swap" rel="stylesheet">
<style>
:root {
--bg: #05070f;
--panel: rgba(13, 17, 32, 0.75);
--panel-2: rgba(20, 25, 45, 0.6);
--border: rgba(255, 255, 255, 0.08);
--border-strong: rgba(212, 167, 44, 0.3);
--gold: #d4a72c;
--gold-light: #fbe58a;
--text: #ffffff;
--muted: #94a3b8;
--shadow-gold: 0 8px 25px rgba(212,167,44,0.3);
--font-ar: 'Cairo', sans-serif;
--font-en: 'Outfit', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: var(--font-ar);
background-color: var(--bg);
color: var(--text);
min-height: 100vh;
display: flex;
flex-direction: column;
overflow-x: hidden;
}
.eng { font-family: var(--font-en); }
/* Background Glows */
.bg-glow {
position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -2; pointer-events: none;
background:
radial-gradient(600px 400px at 15% 10%, rgba(212,167,44,0.06), transparent 60%),
radial-gradient(700px 500px at 85% 20%, rgba(59,130,246,0.05), transparent 60%),
radial-gradient(900px 600px at 50% 100%, rgba(212,167,44,0.04), transparent 60%);
}
/* Animations */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes shimmerSweep { 0% { left: -100%; } 100% { left: 200%; } }
@keyframes pulseGlow { 0%, 100% { opacity: 0.5; transform: scale(1); } 50% { opacity: 1; transform: scale(1.05); } }
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
/* Header */
header {
display: flex; align-items: center; justify-content: space-between;
padding: 8px 36px;
background: rgba(5,7,15,0.7); backdrop-filter: blur(25px) saturate(180%);
border-bottom: 1px solid rgba(212,167,44,0.15);
box-shadow: 0 4px 30px rgba(0,0,0,0.5);
height: 55px; flex-shrink: 0; z-index: 50; position: sticky; top: 0;
}
.logo-block { display: flex; flex-direction: row; align-items: center; gap: 8px; line-height: 1; }
.logo-ar { font-size: 21px; font-weight: 900; color: var(--gold); letter-spacing: .5px; }
.logo-en { font-size: 9.5px; letter-spacing: 4px; color: var(--muted); margin-top: 2px; }
.main-nav { display: flex; align-items: center; gap: 6px; background: rgba(13,17,32,0.7); backdrop-filter: blur(25px); border: 1px solid rgba(255,255,255,0.06); border-radius: 50px; padding: 4px; }
.main-nav a { color: var(--text); font-size: 12px; font-weight: 700; padding: 8px 16px; border-radius: 50px; transition: all .3s ease; position: relative; text-decoration: none; }
.main-nav a::after { content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%); width: 0; height: 2px; background: var(--gold); transition: width .3s ease; border-radius: 2px; }
.main-nav a:hover::after { width: 60%; }
.main-nav a:hover { color: var(--gold); background: rgba(212,167,44,0.08); }
.main-nav a.active { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #14121a; box-shadow: 0 0 15px rgba(212,167,44,0.4); }
.main-nav a.active::after { display: none; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.icon-btn { width: 38px; height: 38px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: var(--panel); border: 1px solid var(--border); color: var(--muted); font-size: 14px; transition: all .2s ease; text-decoration: none; cursor: pointer; }
.icon-btn:hover { color: var(--gold); border-color: var(--border-strong); transform: translateY(-2px); }
.add-property-btn { display: inline-flex; align-items: center; gap: 8px; padding: 9px 18px; border-radius: 999px; background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #14121a; font-weight: 800; font-size: 13.5px; box-shadow: var(--shadow-gold); transition: transform .2s ease, filter .2s ease; position: relative; overflow: hidden; text-decoration: none; }
.add-property-btn::after { content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent); animation: shimmerSweep 3s infinite; }
.add-property-btn:hover { transform: translateY(-2px); filter: brightness(1.06); }
/* Footer */
.main-footer { padding: 6px 36px; border-top: 1px solid rgba(212,167,44,0.15); display: flex; align-items: center; justify-content: space-between; flex-wrap: nowrap; gap: 16px; height: 35px; flex-shrink: 0; background: rgba(5,7,15,0.85); z-index: 50; margin-top: auto; }
.footer-brand { font-size: 12px; color: var(--muted); white-space: nowrap; }
.footer-brand .eng { color: var(--gold); font-weight: 800; }
.footer-links { display: flex; gap: 18px; flex-wrap: nowrap; }
.footer-links a { font-size: 11.5px; color: var(--muted); transition: color .2s ease; white-space: nowrap; text-decoration: none; }
.footer-links a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 8px; }
.footer-social a { width: 30px; height: 30px; border-radius: 50%; background: var(--panel); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 13px; transition: all .2s ease; text-decoration: none; }
.footer-social a:hover { color: var(--gold-light); border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 5px 15px rgba(212,167,44,0.3); }
/* Main Content */
main {
flex: 1;
display: flex;
flex-direction: column;
}
/* Hero Section */
.hero-section {
position: relative;
height: 70vh;
min-height: 600px;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
overflow: hidden;
padding: 0 20px;
}
.hero-bg {
position: absolute;
top: 0; left: 0; width: 100%; height: 100%;
background: url('assets/bg_cityscape_v2_1781334786259.png') center/cover no-repeat;
z-index: -1;
opacity: 0.4;
mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
-webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
}
.hero-glow {
position: absolute;
top: 50%; left: 50%; transform: translate(-50%, -50%);
width: 600px; height: 600px;
background: radial-gradient(circle, rgba(212,167,44,0.15) 0%, transparent 70%);
z-index: 0; pointer-events: none;
animation: pulseGlow 4s infinite alternate ease-in-out;
}
.hero-content {
max-width: 800px;
z-index: 1;
animation: fadeInUp 1s ease forwards;
}
.badge {
display: inline-flex; align-items: center; gap: 8px;
padding: 6px 16px; border-radius: 50px;
background: rgba(212,167,44,0.1); border: 1px solid rgba(212,167,44,0.3);
color: var(--gold-light); font-size: 13px; font-weight: 700;
margin-bottom: 24px;
box-shadow: 0 0 20px rgba(212,167,44,0.2);
}
.badge i { animation: pulseGlow 2s infinite; }
.hero-title {
font-size: 48px; font-weight: 900; line-height: 1.2;
background: linear-gradient(to bottom right, #fff, #94a3b8);
-webkit-background-clip: text; -webkit-text-fill-color: transparent;
margin-bottom: 24px;
}
.hero-title span {
background: linear-gradient(135deg, var(--gold-light), var(--gold));
-webkit-background-clip: text; -webkit-text-fill-color: transparent;
display: block; font-size: 64px; margin-top: 8px; filter: drop-shadow(0 4px 15px rgba(212,167,44,0.3));
}
.hero-desc {
font-size: 18px; color: var(--muted); line-height: 1.6; max-width: 600px; margin: 0 auto 40px; font-weight: 600;
}
.cta-btn {
display: inline-flex; align-items: center; justify-content: center; gap: 12px;
padding: 16px 36px; border-radius: 999px; font-size: 18px; font-weight: 800;
background: linear-gradient(135deg, var(--gold-light), var(--gold));
color: #14121a; text-decoration: none;
box-shadow: 0 15px 35px rgba(212,167,44,0.4), inset 0 0 0 1px rgba(255,255,255,0.4);
transition: all 0.3s ease; position: relative; overflow: hidden;
}
.cta-btn::after {
content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
animation: shimmerSweep 3s infinite;
}
.cta-btn:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 20px 45px rgba(212,167,44,0.6); }
/* Bento Grid Section */
.bento-section {
padding: 80px 36px;
max-width: 1400px;
margin: 0 auto;
}
.section-title {
text-align: center; font-size: 36px; font-weight: 900; color: var(--text); margin-bottom: 60px;
}
.section-title span { color: var(--gold); }
.bento-grid {
display: grid;
grid-template-columns: repeat(12, 1fr);
grid-template-rows: auto auto;
gap: 24px;
}
.bento-card {
background: linear-gradient(145deg, rgba(255,255,255,0.03), rgba(0,0,0,0.4));
backdrop-filter: blur(20px);
border: 1px solid rgba(255,255,255,0.05);
border-top: 1px solid rgba(212,167,44,0.2);
border-radius: 24px;
padding: 32px;
display: flex;
flex-direction: column;
position: relative;
overflow: hidden;
transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.bento-card:hover {
transform: translateY(-8px);
border-color: rgba(212,167,44,0.4);
box-shadow: 0 30px 60px rgba(0,0,0,0.8), inset 0 0 0 1px rgba(212,167,44,0.2);
}
.bento-card::before {
content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
background: radial-gradient(circle at top right, rgba(212,167,44,0.1), transparent 70%);
pointer-events: none; opacity: 0; transition: opacity 0.5s ease;
}
.bento-card:hover::before { opacity: 1; }
/* Specific Grid Placements */
.card-large { grid-column: span 8; }
.card-medium { grid-column: span 4; }
.card-full { grid-column: span 12; display: flex; flex-direction: row; align-items: center; gap: 40px; }
@media (max-width: 1000px) {
.card-large, .card-medium { grid-column: span 12; }
.card-full { flex-direction: column; text-align: center; }
}
.bento-icon {
width: 70px; height: 70px; border-radius: 20px;
background: linear-gradient(135deg, rgba(212,167,44,0.1), rgba(0,0,0,0.5));
border: 1px solid rgba(212,167,44,0.2);
display: flex; align-items: center; justify-content: center;
margin-bottom: 24px;
transition: transform 0.5s ease;
}
.bento-card:hover .bento-icon { transform: scale(1.1) rotate(-5deg); box-shadow: 0 10px 25px rgba(212,167,44,0.3); }
.bento-icon img { width: 40px; height: 40px; object-fit: contain; filter: drop-shadow(0 4px 6px rgba(0,0,0,0.5)); }
.bento-title { font-size: 24px; font-weight: 800; color: var(--gold-light); margin-bottom: 12px; }
.bento-desc { font-size: 15px; color: var(--muted); line-height: 1.6; }
.card-full .bento-content { flex: 1; }
.card-full .bento-visual { flex: 1; height: 300px; border-radius: 16px; background: rgba(0,0,0,0.3); overflow: hidden; position: relative; border: 1px solid rgba(255,255,255,0.05); }
.card-full .bento-visual img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; transition: opacity 0.5s ease; }
.bento-card:hover .bento-visual img { opacity: 1; transform: scale(1.05); }
/* Timeline Section */
.timeline-section {
padding: 100px 36px;
background: linear-gradient(to bottom, rgba(5,7,15,0) 0%, rgba(13,17,32,0.8) 50%, rgba(5,7,15,0) 100%);
position: relative;
}
.timeline-container {
max-width: 800px; margin: 0 auto; position: relative;
}
.timeline-container::before {
content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
width: 2px; height: 100%; background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}
.timeline-step {
display: flex; justify-content: flex-end; align-items: center; width: 50%; margin-bottom: 60px; position: relative; padding-left: 40px; padding-right: 0;
}
.timeline-step:nth-child(even) {
margin-left: auto; justify-content: flex-start; padding-right: 40px; padding-left: 0;
}
.timeline-dot {
width: 20px; height: 20px; border-radius: 50%; background: var(--gold);
position: absolute; top: 50%; transform: translateY(-50%); right: -10px;
box-shadow: 0 0 20px var(--gold); border: 4px solid var(--bg);
}
.timeline-step:nth-child(even) .timeline-dot { left: -10px; right: auto; }
.timeline-content {
background: rgba(13,17,32,0.8); backdrop-filter: blur(10px);
border: 1px solid rgba(255,255,255,0.05); border-radius: 16px; padding: 24px;
box-shadow: 0 10px 30px rgba(0,0,0,0.5); width: 100%;
transition: all 0.3s ease;
}
.timeline-step:hover .timeline-content { border-color: rgba(212,167,44,0.3); transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.7); }
.timeline-step:hover .timeline-dot { transform: translateY(-50%) scale(1.3); box-shadow: 0 0 30px var(--gold); transition: all 0.3s ease; }
.step-num { font-family: var(--font-en); font-size: 48px; font-weight: 900; color: rgba(212,167,44,0.1); position: absolute; top: -10px; right: 20px; z-index: 0; }
.timeline-step:nth-child(even) .step-num { left: 20px; right: auto; }
.step-title { font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 8px; position: relative; z-index: 1; }
.step-desc { font-size: 14px; color: var(--muted); line-height: 1.6; position: relative; z-index: 1; }
/* Bottom CTA */
.bottom-cta {
text-align: center; padding: 100px 20px; position: relative;
}
.bottom-cta h2 { font-size: 40px; font-weight: 900; margin-bottom: 30px; color: #fff; }
</style>
</head>
<body>
<div class="bg-glow"></div>
<!-- Header -->
<header>
<div class="logo-block">
<img src="logo.png" alt="Darak Logo" style="height:38px;width:auto;object-fit:contain; filter: drop-shadow(0 0 10px rgba(212,167,44,0.5));">
<span class="logo-ar" style="margin-right:6px;">داراك</span>
<span class="logo-en eng">DARAK</span>
</div>
<nav class="main-nav" aria-label="التنقل الرئيسي">
<a href="index.html" class="nav-link">الرئيسية</a>
<a href="explore.html" class="nav-link">العقارات</a>
<a href="onboarding.html" class="nav-link">المناطق</a>
<a href="services.html" class="nav-link active">الخدمات</a>
</nav>
<div class="header-actions">
<a href="login.html" class="icon-btn" aria-label="حسابي"><i class="fa-regular fa-user"></i></a>
<button class="icon-btn" aria-label="الإشعارات"><i class="fa-regular fa-bell"></i></button>
<button class="icon-btn" aria-label="المفضلة"><i class="fa-regular fa-heart"></i></button>
<a href="add-property.html" class="add-property-btn"><i class="fa-solid fa-plus"></i> أضف عقارك</a>
</div>
</header>
<main>
<!-- Hero Section -->
<section class="hero-section">
<div class="hero-bg"></div>
<div class="hero-glow"></div>
<div class="hero-content">
<div class="badge"><i class="fa-solid fa-wand-magic-sparkles"></i> الجيل الجديد من التكنولوجيا العقارية</div>
<h1 class="hero-title">أكثر من مجرد بحث...<br><span>مستشارك العقاري الذكي</span></h1>
<p class="hero-desc">يقدم داراك مجموعة متكاملة من خدمات الذكاء الاصطناعي التي تساعدك في البحث، المقارنة، التقييم، وحتى التصميم الداخلي بلمسة زر واحدة.</p>
<a href="#explore-services" class="cta-btn"><i class="fa-solid fa-rocket"></i> اكتشف الخدمات</a>
</div>
</section>
<!-- Bento Grid Section -->
<section id="explore-services" class="bento-section">
<h2 class="section-title reveal">خدمات <span>SaaS</span> المتكاملة</h2>
<div class="bento-grid">
<!-- Smart Search (Large) -->
<div class="bento-card card-large reveal d1">
<div class="bento-icon"><img src="assets/icon_house_1781332970134.png" alt="Smart Search"></div>
<h3 class="bento-title">البحث الذكي الدلالي</h3>
<p class="bento-desc">تحدث مع محرك البحث بلغتك الطبيعية. قل "أريد شقة قريبة من عملي في التجمع بها مسبح" وسيقوم الذكاء الاصطناعي بتحليل طلبك وعرض أدق النتائج في ثوانٍ، متجاوزاً فلاتر البحث التقليدية المعقدة.</p>
</div>
<!-- Property Valuation (Medium) -->
<div class="bento-card card-medium reveal d2">
<div class="bento-icon"><img src="assets/icon_chart_1781333002728.png" alt="Valuation"></div>
<h3 class="bento-title">التقييم الذكي للعقارات</h3>
<p class="bento-desc">احصل على تقييم دقيق وفوري لقيمة أي عقار بناءً على تحليل آلاف البيانات السوقية الحية، لضمان استثمار آمن.</p>
</div>
<!-- Interior Design (Full Width) -->
<div class="bento-card card-full reveal d3">
<div class="bento-content">
<div class="bento-icon"><img src="assets/icon_room_1781332981672.png" alt="Interior Design"></div>
<h3 class="bento-title">التصميم الداخلي بالذكاء الاصطناعي</h3>
<p class="bento-desc">ارفع صورة أي غرفة فارغة، وسيقوم داراك بتأثيثها وتشطيبها افتراضياً بعدة أنماط (مودرن، كلاسيك، بوهيمي) لتتخيل منزلك المستقبلي قبل الشراء.</p>
</div>
<div class="bento-visual">
<img src="assets/property_v2_3_1781334843026.png" alt="Interior Design Example">
</div>
</div>
<!-- Finishing Calculator (Medium) -->
<div class="bento-card card-medium reveal d4">
<div class="bento-icon"><img src="assets/icon_calculator_1781332992881.png" alt="Calculator"></div>
<h3 class="bento-title">حاسبة التشطيب والفرش</h3>
<p class="bento-desc">احسب تكلفة تشطيب وحدتك بدقة متناهية مع تحديثات فورية لأسعار الخامات والمصنعيات في السوق.</p>
</div>
<!-- Comparison (Large) -->
<div class="bento-card card-large reveal d5">
<div class="bento-icon"><img src="assets/icon_scales_1781333012031.png" alt="Comparison"></div>
<h3 class="bento-title">المقارنة الاستثمارية المعمقة</h3>
<p class="bento-desc">قارن بين عدة عقارات ليس فقط في المواصفات، بل في العائد الاستثماري المتوقع، معدل الإيجار السنوي، وتوقعات زيادة القيمة المستقبلية.</p>
</div>
</div>
</section>
<!-- Timeline Section -->
<section class="timeline-section">
<h2 class="section-title reveal">كيف يعمل نظام <span>داراك</span>؟</h2>
<div class="timeline-container">
<div class="timeline-step reveal">
<div class="timeline-dot"></div>
<div class="timeline-content">
<div class="step-num">01</div>
<h4 class="step-title">اسأل ببساطة</h4>
<p class="step-desc">اكتب طلبك أو تحدث صوتياً مع مساعد داراك. لا حاجة لملء نماذج طويلة.</p>
</div>
</div>
<div class="timeline-step reveal">
<div class="timeline-dot"></div>
<div class="timeline-content">
<div class="step-num">02</div>
<h4 class="step-title">تحليل الذكاء الاصطناعي</h4>
<p class="step-desc">يقوم النموذج بتحليل طلبك، ومطابقته مع السوق العقاري والميزانية المتاحة.</p>
</div>
</div>
<div class="timeline-step reveal">
<div class="timeline-dot"></div>
<div class="timeline-content">
<div class="step-num">03</div>
<h4 class="step-title">التخيل والتخطيط</h4>
<p class="step-desc">شاهد تصميمات افتراضية للوحدة، واحسب تكاليف التشطيب، وقارن العوائد.</p>
</div>
</div>
<div class="timeline-step reveal">
<div class="timeline-dot"></div>
<div class="timeline-content">
<div class="step-num">04</div>
<h4 class="step-title">اتخاذ القرار بثقة</h4>
<p class="step-desc">تواصل مع البائع أو المطور وأنت تمتلك كافة المعلومات والبيانات الداعمة.</p>
</div>
</div>
</div>
</section>
<!-- Bottom CTA -->
<section class="bottom-cta reveal">
<h2>جاهز لبدء رحلتك العقارية الذكية؟</h2>
<a href="index.html" class="cta-btn" style="font-size:20px; padding:20px 48px;"><i class="fa-regular fa-comment-dots"></i> تحدث مع داراك الآن</a>
</section>
</main>
<!-- Footer -->
<footer class="main-footer">
<div class="footer-brand"><span class="eng">Darak</span> <i class="fa-solid fa-sparkles" style="color:var(--gold);margin:0 4px;"></i> © 2026. جميع الحقوق محفوظة</div>
<div class="footer-links">
<a href="#">اتصل بنا</a>
<a href="#">شروط الاستخدام</a>
<a href="#">سياسة الخصوصية</a>
<a href="#">مدونة دارك</a>
<a href="#">من نحن</a>
</div>
<div class="footer-social">
<a href="#" aria-label="LinkedIn"><i class="fa-brands fa-linkedin-in"></i></a>
<a href="#" aria-label="Instagram"><i class="fa-brands fa-instagram"></i></a>
<a href="#" aria-label="YouTube"><i class="fa-brands fa-youtube"></i></a>
</div>
</footer>
<script>
// Scroll Reveal Animation Logic
document.addEventListener('DOMContentLoaded', () => {
const reveals = document.querySelectorAll('.reveal');
const revealOnScroll = () => {
const windowHeight = window.innerHeight;
const elementVisible = 150;
reveals.forEach(reveal => {
const elementTop = reveal.getBoundingClientRect().top;
if (elementTop < windowHeight - elementVisible) {
reveal.classList.add('active');
}
});
};
window.addEventListener('scroll', revealOnScroll);
revealOnScroll(); // Trigger on load
});
</script>
</body>
</html>
|