/* ============================================================================
   Hero Section الاحترافي - Professional Hero Section Styles
   تصميم حديث مع خلفية منتجات وتأثيرات احترافية
============================================================================ */

/* الحاوية الرئيسية - Main Container */
.hero-section-modern {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* الخلفية - Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Overlay داكن - Dark Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5, 25, 34, 0.85) 0%, rgba(10, 37, 51, 0.75) 100%);
    z-index: 2;
}

/* المحتوى - Content */
.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 100px 0;
}

/* الشعار/اللوجو - Logo */
.hero-logo {
    margin-bottom: 30px;
    animation: fadeInDown 1s ease;
}

.hero-logo img {
    width: 150px;
    height: auto;
    /* إزالة الشكل الدائري - No Circle Shape */
    /* إزالة الحدود - No Border */
    /* إزالة الخلفية - Transparent Background */
    /* ظل خفيف فقط - Light Shadow Only */
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.hero-logo img:hover {
    transform: scale(1.05);
}

/* اسم الموقع - Brand Name */
.hero-title {
    margin: 0 0 30px 0;
    /* زيادة المسافة العلوية بعد حذف اللوجو */
    padding-top: 40px;
    animation: fadeInUp 1s ease 0.2s both;
}

.brand-name {
    /* حجم أكبر بعد حذف اللوجو */
    font-size: 72px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: 3px;
    display: inline-block;
    position: relative;
}

.brand-name::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #F28123, #ff9d50);
    animation: expandLine 1s ease 0.8s forwards;
}

@keyframes expandLine {
    to {
        width: 100%;
    }
}

/* الخط الفاصل - Divider */
.hero-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #F28123, #ff9d50);
    margin: 30px auto;
    border-radius: 2px;
    animation: fadeIn 1s ease 0.4s both;
}

/* الوصف - Description */
.hero-description {
    margin: 40px 0;
    animation: fadeInUp 1s ease 0.6s both;
}

.desc-main {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.6;
}

.desc-sub {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    line-height: 1.8;
}

.desc-features {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 20px;
}

/* الأزرار - Buttons */
.hero-buttons {
    margin: 50px 0;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-btn i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

/* زر تسوق الآن - Primary Button */
.hero-btn-primary {
    background: linear-gradient(135deg, #F28123 0%, #ff9d50 100%);
    color: #fff;
    box-shadow: 0 10px 30px rgba(242, 129, 35, 0.4);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(242, 129, 35, 0.6);
    color: #fff;
}

.hero-btn-primary:hover i {
    transform: scale(1.2);
}

/* زر تعرف علينا - Secondary Button */
.hero-btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.hero-btn-secondary:hover {
    background: #fff;
    color: #051922;
    transform: translateY(-3px);
}

.hero-btn-secondary:hover i {
    transform: rotate(360deg);
}

/* الميزات - Features */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 60px;
    animation: fadeInUp 1s ease 1s both;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 32px;
    color: #F28123;
    margin-bottom: 5px;
}

.feature-item span {
    font-size: 14px;
    font-weight: 600;
}

/* سهم التمرير - Scroll Down */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-down a {
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    display: block;
    padding: 10px;
    transition: color 0.3s ease;
}

.scroll-down a:hover {
    color: #F28123;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ============================================
   استجابة للموبايل - Mobile Responsive
============================================ */

@media (max-width: 991px) {
    .hero-section-modern {
        min-height: 80vh;
    }

    .hero-title {
        padding-top: 30px;
    }

    .brand-name {
        font-size: 52px;
    }

    .desc-main {
        font-size: 22px;
    }

    .desc-sub {
        font-size: 18px;
    }

    .hero-btn {
        padding: 12px 30px;
        font-size: 16px;
    }

    .hero-features {
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .hero-logo img {
        width: 100px;
        height: 100px;
    }

    .hero-title {
        padding-top: 20px;
    }

    .brand-name {
        font-size: 40px;
        letter-spacing: 2px;
    }

    .desc-main {
        font-size: 20px;
    }

    .desc-sub {
        font-size: 16px;
    }

    .desc-features {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-btn {
        width: 100%;
        max-width: 300px;
    }

    .hero-features {
        gap: 20px;
    }

    .feature-item i {
        font-size: 24px;
    }
}