/* ============================================
   HERO - GYRH SOURCINGS
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    background-size: cover !important;
    background-position: center !important;
}

.hero-slide.active { opacity: 1; }

.hero-slide:nth-child(1) {
    background: linear-gradient(135deg, rgba(26,26,46,0.88), rgba(192,57,43,0.65)),
    url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600') center/cover;
}

.hero-slide:nth-child(2) {
    background: linear-gradient(135deg, rgba(26,26,46,0.88), rgba(39,174,96,0.55)),
    url('https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?w=1600') center/cover;
}

.hero-slide:nth-child(3) {
    background: linear-gradient(135deg, rgba(26,26,46,0.88), rgba(41,128,185,0.55)),
    url('https://images.unsplash.com/photo-1473968512647-3e447244af8f?w=1600') center/cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 20px 100px;
    max-width: 780px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 28px;
    animation: fadeInDown 0.8s ease forwards;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    font-weight: 900;
    color: white;
    line-height: 1.15;
    margin-bottom: 12px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title span {
    color: var(--gold);
    display: block;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: rgba(255,255,255,0.82);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 600px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.stat { text-align: left; }

.stat-num {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 900;
    color: white;
}

.stat > span {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 900;
    color: var(--gold);
}

.stat p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

/* hero.css fin */
.scroll-indicator {
    width: 28px;
    height: 44px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 14px;
    position: relative;
    cursor: pointer;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    animation: scrollBounce 1.8s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(10px); opacity: 0.3; }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* CATEGORIES SECTION */
.categories-section { background: white; }

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.category-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transform: translateY(30px);
    text-decoration: none;
    display: block;
}

.category-card.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.category-card-inner {
    padding: 40px 28px;
    position: relative;
    z-index: 1;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.category-bg {
    position: absolute;
    inset: 0;
    transition: transform 0.5s ease;
}

.category-card:hover .category-bg {
    transform: scale(1.05);
}

.category-icon-wrap {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 16px;
    border: 1px solid rgba(255,255,255,0.3);
    transition: var(--transition);
}

.category-card:hover .category-icon-wrap {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.category-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
}

.category-card p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
    margin-bottom: 12px;
}

.category-count {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

.category-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.85rem;
    transition: var(--transition);
    z-index: 2;
}

.category-card:hover .category-arrow {
    background: white;
    color: var(--primary);
    transform: rotate(45deg);
}