:root { --main-color: #065f46; --accent-color: #ea580c; --whatsapp-color: #25d366; }
body { font-family: 'Cairo', sans-serif; margin: 0; padding: 0; background-color: #f8fafc; color: #1e293b; line-height: 1.6; }
.header { background: var(--main-color); color: white; padding: 15px; text-align: center; position: sticky; top: 0; z-index: 100; border-bottom: 4px solid var(--accent-color); }

/* تنسيق قائمة التنقل الجديدة لربط الصفحات */
nav { background: #044e3a; text-align: center; padding: 10px; display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
nav a { color: white; text-decoration: none; font-weight: bold; font-size: 0.9rem; border: 1px solid rgba(255,255,255,0.2); padding: 5px 15px; border-radius: 20px; transition: 0.3s; }
nav a:hover, nav a.active { background: var(--accent-color); border-color: var(--accent-color); }

.hero { background: linear-gradient(rgba(6,95,70,0.8), rgba(6,95,70,0.8)), url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?auto=format&fit=crop&w=800&q=80'); background-size: cover; padding: 50px 20px; color: white; text-align: center; }
.hero h1 { font-size: 2rem; margin-bottom: 10px; }
.hero span { color: #fcd34d; }
.container { max-width: 1000px; margin: auto; padding: 20px; }
.btn-box { display: flex; flex-direction: column; gap: 15px; margin: 25px 0; }
.btn { padding: 18px; border-radius: 50px; text-decoration: none; font-weight: bold; font-size: 1.3rem; display: flex; align-items: center; justify-content: center; gap: 10px; transition: 0.3s; }
.btn-call { background: var(--accent-color); color: white; box-shadow: 0 4px 15px rgba(234, 88, 12, 0.4); }
.btn-whatsapp { background: var(--whatsapp-color); color: white; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
.section-title { color: var(--main-color); border-right: 5px solid var(--accent-color); padding-right: 15px; margin: 30px 0 15px; font-size: 1.5rem; }
.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
.grid-item { background: white; padding: 15px; border-radius: 10px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); border: 1px solid #e2e8f0; text-align: center; font-weight: bold; }
.seo-text { background: white; padding: 20px; border-radius: 15px; font-size: 1rem; color: #475569; text-align: justify; border: 1px solid #e2e8f0; margin-bottom: 20px; }
.area-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 15px; }
.tag { background: #e2e8f0; padding: 5px 12px; border-radius: 5px; font-size: 0.85rem; color: #1e293b; }
.bottom-article { background: transparent; padding: 10px; font-size: 0.95rem; color: #64748b; text-align: justify; border-top: 2px dashed #cbd5e1; margin-top: 20px; padding-top: 20px; }
.bottom-article h3 { color: #334155; font-size: 1.2rem; margin-bottom: 10px; }
footer { background: #1e293b; color: white; padding: 40px 20px 100px; text-align: center; }
.sticky-bottom { position: fixed; bottom: 0; width: 100%; display: flex; z-index: 1000; box-shadow: 0 -5px 15px rgba(0,0,0,0.1); }
.sticky-btn { flex: 1; padding: 20px; text-align: center; text-decoration: none; color: white; font-weight: bold; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; gap: 8px; }
@media (max-width: 600px) { .grid { grid-template-columns: 1fr; } }