/* Hero Slider - Exactly as home-page.html */
.hero-slider {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 520px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.14);
    background: #000;
}

.slide-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .6s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    cursor: pointer;
}

.slide-item.active {
    opacity: 1;
    z-index: 10;
}

.slide-img {
    position: absolute;
    inset: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s linear;
}

.slide-item.active .slide-img {
    transform: scale(1.1);
}

.slide-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    z-index: -1;
}

.slide-content {
    max-width: 85%;
}

.slide-cat {
    display: inline-block;
    background: #fb8b01;
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.slide-title {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.slide-meta {
    display: flex;
    gap: 20px;
    color: rgba(255,255,255,.7);
    font-size: 12px;
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 20;
    display: flex;
    gap: 10px;
}

.nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all .3s;
}

.nav-dot.active {
    background: #fb8b01;
    width: 30px;
    border-radius: 5px;
}

.slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    z-index: 20;
    pointer-events: none;
}

.s-arrow {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: all .3s;
    cursor: pointer;
    pointer-events: auto;
}

.s-arrow:hover {
    background: #fb8b01;
}

@media(max-width:900px){
  .hero-slider { height: 400px; }
  .slide-title { font-size: 22px; }
}

@media(max-width:640px){
  .hero-slider { height: 320px; }
  .slide-item { padding: 20px; }
  .slide-title { font-size: 18px !important; }
}
