/* ============ HERO SLIDER STYLES ============ */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s;
    display: flex;
    align-items: center;
}
.slide.active {
    opacity: 1;
    z-index: 2;
}
.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.55);
    transform: scale(1.1);
    transition: transform 6s linear;
}
.slide.active .slide-bg {
    transform: scale(1);
}
.hero-container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.hero-text {
    max-width: 520px;
}
.hero-tag {
    display: inline-block;
    padding: 6px 12px;
    background: #ffffff22;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 18px;
    color: #fff;
}
.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
}
.hero-desc {
    font-size: 18px;
    opacity: 0.85;
    margin-bottom: 28px;
    color: #fff;
}
.hero-buttons {
    display: flex;
    gap: 14px;
}
.btn {
    padding: 14px 26px;
    border-radius: 40px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    text-decoration: none;
    display: inline-block;
}
.btn-primary {
    background: #3b82f6;
    color: #fff;
}
.btn-outline {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}
.hero-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}
.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ffffff55;
    cursor: pointer;
}
.hero-dot.active {
    background: #fff;
}
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    cursor: pointer;
    background: #00000055;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 10;
    color: #fff;
}
.hero-prev {
    left: 30px;
}
.hero-next {
    right: 30px;
}
.hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: #3b82f6;
    width: 0%;
    z-index: 12;
}
@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-text {
        margin: auto;
    }
    .hero-title {
        font-size: 40px;
    }
    .hero-buttons {
        justify-content: center;
    }
}