.hero-gradient {
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.6) 100%);
}

.dot {
    width: 12px; height: 12px; border-radius: 50%;
    background: rgba(255,255,255,0.4);
    transition: all 0.4s ease; cursor: pointer; border: none; padding: 0;
}
.dot.active {
    width: 36px; border-radius: 6px;
    background: #f59e0b;
}

.slides-wrapper {
    position: absolute; inset: 0; z-index: 0;
}
.slide-item {
    position: absolute; inset: 0; z-index: 1;
    opacity: 0; pointer-events: none;
    transition: opacity 0.8s ease, transform 0.8s ease;
    transform: scale(1.05);
}
.slide-item.active {
    opacity: 1; pointer-events: auto; z-index: 2;
    transform: scale(1);
}
.slide-item img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
}
.slide-item .hero-gradient {
    position: absolute; inset: 0; z-index: 1;
}
.slide-item .slide-content-wrapper {
    position: absolute; inset: 0; z-index: 2;
    display: flex; align-items: center; justify-content: center;
}
.slide-item.active .slide-content {
    animation: slideUp 0.8s ease forwards;
}
.slide-item.active .slide-content:nth-child(2) { animation-delay: 0.1s; }
.slide-item.active .slide-content:nth-child(3) { animation-delay: 0.2s; }
.slide-item.active .slide-content:nth-child(4) { animation-delay: 0.3s; }

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

.card-hover {
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
}
.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.category-card {
    transition: all 0.4s ease;
}
.category-card:hover {
    background: rgba(217, 119, 6, 0.15);
    transform: translateY(-4px);
}
.category-card:hover .icon-circle {
    background: #d97706;
    color: white;
}

.btn-outline {
    border: 1.5px solid rgba(255,255,255,0.5);
    transition: all 0.3s ease;
}
.btn-outline:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
}