/* ==============================
   HOME PAGE HERO
   ============================== */
.home-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: -80px;
    padding-top: 80px;
}

.hero-content-home {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 20px;
    max-width: 900px;
    animation: fadeInUp 1s ease;
}

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

.hero-title-home {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.hero-subtitle-home {
    font-size: clamp(1.1rem, 2.5vw, 1.8rem);
    margin-bottom: 40px;
    opacity: 0.95;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: linear-gradient(135deg, #d77b2c 0%, #f5a623 100%);
    color: white;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: all .4s ease;
    box-shadow: 0 10px 30px rgba(215, 123, 44, 0.4);
}

.btn-hero:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(215, 123, 44, 0.6);
    color: white;
}

/* ==============================
   NEWS TICKER
   ============================== */
.news-ticker-section {
    background: white;
    padding: 20px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
    z-index: 10;
}

.news-ticker-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    overflow: hidden;
}

.ticker-label {
    background: linear-gradient(135deg, #d77b2c 0%, #f5a623 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    flex-shrink: 0;
}

.ticker-content {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.ticker-items {
    display: flex;
    gap: 50px;
    animation: ticker 30s linear infinite;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    font-size: 1.05rem;
    color: #333;
}

.ticker-item i {
    color: #d77b2c;
    font-size: 0.5rem;
}

.ticker-items:hover {
    animation-play-state: paused;
}

/* ==============================
   HOME PRODUCTS SECTION
   ============================== */
.home-products {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: white;
    color: #d77b2c;
    border: 2px solid #d77b2c;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
}

.btn-view-all:hover {
    background: #d77b2c;
    color: white;
    transform: translateX(5px);
}

html[dir="rtl"] .btn-view-all:hover {
    transform: translateX(-5px);
}

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 768px) {
    .home-hero {
        height: 70vh;
        min-height: 500px;
    }

    .news-ticker-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .ticker-label {
        width: 100%;
        justify-content: center;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-view-all {
        width: 100%;
        justify-content: center;
    }
}

