document.addEventListener("DOMContentLoaded", function () { // --- SECTION 1: barmeen-installment --- const section1 = document.createElement("section"); section1.className = "barmeen-installment"; section1.innerHTML = `
بارمين

تقسيط مريح مع بارمين

قدّم طلبك الآن
`; const photosSlider = document.querySelector(".s-block--photos-slider"); if (photosSlider) { photosSlider.insertAdjacentElement("afterend", section1); } // --- SECTION 2: mahzam-section --- setTimeout(() => { if (document.querySelector('.mahzam-section')) return; const targetSection = document.querySelector('.barmeen-installment'); if (!targetSection) return; const mahzamSection = document.createElement('section'); mahzamSection.className = 'mahzam-section'; mahzamSection.innerHTML = `

ليش تختار بارمين؟

مو مجرد تقسيط، إحنا نسهّلها عليك صح

+0 عميل خدمناه على أكمل وجه في بارمين
+0 سنوات من الخبرة والاتقان في المجال والتقسيط
+ % 0 نسبة قبول طلبات التقسيط مما يزيد فرصتك في التقسيط
`; targetSection.insertAdjacentElement('afterend', mahzamSection); function animateCounters() { const counters = document.querySelectorAll('.count-up'); counters.forEach(counter => { const target = +counter.getAttribute('data-target'); const span = counter.querySelector('span'); let count = 0; const increment = target / 100; const updateCount = () => { count += increment; if (count < target) { span.textContent = Math.ceil(count).toLocaleString(); requestAnimationFrame(updateCount); } else { span.textContent = target.toLocaleString(); } }; updateCount(); }); } const observer = new IntersectionObserver((entries) => { entries.forEach(entry => { if (entry.isIntersecting) { document.querySelector('.mahzam-section').classList.add('visible'); animateCounters(); observer.disconnect(); } }); }, { threshold: 0.3 }); observer.observe(document.querySelector('.mahzam-section')); }, 300); // --- SECTION 3: الشريط المتحرك --- setTimeout(() => { const barmeenSection = document.querySelector('.mahzam-section'); if (!barmeenSection) return; const ticker = document.createElement('div'); ticker.className = 'pmarquee-wrapper'; const track = document.createElement('div'); track.className = 'pmarquee-track'; const message = 'قسّط أي جهاز بخاطرك ابتداءًا من 200 ريال'; for (let i = 0; i < 30; i++) { const span = document.createElement('span'); span.className = 'pmarquee-text'; span.textContent = message; track.appendChild(span); } ticker.appendChild(track); barmeenSection.insertAdjacentElement('afterend', ticker); }, 600); // --- SECTION 4: خدمات Wow --- setTimeout(() => { const section = document.createElement("section"); section.className = "wow-features"; section.innerHTML = `
🚀

توصيل سريع

سرعة في التوصيل بدون تأخير لأي مدينة داخل المملكة.

اطلب الآن
🛡️

ضمان حقيقي سنتين

منتجات أصلية 100% بضمان شامل ضد العيوب.

اطلب الآن
📞

دعم 24 ساعة

فريق دعم جاهز يرد عليك فورًا عبر كل القنوات.

اطلب الآن
`; const target = document.querySelector(".pmarquee-wrapper"); if (target) target.insertAdjacentElement("afterend", section); }, 900); // --- SECTION 5: barmeen-categories --- setTimeout(() => { const section = document.createElement("section"); section.className = "barmeen-categories"; section.innerHTML = `

بارمين مو بس تقسيط، إحنا نسهّلها عليك صح

بارمين صار يوفّر جميع الاكسسوارات والأجهزة بكل طرق الدفع وبأسعار خيالية

أيقونة الجوالات

الجوالات

أيقونة التابلت

التابلت

أيقونة قيمنق

البلايستيشن والبي سي قيمنق

`; const target = document.querySelector(".wow-features"); if (target) { target.insertAdjacentElement("afterend", section); const cards = section.querySelectorAll('.barmeen-card'); const observer = new IntersectionObserver((entries) => { entries.forEach(entry => { if (entry.isIntersecting) { cards.forEach(card => card.classList.add('active')); observer.disconnect(); } }); }, { threshold: 0.3 }); observer.observe(section); } }, 1200); });