<footer class="site-footer">

    <div class="site-footer__main">

        <!-- تعريف ثرا -->
        <div class="footer-brand">

            <a
                href="/index.php"
                class="footer-logo"
                aria-label="ثرا للمعارض والمؤتمرات"
            >

                <span
                    class="footer-logo__icon"
                    aria-hidden="true"
                >
                    ث
                </span>

                <span class="footer-logo__text">

                    <strong>ثرا</strong>

                    <small>
                        للمعارض والمؤتمرات
                    </small>

                </span>

            </a>

            <p>
                نصنع تجارب متكاملة في تنظيم المعارض والمؤتمرات
                والفعاليات، بدءاً من الفكرة والتصميم وحتى التنفيذ
                والتشغيل والتوثيق.
            </p>

        </div>

        <!-- الروابط -->
        <div class="footer-column">

            <h3>روابط سريعة</h3>

            <div class="footer-links">

                <a href="/index.php">
                    الرئيسية
                </a>

                <a href="/services.php">
                    خدماتنا
                </a>

                <a href="/portfolio.php">
                    أعمالنا
                </a>

                <a href="/about.php">
                    عن ثرا
                </a>

                <a href="/contact.php">
                    تواصل معنا
                </a>

            </div>

        </div>

        <!-- الخدمات -->
        <div class="footer-column">

            <h3>خدماتنا</h3>

            <div class="footer-links">

                <a href="/services.php#events">
                    تنظيم الفعاليات
                </a>

                <a href="/services.php#booths">
                    تصميم وتنفيذ الأجنحة
                </a>

                <a href="/services.php#conferences">
                    المؤتمرات والملتقيات
                </a>

                <a href="/services.php#technical">
                    الإنتاج والتجهيز التقني
                </a>

                <a href="/services.php#media">
                    التصوير والتوثيق
                </a>

            </div>

        </div>

        <!-- التواصل -->
        <div class="footer-column">

            <h3>تواصل معنا</h3>

            <div class="footer-contact">

                <span>
                    المملكة العربية السعودية
                </span>

                <a href="mailto:info@thra.events">
                    info@thra.events
                </a>

                <a
                    href="/contact.php"
                    class="footer-contact-button"
                >
                    اطلب عرض سعر
                </a>

            </div>

        </div>

    </div>

    <!-- الحقوق -->
    <div class="site-footer__bottom">

        <div class="site-footer__bottom-inner">

            <p>
                جميع الحقوق محفوظة ©
                <?= date('Y') ?>
                ثرا للمعارض والمؤتمرات
            </p>

            <div class="footer-bottom-links">

                <a href="/privacy.php">
                    سياسة الخصوصية
                </a>

                <a href="/terms.php">
                    الشروط والأحكام
                </a>

            </div>

        </div>

    </div>

</footer>

<!-- ملف جافاسكربت الموقع مع كسر الكاش -->
<script
    src="/assets/js/site.js?v=20260712-4"
    defer
></script>

<?php
/**
 * ملفات JavaScript إضافية خاصة بكل صفحة
 */
if (!empty($extraJs)):

    $jsFiles = is_array($extraJs)
        ? $extraJs
        : [$extraJs];
?>

    <?php foreach ($jsFiles as $jsFile): ?>

        <?php
        $safeJsFile = htmlspecialchars(
            (string) $jsFile,
            ENT_QUOTES,
            'UTF-8'
        );
        ?>

        <script
            src="<?= $safeJsFile ?>"
            defer
        ></script>

    <?php endforeach; ?>

<?php endif; ?>

</body>
</html>