<!DOCTYPE html>
<html lang="ar" dir="rtl">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css">
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-green: #1e386a;
            --primary-orange: #ed832d;
            --button-green: #1e386a;
            --dark: #1a1a1a;
            --gray: #000;
            --light: #f5f5f5;
            --white: #ffffff;
        }

        body {
            background: var(--white);
            color: var(--dark);
            line-height: 1.6;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, #db813b 0%, #db813b 100%);
            padding: 100px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(216, 230, 67, 0.15) 0%, transparent 70%);
            top: -250px;
            right: -250px;
            animation: float 8s ease-in-out infinite;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(237, 131, 45, 0.15) 0%, transparent 70%);
            bottom: -200px;
            left: -200px;
            animation: float 10s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(30px, 30px); }
        }

        .hero-content {
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero-badge {
            display: inline-block;
            background: var(--primary-green);
            color: var(--white);
            padding: 10px 25px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .hero-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            color: var(--white);
            font-weight: 900;
            margin-bottom: 20px;
            line-height: 1.1;
        }

        .hero-description {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 650px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* Story Section */
        .story-section {
            padding: 80px 20px;
            background: var(--white);
            margin-top:-20px;
        }

        .story-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .story-content h2 {
            font-size: clamp(2rem, 4vw, 2.8rem);
            color: var(--button-green);
            font-weight: 800;
            margin-bottom: 25px;
        }

        .story-content p {
            font-size: 1.1rem;
            color: var(--gray);
            line-height: 1.9;
            margin-bottom: 20px;
        }

        .story-image-wrapper {
            position: relative;
        }

        .story-image {
            width: 100%;
            height: auto;
            border-radius: 25px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .story-badge {
            position: absolute;
            bottom: 30px;
            right: 30px;
            background: var(--primary-orange);
            color: var(--white);
            padding: 20px 30px;
            border-radius: 15px;
            font-size: 1.1rem;
            font-weight: 700;
            box-shadow: 0 10px 30px rgba(237, 131, 45, 0.4);
        }

        /* Values Section */
        .values-section {
            padding: 80px 20px;
            background: var(--light);
        }

        .values-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-tag {
            display: inline-block;
            background: var(--primary-orange);
            color: var(--white);
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 2.8rem);
            color: var(--button-green);
            font-weight: 800;
            margin-bottom: 15px;
        }

        .section-description {
            font-size: 1.1rem;
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .value-card {
            background: var(--white);
            padding: 40px 35px;
            border-radius: 25px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            border: 3px solid transparent;
        }

        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            border-color: var(--primary-green);
        }

        .value-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, var(--primary-green), var(--primary-orange));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 2.2rem;
            margin: 0 auto 25px;
            transition: all 0.4s ease;
        }

        .value-card:hover .value-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .value-card h3 {
            font-size: 1.5rem;
            color: var(--button-green);
            margin-bottom: 15px;
            font-weight: 700;
        }

        .value-card p {
            font-size: 1.05rem;
            color: var(--gray);
            line-height: 1.8;
        }

        /* Mission Section */
        .mission-section {
            padding: 80px 20px;
            background: var(--white);
        }

        .mission-container {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        .mission-content {
            background: linear-gradient(135deg, #db813b, #db813b);
            padding: 60px 50px;
            border-radius: 30px;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .mission-content::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(216, 230, 67, 0.2) 0%, transparent 70%);
            top: -100px;
            right: -100px;
        }

        .mission-icon {
            width: 100px;
            height: 100px;
            background: var(--primary-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 2.5rem;
            margin: 0 auto 30px;
            position: relative;
            z-index: 1;
        }

        .mission-content h2 {
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 800;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
            color:#fff;
        }

        .mission-content p {
            font-size: 1.2rem;
            line-height: 1.9;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.95;
            position: relative;
            z-index: 1;
        }

        /* Stats Section */
        .stats-section {
            padding: 80px 20px;
            background: linear-gradient(135deg, var(--primary-green) 0%, #1e386a 100%);
            margin-top:-20px;
        }

        .stats-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
        }

        .stat-card {
            text-align: center;
            padding: 30px;
        }

        .stat-number {
            font-size: clamp(3rem, 5vw, 3.5rem);
            font-weight: 900;
            color: var(--white);
            margin-bottom: 10px;
            line-height: 1;
        }

        .stat-label {
            font-size: 1rem;
            color: var(--white);
            font-weight: 600;
        }

        /* Team Section */
        .team-section {
            padding: 80px 20px;
            background: var(--white);
            margin-top:-20px;
        }

        .team-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .team-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
        }

        .team-intro h2 {
            font-size: clamp(2rem, 4vw, 2.8rem);
            color: var(--button-green);
            font-weight: 800;
            margin-bottom: 20px;
        }

        .team-intro p {
            font-size: 1.1rem;
            color: var(--gray);
            line-height: 1.8;
        }

        .team-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .team-feature {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 24px;
            background: var(--light);
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .team-feature:hover {
            background: var(--white);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }

        .team-feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-green), var(--primary-orange));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .team-feature-content h4 {
            font-size: 1.2rem;
            color: var(--button-green);
            margin-bottom: 10px;
            font-weight: 700;
        }

        .team-feature-content p {
            font-size: 0.8rem;
            color: var(--gray);
            line-height: 1.7;
        }

        /* CTA Section */
        .cta-section {
            padding: 80px 20px;
            background: linear-gradient(135deg, var(--primary-green) 0%, #1e386a 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
            margin-top:-20px;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(216, 230, 67, 0.15) 0%, transparent 70%);
            top: -200px;
            right: -200px;
        }

        .cta-container {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .cta-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 900;
            color: var(--white);
            margin-bottom: 20px;
        }

        .cta-description {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 35px;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 20px 45px;
            border: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .cta-button-primary {
            background: var(--primary-orange);
            color: var(--white);
            box-shadow: 0 10px 30px rgba(237, 131, 45, 0.4);
        }

        .cta-button-primary:hover {
            background: #d47428;
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(237, 131, 45, 0.5);
        }

        .cta-button-secondary {
            background: var(--white);
            color: var(--button-green);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
        }

        .cta-button-secondary:hover {
            background: var(--light);
            transform: scale(1.05);
        }

        @media (max-width: 968px) {
            .story-container {
                grid-template-columns: 1fr;
            }

            .story-image-wrapper {
                order: -1;
            }

            .values-grid {
                grid-template-columns: 1fr;
            }

            .team-features {
                grid-template-columns: 1fr;
            }

            .mission-content {
                padding: 50px 30px;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .cta-button {
                width: 100%;
                max-width: 300px;
            }
        }
    </style>
</head>
<body style="row-gap:0;">
    <section class="hero-section">
        <div class="hero-content">
            <span class="hero-badge">نبذه عنا</span>
            <h1 class="hero-title">فيل جريت ستور</h1>
            <p class="hero-description">
                رحلتك نحو حياة أفضل تبدأ من هنا. نحن وجهتك الموثوقة للمكملات الغذائية الأصلية ومنتجات العافية من يونيسيتي
            </p>
        </div>
    </section>

   <section class="story-section">
        <div class="story-container">
            <div class="story-content">
                <h2>من نحن</h2>
                <p>
                    <strong>فيل جريت ستور (Feel Great Store):</strong> نحن موزع مستقل ومعتمد لمنتجات شركة يونيسيتي (Unicity) العالمية في دولة الإمارات العربية المتحدة، ونعمل بموجب رقم العضوية المعتمد: <strong>54003481</strong>.
                </p>

                <p>
                    مهمتنا هي توفير نظام "فيل جريت" الأصلي لعملائنا في الإمارات ودول الخليج. وهو نظام غذائي طبيعي متكامل يركز على منتجين رئيسيين لدعم إدارة الوزن وتعزيز الطاقة، مع الحفاظ على مستويات السكر والأنسولين في الدم بشكل متوازن وصحي.
                </p>
  
                <p>
                    يعمل هذا النظام على كبح الشهية بين الوجبات وتقليل كمية الطعام المستهلكة، كما يتكامل بمرونة عالية مع نظام الصيام المتقطع 4-4-12. بالإضافة إلى ذلك، يساعد في تقليل امتصاص الكوليسترول والكربوهيدرات، مما يعزز الشعور بالشبع والحيوية طوال اليوم ونلتزم في متجرنا بالشفافية المطلقة لضمان الجودة والأصالة بنسبة 100%.
                </p>
                
                <div style="background: #fff3e0; padding: 15px; border-right: 5px solid var(--primary-orange); font-size: 0.9rem; margin-top: 20px;">
                    <strong>إخلاء مسؤولية قانوني:</strong> المنتجات المعروضة هي مكملات غذائية وليست مخصصة لتشخيص أو علاج أو الوقاية من أي أمراض. النتائج قد تختلف من فرد لآخر. ننصح دائماً باستشارة مقدم الرعاية الطبية قبل البدء في أي نظام مكملات.
                </div>
            </div>
            <div class="story-image-wrapper">
                <img src="https://feelgreatstore.com/wp-content/uploads/2025/11/feelgreat-package-aboutus-image.webp" alt="موزع معتمد ليونيسيتي" class="story-image">
                <div class="story-badge">موزع معتمد :54003481</div>
            </div>
        </div>
    </section>
   <section class="values-section">
        <div class="values-container">
            <div class="section-header">
                <span class="section-tag">التزاماتنا</span>
                <h2 class="section-title">لماذا تتسوق معنا؟</h2>
                <p class="section-description">
                    نحن نطبق معايير صارمة لضمان تجربة تسوق آمنة وموثوقة لكل عميل
                </p>
            </div>

            <div class="values-grid">
                <div class="value-card">
                    <div class="value-icon">
                        <i class="fas fa-certificate"></i>
                    </div>
                    <h3>منتجات أصلية 100%</h3>
                    <p>نضمن أن جميع منتجات Unimate و Bios Life هي منتجات أصلية صادرة عن شركة يونيسيتي الأم.</p>
                </div>

                <div class="value-card">
                    <div class="value-icon">
                        <i class="fas fa-truck-loading"></i>
                    </div>
                    <h3>بيانات تجارية واضحة</h3>
                    <p>نلتزم بمعايير التجارة الإلكترونية الآمنة عبر توفير قنوات تواصل مباشرة (هاتف، بريد إلكتروني، وعنوان فيزيائي)، مع سياسات شحن واسترجاع معلنة وواضحة تضمن حقوق المستهلك بالكامل.</p>
                </div>

                <div class="value-card">
                    <div class="value-icon">
                        <i class="fas fa-undo-alt"></i>
                    </div>
                    <h3>سياسة استرجاع عادلة</h3>
                    <p>نضمن حق العميل في الاستبدال أو الاسترجاع وفقاً للشروط المعلنة بوضوح في صفحة السياسات الخاصة بنا.</p>
                </div>
            </div>
        </div>
    </section>

    <section class="mission-section">
        <div class="mission-container">
            <div class="mission-content">
                <div class="mission-icon">
                    <i class="fas fa-bullseye"></i>
                </div>
                <h2>رؤيتنا ورسالتنا</h2>
                <p>
                    نسعى لأن نكون الخيار الأول في الإمارات والخليج للمكملات الغذائية ومنتجات العافية الأصلية لدعم إدارة الوزن بطرق صحية وطبيعية. رسالتنا هي المساهمة في نشر الوعي حول نمط الحياة المتوازن ونظام الصيام المتقطع وتوفير مكملات غذائية عالية الجودة لدعم الأهداف الغذائية لعملائنا، مع الالتزام التام بالمعايير الصحية والرقابية المعمول بها.
                </p>
            </div>
        </div>
    </section>

    <section class="stats-section">
        <div class="stats-container">
            <div class="stats-grid">
                <div class="stat-card">
                    <div class="stat-number">6</div>
                   <div class="stat-label">
    دول نخدمها في الخليج
</div>
                </div>
                <div class="stat-card">
                    <div class="stat-number">100%</div>
                    <div class="stat-label">موزع معتمد وموثوق</div>
                </div>
                <div class="stat-card">
                    <div class="stat-number">14</div>
                    <div class="stat-label">يوماً سياسة استرجاع مرنة</div>
                </div>
                <div class="stat-card">
                    <div class="stat-number">6</div>
                    <div class="stat-label">أيام دعم عملاء أسبوع</div>
                </div>
            </div>
        </div>
    </section>

    <section class="team-section">
        <div class="team-container">
            <div class="team-intro">
                <h2>فريقنا المتميز</h2>
                <p>
                    فريق فيل جريت ستور مكون من خبراء متحمسين للصحة والعافية، يعملون بتفانٍ لتقديم أفضل تجربة تسوق لك
                </p>
            </div>

            <div class="team-features">
                <div class="team-feature">
                    <div class="team-feature-icon">
                        <i class="fas fa-user-tie"></i>
                    </div>
                    <div class="team-feature-content">
                        <h4>خبرة واحترافية</h4>
                        <p>فريق ذو خبرة واسعة في مجال المكملات الغذائية والعافية</p>
                    </div>
                </div>

                <div class="team-feature">
                    <div class="team-feature-icon">
                        <i class="fas fa-headset"></i>
                    </div>
                    <div class="team-feature-content">
                        <h4>دعم متواصل</h4>
                        <p>جاهزون للإجابة على استفساراتك ومساعدتك</p>
                    </div>
                </div>

                <div class="team-feature">
                    <div class="team-feature-icon">
                        <i class="fas fa-handshake"></i>
                    </div>
                    <div class="team-feature-content">
                        <h4>التزام بالتميز</h4>
                        <p>نسعى دائماً لتقديم أفضل خدمة وتجربة تسوق مميزة</p>
                    </div>
                </div>

                <div class="team-feature">
                    <div class="team-feature-icon">
                        <i class="fas fa-smile"></i>
                    </div>
                    <div class="team-feature-content">
                        <h4>شغف بالصحة</h4>
                        <p>نؤمن بما نقدمه ونحرص على مساعدتك في رحلتك الصحية</p>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <section class="cta-section">
        <div class="cta-container">
            <h2 class="cta-title">انضم إلى عائلة فيل جريت</h2>
            <p class="cta-description">
                ابدأ رحلتك الصحية اليوم مع منتجاتنا الأصلية من يونيسيتي
            </p>
            <div class="cta-buttons">
                <a href="https://feelgreatstore.com/product-category/feelgreat/" class="cta-button cta-button-primary">
                    <i class="fas fa-shopping-cart"></i>
                    تسوق الآن
                </a>
                <a href="https://feelgreatstore.com/contact-us/" class="cta-button cta-button-secondary">
                    <i class="fas fa-phone"></i>
                    تواصل معنا
                </a>
            </div>
        </div>
    </section>

    <script>
        // Smooth scroll
        document.querySelectorAll('a[href^="#"]').forEach(anchor => {
            anchor.addEventListener('click', function (e) {
                e.preventDefault();
                const target = document.querySelector(this.getAttribute('href'));
                if (target) {
                    target.scrollIntoView({
                        behavior: 'smooth',
                        block: 'start'
                    });
                }
            });
        });

        // Animation on scroll
        const observerOptions = {
            threshold: 0.1,
            rootMargin: '0px 0px -50px 0px'
        };

        const observer = new IntersectionObserver((entries) => {
            entries.forEach(entry => {
                if (entry.isIntersecting) {
                    entry.target.style.opacity = '1';
                    entry.target.style.transform = 'translateY(0)';
                }
            });
        }, observerOptions);

        document.querySelectorAll('.value-card, .team-feature, .stat-card').forEach(card => {
            card.style.opacity = '0';
            card.style.transform = 'translateY(30px)';
            card.style.transition = 'all 0.6s ease';
            observer.observe(card);
        });

        // Counter animation
        const counters = document.querySelectorAll('.stat-number');
        const speed = 200;

        counters.forEach(counter => {
            const animate = () => {
                const value = counter.getAttribute('data-target') || counter.innerText;
                const target = parseInt(value.replace(/\D/g, ''));
                const data = parseInt(counter.innerText.replace(/\D/g, ''));
                const time = target / speed;
                
                if (data < target) {
                    counter.innerText = Math.ceil(data + time) + (value.includes('+') ? '+' : '') + (value.includes('%') ? '%' : '');
                    setTimeout(animate, 1);
                } else {
                    counter.innerText = value;
                }
            };

            const counterObserver = new IntersectionObserver((entries) => {
                entries.forEach(entry => {
                    if (entry.isIntersecting) {
                        counter.setAttribute('data-target', counter.innerText);
                        counter.innerText = '0';
                        animate();
                        counterObserver.unobserve(counter);
                    }
                });
            });

            counterObserver.observe(counter);
        });
    </script>
</body>
</html>