/* تنسيقات الأقسام العامة */
.home-section { padding: 80px 20px; text-align: center; }
.bg-light { background-color: #f8fafc; }
.bg-white { background-color: #ffffff; }
.section-title { color: #1e293b; font-size: 2.2em; margin-bottom: 15px; font-weight: bold; }
.section-subtitle { color: #64748b; font-size: 1.1em; margin-bottom: 50px; max-width: 700px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.container-custom { max-width: 1200px; margin: 0 auto; }

/* شبكة النصوص (للأمان وكيف نعمل) */
.text-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; text-align: start; }
.text-card { background: #fff; padding: 30px; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); border: 1px solid #f1f5f9; }
.text-card h3 { color: #10b981; margin-top: 0; font-size: 1.3em; margin-bottom: 15px; }
.text-card p { color: #475569; line-height: 1.7; margin: 0; }

/* المميزات */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.feature-card { background: #ffffff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.05); transition: transform 0.3s; text-align: start; border: 1px solid #f1f5f9; }
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.feature-img { width: 100%; height: 220px; object-fit: cover; }
.feature-body { padding: 25px; }
.feature-body h3 { color: #1e293b; margin-top: 0; margin-bottom: 15px; font-size: 1.3em; }
.feature-body p { color: #64748b; line-height: 1.6; margin: 0 0 20px 0; font-size: 0.95em; }

/* الشركاء */
.clients-grid { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 40px; }
.clients-grid img { max-width: 150px; max-height: 80px; object-fit: contain; filter: grayscale(100%) opacity(0.7); transition: all 0.3s; }
.clients-grid img:hover { filter: grayscale(0%) opacity(1); transform: scale(1.05); }

/* الآراء */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.test-card { background: #ffffff; padding: 30px; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); text-align: start; position: relative; }
.quote-icon { color: #e2e8f0; font-size: 2.5em; position: absolute; top: 20px; inset-inline-end: 20px; }
.quote-text { font-size: 1.1em; line-height: 1.7; color: #475569; font-style: italic; margin-bottom: 25px; position: relative; z-index: 1; }
.test-author { display: flex; align-items: center; gap: 15px; border-top: 1px solid #f1f5f9; padding-top: 20px; }
.test-author img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; }
.test-author h4 { margin: 0 0 5px 0; color: #1e293b; font-size: 1.1em; }
.test-author span { color: #94a3b8; font-size: 0.9em; }