<!-- SEO Meta Tags --><title>Wadi Halfa Branches | Sales Outlets in Saudi Arabia </title><meta name="description" content="Discover all Wadi Halfa branches in Saudi Arabia. Locations of outlets in Riyadh, Jeddah, Mecca, Dammam, and Al-Ahsa, with directions via Google Maps and direct communication via WhatsApp."><meta name="keywords" content="Wadi Halfa, Wadi Halfa branches, Wadi Halfa sales outlets, Wadi Halfa charcoal, Wadi Halfa firewood, Wadi Halfa branches Riyadh, Wadi Halfa branches Jeddah, Wadi Halfa branches Dammam, Wadi Halfa WhatsApp">
Wadi Halfa branches on the map
You can now easily find all Wadi Halfa branches spread across various cities in the Kingdom.
The following map shows our locations, with directions directly available on Google Maps or via WhatsApp.
<!-- الخريطة -->
<!-- زر فتح الخريطة (كمبيوتر فقط) -->
<!-- زر أقرب فرع (جوال فقط) -->
<button
style="background:#f04e35; color:#fff; padding:10px 20px; border-radius:6px; border:none; font-size:15px; cursor:pointer;">Find the nearest branch</button>
<!-- قائمة الفروع -->
<!-- الرياض -->
<!-- جدة -->
<!-- مكة -->
<!-- الدمام -->
<!-- الأحساء -->
<!-- Popup --><!-- نص SEO -->
Wadi Halfa branches are spread across the Kingdom's major cities: Riyadh, Jeddah, Mecca, Dammam, and Al-Ahsa , providing the finest charcoal, firewood , and distinctive hospitality products.
We always strive to be closer to you. Whether you're looking for our outlets in the central, western, or eastern regions , you can easily reach us via the map above or contact us directly via WhatsApp.
<!-- تحسين الموبايل --><style>
@media(max-width:600px){
.branch-card a {display:block !important; width:100% !important; margin:6px 0 !important;}
.desktop-only {display:none;}
}
@media(min-width:601px){
.mobile-only {display:none;}
}
</style><!-- JavaScript --> {
const userLat = position.coords.latitude;
const userLng = position.coords.longitude;
let nearest = null, minDistance = Infinity;
branches.forEach(branch => {
const dist = getDistance(userLat, userLng, branch.lat, branch.lng);
if (dist < minDistance) {minDistance = dist; nearest = branch;}
});
if (nearest) {
document.getElementById("popup-title").innerText = "أقرب فرع لك هو: " + nearest.name;
document.getElementById("popup-link").href = nearest.maps;
const message = encodeURIComponent("مرحباً ، أود الاستفسار من " + nearest.name);
document.getElementById("popup-whatsapp").href = "https://wa.me/" + nearest.whatsapp + "?text=" + message;
document.getElementById("popup").style.display = "flex";
}
}, () => {alert("تعذر الحصول على موقعك. الرجاء تفعيل GPS.");});
} else {alert("المتصفح لا يدعم تحديد الموقع.");}
}
function closePopup() {
document.getElementById("popup").style.display = "none";
}
function getDistance(lat1, lon1, lat2, lon2) {
const R = 6371;
const dLat = (lat2-lat1) * Math.PI/180, dLon = (lon2-lon1) * Math.PI/180;
const a = 0.5 - Math.cos(dLat)/2 + Math.cos(lat1*Math.PI/180) * Math.cos(lat2*Math.PI/180) * (1-Math.cos(dLon))/2;
return R * 2 * Math.asin(Math.sqrt(a));
}