.works-grid {
    padding: 60px 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.work-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.work-card.show {
    opacity: 1;
    transform: translateY(0);
}

.work-card.show:hover {
    transform: translateY(-5px);
}

.work-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.work-info {
    padding: 20px;
}

.work-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.work-info p {
    color: #555;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 15px;
}

.work-btn {
    padding: 10px 22px;
    border-radius: 30px;
    background: rgba(17,17,17,0.6);
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
    display: inline-block;
}

.work-btn:hover {
    background: #000;
    transform: scale(1.05);
}

.nav-links a.active {
    color: #111;
    border-bottom: 2px solid #111;
    padding-bottom: 3px;
    font-weight: 600;
}

.mobile-menu a.active {
    font-weight: 600;
    color: #111;
    border-right: 3px solid #111;
    padding-right: 10px;
}

@media (max-width: 768px) {
    .works-grid {
        padding: 40px 20px;
        grid-template-columns: 1fr;
    }
}